mirror of
https://github.com/correl/mage.git
synced 2025-02-18 12:54:22 +00:00
Fix Explosive Welcome damage
This commit is contained in:
parent
245f210f19
commit
f8ac384d56
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ public final class ExplosiveWelcome extends CardImpl {
|
|||
// Explosive Welcome deals 5 damage to any target and 3 damage to any other target. Add {R}{R}{R}.
|
||||
this.getSpellAbility().addEffect(new DamageTargetEffect(StaticValue.get(5), true, "", true));
|
||||
this.getSpellAbility().addEffect(
|
||||
new DamageTargetEffect(StaticValue.get(5), true, "", true)
|
||||
new DamageTargetEffect(StaticValue.get(3), true, "", true)
|
||||
.setTargetPointer(new SecondTargetPointer())
|
||||
.setText("and 3 damage to any other target.")
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue