mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-15 21:21:08 +01:00
Merge pull request #79 from Foundryborne/#77/Migrate-Template-To-SystemJSON
Migrate document types to module.json and remove template.json FIX: #79
This commit is contained in:
commit
c94051744a
2 changed files with 29 additions and 46 deletions
29
system.json
29
system.json
|
|
@ -435,6 +435,35 @@
|
||||||
"distance": 5,
|
"distance": 5,
|
||||||
"units": "feet"
|
"units": "feet"
|
||||||
},
|
},
|
||||||
|
"documentTypes": {
|
||||||
|
"Actor": {
|
||||||
|
"pc": {},
|
||||||
|
"npc": {},
|
||||||
|
"adversary": {},
|
||||||
|
"environment": {}
|
||||||
|
},
|
||||||
|
"Item": {
|
||||||
|
"ancestry": {},
|
||||||
|
"community": {},
|
||||||
|
"class": {},
|
||||||
|
"subclass": {},
|
||||||
|
"feature": {},
|
||||||
|
"domainCard": {},
|
||||||
|
"miscellaneous": {},
|
||||||
|
"consumable": {},
|
||||||
|
"weapon": {},
|
||||||
|
"armor": {}
|
||||||
|
},
|
||||||
|
"Combat": {
|
||||||
|
"combat": {}
|
||||||
|
},
|
||||||
|
"ChatMessage": {
|
||||||
|
"dualityRoll": {},
|
||||||
|
"adversaryRoll": {},
|
||||||
|
"damageRoll": {},
|
||||||
|
"abilityUse": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
"primaryTokenAttribute": "resources.health",
|
"primaryTokenAttribute": "resources.health",
|
||||||
"secondaryTokenAttribute": "resources.stress",
|
"secondaryTokenAttribute": "resources.stress",
|
||||||
"url": "https://your/hosted/system/repo/",
|
"url": "https://your/hosted/system/repo/",
|
||||||
|
|
|
||||||
|
|
@ -1,46 +0,0 @@
|
||||||
{
|
|
||||||
"Actor": {
|
|
||||||
"types": ["pc", "npc", "adversary", "environment"],
|
|
||||||
"pc": {},
|
|
||||||
"npc": {},
|
|
||||||
"adversary": {},
|
|
||||||
"environment": {}
|
|
||||||
},
|
|
||||||
"Item": {
|
|
||||||
"types": [
|
|
||||||
"ancestry",
|
|
||||||
"community",
|
|
||||||
"class",
|
|
||||||
"subclass",
|
|
||||||
"feature",
|
|
||||||
"domainCard",
|
|
||||||
"miscellaneous",
|
|
||||||
"consumable",
|
|
||||||
"weapon",
|
|
||||||
"armor",
|
|
||||||
"test"
|
|
||||||
],
|
|
||||||
"ancestry": {},
|
|
||||||
"community": {},
|
|
||||||
"class": {},
|
|
||||||
"subclass": {},
|
|
||||||
"feature": {},
|
|
||||||
"domainCard": {},
|
|
||||||
"miscellaneous": {},
|
|
||||||
"consumable": {},
|
|
||||||
"weapon": {},
|
|
||||||
"armor": {},
|
|
||||||
"test": {}
|
|
||||||
},
|
|
||||||
"Combat": {
|
|
||||||
"types": ["combat"],
|
|
||||||
"combat": {}
|
|
||||||
},
|
|
||||||
"ChatMessage": {
|
|
||||||
"types": ["dualityRoll", "adversaryRoll", "damageRoll", "abilityUse"],
|
|
||||||
"dualityRoll": {},
|
|
||||||
"adversaryRoll": {},
|
|
||||||
"damageRoll": {},
|
|
||||||
"abilityUse": {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue