From 0366e1c1f0f1a4668ef4ac10414d1f06784ebb37 Mon Sep 17 00:00:00 2001 From: Muz Ali Date: Fri, 3 Jul 2026 21:30:30 -0500 Subject: [PATCH] [MSC] Implement Brawn, Amadeus Cho --- .../src/mage/cards/b/BrawnAmadeusCho.java | 57 +++++++++++++++++++ .../mage/sets/MarvelSuperHeroesCommander.java | 1 + 2 files changed, 58 insertions(+) create mode 100644 Mage.Sets/src/mage/cards/b/BrawnAmadeusCho.java diff --git a/Mage.Sets/src/mage/cards/b/BrawnAmadeusCho.java b/Mage.Sets/src/mage/cards/b/BrawnAmadeusCho.java new file mode 100644 index 000000000000..e7a9e3613655 --- /dev/null +++ b/Mage.Sets/src/mage/cards/b/BrawnAmadeusCho.java @@ -0,0 +1,57 @@ +package mage.cards.b; + +import mage.MageInt; +import mage.abilities.Ability; +import mage.abilities.common.EntersBattlefieldTriggeredAbility; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.dynamicvalue.common.CardsInControllerHandCount; +import mage.abilities.effects.common.DrawCardSourceControllerEffect; +import mage.abilities.effects.common.counter.AddCountersSourceEffect; +import mage.abilities.keyword.PowerUpAbility; +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 java.util.UUID; + +/** + * @author muz + */ +public final class BrawnAmadeusCho extends CardImpl { + + public BrawnAmadeusCho(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{G/U}"); + + this.supertype.add(SuperType.LEGENDARY); + this.subtype.add(SubType.GAMMA); + this.subtype.add(SubType.SCIENTIST); + this.subtype.add(SubType.HERO); + this.power = new MageInt(1); + this.toughness = new MageInt(1); + + // When Brawn enters, draw a card. + this.addAbility(new EntersBattlefieldTriggeredAbility(new DrawCardSourceControllerEffect(1))); + + // Power-up -- {4}{G/U}: Put a +1/+1 counter on Brawn for each card in your hand. + Ability ability = new PowerUpAbility( + new AddCountersSourceEffect( + CounterType.P1P1.createInstance(), + CardsInControllerHandCount.ANY + ).setText("Put a +1/+1 counter on {this} for each card in your hand"), + new ManaCostsImpl<>("{4}{G/U}") + ); + this.addAbility(ability); + } + + private BrawnAmadeusCho(final BrawnAmadeusCho card) { + super(card); + } + + @Override + public BrawnAmadeusCho copy() { + return new BrawnAmadeusCho(this); + } +} diff --git a/Mage.Sets/src/mage/sets/MarvelSuperHeroesCommander.java b/Mage.Sets/src/mage/sets/MarvelSuperHeroesCommander.java index 6b576cc20e53..63a2db196037 100644 --- a/Mage.Sets/src/mage/sets/MarvelSuperHeroesCommander.java +++ b/Mage.Sets/src/mage/sets/MarvelSuperHeroesCommander.java @@ -76,6 +76,7 @@ private MarvelSuperHeroesCommander() { cards.add(new SetCardInfo("Bountiful Promenade", 226, Rarity.RARE, mage.cards.b.BountifulPromenade.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Bountiful Promenade", 461, Rarity.RARE, mage.cards.b.BountifulPromenade.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Bovine Intervention", 123, Rarity.UNCOMMON, mage.cards.b.BovineIntervention.class)); + cards.add(new SetCardInfo("Brawn, Amadeus Cho", 567, Rarity.UNCOMMON, mage.cards.b.BrawnAmadeusCho.class)); cards.add(new SetCardInfo("Bushmaster, Coiled Henchman", 716, Rarity.COMMON, mage.cards.b.BushmasterCoiledHenchman.class)); cards.add(new SetCardInfo("Canopy Vista", 227, Rarity.RARE, mage.cards.c.CanopyVista.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Canopy Vista", 462, Rarity.RARE, mage.cards.c.CanopyVista.class, NON_FULL_USE_VARIOUS));