mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Implemented Gloom Pangolin
This commit is contained in:
parent
b080a70e69
commit
bda54ff1b6
2 changed files with 36 additions and 0 deletions
33
Mage.Sets/src/mage/cards/g/GloomPangolin.java
Normal file
33
Mage.Sets/src/mage/cards/g/GloomPangolin.java
Normal 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);
|
||||
}
|
||||
}
|
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue