forked from External/mage
[WHO] Implement Graham O'Brien, Iraxxa Empress of Mars, Sisterhood of Karn, Memory Worm, Flaming Tyrannosaurus (#11275)
* [WHO] Implement Graham O'Brien * [WHO] Implement Iraxxa, Empress of Mars * [WHO] Implement Sisterhood of Karn * [WHO] Implement Memory Worm * [WHO] Implement Flaming Tyrannosaurus * fix token name --------- Co-authored-by: xenohedron <xenohedron@users.noreply.github.com>
This commit is contained in:
parent
21bab428e7
commit
39522cdc59
7 changed files with 354 additions and 0 deletions
|
|
@ -0,0 +1,30 @@
|
|||
|
||||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author Susucr
|
||||
*/
|
||||
public final class AlienWarriorToken extends TokenImpl {
|
||||
|
||||
public AlienWarriorToken() {
|
||||
super("Alien Warrior Token", "2/2 red Alien Warrior creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setRed(true);
|
||||
subtype.add(SubType.ALIEN);
|
||||
subtype.add(SubType.WARRIOR);
|
||||
power = new MageInt(2);
|
||||
toughness = new MageInt(2);
|
||||
}
|
||||
|
||||
protected AlienWarriorToken(final AlienWarriorToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public AlienWarriorToken copy() {
|
||||
return new AlienWarriorToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue