Initial commit

This commit is contained in:
WBHarry 2025-05-22 16:53:39 +02:00
commit aa4021d1a2
163 changed files with 26530 additions and 0 deletions

33
template.json Normal file
View file

@ -0,0 +1,33 @@
{
"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", "abilityUse"],
"dualityRoll": {},
"adversaryRoll": {},
"abilityUse": {}
}
}