pf2e
pf2e copied to clipboard
ItemAlteration missing certain target options like distance
This is the same problem as #16698 where if you try to predicate an item alteration off of distance from the target it doesn't work. Trying to automate some stuff in regards to Monastic Archer Stance where monk feats/abilities are applied to ranged attacks made against a target within half of the first range increment.
{
"itemId": "{item|_id}",
"key": "ItemAlteration",
"mode": "add",
"predicate": [
{
"lte": [
"target:distance",
50
]
}
],
"property": "traits",
"value": "magical"
}