ds4/src/template.json

181 lines
4.6 KiB
JSON
Raw Normal View History

2020-12-23 16:52:20 +01:00
{
"Actor": {
"types": ["character"],
"templates": {},
"character": {
"templates": [],
"attributes": {
"body": {
"base": 0,
"mod": 0
2020-12-23 16:52:20 +01:00
},
"mobility": {
"base": 0,
"mod": 0
2020-12-23 16:52:20 +01:00
},
"mind": {
"base": 0,
"mod": 0
2020-12-23 16:52:20 +01:00
}
},
"traits": {
"strength": {
"base": 0,
"mod": 0
2020-12-23 16:52:20 +01:00
},
"constitution": {
"base": 0,
"mod": 0
2020-12-23 16:52:20 +01:00
},
"agility": {
"base": 0,
"mod": 0
2020-12-23 16:52:20 +01:00
},
"dexterity": {
"base": 0,
"mod": 0
2020-12-23 16:52:20 +01:00
},
"intellect": {
"base": 0,
"mod": 0
2020-12-23 16:52:20 +01:00
},
"aura": {
"base": 0,
"mod": 0
}
},
"combatValues": {
"hitPoints": {
"base": 0,
"mod": 0,
2021-01-07 12:47:38 +01:00
"value": 0
},
"defense": {
"base": 0,
"mod": 0
},
"initiative": {
"base": 0,
"mod": 0
},
"movement": {
"base": 0,
"mod": 0
},
"meleeAttack": {
"base": 0,
"mod": 0
},
"rangedAttack": {
"base": 0,
"mod": 0
},
"spellcasting": {
"base": 0,
"mod": 0
},
"targetedSpellcasting": {
"base": 0,
"mod": 0
}
},
"baseInfo": {
"race": "",
"class": "",
"heroClass": "",
2021-01-03 20:37:30 +01:00
"culture": ""
},
"progression": {
"level": 0,
"experiencePoints": 0,
"talentPoints": {
"total": 0,
"used": 0
},
"progressPoints": {
"total": 0,
"used": 0
2020-12-23 16:52:20 +01:00
}
2021-01-03 20:37:30 +01:00
},
"profile": {
"gender": "",
"birthday": "",
"birthplace": "",
"age": 0,
"height": 0,
"hairColor": "",
"weight": 0,
"eyeColor": "",
"specialCharacteristics": ""
2020-12-23 16:52:20 +01:00
}
}
},
"Item": {
"types": [
"weapon",
"armor",
"shield",
"trinket",
"equipment",
"talent",
"racialAbility",
"language",
"alphabet"
],
2020-12-23 16:52:20 +01:00
"templates": {
"base": {
"description": ""
},
"physical": {
"quantity": 1,
"price": 0,
"availability": "unset",
"storageLocation": "-"
2020-12-23 16:52:20 +01:00
},
"equipable": {
"equipped": false
2020-12-28 18:24:13 +01:00
},
"protective": {
"armorValue": 0
2020-12-23 16:52:20 +01:00
}
},
"weapon": {
"templates": ["base", "physical", "equipable"],
"attackType": "melee",
"weaponBonus": 0,
2020-12-28 18:24:13 +01:00
"opponentDefense": 0
2020-12-23 16:52:20 +01:00
},
"armor": {
2020-12-28 18:24:13 +01:00
"templates": ["base", "physical", "equipable", "protective"],
2020-12-23 16:52:20 +01:00
"armorMaterialType": "cloth",
2020-12-28 18:24:13 +01:00
"armorType": "body"
2020-12-23 16:52:20 +01:00
},
"shield": {
2020-12-28 18:24:13 +01:00
"templates": ["base", "physical", "equipable", "protective"]
2020-12-23 16:52:20 +01:00
},
"trinket": {
"templates": ["base", "physical", "equipable"]
},
"equipment": {
"templates": ["base", "physical"]
},
"talent": {
"templates": ["base"],
"rank": {
"base": 0,
"max": 0,
"mod": 0
}
2021-01-07 20:20:40 +01:00
},
"racialAbility": {
"templates": ["base"]
},
"language": {
"templates": ["base"]
},
"alphabet": {
"templates": ["base"]
2020-12-23 16:52:20 +01:00
}
}
}