1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{
"name": "blinding gaze",
"text": "The {NAME} targets one creature it can see within 30 feet of it. If the target can see it, the target must succeed on a DC {(8,PROF,+)} Constitution saving throw or be blinded until magic such as the lesser restoration spell removes the blindness.",
"subfeatures": [
{
"trigger": [ "legendary action costing X", 3 ],
"conditions": [
[ "N can see N", "self", "creature" ],
[ "N is within radius X of N", "creature", "30'", "self" ],
[ "N can see N", "creature", "self" ],
[ "N fails dc X ABILITY save by at least X", "creature", "(8,PROF,+)", "constitution", 0 ]
],
"effects": [{
"target": "creature",
"effect": [ "set N = N", "creature.BLINDED", 1 ],
"duration": "Until lesser restoration is cast"
}]
}
]
}
|