mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
[NEC] Implemented Tanuki Transplanter
This commit is contained in:
parent
f44c572e28
commit
9b77b0edbd
2 changed files with 126 additions and 0 deletions
125
Mage.Sets/src/mage/cards/t/TanukiTransplanter.java
Normal file
125
Mage.Sets/src/mage/cards/t/TanukiTransplanter.java
Normal file
|
@ -0,0 +1,125 @@
|
|||
package mage.cards.t;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.Mana;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.TriggeredAbilityImpl;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.keyword.ReconfigureAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Outcome;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.Zone;
|
||||
import mage.game.Game;
|
||||
import mage.game.events.GameEvent;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.players.Player;
|
||||
import mage.target.targetpointer.FixedTarget;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class TanukiTransplanter extends CardImpl {
|
||||
|
||||
public TanukiTransplanter(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{3}{G}");
|
||||
|
||||
this.subtype.add(SubType.EQUIPMENT);
|
||||
this.subtype.add(SubType.DOG);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
// Whenever Tanuki Transplanter or equipped creature attacks, add an amount of {G} equal to its power. Until end of turn, you don't lose this mana as steps and phases end.
|
||||
this.addAbility(new TanukiTransplanterTriggeredAbility());
|
||||
|
||||
// Reconfigure {3}
|
||||
this.addAbility(new ReconfigureAbility("{3}"));
|
||||
}
|
||||
|
||||
private TanukiTransplanter(final TanukiTransplanter card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public TanukiTransplanter copy() {
|
||||
return new TanukiTransplanter(this);
|
||||
}
|
||||
}
|
||||
|
||||
class TanukiTransplanterTriggeredAbility extends TriggeredAbilityImpl {
|
||||
|
||||
TanukiTransplanterTriggeredAbility() {
|
||||
super(Zone.BATTLEFIELD, new TanukiTransplanterEffect());
|
||||
}
|
||||
|
||||
private TanukiTransplanterTriggeredAbility(final TanukiTransplanterTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
@Override
|
||||
public TanukiTransplanterTriggeredAbility copy() {
|
||||
return new TanukiTransplanterTriggeredAbility(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean checkEventType(GameEvent event, Game game) {
|
||||
return event.getType() == GameEvent.EventType.DECLARED_ATTACKERS;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean checkTrigger(GameEvent event, Game game) {
|
||||
UUID attacker;
|
||||
if (!game.getCombat().getAttackers().contains(getSourceId())) {
|
||||
Permanent permanent = getSourcePermanentOrLKI(game);
|
||||
if (permanent != null && game.getCombat().getAttackers().contains(permanent.getAttachedTo())) {
|
||||
attacker = permanent.getAttachedTo();
|
||||
} else {
|
||||
attacker = null;
|
||||
}
|
||||
} else {
|
||||
attacker = getSourceId();
|
||||
}
|
||||
if (attacker == null) {
|
||||
return false;
|
||||
}
|
||||
getEffects().setTargetPointer(new FixedTarget(attacker, game));
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getRule() {
|
||||
return "Whenever {this} or equipped creature attacks, add an amount of {G} equal to its power. " +
|
||||
"Until end of turn, you don't lose this mana as steps and phases end.";
|
||||
}
|
||||
}
|
||||
|
||||
class TanukiTransplanterEffect extends OneShotEffect {
|
||||
|
||||
TanukiTransplanterEffect() {
|
||||
super(Outcome.Benefit);
|
||||
}
|
||||
|
||||
private TanukiTransplanterEffect(final TanukiTransplanterEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public TanukiTransplanterEffect copy() {
|
||||
return new TanukiTransplanterEffect(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Player player = game.getPlayer(source.getControllerId());
|
||||
Permanent permanent = game.getPermanent(getTargetPointer().getFirst(game, source));
|
||||
if (player == null || permanent == null || permanent.getPower().getValue() < 1) {
|
||||
return false;
|
||||
}
|
||||
player.getManaPool().addMana(Mana.GreenMana(permanent.getPower().getValue()), game, source, true);
|
||||
return true;
|
||||
}
|
||||
}
|
|
@ -123,6 +123,7 @@ public final class NeonDynastyCommander extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Swiftfoot Boots", 163, Rarity.UNCOMMON, mage.cards.s.SwiftfootBoots.class));
|
||||
cards.add(new SetCardInfo("Sword of Vengeance", 164, Rarity.RARE, mage.cards.s.SwordOfVengeance.class));
|
||||
cards.add(new SetCardInfo("Swords to Plowshares", 89, Rarity.UNCOMMON, mage.cards.s.SwordsToPlowshares.class));
|
||||
cards.add(new SetCardInfo("Tanuki Transplanter", 30, Rarity.RARE, mage.cards.t.TanukiTransplanter.class));
|
||||
cards.add(new SetCardInfo("Taurean Mauler", 111, Rarity.RARE, mage.cards.t.TaureanMauler.class));
|
||||
cards.add(new SetCardInfo("Temple of Abandon", 179, Rarity.RARE, mage.cards.t.TempleOfAbandon.class));
|
||||
cards.add(new SetCardInfo("Temple of Enlightenment", 180, Rarity.RARE, mage.cards.t.TempleOfEnlightenment.class));
|
||||
|
|
Loading…
Reference in a new issue