[J22] Implement Lita, Mechanical Engineer

This commit is contained in:
Evan Kranzler 2022-11-22 10:08:43 -05:00
parent 3c24a3d221
commit d3bddc813a
3 changed files with 108 additions and 0 deletions

View file

@ -0,0 +1,71 @@
package mage.cards.l;
import mage.MageInt;
import mage.abilities.Ability;
import mage.abilities.common.BeginningOfEndStepTriggeredAbility;
import mage.abilities.common.SimpleActivatedAbility;
import mage.abilities.costs.common.TapSourceCost;
import mage.abilities.costs.mana.ManaCostsImpl;
import mage.abilities.effects.common.CreateTokenEffect;
import mage.abilities.effects.common.UntapAllEffect;
import mage.abilities.keyword.VigilanceAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.constants.SuperType;
import mage.constants.TargetController;
import mage.filter.FilterPermanent;
import mage.filter.common.FilterArtifactCreaturePermanent;
import mage.filter.predicate.mageobject.AnotherPredicate;
import mage.game.permanent.token.ZeppelinToken;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class LitaMechanicalEngineer extends CardImpl {
private static final FilterPermanent filter = new FilterArtifactCreaturePermanent();
static {
filter.add(TargetController.YOU.getControllerPredicate());
filter.add(AnotherPredicate.instance);
}
public LitaMechanicalEngineer(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{2}{W}");
this.addSuperType(SuperType.LEGENDARY);
this.subtype.add(SubType.ARTIFICER);
this.power = new MageInt(3);
this.toughness = new MageInt(3);
// Vigilance
this.addAbility(VigilanceAbility.getInstance());
// At the beginning of your end step, untap each other artifact creature you control.
this.addAbility(new BeginningOfEndStepTriggeredAbility(
new UntapAllEffect(filter)
.setText("untap each other artifact creature you control"),
TargetController.YOU, false
));
// {3}{W}, {T}: Create a 5/5 colorless Vehicle artifact token named Zeppelin with flying and crew 3.
Ability ability = new SimpleActivatedAbility(
new CreateTokenEffect(new ZeppelinToken()), new ManaCostsImpl<>("{3}{W}")
);
ability.addCost(new TapSourceCost());
this.addAbility(ability);
}
private LitaMechanicalEngineer(final LitaMechanicalEngineer card) {
super(card);
}
@Override
public LitaMechanicalEngineer copy() {
return new LitaMechanicalEngineer(this);
}
}

View file

@ -50,6 +50,7 @@ public final class Jumpstart2022 extends ExpansionSet {
cards.add(new SetCardInfo("King of the Pride", 57, Rarity.UNCOMMON, mage.cards.k.KingOfThePride.class));
cards.add(new SetCardInfo("Kothophed, Soul Hoarder", 431, Rarity.RARE, mage.cards.k.KothophedSoulHoarder.class));
cards.add(new SetCardInfo("Leonin Warleader", 208, Rarity.RARE, mage.cards.l.LeoninWarleader.class));
cards.add(new SetCardInfo("Lita, Mechanical Engineer", 6, Rarity.MYTHIC, mage.cards.l.LitaMechanicalEngineer.class));
cards.add(new SetCardInfo("Magnifying Glass", 95, Rarity.UNCOMMON, mage.cards.m.MagnifyingGlass.class));
cards.add(new SetCardInfo("Merfolk Pupil", 15, Rarity.COMMON, mage.cards.m.MerfolkPupil.class));
cards.add(new SetCardInfo("Mirror Image", 62, Rarity.UNCOMMON, mage.cards.m.MirrorImage.class));

View file

@ -0,0 +1,36 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.CrewAbility;
import mage.abilities.keyword.FlyingAbility;
import mage.constants.CardType;
import mage.constants.SubType;
import java.util.Arrays;
/**
* @author TheElk801
*/
public final class ZeppelinToken extends TokenImpl {
public ZeppelinToken() {
super("Zeppelin", "5/5 colorless Vehicle artifact token named Zeppelin with flying and crew 3");
cardType.add(CardType.ARTIFACT);
subtype.add(SubType.VEHICLE);
power = new MageInt(5);
toughness = new MageInt(5);
this.addAbility(FlyingAbility.getInstance());
this.addAbility(new CrewAbility(3));
availableImageSetCodes = Arrays.asList("J22");
}
public ZeppelinToken(final ZeppelinToken token) {
super(token);
}
public ZeppelinToken copy() {
return new ZeppelinToken(this);
}
}