blob: b6f9f876e91989be9572e398b3fa8147f28d3d95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{
"name": "blood frenzy",
"text": "The {NAME} has advantage on melee attack rolls against any creature that doesn't have all its hit points.",
"subfeatures": [
{
"trigger": [ "N attacks N", "self", "creature" ],
"conditions": [
["N made melee attack", "self" ],
[ "(creature.HP,creature.MAXHP,<)" ]
],
"effects": [{
"target": "self",
"effect": [ "Grant advantage" ]
}]
}
]
}
|