implement [PIP] Recon Craft Theta

This commit is contained in:
Susucre 2024-05-02 11:05:40 +02:00
parent ab69e05115
commit bada7d054a
3 changed files with 127 additions and 0 deletions

View file

@ -0,0 +1,97 @@
package mage.cards.r;
import mage.MageInt;
import mage.abilities.Ability;
import mage.abilities.common.AttacksTriggeredAbility;
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
import mage.abilities.effects.OneShotEffect;
import mage.abilities.effects.common.CreateTokenEffect;
import mage.abilities.effects.common.counter.AddCountersTargetEffect;
import mage.abilities.effects.common.counter.ProliferateEffect;
import mage.abilities.keyword.CrewAbility;
import mage.abilities.keyword.FlyingAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.Outcome;
import mage.constants.SubType;
import mage.counters.CounterType;
import mage.game.Game;
import mage.game.permanent.Permanent;
import mage.game.permanent.token.Alien00Token;
import mage.target.targetpointer.FixedTargets;
import java.util.List;
import java.util.Objects;
import java.util.UUID;
import java.util.stream.Collectors;
/**
* @author Susucr
*/
public final class ReconCraftTheta extends CardImpl {
public ReconCraftTheta(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{4}");
this.subtype.add(SubType.VEHICLE);
this.power = new MageInt(4);
this.toughness = new MageInt(4);
// Flying
this.addAbility(FlyingAbility.getInstance());
// When Recon Craft Theta enters the battlefield, create a 0/0 blue Alien creature token. Put a +1/+1 counter on it.
this.addAbility(new EntersBattlefieldTriggeredAbility(new ReconCraftThetaEffect()));
// Whenever Recon Craft Theta attacks, proliferate.
this.addAbility(new AttacksTriggeredAbility(new ProliferateEffect()));
// Crew 2
this.addAbility(new CrewAbility(2));
}
private ReconCraftTheta(final ReconCraftTheta card) {
super(card);
}
@Override
public ReconCraftTheta copy() {
return new ReconCraftTheta(this);
}
}
class ReconCraftThetaEffect extends OneShotEffect {
ReconCraftThetaEffect() {
super(Outcome.PutCreatureInPlay);
staticText = "create a 0/0 blue Alien creature token. Put a +1/+1 counter on it.";
}
private ReconCraftThetaEffect(final ReconCraftThetaEffect effect) {
super(effect);
}
@Override
public ReconCraftThetaEffect copy() {
return new ReconCraftThetaEffect(this);
}
@Override
public boolean apply(Game game, Ability source) {
CreateTokenEffect tokenEffect = new CreateTokenEffect(new Alien00Token());
if (!tokenEffect.apply(game, source)) {
return false;
}
List<Permanent> tokens = tokenEffect
.getLastAddedTokenIds()
.stream()
.map(game::getPermanent)
.filter(Objects::nonNull)
.collect(Collectors.toList());
new AddCountersTargetEffect(CounterType.P1P1.createInstance())
.setTargetPointer(new FixedTargets(tokens, game))
.apply(game, source);
return true;
}
}

View file

@ -258,6 +258,7 @@ public final class Fallout extends ExpansionSet {
cards.add(new SetCardInfo("Raul, Trouble Shooter", 115, Rarity.UNCOMMON, mage.cards.r.RaulTroubleShooter.class));
cards.add(new SetCardInfo("Ravages of War", 354, Rarity.MYTHIC, mage.cards.r.RavagesOfWar.class));
cards.add(new SetCardInfo("Razortide Bridge", 281, Rarity.COMMON, mage.cards.r.RazortideBridge.class));
cards.add(new SetCardInfo("Recon Craft Theta", 141, Rarity.RARE, mage.cards.r.ReconCraftTheta.class));
cards.add(new SetCardInfo("Red Death, Shipwrecker", 116, Rarity.RARE, mage.cards.r.RedDeathShipwrecker.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Red Death, Shipwrecker", 426, Rarity.RARE, mage.cards.r.RedDeathShipwrecker.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Red Death, Shipwrecker", 644, Rarity.RARE, mage.cards.r.RedDeathShipwrecker.class, NON_FULL_USE_VARIOUS));

View file

@ -0,0 +1,29 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author Susucr
*/
public final class Alien00Token extends TokenImpl {
public Alien00Token() {
super("Alien Token", "0/0 blue Alien creature token");
cardType.add(CardType.CREATURE);
color.setBlue(true);
subtype.add(SubType.ALIEN);
power = new MageInt(0);
toughness = new MageInt(0);
}
private Alien00Token(final Alien00Token token) {
super(token);
}
@Override
public Alien00Token copy() {
return new Alien00Token(this);
}
}