To start, copy the following code block and fill the empty ""
values.
"action": [
{
"source": "",
"name": "",
"page": 0,
"entries": [
""
],
"time": [
{
"number": 0,
"unit": ""
}
]
}
]
"source"
— make sure it is the same as the "json"
key in the _meta."page"
— the page of the document the action appears at. If there’s no page, leave it at 0."entries"
— the text of the action. Note that you can write several strings (“”) separated with a comma."time"
— here you can describe how long the action takes. "unit"
can be "action"
, "bonus"
or "reaction"
. "number"
is the amount of units it takes. If it does not apply to the action, you can delete this block.If you want your action to take more than one time unit, you can place several “time” objects {}
. The following example reads as “1 action/1 reaction”:
"time": [
{
"number": 1,
"unit": "action"
},
{
"number": 1,
"unit": "reaction"
}
]
It is possible to enter whatever text you want directly as strings. They will show up in the filters as well.
"time": [
"1 day"
]
How to link to entries within the strings:
{@action <name_of_action>|<json_source>|<optional_text_information>}
Examples:
{@action Tumble|DMG}
{@action Tumble|DMG| the tumble action}