Fix Flameshot and Ignite Disorder displayed rules text (#8333)

This commit is contained in:
Alex W. Jackson 2021-09-28 12:23:39 -04:00 committed by GitHub
parent 7ba3a8f637
commit bc86c04dcd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,7 @@ public final class Flameshot extends CardImpl {
this.addAbility(new AlternativeCostSourceAbility(new DiscardTargetCost(new TargetCardInHand(filter))));
// Flameshot deals 3 damage divided as you choose among one, two, or three target creatures.
this.getSpellAbility().addEffect(new DamageMultiEffect(3));
this.getSpellAbility().addEffect(new DamageMultiEffect(3).setText("{this} deals 3 damage divided as you choose among one, two, or three target creatures"));
this.getSpellAbility().addTarget(new TargetCreaturePermanentAmount(3));
}

View file

@ -31,7 +31,7 @@ public final class IgniteDisorder extends CardImpl {
// Ignite Disorder deals 3 damage divided as you choose among one, two, or three target white and/or blue creatures.
this.getSpellAbility().addEffect(new DamageMultiEffect(3));
this.getSpellAbility().addEffect(new DamageMultiEffect(3).setText("{this} deals 3 damage divided as you choose among one, two, or three target white and/or blue creatures"));
this.getSpellAbility().addTarget(new TargetCreaturePermanentAmount(3, filter));
}