fvtt-pegasus-rpg/template.json

209 lines
4.3 KiB
JSON
Raw Normal View History

2021-12-02 07:38:59 +01:00
{
"Actor": {
"types": ["character", "npc"],
"templates": {
"biodata": {
"biodata": {
"name": "",
"age": 0,
"size": "",
"weight": "",
"hair": "",
"sex": "",
"eyes": "",
"description": "",
"worstfear": "",
"desires": "",
"preferredhand": "",
"catchphrase": "",
"catchphrase_trigger": "",
"character_value": 0,
"level": 0,
"cdp": 0,
"notes": "",
"gmnotes": ""
}
},
"core": {
"subactors": [],
"statistics": {
"agi":{
"label": "Agility",
"abbrev": "agi",
"level": 1,
"mod": 0
},
"mnd":{
"label": "Mind",
"abbrev": "mnd",
"level": 1,
"mod": 0
},
"soc":{
2021-12-03 18:31:43 +01:00
"label": "Social",
2021-12-02 07:38:59 +01:00
"abbrev": "soc",
"level": 1,
"mod": 0
},
"str":{
"label": "Strength",
"abbrev": "str",
"level": 1,
"mod": 0
},
"phy":{
2021-12-03 18:31:43 +01:00
"label": "Physique",
2021-12-02 07:38:59 +01:00
"abbrev": "phy",
"level": 1,
"mod": 0
},
"com":{
2021-12-03 18:31:43 +01:00
"label": "Combat",
2021-12-02 07:38:59 +01:00
"abbrev": "com",
"level": 1,
"mod": 0
},
"def":{
2021-12-03 18:31:43 +01:00
"label": "Defence",
2021-12-02 07:38:59 +01:00
"abbrev": "def",
"level": 1,
"mod": 0
},
"stl":{
"label": "Stealth",
"abbrev": "stl",
"level": 1,
"mod": 0
},
"per":{
"label": "Perception",
"abbrev": "per",
"level": 1,
"mod": 0
},
"foc":{
"label": "Focus",
"abbrev": "foc",
"level": 1,
"mod": 0
}
},
"secondary": {
"health": {
"label": "Health",
"value": 0,
2021-12-03 18:31:43 +01:00
"type": "value",
2021-12-02 07:38:59 +01:00
"max": 0
},
"delirium": {
"label": "Delirium",
"value": 0,
2021-12-03 18:31:43 +01:00
"type": "value",
2021-12-02 07:38:59 +01:00
"max": 0
},
"nrg": {
2021-12-03 18:31:43 +01:00
"label": "NRG",
2021-12-02 07:38:59 +01:00
"value": 0,
2021-12-03 18:31:43 +01:00
"type": "value",
2021-12-02 07:38:59 +01:00
"max": 0
},
"mr": {
"label": "MR",
2021-12-03 18:31:43 +01:00
"type": "dice",
2021-12-02 07:38:59 +01:00
"value": 0
}
}
},
"npccore": {
"npctype": "",
"description": ""
}
},
"character": {
"templates": [ "biodata", "core" ]
},
"npc": {
"templates": [ "npccore" ]
}
},
"Item": {
2021-12-03 18:31:43 +01:00
"types": [ "race", "role", "ability", "specialisation", "perk", "power" , "armor", "shield", "equipment", "weapon"],
2021-12-02 07:38:59 +01:00
"race": {
"description": "",
"environment": "",
"society_culture": "",
"outlook": "",
"abilities": "",
"statistics": ""
},
"role": {
"description": "",
"abilities": "",
"statistics": ""
},
"ability": {
"description": ""
},
"specialisation": {
"statistic": "",
2021-12-02 20:18:21 +01:00
"level": 1,
2021-12-02 07:38:59 +01:00
"description": ""
},
"perk": {
2021-12-02 20:18:21 +01:00
"level": 1,
"active": false,
"roundcount": 0,
2021-12-03 18:31:43 +01:00
"nbuse": "",
2021-12-02 07:38:59 +01:00
"description": "",
"upgrades": "",
"rules": ""
},
"power": {
"rollneeded": false,
"statistic": "",
"cost": 0,
"costtype": "",
"range": "",
"action": "",
"type": "",
2021-12-03 18:31:43 +01:00
"effects": "",
"purchasedeffects": ""
2021-12-02 07:38:59 +01:00
},
"armor": {
"statistic": "",
"resistance": "",
"weight": 0,
"cost": 0,
"idr": "",
"equipped": false,
"description":""
},
"shield": {
"deftype": "",
"level": "",
"weight": 0,
"cost": 0,
"idr": "",
"equipped": false,
"description":""
},
"equipment": {
"type": "",
"cost": 0,
"weight": 0,
"idr": "",
"equipped": false,
"description":""
},
"weapon": {
"statistic": "",
"damage": "",
"cost": 0,
"weight": 0,
"idr": "",
"equipped": false,
"description": ""
}
}
}