[IKO] Blitz of the Thunder-Raptor - fixed text;

This commit is contained in:
Oleg Agafonov 2020-04-19 21:09:08 +04:00
parent 36cd0dd91e
commit 037d9894dd

View file

@ -27,9 +27,9 @@ public final class BlitzOfTheThunderRaptor extends CardImpl {
// Blitz of the Thunder-Raptor deals damage to target creature or planeswalker equal to the number of instant and sorcery cards in your graveyard. If that creature or planeswalker would die this turn, exile it instead.
this.getSpellAbility().addEffect(new DamageTargetEffect(xValue)
.setText("{this} deals damage to target creature or planeswalker " +
"equal to the number of instant and sorcery cards in your graveyard."));
"equal to the number of instant and sorcery cards in your graveyard"));
this.getSpellAbility().addEffect(new ExileTargetIfDiesEffect()
.setText("If that creature or planeswalker would die this turn, exile it instead."));
.setText("If that creature or planeswalker would die this turn, exile it instead"));
this.getSpellAbility().addTarget(new TargetCreatureOrPlaneswalker());
}