diff --git a/Mage.Sets/src/mage/cards/w/WilsonRefinedGrizzly.java b/Mage.Sets/src/mage/cards/w/WilsonRefinedGrizzly.java new file mode 100644 index 00000000000..50072c977b3 --- /dev/null +++ b/Mage.Sets/src/mage/cards/w/WilsonRefinedGrizzly.java @@ -0,0 +1,60 @@ +package mage.cards.w; + +import mage.MageInt; +import mage.abilities.common.CantBeCounteredSourceAbility; +import mage.abilities.common.ChooseABackgroundAbility; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.keyword.ReachAbility; +import mage.abilities.keyword.TrampleAbility; +import mage.abilities.keyword.VigilanceAbility; +import mage.abilities.keyword.WardAbility; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.constants.SubType; +import mage.constants.SuperType; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class WilsonRefinedGrizzly extends CardImpl { + + public WilsonRefinedGrizzly(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{G}"); + + this.addSuperType(SuperType.LEGENDARY); + this.subtype.add(SubType.BEAR); + this.subtype.add(SubType.WARRIOR); + this.power = new MageInt(2); + this.toughness = new MageInt(2); + + // This spell can't be countered. + this.addAbility(new CantBeCounteredSourceAbility()); + + // Vigilance + this.addAbility(VigilanceAbility.getInstance()); + + // Reach + this.addAbility(ReachAbility.getInstance()); + + // Trample + this.addAbility(TrampleAbility.getInstance()); + + // Ward {2} + this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}"))); + + // Choose a Background + this.addAbility(ChooseABackgroundAbility.getInstance()); + } + + private WilsonRefinedGrizzly(final WilsonRefinedGrizzly card) { + super(card); + } + + @Override + public WilsonRefinedGrizzly copy() { + return new WilsonRefinedGrizzly(this); + } +} diff --git a/Mage.Sets/src/mage/sets/CommanderLegendsBattleForBaldursGate.java b/Mage.Sets/src/mage/sets/CommanderLegendsBattleForBaldursGate.java index b6ca03437b7..6ec7b8d86aa 100644 --- a/Mage.Sets/src/mage/sets/CommanderLegendsBattleForBaldursGate.java +++ b/Mage.Sets/src/mage/sets/CommanderLegendsBattleForBaldursGate.java @@ -47,6 +47,7 @@ public final class CommanderLegendsBattleForBaldursGate extends ExpansionSet { cards.add(new SetCardInfo("Tymora's Invoker", 101, Rarity.COMMON, mage.cards.t.TymorasInvoker.class)); cards.add(new SetCardInfo("Wand of Wonder", 204, Rarity.RARE, mage.cards.w.WandOfWonder.class)); cards.add(new SetCardInfo("White Plume Adventurer", 49, Rarity.RARE, mage.cards.w.WhitePlumeAdventurer.class)); + cards.add(new SetCardInfo("Wilson, Refined Grizzly", 522, Rarity.UNCOMMON, mage.cards.w.WilsonRefinedGrizzly.class)); cards.add(new SetCardInfo("Zevlor, Elturel Exile", 296, Rarity.RARE, mage.cards.z.ZevlorElturelExile.class)); } } diff --git a/Mage/src/main/java/mage/abilities/common/ChooseABackgroundAbility.java b/Mage/src/main/java/mage/abilities/common/ChooseABackgroundAbility.java index bf219225103..6cb9c06e60a 100644 --- a/Mage/src/main/java/mage/abilities/common/ChooseABackgroundAbility.java +++ b/Mage/src/main/java/mage/abilities/common/ChooseABackgroundAbility.java @@ -23,7 +23,7 @@ public class ChooseABackgroundAbility extends StaticAbility implements MageSingl } private ChooseABackgroundAbility() { - super(Zone.ALL, new InfoEffect("choose a background")); + super(Zone.ALL, new InfoEffect("choose a background (You can have a Background as a second commander.)")); } @Override