mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 06:22:01 -08:00
implement [PIP] Recon Craft Theta
This commit is contained in:
parent
ab69e05115
commit
bada7d054a
3 changed files with 127 additions and 0 deletions
|
|
@ -0,0 +1,29 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author Susucr
|
||||
*/
|
||||
public final class Alien00Token extends TokenImpl {
|
||||
|
||||
public Alien00Token() {
|
||||
super("Alien Token", "0/0 blue Alien creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlue(true);
|
||||
subtype.add(SubType.ALIEN);
|
||||
power = new MageInt(0);
|
||||
toughness = new MageInt(0);
|
||||
}
|
||||
|
||||
private Alien00Token(final Alien00Token token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Alien00Token copy() {
|
||||
return new Alien00Token(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue