Initial commit - v0.1.0
This initial version adds a custom compendium with a macro for the tinkerer, and a dynamic token border to track player turn status. It has a couple of known major bugs but is needed for an upcoming game, with fixes hopefully later. It is only compatible with Foundry v12 at this time.
This commit is contained in:
commit
6c3ce53101
19 changed files with 806 additions and 0 deletions
76
module.json
Normal file
76
module.json
Normal file
|
@ -0,0 +1,76 @@
|
|||
{
|
||||
"id": "the-mills-fabula",
|
||||
"title": "Fabula Moletrina",
|
||||
"description": "A module implementing our idiosyncratic ideas for the Mill's campaigns.",
|
||||
"version": "0.1.0",
|
||||
"compatibility": {
|
||||
"minimum": "12",
|
||||
"verified": "12",
|
||||
"maximum": "12"
|
||||
},
|
||||
"languages": [
|
||||
{
|
||||
"lang": "en",
|
||||
"name": "English",
|
||||
"path": "lang/en.json"
|
||||
},
|
||||
{
|
||||
"lang": "fr",
|
||||
"name": "Français",
|
||||
"path": "lang/fr.json"
|
||||
}
|
||||
],
|
||||
"relationships": {
|
||||
"systems": [
|
||||
{
|
||||
"id": "projectfu",
|
||||
"type": "system",
|
||||
"compatibility": {
|
||||
"verified": [
|
||||
"2.4.10",
|
||||
"3.0.2"
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"modules": [
|
||||
{
|
||||
"id": "socketlib",
|
||||
"type": "module",
|
||||
"compatibility": {
|
||||
"verified": "1.1.2"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"authors": [
|
||||
{
|
||||
"name": "trotFunky Sparks",
|
||||
"flags": {}
|
||||
}
|
||||
],
|
||||
"esmodules": [
|
||||
"scripts/token_combat_border.mjs"
|
||||
],
|
||||
"socket": true,
|
||||
"packs": [
|
||||
{
|
||||
"name": "Macros",
|
||||
"label": "The Mill's Macros",
|
||||
"path": "packs/macros",
|
||||
"type": "Macro",
|
||||
"ownership": {
|
||||
"PLAYER": "OBSERVER",
|
||||
"ASSISTANT": "OWNER"
|
||||
},
|
||||
"system": "projectfu",
|
||||
"flags": {}
|
||||
}
|
||||
],
|
||||
|
||||
"license": "LICENSE",
|
||||
"readme": "README.md",
|
||||
"url": "https://git.tfk-astrodome.net/trotFunky/TheMillsFabula/src/branch/release",
|
||||
"manifest": "https://git.tfk-astrodome.net/trotFunky/TheMillsFabula/raw/branch/release/module.json",
|
||||
"download": "https://git.tfk-astrodome.net/trotFunky/TheMillsFabula/archive/v0.1.0.zip"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue