[TDC] Implement Zurgo Stormrender

This commit is contained in:
jmlundeen 2025-04-14 07:25:46 -05:00
parent b7addc8afc
commit 1fc5c4d3eb
2 changed files with 85 additions and 0 deletions

View file

@ -0,0 +1,84 @@
package mage.cards.z;
import java.util.Objects;
import java.util.UUID;
import mage.MageInt;
import mage.abilities.Ability;
import mage.abilities.common.LeavesBattlefieldAllTriggeredAbility;
import mage.abilities.condition.Condition;
import mage.abilities.decorator.ConditionalOneShotEffect;
import mage.abilities.effects.Effect;
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
import mage.abilities.effects.common.LoseLifeOpponentsEffect;
import mage.constants.*;
import mage.abilities.keyword.MobilizeAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.filter.common.FilterControlledCreaturePermanent;
import mage.filter.predicate.permanent.TokenPredicate;
import mage.game.Game;
import mage.game.permanent.Permanent;
import mage.target.targetpointer.TargetPointer;
/**
*
* @author Jmlundeen
*/
public final class ZurgoStormrender extends CardImpl {
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("a creature token you control");
static {
filter.add(TokenPredicate.TRUE);
}
public ZurgoStormrender(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{R}{W}{B}");
this.supertype.add(SuperType.LEGENDARY);
this.subtype.add(SubType.ORC);
this.subtype.add(SubType.WARRIOR);
this.power = new MageInt(3);
this.toughness = new MageInt(3);
// Mobilize 1
this.addAbility(new MobilizeAbility(1));
// Whenever a creature token you control leaves the battlefield, draw a card if it was attacking. Otherwise, each opponent loses 1 life.
ConditionalOneShotEffect effect = new ConditionalOneShotEffect(new DrawCardSourceControllerEffect(1), TargetWasAttackingCondition.instance);
effect.addOtherwiseEffect(new LoseLifeOpponentsEffect(1));
effect.setText("draw a card if it was attacking. Otherwise, each opponent loses 1 life.");
this.addAbility(new LeavesBattlefieldAllTriggeredAbility(Zone.BATTLEFIELD, effect, filter, false, SetTargetPointer.PERMANENT));
}
private ZurgoStormrender(final ZurgoStormrender card) {
super(card);
}
@Override
public ZurgoStormrender copy() {
return new ZurgoStormrender(this);
}
}
enum TargetWasAttackingCondition implements Condition {
instance;
@Override
public boolean apply(Game game, Ability source) {
TargetPointer target = source.getEffects().stream().map(Effect::getTargetPointer).filter(Objects::nonNull).findFirst().orElse(null);
if (target == null) {
return false;
}
Permanent creature = game.getPermanentOrLKIBattlefield(target.getFirst(game, source));
if (creature == null) {
return false;
}
return creature.isAttacking();
}
@Override
public String toString() {
return "if it was attacking";
}
}

View file

@ -401,5 +401,6 @@ public final class TarkirDragonstormCommander extends ExpansionSet {
cards.add(new SetCardInfo("Young Pyromancer", 95, Rarity.UNCOMMON, mage.cards.y.YoungPyromancer.class));
cards.add(new SetCardInfo("Zenith Festival", 41, Rarity.RARE, mage.cards.z.ZenithFestival.class));
cards.add(new SetCardInfo("Zetalpa, Primal Dawn", 142, Rarity.RARE, mage.cards.z.ZetalpaPrimalDawn.class));
cards.add(new SetCardInfo("Zurgo Stormrender", 10, Rarity.MYTHIC, mage.cards.z.ZurgoStormrender.class));
}
}