[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:
Susucre 2023-10-08 07:38:09 +02:00 committed by GitHub
parent 21bab428e7
commit 39522cdc59
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 354 additions and 0 deletions

View file

@ -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);
}
}