Implemented Tahngarth, First Mate

This commit is contained in:
Evan Kranzler 2019-08-26 18:30:13 -04:00
parent 6570c63fb9
commit fb6a7886b0
2 changed files with 158 additions and 0 deletions

View file

@ -0,0 +1,157 @@
package mage.cards.t;
import mage.MageInt;
import mage.abilities.Ability;
import mage.abilities.TriggeredAbilityImpl;
import mage.abilities.common.SimpleStaticAbility;
import mage.abilities.effects.ContinuousEffect;
import mage.abilities.effects.OneShotEffect;
import mage.abilities.effects.common.combat.CantBeBlockedByMoreThanOneSourceEffect;
import mage.abilities.effects.common.continuous.GainControlTargetEffect;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.*;
import mage.filter.common.FilterPlayerOrPlaneswalker;
import mage.filter.predicate.Predicate;
import mage.game.Game;
import mage.game.events.GameEvent;
import mage.game.permanent.Permanent;
import mage.players.Player;
import mage.target.common.TargetPlayerOrPlaneswalker;
import mage.target.targetpointer.FixedTarget;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class TahngarthFirstMate extends CardImpl {
public TahngarthFirstMate(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{R}{G}");
this.addSuperType(SuperType.LEGENDARY);
this.subtype.add(SubType.MINOTAUR);
this.subtype.add(SubType.WARRIOR);
this.power = new MageInt(5);
this.toughness = new MageInt(5);
// Tahngarth, First Mate can't be blocked by more than one creature.
this.addAbility(new SimpleStaticAbility(new CantBeBlockedByMoreThanOneSourceEffect()));
// Whenever an opponent attacks with one or more creatures, if Tahngarth is tapped, you may have that opponent gain control of Tahngarth until end of combat. If you do, choose a player or planeswalker that opponent is attacking. Tahngarth is attacking that player or planeswalker.
this.addAbility(new TahngarthFirstMateTriggeredAbility());
}
private TahngarthFirstMate(final TahngarthFirstMate card) {
super(card);
}
@Override
public TahngarthFirstMate copy() {
return new TahngarthFirstMate(this);
}
}
class TahngarthFirstMateTriggeredAbility extends TriggeredAbilityImpl {
TahngarthFirstMateTriggeredAbility() {
super(Zone.BATTLEFIELD, new TahngarthFirstMateEffect(), true);
}
private TahngarthFirstMateTriggeredAbility(final TahngarthFirstMateTriggeredAbility ability) {
super(ability);
}
@Override
public TahngarthFirstMateTriggeredAbility copy() {
return new TahngarthFirstMateTriggeredAbility(this);
}
@Override
public boolean checkEventType(GameEvent event, Game game) {
return event.getType() == GameEvent.EventType.DECLARED_ATTACKERS;
}
@Override
public boolean checkTrigger(GameEvent event, Game game) {
return game.getOpponents(getControllerId()).contains(game.getActivePlayerId())
&& !game.getCombat().getAttackers().isEmpty();
}
@Override
public boolean checkInterveningIfClause(Game game) {
Permanent permanent = game.getPermanent(getSourceId());
return permanent != null && permanent.isTapped();
}
@Override
public String getRule() {
return "Whenever an opponent attacks with one or more creatures, " +
"if {this} is tapped, you may have that opponent gain control of {this} until end of combat. " +
"If you do, choose a player or planeswalker that opponent is attacking. " +
"{this} is attacking that player or planeswalker.";
}
}
class TahngarthFirstMateEffect extends OneShotEffect {
private static final FilterPlayerOrPlaneswalker filter
= new FilterPlayerOrPlaneswalker("player or planeswalker active player is attacking");
static {
filter.getPlayerFilter().add(TahngarthFirstMatePlayerPredicate.instance);
filter.getPermanentFilter().add(TahngarthFirstMatePermanentPredicate.instance);
}
TahngarthFirstMateEffect() {
super(Outcome.Benefit);
}
private TahngarthFirstMateEffect(final TahngarthFirstMateEffect effect) {
super(effect);
}
@Override
public TahngarthFirstMateEffect copy() {
return new TahngarthFirstMateEffect(this);
}
@Override
public boolean apply(Game game, Ability source) {
Player controller = game.getPlayer(source.getControllerId());
Player player = game.getPlayer(game.getActivePlayerId());
Permanent permanent = game.getPermanent(source.getSourceId());
if (controller == null || player == null || permanent == null) {
return false;
}
TargetPlayerOrPlaneswalker target = new TargetPlayerOrPlaneswalker(filter);
target.setNotTarget(true);
if (!controller.choose(outcome, target, source.getSourceId(), game)) {
return false;
}
ContinuousEffect effect = new GainControlTargetEffect(Duration.EndOfCombat, player.getId());
effect.setTargetPointer(new FixedTarget(permanent, game));
game.addEffect(effect, source);
game.applyEffects();
return game.getCombat().addAttackerToCombat(permanent.getId(), target.getFirstTarget(), game);
}
}
enum TahngarthFirstMatePlayerPredicate implements Predicate<Player> {
instance;
@Override
public boolean apply(Player input, Game game) {
return game.getCombat().getDefenders().contains(input.getId());
}
}
enum TahngarthFirstMatePermanentPredicate implements Predicate<Permanent> {
instance;
@Override
public boolean apply(Permanent input, Game game) {
return game.getCombat().getDefenders().contains(input.getId());
}
}

View file

@ -266,6 +266,7 @@ public final class Commander2019Edition extends ExpansionSet {
cards.add(new SetCardInfo("Sunken Hollow", 278, Rarity.RARE, mage.cards.s.SunkenHollow.class));
cards.add(new SetCardInfo("Swamp", 294, Rarity.LAND, mage.cards.basiclands.Swamp.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Swiftwater Cliffs", 279, Rarity.COMMON, mage.cards.s.SwiftwaterCliffs.class));
cards.add(new SetCardInfo("Tahngarth, First Mate", 50, Rarity.RARE, mage.cards.t.TahngarthFirstMate.class));
cards.add(new SetCardInfo("Talrand, Sky Summoner", 97, Rarity.RARE, mage.cards.t.TalrandSkySummoner.class));
cards.add(new SetCardInfo("Tectonic Hellion", 29, Rarity.RARE, mage.cards.t.TectonicHellion.class));
cards.add(new SetCardInfo("Temple of the False God", 280, Rarity.UNCOMMON, mage.cards.t.TempleOfTheFalseGod.class));