mirror of
https://github.com/correl/mage.git
synced 2025-01-13 19:11:33 +00:00
Implemented Gluttonous Slug
This commit is contained in:
parent
a2223c1afb
commit
bb38290b8e
2 changed files with 42 additions and 0 deletions
41
Mage.Sets/src/mage/cards/g/GluttonousSlug.java
Normal file
41
Mage.Sets/src/mage/cards/g/GluttonousSlug.java
Normal file
|
@ -0,0 +1,41 @@
|
|||
package mage.cards.g;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.EvolveAbility;
|
||||
import mage.abilities.keyword.MenaceAbility;
|
||||
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 GluttonousSlug extends CardImpl {
|
||||
|
||||
public GluttonousSlug(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{B}");
|
||||
|
||||
this.subtype.add(SubType.SLUG);
|
||||
this.subtype.add(SubType.HORROR);
|
||||
this.power = new MageInt(0);
|
||||
this.toughness = new MageInt(3);
|
||||
|
||||
// Menace
|
||||
this.addAbility(new MenaceAbility());
|
||||
|
||||
// Evolve
|
||||
this.addAbility(new EvolveAbility());
|
||||
}
|
||||
|
||||
private GluttonousSlug(final GluttonousSlug card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public GluttonousSlug copy() {
|
||||
return new GluttonousSlug(this);
|
||||
}
|
||||
}
|
|
@ -95,6 +95,7 @@ public final class ModernHorizons extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Gilded Light", 12, Rarity.COMMON, mage.cards.g.GildedLight.class));
|
||||
cards.add(new SetCardInfo("Giver of Runes", 13, Rarity.RARE, mage.cards.g.GiverOfRunes.class));
|
||||
cards.add(new SetCardInfo("Glacial Revelation", 167, Rarity.UNCOMMON, mage.cards.g.GlacialRevelation.class));
|
||||
cards.add(new SetCardInfo("Gluttonous Slug", 93, Rarity.COMMON, mage.cards.g.GluttonousSlug.class));
|
||||
cards.add(new SetCardInfo("Goatnap", 126, Rarity.COMMON, mage.cards.g.Goatnap.class));
|
||||
cards.add(new SetCardInfo("Goblin Champion", 127, Rarity.COMMON, mage.cards.g.GoblinChampion.class));
|
||||
cards.add(new SetCardInfo("Goblin Engineer", 128, Rarity.RARE, mage.cards.g.GoblinEngineer.class));
|
||||
|
|
Loading…
Reference in a new issue