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:
parent
7c1e823deb
commit
b5b778c9af
1 changed files with 2 additions and 2 deletions
|
@ -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.")
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue