[FIN] Implement Choco Comet

This commit is contained in:
theelk801 2025-05-27 17:05:08 -04:00
parent b6ff837b20
commit ecec7e4476
4 changed files with 47 additions and 8 deletions

View file

@ -0,0 +1,38 @@
package mage.cards.c;
import mage.abilities.dynamicvalue.common.GetXValue;
import mage.abilities.effects.common.CreateTokenEffect;
import mage.abilities.effects.common.DamageTargetEffect;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.game.permanent.token.ChocoboToken;
import mage.target.common.TargetAnyTarget;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class ChocoComet extends CardImpl {
public ChocoComet(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{X}{R}{R}");
// Choco-Comet deals X damage to any target.
this.getSpellAbility().addEffect(new DamageTargetEffect(GetXValue.instance));
this.getSpellAbility().addTarget(new TargetAnyTarget());
// Create a 2/2 green Bird creature token with "Whenever a land you control enters, this token gets +1/+0 until end of turn."
this.getSpellAbility().addEffect(new CreateTokenEffect(new ChocoboToken()).concatBy("<br>"));
}
private ChocoComet(final ChocoComet card) {
super(card);
}
@Override
public ChocoComet copy() {
return new ChocoComet(this);
}
}

View file

@ -7,7 +7,7 @@ import mage.abilities.keyword.FlashbackAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.game.permanent.token.BirdLandfallToken;
import mage.game.permanent.token.ChocoboToken;
/**
*
@ -19,7 +19,7 @@ public final class GysahlGreens extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{1}{G}");
// Create a 2/2 green Bird creature token with "Whenever a land you control enters, this token gets +1/+0 until end of turn."
this.getSpellAbility().addEffect(new CreateTokenEffect(new BirdLandfallToken()));
this.getSpellAbility().addEffect(new CreateTokenEffect(new ChocoboToken()));
// Flashback {6}{G}
this.addAbility(new FlashbackAbility(this, new ManaCostsImpl<>("{6}{G}")));

View file

@ -99,6 +99,7 @@ public final class FinalFantasy extends ExpansionSet {
cards.add(new SetCardInfo("Chaos, the Endless", 486, Rarity.UNCOMMON, mage.cards.c.ChaosTheEndless.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Choco, Seeker of Paradise", 215, Rarity.RARE, mage.cards.c.ChocoSeekerOfParadise.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Choco, Seeker of Paradise", 479, Rarity.RARE, mage.cards.c.ChocoSeekerOfParadise.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Choco-Comet", 132, Rarity.UNCOMMON, mage.cards.c.ChocoComet.class));
cards.add(new SetCardInfo("Cid, Timeless Artificer", 216, Rarity.UNCOMMON, mage.cards.c.CidTimelessArtificer.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Cid, Timeless Artificer", 407, Rarity.UNCOMMON, mage.cards.c.CidTimelessArtificer.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Cid, Timeless Artificer", 408, Rarity.UNCOMMON, mage.cards.c.CidTimelessArtificer.class, NON_FULL_USE_VARIOUS));

View file

@ -8,11 +8,11 @@ import mage.constants.Duration;
import mage.constants.SubType;
/**
* @author LoneFox
* @author TheElk801
*/
public final class BirdLandfallToken extends TokenImpl {
public final class ChocoboToken extends TokenImpl {
public BirdLandfallToken() {
public ChocoboToken() {
super("Bird Token", "2/2 green Bird creature token with \"Whenever a land you control enters, this token gets +1/+0 until end of turn.\"");
cardType.add(CardType.CREATURE);
color.setGreen(true);
@ -23,12 +23,12 @@ public final class BirdLandfallToken extends TokenImpl {
addAbility(new LandfallAbility(new BoostSourceEffect(1, 0, Duration.EndOfTurn)).setAbilityWord(null));
}
private BirdLandfallToken(final BirdLandfallToken token) {
private ChocoboToken(final ChocoboToken token) {
super(token);
}
@Override
public BirdLandfallToken copy() {
return new BirdLandfallToken(this);
public ChocoboToken copy() {
return new ChocoboToken(this);
}
}