1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-02-18 12:54:22 +00:00

[STX] Fix Explosive Welcome

This commit is contained in:
Alex W. Jackson 2022-10-20 13:11:14 -04:00
parent 7c1e823deb
commit b5b778c9af

View file

@ -31,9 +31,9 @@ public final class ExplosiveWelcome extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{7}{R}");
// Explosive Welcome deals 5 damage to any target and 3 damage to any other target. Add {R}{R}{R}.
this.getSpellAbility().addEffect(new DamageTargetEffect(5));
this.getSpellAbility().addEffect(new DamageTargetEffect(5, true, "", true));
this.getSpellAbility().addEffect(
new DamageTargetEffect(3)
new DamageTargetEffect(3, true, "", true)
.setTargetPointer(new SecondTargetPointer())
.setText("and 3 damage to any other target.")
);