[FIN] Implement Lindblum, Industrial Regency

This commit is contained in:
theelk801 2025-05-19 22:34:54 -04:00
parent 4c4d0194b2
commit a7ad60902a
2 changed files with 46 additions and 0 deletions

View file

@ -0,0 +1,44 @@
package mage.cards.l;
import mage.abilities.common.EntersBattlefieldTappedAbility;
import mage.abilities.effects.common.CreateTokenEffect;
import mage.abilities.mana.RedManaAbility;
import mage.cards.AdventureCard;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.game.permanent.token.BlackWizardToken;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class LindblumIndustrialRegency extends AdventureCard {
public LindblumIndustrialRegency(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, new CardType[]{CardType.INSTANT}, "", "Mage Siege", "{2}{R}");
this.subtype.add(SubType.TOWN);
// This land enters tapped.
this.addAbility(new EntersBattlefieldTappedAbility());
// {T}: Add {R}.
this.addAbility(new RedManaAbility());
// Mage Siege
// Create a 0/1 black Wizard creature token with "Whenever you cast a noncreature spell, this token deals 1 damage to each opponent."
this.getSpellCard().getSpellAbility().addEffect(new CreateTokenEffect(new BlackWizardToken()));
this.finalizeAdventure();
}
private LindblumIndustrialRegency(final LindblumIndustrialRegency card) {
super(card);
}
@Override
public LindblumIndustrialRegency copy() {
return new LindblumIndustrialRegency(this);
}
}

View file

@ -181,6 +181,8 @@ public final class FinalFantasy extends ExpansionSet {
cards.add(new SetCardInfo("Laughing Mad", 585, Rarity.COMMON, mage.cards.l.LaughingMad.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Lightning, Security Sergeant", 462, Rarity.RARE, mage.cards.l.LightningSecuritySergeant.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Lightning, Security Sergeant", 560, Rarity.RARE, mage.cards.l.LightningSecuritySergeant.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Lindblum, Industrial Regency", 285, Rarity.RARE, mage.cards.l.LindblumIndustrialRegency.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Lindblum, Industrial Regency", 312, Rarity.RARE, mage.cards.l.LindblumIndustrialRegency.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Machinist's Arsenal", 23, Rarity.RARE, mage.cards.m.MachinistsArsenal.class));
cards.add(new SetCardInfo("Magitek Scythe", 562, Rarity.RARE, mage.cards.m.MagitekScythe.class));
cards.add(new SetCardInfo("Malboro", 106, Rarity.COMMON, mage.cards.m.Malboro.class));