[AFR] Fixed wrong cost increase on Paladin Class (fixes #8244)

This commit is contained in:
Daniel Bomar 2021-09-11 16:00:58 -05:00
parent 70a9f44bda
commit 3332d41e2a
No known key found for this signature in database
GPG key ID: C86C8658F4023918

View file

@ -48,7 +48,7 @@ public final class PaladinClass extends CardImpl {
// Spells your opponents cast during your turn cost {1} more to cast.
this.addAbility(new SimpleStaticAbility(new ConditionalCostModificationEffect(
new SpellsCostIncreasingAllEffect(
2, StaticFilters.FILTER_CARD, TargetController.OPPONENT
1, StaticFilters.FILTER_CARD, TargetController.OPPONENT
), MyTurnCondition.instance, "spells your opponents cast during your turn cost {1} more to cast"
)));