TikaelSol / PF2e-Kitsune-of-Golarion

Foundry module for the Kitsune of Golarion books by everybody Games
0 stars 1 forks source link

Nine Aura's stance gives status bonuses too early #4

Open StarFyter opened 1 year ago

StarFyter commented 1 year ago

A level 4 character in the stance is getting the status bonus to attacks, a level 8 the +2 to both AC and ranged attacks, and a level 10 gets +3.

As written the stance should give the bonuses to attacks at level 7, +2 to AC and attacks at level 15, and +3 at level 19.

The values for the "start": and "end": in effects.db for the FlatModifier need to refer to character level, not spell level

ellenuser commented 10 months ago

It should work just fine if the brackets refer to the level the effect inherits from the spell, like how Heroism works.

example fix for the AC modifier (test it by putting the effect in the spell, have a character cast it, then drag the effect onto the character, then repeat at the level thresholds):

{ "key": "FlatModifier", "selector": "ac", "type": "status", "value": { "brackets": [ { "start": 1, "end": 7, "value": 1 }, { "start": 8, "end": 9, "value": 2 }, { "start": 10, "value": 3 } ], "field": "item|system.level.value" } }