[CLB] Implemented Bronze Walrus

This commit is contained in:
Evan Kranzler 2022-05-29 18:48:37 -04:00
parent 8cbe153b94
commit 1c665caa00
3 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,41 @@
package mage.cards.b;
import mage.MageInt;
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
import mage.abilities.effects.keyword.ScryEffect;
import mage.abilities.mana.AnyColorManaAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class BronzeWalrus extends CardImpl {
public BronzeWalrus(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{3}");
this.subtype.add(SubType.WALRUS);
this.power = new MageInt(2);
this.toughness = new MageInt(3);
// When Bronze Walrus enters the battlefield, scry 2.
this.addAbility(new EntersBattlefieldTriggeredAbility(new ScryEffect(2)));
// {T}: Add one mana of any color.
this.addAbility(new AnyColorManaAbility());
}
private BronzeWalrus(final BronzeWalrus card) {
super(card);
}
@Override
public BronzeWalrus copy() {
return new BronzeWalrus(this);
}
}

View file

@ -61,6 +61,7 @@ public final class CommanderLegendsBattleForBaldursGate extends ExpansionSet {
cards.add(new SetCardInfo("Bountiful Promenade", 348, Rarity.RARE, mage.cards.b.BountifulPromenade.class));
cards.add(new SetCardInfo("Bramble Sovereign", 218, Rarity.MYTHIC, mage.cards.b.BrambleSovereign.class));
cards.add(new SetCardInfo("Breath Weapon", 165, Rarity.COMMON, mage.cards.b.BreathWeapon.class));
cards.add(new SetCardInfo("Bronze Walrus", 302, Rarity.COMMON, mage.cards.b.BronzeWalrus.class));
cards.add(new SetCardInfo("Burnished Hart", 303, Rarity.UNCOMMON, mage.cards.b.BurnishedHart.class));
cards.add(new SetCardInfo("Cadira, Caller of the Small", 269, Rarity.UNCOMMON, mage.cards.c.CadiraCallerOfTheSmall.class));
cards.add(new SetCardInfo("Campfire", 304, Rarity.UNCOMMON, mage.cards.c.Campfire.class));

View file

@ -381,6 +381,7 @@ public enum SubType {
VOLVER("Volver", SubTypeSet.CreatureType),
// W
WALL("Wall", SubTypeSet.CreatureType),
WALRUS("Walrus", SubTypeSet.CreatureType),
WARLOCK("Warlock", SubTypeSet.CreatureType),
WARRIOR("Warrior", SubTypeSet.CreatureType),
WEEQUAY("Weequay", SubTypeSet.CreatureType, true),