Closed Peach774 closed 5 months ago
Nothing i can do about it really
@Peach774 You can make a work-around to this issue by putting rules elements in Phase Bolt. They'll cancel any automated or conditional lesser/standard cover, and if you've given the creature conditional greater cover, that'll get downgraded to standard cover.
{"key":"PF2ePerception","type":"cover","selector":"cancel","targets":["lesser","standard"],"affects":"other","predicate":["item:slug:phase-bolt"]}
{"key":"PF2ePerception","type":"cover","selector":"reduce","targets":"greater","affects":"other","predicate":["item:slug:phase-bolt"]}
Phase Bolt goes through 2 AC of circumstance bonuses (such as that from standard or lesser cover).
In order to implement this in game, I have created an effect that looks like this:
{"key":"AdjustModifier","selector":"ac","mode":"subtract","value":2,"predicate":["bonus:type:circumstance"]}
and then created an ephemeral effect that references the effect above:{"key":"EphemeralEffect","uuid":"UUID-GOESHERE","selectors":["spell-attack-roll"],"predicate":["item:slug:phase-bolt"]}
which I have placed on a feat on the character casting phase bolt.When giving an enemy the standard or lesser cover effect using the system buff, this functions correctly and removes the circumstance bonus added by said cover:
When doing this with the perception menu and setting the enemy to have standard cover versus the player with the ephemeral effect, this does not work:
I believe this is either caused by perception adding cover to the enemy's AC after the stage where it would be reduced by rule elements or because perception is not correctly setting cover as a circumstance bonus.
I hope I did enough explaining to make this clear and hopefully easy to fix. Thank you <3