pf2e icon indicating copy to clipboard operation
pf2e copied to clipboard

ItemAlteration missing certain target options like distance

Open 7H3LaughingMan opened this issue 4 months ago • 0 comments

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"
}

7H3LaughingMan avatar Oct 28 '24 13:10 7H3LaughingMan