fvtt-pegasus-rpg/template.json

358 lines
8.2 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,
2021-12-19 15:35:54 +01:00
"duration": "",
"features": {
"nrgcost": {
"label": "NRG cost to use",
"flag": false,
"type": "number",
"value": 0
},
"range": {
"label": "Range",
"flag": false,
"type": "range",
"value": ""
},
"nbtargets": {
"label": "# Targets",
"flag": false,
"type": "string",
"value": ""
},
"gainstatdice": {
"label": "Gain Stat Dice to Pool",
"flag": false,
"type": "statdice",
"value": ""
},
"gainspecdice": {
"label": "Gain Specialisation Dice",
"flag": false,
"type": "statdice",
"value": ""
},
"gainbonusdice": {
"label": "Gain Bonus Dice to Pool",
"flag": false,
"type": "string",
"value": ""
},
"gainotherdice": {
"label": "Gain Other Dice to Pool",
"flag": false,
"type": "statdice",
"value": ""
},
"targethindrance": {
"label": "Apply Hindrance to Target",
"flag": false,
"type": "string",
"value": ""
},
"sufferindrance": {
"label": "Perk User suffers Hindrance",
"flag": false,
"type": "string",
"value": ""
},
"affectedstat": {
"label": "Affected Stat",
"flag": false,
"type": "string",
"value": ""
},
"affectedspec": {
"label": "Affected Specialisation",
"flag": false,
"type": "string",
"value": ""
},
"affectspecial": {
"label": "Affects Special",
"flag": false,
"type": "string",
"value": ""
},
"bonushealth": {
"label": "Bonus to Health",
"flag": false,
"type": "string",
"value": ""
},
"bonusnrg": {
"label": "Bonus to NRG",
"flag": false,
"type": "string",
"value": ""
},
"bonusdelirium": {
"label": "Bonus to Delirium",
"flag": false,
"type": "string",
"value": ""
},
"gainmomentum": {
"label": "Gain Momentum",
"flag": false,
"type": "string",
"value": ""
},
"applyeffect": {
"label": "Apply Effect",
"flag": false,
"type": "string",
"value": ""
},
"removeeffect": {
"label": "Remove Effect",
"flag": false,
"type": "string",
"value": ""
},
"specialrule": {
"label": "Special Rule",
"flag": false,
"type": "text",
"value": ""
},
"upgrade1": {
"label": "Upgrade 1",
"flag": false,
"type": "string",
"value": ""
},
"upgrade2": {
"label": "Upgrade 2",
"flag": false,
"type": "string",
"value": ""
}
},
2021-12-02 20:18:21 +01:00
"roundcount": 0,
2021-12-19 15:35:54 +01:00
"nbuse": ""
2021-12-02 07:38:59 +01:00
},
"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": ""
}
}
}