mirror of
https://github.com/correl/mage.git
synced 2025-04-14 09:09:38 -09:00
Implemented Ice-Skin Golem
This commit is contained in:
parent
a2316f583e
commit
24876419c3
2 changed files with 42 additions and 0 deletions
Mage.Sets/src/mage
41
Mage.Sets/src/mage/cards/i/IceSkinGolem.java
Normal file
41
Mage.Sets/src/mage/cards/i/IceSkinGolem.java
Normal file
|
@ -0,0 +1,41 @@
|
|||
package mage.cards.i;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.effects.common.InfoEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.SuperType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class IceSkinGolem extends CardImpl {
|
||||
|
||||
public IceSkinGolem(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{S}");
|
||||
|
||||
this.addSuperType(SuperType.SNOW);
|
||||
this.subtype.add(SubType.GOLEM);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// ({S} can be paid with one mana from a snow permanent.)
|
||||
this.addAbility(new SimpleStaticAbility(
|
||||
new InfoEffect("<i>({S} can be paid with one mana from a snow permanent.)</i>")
|
||||
));
|
||||
}
|
||||
|
||||
private IceSkinGolem(final IceSkinGolem card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public IceSkinGolem copy() {
|
||||
return new IceSkinGolem(this);
|
||||
}
|
||||
}
|
|
@ -87,6 +87,7 @@ public final class ModernHorizons extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Hexdrinker", 168, Rarity.MYTHIC, mage.cards.h.Hexdrinker.class));
|
||||
cards.add(new SetCardInfo("Hollowhead Sliver", 132, Rarity.UNCOMMON, mage.cards.h.HollowheadSliver.class));
|
||||
cards.add(new SetCardInfo("Ice-Fang Coatl", 203, Rarity.RARE, mage.cards.i.IceFangCoatl.class));
|
||||
cards.add(new SetCardInfo("Ice-Skin Golem", 224, Rarity.UNCOMMON, mage.cards.i.IceSkinGolem.class));
|
||||
cards.add(new SetCardInfo("Impostor of the Sixth Pride", 14, Rarity.COMMON, mage.cards.i.ImpostorOfTheSixthPride.class));
|
||||
cards.add(new SetCardInfo("Ingenious Infiltrator", 204, Rarity.UNCOMMON, mage.cards.i.IngeniousInfiltrator.class));
|
||||
cards.add(new SetCardInfo("Kaya's Guile", 205, Rarity.RARE, mage.cards.k.KayasGuile.class));
|
||||
|
|
Loading…
Add table
Reference in a new issue