This repository has been archived on 2024-05-29. You can view files and clone it, but cannot push or open issues or pull requests.
fvtt-warhero/template.json

192 lines
3.9 KiB
JSON
Raw Normal View History

2023-01-04 21:24:56 +01:00
{
"Actor": {
"types": ["character", "npc"],
"templates": {
"biodata": {
"biodata": {
"class": "",
"age": 0,
"size": 0,
"weight": "",
"height": "",
"hair": "",
"sex": "",
"eyes": "",
"background": "",
"description": "",
"notes": "",
"gmnotes": ""
}
},
"core": {
"subactors": [],
"abilities": {
"str":{
"label": "Strength",
"abbrev": "str",
"col": 1,
"value": 1
},
"agi":{
"label": "Agility",
"abbrev": "agi",
"col": 1,
"value": 1
},
"dex":{
"label": "Dexterity",
"abbrev": "dex",
"col": 1,
"value": 1
},
"con":{
"label": "Constitution",
"abbrev": "con",
"col": 1,
"value": 1
},
"int":{
"label": "Intelligence",
"abbrev": "int",
"col": 2,
"value": 1
},
"wit":{
"label": "Wits",
"abbrev": "wit",
"col": 2,
"value": 1
},
"cha":{
"label": "Charisma",
"abbrev": "cha",
"col": 2,
"value": 1
}
},
"secondary": {
"hp": {
"label": "Hitpoint",
"abbrev": "hb",
"value": -1,
"max": 0
},
"effort": {
"label": "Effort",
"abbrev": "eff",
"value": -1,
"max": 0
}
},
"social": {
"fame": {
"label": "Fame",
"value": 0
},
"reputation": {
"label": "Reputation",
"value": 0
}
}
},
"npccore": {
"npctype": "",
"description": ""
}
},
"character": {
"templates": [ "biodata", "core" ]
},
"npc": {
"templates": [ "biodata", "core" ]
}
},
"Item": {
2023-01-06 17:45:36 +01:00
"types": [ "race", "weapon", "armor", "shield", "equipment", "money" , "skill", "power", "condition", "class"],
2023-01-04 22:09:09 +01:00
"condition": {
2023-01-04 21:24:56 +01:00
"description": ""
},
2023-01-04 22:09:09 +01:00
"class": {
"weapons": {
"short": false,
"long": false,
"twohanded": false,
"shotgun": false,
"throwing": false
},
"armors": {
"light": false,
"medium": false,
"heavy": false
},
"shields": {
"light": false,
"medium": false,
"tower": false
},
2023-01-04 21:24:56 +01:00
"description": ""
},
"race": {
"description": ""
},
2023-01-04 22:09:09 +01:00
"skill": {
2023-01-04 21:24:56 +01:00
"description": ""
},
2023-01-04 22:09:09 +01:00
"weapon": {
"weapontype": "short",
"damage": "1d6",
"cost": 0,
"equipped": false,
2023-01-06 17:45:36 +01:00
"slotused": 1,
"slotlocation": "weapon1",
2023-01-04 21:24:56 +01:00
"description": ""
},
"armor": {
2023-01-04 22:09:09 +01:00
"armortype": "light",
2023-01-04 21:24:56 +01:00
"equipped": false,
2023-01-06 17:45:36 +01:00
"damagereduction": 1,
2023-01-04 21:24:56 +01:00
"cost": 0,
2023-01-06 17:45:36 +01:00
"slotused": 1,
"slotlocation": "armor",
2023-01-04 21:24:56 +01:00
"description":""
},
"shield": {
2023-01-04 22:09:09 +01:00
"shieldtype": "light",
2023-01-06 17:45:36 +01:00
"parrybonus": 1,
2023-01-04 21:24:56 +01:00
"equipped": false,
"cost": 0,
2023-01-06 17:45:36 +01:00
"slotused": 1,
"slotlocation": "shield",
2023-01-04 21:24:56 +01:00
"description":""
},
"equipment": {
"equiptype": "",
"cost": 0,
"quantity": 0,
"equipped": false,
2023-01-06 17:45:36 +01:00
"slotused": 1,
"slotlocation": "backpack",
2023-01-04 21:24:56 +01:00
"description":""
},
2023-01-04 22:09:09 +01:00
"power": {
"level1": "",
"level2": "",
"level3": "",
"level4_1": "",
"level4_2": "",
"description": ""
},
2023-01-04 21:24:56 +01:00
"money" : {
"value": 0,
"quantity": 0,
"description": ""
},
"spell":{
"lore": "",
"circle": 1,
"range": "",
"description": ""
}
}
}