fvtt-pegasus-rpg/template.json

243 lines
5.4 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",
2021-12-05 20:36:34 +01:00
"abbrev": "AGI",
2021-12-02 07:38:59 +01:00
"level": 1,
"mod": 0
},
"mnd":{
"label": "Mind",
2021-12-05 20:36:34 +01:00
"abbrev": "MND",
2021-12-02 07:38:59 +01:00
"level": 1,
"mod": 0
},
"soc":{
2021-12-03 18:31:43 +01:00
"label": "Social",
2021-12-05 20:36:34 +01:00
"abbrev": "SOC",
2021-12-02 07:38:59 +01:00
"level": 1,
"mod": 0
},
"str":{
"label": "Strength",
2021-12-05 20:36:34 +01:00
"abbrev": "STR",
2021-12-02 07:38:59 +01:00
"level": 1,
"mod": 0
},
"phy":{
2021-12-03 18:31:43 +01:00
"label": "Physique",
2021-12-05 20:36:34 +01:00
"abbrev": "PHY",
2021-12-02 07:38:59 +01:00
"level": 1,
"mod": 0
},
"com":{
2021-12-03 18:31:43 +01:00
"label": "Combat",
2021-12-05 20:36:34 +01:00
"abbrev": "COM",
2021-12-02 07:38:59 +01:00
"level": 1,
"mod": 0
},
"def":{
2021-12-03 18:31:43 +01:00
"label": "Defence",
2021-12-05 20:36:34 +01:00
"abbrev": "DEF",
2021-12-02 07:38:59 +01:00
"level": 1,
"mod": 0
},
"stl":{
"label": "Stealth",
2021-12-05 20:36:34 +01:00
"abbrev": "STL",
2021-12-02 07:38:59 +01:00
"level": 1,
"mod": 0
},
"per":{
"label": "Perception",
2021-12-05 20:36:34 +01:00
"abbrev": "PER",
2021-12-02 07:38:59 +01:00
"level": 1,
"mod": 0
},
"foc":{
"label": "Focus",
2021-12-05 20:36:34 +01:00
"abbrev": "FOC",
2021-12-02 07:38:59 +01:00
"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": "",
2021-12-08 13:53:22 +01:00
"abilities": [],
2021-12-02 07:38:59 +01:00
"statistics": ""
},
"role": {
2021-12-08 13:53:22 +01:00
"statincrease1": "",
"statincrease2": "",
2021-12-09 18:40:50 +01:00
"messagespecplus1": "",
2021-12-08 13:53:22 +01:00
"specialisationsplus1": [],
"powers1": [],
"specialperk": [],
"statincreasechoice": [ { "name":"AGI", "flag":false }, {"name":"MND", "flag":false }, {"name":"SOC", "flag":false }, {"name":"STR", "flag":false },
{"name":"PHY", "flag":false }, {"name":"COM", "flag":false }, {"name":"DEF", "flag":false }, {"name":"STL", "flag":false },
{"name":"PER", "flag":false }, {"name":"FOC", "flag":false } ],
"specincrease": [],
"perks": [],
"description": ""
2021-12-02 07:38:59 +01:00
},
"ability": {
2021-12-05 20:36:34 +01:00
"affectedstat": "",
"statmodifier": 0,
"statlevelincrease": 0,
"bonusdice": 0,
"otherdice": 0,
"statusaffected": "",
"statusmodifier": 0,
2021-12-16 21:41:09 +01:00
"powersgained": [],
"specialisations": [],
2021-12-05 20:36:34 +01:00
"aoe": "",
2021-12-02 07:38:59 +01:00
"description": ""
},
"specialisation": {
"statistic": "",
2021-12-02 20:18:21 +01:00
"level": 1,
2021-12-09 18:40:50 +01:00
"ispowergroup": false,
"powersource": "",
"powers": [],
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-05 20:36:34 +01:00
"gainstatdice": "",
"gainbonusdice": 0,
"gainotherdice": 0,
2021-12-08 13:53:22 +01:00
"specialisation": [ {"name": "None"}],
2021-12-05 20:36:34 +01:00
"range": "",
"aoe": "",
"nbtargets": 0,
"nrgcost": 0,
"effectscaused": "",
"stataffected": "",
"targetresists": "",
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": "",
2021-12-05 20:36:34 +01:00
"range": "",
2021-12-02 07:38:59 +01:00
"equipped": false,
"description": ""
}
}
}