Implemented Loathsome Chimera

This commit is contained in:
Evan Kranzler 2020-01-10 08:26:01 -05:00
parent ab76b0342b
commit eaa1dc5cef
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.common.EscapesWithAbility;
import mage.abilities.keyword.EscapeAbility;
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 LoathsomeChimera extends CardImpl {
public LoathsomeChimera(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{G}");
this.subtype.add(SubType.CHIMERA);
this.power = new MageInt(4);
this.toughness = new MageInt(1);
// Escape-{4}{G}, exile three other cards from your graveyard.
this.addAbility(new EscapeAbility(this, "{4}{G}", 3));
// Loathsome Chimera escapes with a +1/+1 counter on it.
this.addAbility(new EscapesWithAbility(1));
}
private LoathsomeChimera(final LoathsomeChimera card) {
super(card);
}
@Override
public LoathsomeChimera copy() {
return new LoathsomeChimera(this);
}
}

View file

@ -103,6 +103,7 @@ public final class TherosBeyondDeath extends ExpansionSet {
cards.add(new SetCardInfo("Kunoros, Hound of Athreos", 222, Rarity.RARE, mage.cards.k.KunorosHoundOfAthreos.class));
cards.add(new SetCardInfo("Lagonna-Band Storyteller", 27, Rarity.UNCOMMON, mage.cards.l.LagonnaBandStoryteller.class));
cards.add(new SetCardInfo("Leonin of the Lost Pride", 28, Rarity.COMMON, mage.cards.l.LeoninOfTheLostPride.class));
cards.add(new SetCardInfo("Loathsome Chimera", 177, Rarity.COMMON, mage.cards.l.LoathsomeChimera.class));
cards.add(new SetCardInfo("Mantle of the Wolf", 178, Rarity.RARE, mage.cards.m.MantleOfTheWolf.class));
cards.add(new SetCardInfo("Memory Drain", 54, Rarity.COMMON, mage.cards.m.MemoryDrain.class));
cards.add(new SetCardInfo("Mindwrack Harpy", 276, Rarity.COMMON, mage.cards.m.MindwrackHarpy.class));