Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 57 additions & 0 deletions Mage.Sets/src/mage/cards/b/BrawnAmadeusCho.java
Original file line number Diff line number Diff line change
@@ -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);
}
}
1 change: 1 addition & 0 deletions Mage.Sets/src/mage/sets/MarvelSuperHeroesCommander.java
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down
Loading