71 lines
1.2 KiB
JSON
71 lines
1.2 KiB
JSON
{
|
|
"Actor": {
|
|
"types": ["character"],
|
|
"templates": {
|
|
"base": {
|
|
"health": {
|
|
"value": 10,
|
|
"min": 0,
|
|
"max": 10
|
|
},
|
|
"power": {
|
|
"value": 5,
|
|
"min": 0,
|
|
"max": 5
|
|
}
|
|
}
|
|
},
|
|
"character": {
|
|
"templates": ["base"],
|
|
"biography": "",
|
|
"attributes": {
|
|
"level": {
|
|
"value": 1
|
|
}
|
|
},
|
|
"abilities": {
|
|
"str": {
|
|
"value": 10
|
|
},
|
|
"dex": {
|
|
"value": 10
|
|
},
|
|
"con": {
|
|
"value": 10
|
|
},
|
|
"int": {
|
|
"value": 10
|
|
},
|
|
"wis": {
|
|
"value": 10
|
|
},
|
|
"cha": {
|
|
"value": 10
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"Item": {
|
|
"types": ["weapon", "equipment"],
|
|
"templates": {
|
|
"base": {
|
|
"description": ""
|
|
},
|
|
"physical": {
|
|
"quantity": 1,
|
|
"price": 0,
|
|
"availability": "Hamlet"
|
|
}
|
|
},
|
|
"weapon": {
|
|
"templates": ["base", "physical"],
|
|
"attackType": "melee",
|
|
"weaponBonus": 0,
|
|
"opponentDefense": 0,
|
|
"properties": {}
|
|
},
|
|
"equipment": {
|
|
"templates": ["base", "physical"]
|
|
}
|
|
}
|
|
}
|