mirror of
https://github.com/correl/mage.git
synced 2025-01-13 03:00:10 +00:00
[NEO] Implemented Go-Shintai of Shared Purpose
This commit is contained in:
parent
4d0f53da67
commit
5f00ff6868
2 changed files with 63 additions and 0 deletions
62
Mage.Sets/src/mage/cards/g/GoShintaiOfSharedPurpose.java
Normal file
62
Mage.Sets/src/mage/cards/g/GoShintaiOfSharedPurpose.java
Normal file
|
@ -0,0 +1,62 @@
|
|||
package mage.cards.g;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.BeginningOfEndStepTriggeredAbility;
|
||||
import mage.abilities.costs.mana.GenericManaCost;
|
||||
import mage.abilities.dynamicvalue.DynamicValue;
|
||||
import mage.abilities.dynamicvalue.common.PermanentsOnBattlefieldCount;
|
||||
import mage.abilities.effects.common.CreateTokenEffect;
|
||||
import mage.abilities.effects.common.DoIfCostPaid;
|
||||
import mage.abilities.hint.Hint;
|
||||
import mage.abilities.hint.ValueHint;
|
||||
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.common.FilterControlledPermanent;
|
||||
import mage.game.permanent.token.SpiritToken;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class GoShintaiOfSharedPurpose extends CardImpl {
|
||||
|
||||
private static final DynamicValue xValue = new PermanentsOnBattlefieldCount(
|
||||
new FilterControlledPermanent(SubType.SHRINE)
|
||||
);
|
||||
private static final Hint hint = new ValueHint("Shrines you control", xValue);
|
||||
|
||||
public GoShintaiOfSharedPurpose(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT, CardType.CREATURE}, "{3}{W}");
|
||||
|
||||
this.addSuperType(SuperType.LEGENDARY);
|
||||
this.subtype.add(SubType.SHRINE);
|
||||
this.power = new MageInt(1);
|
||||
this.toughness = new MageInt(3);
|
||||
|
||||
// Vigilance
|
||||
this.addAbility(VigilanceAbility.getInstance());
|
||||
|
||||
// At the beginning of your end step, you may pay {1}. If you do, create a 1/1 colorless Spirit creature token for each Shrine you control.
|
||||
this.addAbility(new BeginningOfEndStepTriggeredAbility(
|
||||
new DoIfCostPaid(
|
||||
new CreateTokenEffect(new SpiritToken(), xValue),
|
||||
new GenericManaCost(1)
|
||||
), TargetController.YOU, false
|
||||
).addHint(hint));
|
||||
}
|
||||
|
||||
private GoShintaiOfSharedPurpose(final GoShintaiOfSharedPurpose card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public GoShintaiOfSharedPurpose copy() {
|
||||
return new GoShintaiOfSharedPurpose(this);
|
||||
}
|
||||
}
|
|
@ -36,6 +36,7 @@ public final class KamigawaNeonDynasty extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Enthusiastic Mechanaut", 218, Rarity.UNCOMMON, mage.cards.e.EnthusiasticMechanaut.class));
|
||||
cards.add(new SetCardInfo("Era of Enlightenment", 11, Rarity.COMMON, mage.cards.e.EraOfEnlightenment.class));
|
||||
cards.add(new SetCardInfo("Forest", 301, Rarity.LAND, mage.cards.basiclands.Forest.class, FULL_ART_BFZ_VARIOUS));
|
||||
cards.add(new SetCardInfo("Go-Shintai of Shared Purpose", 14, Rarity.UNCOMMON, mage.cards.g.GoShintaiOfSharedPurpose.class));
|
||||
cards.add(new SetCardInfo("Goro-Goro, Disciple of Ryusei", 145, Rarity.RARE, mage.cards.g.GoroGoroDiscipleOfRyusei.class));
|
||||
cards.add(new SetCardInfo("Greater Tanuki", 189, Rarity.COMMON, mage.cards.g.GreaterTanuki.class));
|
||||
cards.add(new SetCardInfo("Hand of Enlightenment", 11, Rarity.COMMON, mage.cards.h.HandOfEnlightenment.class));
|
||||
|
|
Loading…
Reference in a new issue