1
0
Fork 0
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:
PurpleCrowbar 2022-10-20 18:41:08 +01:00
parent 245f210f19
commit f8ac384d56

View file

@ -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.")
);