Implemented Gloom Pangolin

This commit is contained in:
Evan Kranzler 2020-04-02 11:09:18 -04:00
parent b080a70e69
commit bda54ff1b6
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,33 @@
package mage.cards.g;
import java.util.UUID;
import mage.MageInt;
import mage.constants.SubType;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
/**
*
* @author TheElk801
*/
public final class GloomPangolin extends CardImpl {
public GloomPangolin(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{B}");
this.subtype.add(SubType.NIGHTMARE);
this.subtype.add(SubType.PANGOLIN);
this.power = new MageInt(1);
this.toughness = new MageInt(5);
}
private GloomPangolin(final GloomPangolin card) {
super(card);
}
@Override
public GloomPangolin copy() {
return new GloomPangolin(this);
}
}

View file

@ -1,6 +1,7 @@
package mage.sets;
import mage.cards.ExpansionSet;
import mage.constants.Rarity;
import mage.constants.SetType;
/**
@ -24,5 +25,7 @@ public final class IkoriaLairOfBehemoths extends ExpansionSet {
this.numBoosterRare = 1;
this.ratioBoosterMythic = 8;
this.maxCardNumberInBooster = 274;
cards.add(new SetCardInfo("Gloom Pangolin", 89, Rarity.COMMON, mage.cards.g.GloomPangolin.class));
}
}