1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{
"name": "acid spray",
"text": "The {NAME} spits acid in a line that is {V0} feet long and {V1} feet wide, provided that it has no creature grappled. Each creature in that line must make a DC {8,STR,PROF,+,+} Dexterity saving throw, taking {V2}d{V3} acid damage on a failed save, or half as much damage on a successful one.",
"subfeatures": [
{
"trigger": "action",
"condition": "self.GRAPPLED,!",
"effects": [{
"target": "creatures",
"effect conditions": [[ "N is in AOE", "creature", "line {V0} {V1}" ]],
"effect": [ "Inflict XdX TYPE damage, dc X ABILITY save halves", "V2", "V3", "acid", "(8,STR,PROF,+,+)", "dexterity" ]
}],
"recharge": [ 1, "6-6" ]
}
]
}
|