forked from GitHub-Mirrors/foundry-sw5e
Update template.json
Add crawl roll turn movement values. Removed some duplicate values. Ran Prettier so I could read it easier.
This commit is contained in:
parent
d60e1fbcfa
commit
47cfad4624
1 changed files with 176 additions and 136 deletions
102
template.json
102
template.json
|
@ -47,8 +47,11 @@
|
|||
"movement": {
|
||||
"burrow": 0,
|
||||
"climb": 0,
|
||||
"crawl": 0,
|
||||
"fly": 0,
|
||||
"roll": 0,
|
||||
"swim": 0,
|
||||
"turn": 0,
|
||||
"walk": 30,
|
||||
"units": "ft",
|
||||
"hover": false
|
||||
|
@ -460,19 +463,6 @@
|
|||
"value": 0,
|
||||
"ability": "int"
|
||||
},
|
||||
"skills": {
|
||||
"ast": {
|
||||
"value": 0,
|
||||
"ability": "int"
|
||||
},
|
||||
"bst": {
|
||||
"value": 0,
|
||||
"ability": "str"
|
||||
},
|
||||
"dat": {
|
||||
"value": 0,
|
||||
"ability": "int"
|
||||
},
|
||||
"hid": {
|
||||
"value": 0,
|
||||
"ability": "dex"
|
||||
|
@ -568,8 +558,17 @@
|
|||
"value": ["poison", "psychic"]
|
||||
},
|
||||
"ci": {
|
||||
"value": ["blinded", "charmed", "deafened", "frightened", "paralyzed", "petrified", "poisoned", "stunned",
|
||||
"unconscious"]
|
||||
"value": [
|
||||
"blinded",
|
||||
"charmed",
|
||||
"deafened",
|
||||
"frightened",
|
||||
"paralyzed",
|
||||
"petrified",
|
||||
"poisoned",
|
||||
"stunned",
|
||||
"unconscious"
|
||||
]
|
||||
}
|
||||
},
|
||||
"cargo": {
|
||||
|
@ -579,7 +578,29 @@
|
|||
}
|
||||
},
|
||||
"Item": {
|
||||
"types": ["archetype", "background", "backpack", "class", "classfeature", "consumable", "deployment", "deploymentfeature", "equipment", "feat", "fightingmastery", "fightingstyle", "lightsaberform", "loot", "power", "species", "starshipfeature", "starshipmod", "tool", "venture", "weapon"],
|
||||
"types": [
|
||||
"archetype",
|
||||
"background",
|
||||
"backpack",
|
||||
"class",
|
||||
"classfeature",
|
||||
"consumable",
|
||||
"deployment",
|
||||
"deploymentfeature",
|
||||
"equipment",
|
||||
"feat",
|
||||
"fightingmastery",
|
||||
"fightingstyle",
|
||||
"lightsaberform",
|
||||
"loot",
|
||||
"power",
|
||||
"species",
|
||||
"starshipfeature",
|
||||
"starshipmod",
|
||||
"tool",
|
||||
"venture",
|
||||
"weapon"
|
||||
],
|
||||
"templates": {
|
||||
"archetypeDescription": {
|
||||
"description": "",
|
||||
|
@ -767,32 +788,36 @@
|
|||
},
|
||||
"starshipEquipment": {
|
||||
"capx": {
|
||||
"value":null
|
||||
"value": null
|
||||
},
|
||||
"hpperhd": {
|
||||
"value":null
|
||||
"value": null
|
||||
},
|
||||
"regrateco": {
|
||||
"value":null
|
||||
"value": null
|
||||
},
|
||||
"cscap": {
|
||||
"value":null
|
||||
"value": null
|
||||
},
|
||||
"sscap": {
|
||||
"value":null
|
||||
"value": null
|
||||
},
|
||||
"fuelcostsmod": {
|
||||
"value":null
|
||||
"value": null
|
||||
},
|
||||
"powerdicerec": {
|
||||
"value":null
|
||||
"value": null
|
||||
},
|
||||
"hdclass": {
|
||||
"value":null
|
||||
"value": null
|
||||
}
|
||||
}
|
||||
},
|
||||
"htmlFields": ["description.value", "description.chat", "description.unidentified"],
|
||||
"htmlFields": [
|
||||
"description.value",
|
||||
"description.chat",
|
||||
"description.unidentified"
|
||||
],
|
||||
"archetype": {
|
||||
"templates": ["archetypeDescription"],
|
||||
"className": "",
|
||||
|
@ -846,9 +871,6 @@
|
|||
"value": null
|
||||
}
|
||||
},
|
||||
"deploymentfeature": {
|
||||
"templates": ["itemDescription", "activatedEffect", "action"]
|
||||
},
|
||||
"fightingmastery": {
|
||||
"templates": ["fightingmasteryDescription"]
|
||||
},
|
||||
|
@ -862,14 +884,26 @@
|
|||
"templates": ["ventureDescription"]
|
||||
},
|
||||
"consumable": {
|
||||
"templates": ["itemDescription", "physicalItem", "activatedEffect", "action"],
|
||||
"templates": [
|
||||
"itemDescription",
|
||||
"physicalItem",
|
||||
"activatedEffect",
|
||||
"action"
|
||||
],
|
||||
"consumableType": "potion",
|
||||
"uses": {
|
||||
"autoDestroy": false
|
||||
}
|
||||
},
|
||||
"equipment": {
|
||||
"templates": ["itemDescription", "physicalItem", "activatedEffect", "action", "mountable", "starshipEquipment"],
|
||||
"templates": [
|
||||
"itemDescription",
|
||||
"physicalItem",
|
||||
"activatedEffect",
|
||||
"action",
|
||||
"mountable",
|
||||
"starshipEquipment"
|
||||
],
|
||||
"armor": {
|
||||
"type": "light",
|
||||
"value": 10,
|
||||
|
@ -955,7 +989,13 @@
|
|||
}
|
||||
},
|
||||
"weapon": {
|
||||
"templates": ["itemDescription", "physicalItem" ,"activatedEffect", "action", "mountable"],
|
||||
"templates": [
|
||||
"itemDescription",
|
||||
"physicalItem",
|
||||
"activatedEffect",
|
||||
"action",
|
||||
"mountable"
|
||||
],
|
||||
"weaponType": "simpleVW",
|
||||
"properties": {},
|
||||
"proficient": true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue