[ISD] Invisible Stalker

This commit is contained in:
Loki 2011-09-03 00:30:24 +03:00
parent 33482424de
commit 60025ee07c
2 changed files with 32 additions and 1 deletions

View file

@ -24,7 +24,7 @@ public class AngelOfFlightAlabaster extends CardImpl<AngelOfFlightAlabaster> {
}
public AngelOfFlightAlabaster(UUID ownerId) {
super(ownerId, 2, "Angel of Flight Alabaster", Constants.Rarity.RARE, new Constants.CardType[]{Constants.CardType.CREATURE}, "{4{W}");
super(ownerId, 2, "Angel of Flight Alabaster", Constants.Rarity.RARE, new Constants.CardType[]{Constants.CardType.CREATURE}, "{4}{W}");
this.expansionSetCode = "ISD";
this.subtype.add("Angel");
this.color.setWhite(true);

View file

@ -0,0 +1,31 @@
package mage.sets.innistrad;
import mage.Constants;
import mage.MageInt;
import mage.abilities.keyword.HexproofAbility;
import mage.abilities.keyword.UnblockableAbility;
import mage.cards.CardImpl;
import java.util.UUID;
public class InvisibleStalker extends CardImpl<InvisibleStalker> {
public InvisibleStalker(UUID ownerId) {
super(ownerId, 60, "Invisible Stalker", Constants.Rarity.UNCOMMON, new Constants.CardType[]{Constants.CardType.CREATURE}, "{1}{U}");
this.expansionSetCode = "ISD";
this.subtype.add("Human");
this.subtype.add("Rogue");
this.color.setBlue(true);
this.power = new MageInt(1);
this.toughness = new MageInt(1);
this.addAbility(new HexproofAbility());
this.addAbility(UnblockableAbility.getInstance());
}
@Override
public InvisibleStalker copy() {
return null; //To change body of implemented methods use File | Settings | File Templates.
}
}