diff --git a/Mage.Sets/src/mage/cards/g/Gobland.java b/Mage.Sets/src/mage/cards/g/Gobland.java new file mode 100644 index 00000000000..b4a572b2f87 --- /dev/null +++ b/Mage.Sets/src/mage/cards/g/Gobland.java @@ -0,0 +1,48 @@ +package mage.cards.g; + +import mage.MageInt; +import mage.abilities.common.CantBlockAbility; +import mage.abilities.common.SimpleStaticAbility; +import mage.abilities.effects.common.InfoEffect; +import mage.abilities.mana.RedManaAbility; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.constants.SubType; + +import java.util.UUID; + +/** + * @author PurpleCrowbar + */ +public final class Gobland extends CardImpl { + + public Gobland(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.LAND, CardType.CREATURE}, ""); + this.subtype.add(SubType.MOUNTAIN, SubType.GOBLIN); + this.power = new MageInt(2); + this.toughness = new MageInt(1); + + this.color.setRed(true); + + // (Gobland isn't a spell, it's affected by summoning sickness, and it has "{T}: Add {R}.") + this.addAbility(new SimpleStaticAbility(new InfoEffect( + "({this} isn't a spell, it's affected by summoning sickness, and it has \"{T}: Add {R}.\")" + ))); + + // Add {R} + this.addAbility(new RedManaAbility()); + + // Gobland can't block. + this.addAbility(new CantBlockAbility()); + } + + private Gobland(final Gobland card) { + super(card); + } + + @Override + public Gobland copy() { + return new Gobland(this); + } +} diff --git a/Mage.Sets/src/mage/sets/MysteryBooster2.java b/Mage.Sets/src/mage/sets/MysteryBooster2.java index b1b39cbb913..06da5dcf66e 100644 --- a/Mage.Sets/src/mage/sets/MysteryBooster2.java +++ b/Mage.Sets/src/mage/sets/MysteryBooster2.java @@ -107,6 +107,7 @@ public class MysteryBooster2 extends ExpansionSet { cards.add(new SetCardInfo("Gitaxian Probe", 28, Rarity.COMMON, mage.cards.g.GitaxianProbe.class)); cards.add(new SetCardInfo("Giver of Runes", 147, Rarity.RARE, mage.cards.g.GiverOfRunes.class)); cards.add(new SetCardInfo("Gix, Yawgmoth Praetor", 245, Rarity.MYTHIC, mage.cards.g.GixYawgmothPraetor.class)); + cards.add(new SetCardInfo("Gobland", 374, Rarity.RARE, mage.cards.g.Gobland.class)); cards.add(new SetCardInfo("Goblin Charbelcher", 221, Rarity.RARE, mage.cards.g.GoblinCharbelcher.class)); cards.add(new SetCardInfo("Goblin Gang Leader", 144, Rarity.UNCOMMON, mage.cards.g.GoblinGangLeader.class)); cards.add(new SetCardInfo("Goblin Guide", 58, Rarity.RARE, mage.cards.g.GoblinGuide.class));