boilerplate

This commit is contained in:
François-Xavier Guillois
2023-04-19 17:10:01 +02:00
parent 479024b536
commit fa8e32f4dd
46 changed files with 11418 additions and 80 deletions
+73
View File
@@ -0,0 +1,73 @@
{
"Actor": {
"types": ["character", "npc"],
"templates": {
"base": {
"health": {
"value": 10,
"min": 0,
"max": 10
},
"power": {
"value": 5,
"min": 0,
"max": 5
},
"biography": ""
}
},
"character": {
"templates": ["base"],
"attributes": {
"level": {
"value": 1
}
},
"abilities": {
"str": {
"value": 10
},
"dex": {
"value": 10
},
"con": {
"value": 10
},
"int": {
"value": 10
},
"wis": {
"value": 10
},
"cha": {
"value": 10
}
}
},
"npc": {
"templates": ["base"],
"cr": 0
}
},
"Item": {
"types": ["item", "feature", "spell"],
"templates": {
"base": {
"description": ""
}
},
"item": {
"templates": ["base"],
"quantity": 1,
"weight": 0,
"formula": "d20 + @str.mod + ceil(@lvl / 2)"
},
"feature": {
"templates": ["base"]
},
"spell": {
"templates": ["base"],
"spellLevel": 1
}
}
}