[DMU] Implemented Linebreaker Baloth

This commit is contained in:
Evan Kranzler 2022-08-24 17:15:33 -04:00
parent 905a15d5b9
commit 18ab621a20
2 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,40 @@
package mage.cards.l;
import mage.MageInt;
import mage.abilities.keyword.DauntAbility;
import mage.abilities.keyword.EnlistAbility;
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 LinebreakerBaloth extends CardImpl {
public LinebreakerBaloth(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{G}{G}");
this.subtype.add(SubType.BEAST);
this.power = new MageInt(4);
this.toughness = new MageInt(5);
// Enlist
this.addAbility(new EnlistAbility());
// Linebreaker Baloth can't be blocked by creatures with power 2 or less.
this.addAbility(new DauntAbility());
}
private LinebreakerBaloth(final LinebreakerBaloth card) {
super(card);
}
@Override
public LinebreakerBaloth copy() {
return new LinebreakerBaloth(this);
}
}

View file

@ -77,6 +77,7 @@ public final class DominariaUnited extends ExpansionSet {
cards.add(new SetCardInfo("Lagomos, Hand of Hatred", 205, Rarity.UNCOMMON, mage.cards.l.LagomosHandOfHatred.class));
cards.add(new SetCardInfo("Lightning Strike", 137, Rarity.COMMON, mage.cards.l.LightningStrike.class));
cards.add(new SetCardInfo("Liliana of the Veil", 97, Rarity.MYTHIC, mage.cards.l.LilianaOfTheVeil.class));
cards.add(new SetCardInfo("Linebreaker Baloth", 168, Rarity.UNCOMMON, mage.cards.l.LinebreakerBaloth.class));
cards.add(new SetCardInfo("Llanowar Loamspeaker", 170, Rarity.RARE, mage.cards.l.LlanowarLoamspeaker.class));
cards.add(new SetCardInfo("Magnigoth Sentry", 172, Rarity.COMMON, mage.cards.m.MagnigothSentry.class));
cards.add(new SetCardInfo("Mesa Cavalier", 26, Rarity.COMMON, mage.cards.m.MesaCavalier.class));