[STX] Fix Flamescroll Celebrant. Closes #9305 (#9315)

This commit is contained in:
Robert Barrett 2022-07-24 18:59:02 -04:00 committed by GitHub
parent 1f6170570b
commit 88b0e1f359
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -74,7 +74,7 @@ public final class FlamescrollCelebrant extends ModalDoubleFacesCard {
class FlamescrollCelebrantTriggeredAbility extends TriggeredAbilityImpl {
FlamescrollCelebrantTriggeredAbility() {
super(Zone.BATTLEFIELD, new DamageTargetEffect(StaticValue.get(2), true, "that player", true));
super(Zone.BATTLEFIELD, new DamageTargetEffect(StaticValue.get(1), true, "that player", true));
}
private FlamescrollCelebrantTriggeredAbility(final FlamescrollCelebrantTriggeredAbility ability) {
@ -114,7 +114,7 @@ class FlamescrollCelebrantTriggeredAbility extends TriggeredAbilityImpl {
class RevelInSilenceEffect extends ContinuousRuleModifyingEffectImpl {
RevelInSilenceEffect() {
super(Duration.WhileOnBattlefield, Outcome.Benefit);
super(Duration.EndOfTurn, Outcome.Benefit);
staticText = "Your opponents can't cast spells or activate planeswalkers' loyalty abilities this turn.";
}