From fab08ebf689d672cfbea97a98e8b23a19b9a5cb2 Mon Sep 17 00:00:00 2001 From: theelk801 Date: Wed, 21 Jan 2026 16:23:40 -0500 Subject: [PATCH] [TMT] Implement Agent Bishop, Man in Black --- .../mage/cards/a/AgentBishopManInBlack.java | 45 +++++++++++++++++++ .../mage/sets/TeenageMutantNinjaTurtles.java | 1 + 2 files changed, 46 insertions(+) create mode 100644 Mage.Sets/src/mage/cards/a/AgentBishopManInBlack.java diff --git a/Mage.Sets/src/mage/cards/a/AgentBishopManInBlack.java b/Mage.Sets/src/mage/cards/a/AgentBishopManInBlack.java new file mode 100644 index 00000000000..39f9dd68020 --- /dev/null +++ b/Mage.Sets/src/mage/cards/a/AgentBishopManInBlack.java @@ -0,0 +1,45 @@ +package mage.cards.a; + +import mage.MageInt; +import mage.abilities.Ability; +import mage.abilities.effects.common.counter.AddCountersTargetEffect; +import mage.abilities.triggers.BeginningOfCombatTriggeredAbility; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.constants.SubType; +import mage.constants.SuperType; +import mage.counters.CounterType; +import mage.target.common.TargetCreaturePermanent; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class AgentBishopManInBlack extends CardImpl { + + public AgentBishopManInBlack(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{W}"); + + this.supertype.add(SuperType.LEGENDARY); + this.subtype.add(SubType.HUMAN); + this.subtype.add(SubType.SOLDIER); + this.power = new MageInt(1); + this.toughness = new MageInt(2); + + // At the beginning of combat on your turn, put a +1/+1 counter on each of up to two target creatures. + Ability ability = new BeginningOfCombatTriggeredAbility(new AddCountersTargetEffect(CounterType.P1P1.createInstance())); + ability.addTarget(new TargetCreaturePermanent(0, 2)); + this.addAbility(ability); + } + + private AgentBishopManInBlack(final AgentBishopManInBlack card) { + super(card); + } + + @Override + public AgentBishopManInBlack copy() { + return new AgentBishopManInBlack(this); + } +} diff --git a/Mage.Sets/src/mage/sets/TeenageMutantNinjaTurtles.java b/Mage.Sets/src/mage/sets/TeenageMutantNinjaTurtles.java index 9d9991fa768..e5adb4fc7ee 100644 --- a/Mage.Sets/src/mage/sets/TeenageMutantNinjaTurtles.java +++ b/Mage.Sets/src/mage/sets/TeenageMutantNinjaTurtles.java @@ -20,6 +20,7 @@ public final class TeenageMutantNinjaTurtles extends ExpansionSet { this.blockName = "Teenage Mutant Ninja Turtles"; // for sorting in GUI this.hasBasicLands = true; + cards.add(new SetCardInfo("Agent Bishop, Man in Black", 2, Rarity.RARE, mage.cards.a.AgentBishopManInBlack.class)); cards.add(new SetCardInfo("April O'Neil, Hacktivist", 29, Rarity.RARE, mage.cards.a.AprilONeilHacktivist.class)); cards.add(new SetCardInfo("Armaggon, Future Shark", 58, Rarity.RARE, mage.cards.a.ArmaggonFutureShark.class)); cards.add(new SetCardInfo("Bebop & Rocksteady", 140, Rarity.RARE, mage.cards.b.BebopAndRocksteady.class));