To start, copy the following code block and fill the empty "" values.
"object": [
{
"name": "",
"source": "",
"page": 0,
"size": "",
"objectType": "",
"ac": "",
"hp": "",
"immune": [
""
],
"entries": [
""
]
}
]
"name" — the name of the feat."source" — make sure it is the same as the "json" key in the _meta."page" — page of the document the hazard appears at (leave at 0 if not applicable)."size" — the size of the object. Choose between "S" small, "M" medium, "L" large, "H" huge, "G" gargantuan or "V" varies."objectType" — Choose between "SW" siege weapon, "GEN" generic, "U" unknown."ac" — The Armor Class of the object. Take note that the data type is a string, so you can be flexible with what you write here."hp" — The Health Points of the object. Same thing as with the AC."immune" — The types of damage the object is immune to. You can add any text you want by using the following"immune": [
{
"special": "Varies (see below)"
}
]
"entries" — consists of text strings ("") separated by commas.Make sure you are adding these blocks in the same level as the "name", "source", etc.
Some objects can have ability scores on their own. Note that they are separate data, so not all of them need to be added.
"str": 14,
"dex": 10,
"int": 3,
"wis": 3,
"cha": 1
You can write as a number
"speed": 20
Or be more specific with different speed types.
"speed": {
"walk": 20,
"fly": 15
}
"senses": [
"blindsight 30 ft. (blind beyond this radius)"
]
"resist": [
"posion"
],
"vulnerable": [
"fire"
]
"conditionImmune": [
"prone"
]
"actionEntries": [
{
"type": "actions",
"name": "Bolt",
"entries": [
{
"type": "attack",
"attackType": "RW",
"attackEntries": [
"{@hit +6} to hit, range 120/480 ft., one target."
],
"hitEntries": [
"16 ({@damage 3d10}) piercing damage."
]
}
]
}
]
Use a direct link to the image.
"tokenUrl": "example.com/token.jpg",
"hasToken": true
How to link to entries within the string
{@object <object_name>|<json_source> | <optional_text_information>}Example:
{@object Ballista|DMG}{@object Ballista|DMG|and optional link text added with another pipe}