mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
[ISD] Invisible Stalker
This commit is contained in:
parent
33482424de
commit
60025ee07c
2 changed files with 32 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
31
Mage.Sets/src/mage/sets/innistrad/InvisibleStalker.java
Normal file
31
Mage.Sets/src/mage/sets/innistrad/InvisibleStalker.java
Normal 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.
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue