mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
added IKO tokens
This commit is contained in:
parent
eba1980a9a
commit
8bea930a69
1 changed files with 33 additions and 0 deletions
|
@ -0,0 +1,33 @@
|
||||||
|
|
||||||
|
package mage.game.permanent.token;
|
||||||
|
|
||||||
|
import mage.constants.CardType;
|
||||||
|
import mage.MageInt;
|
||||||
|
import mage.abilities.keyword.TrampleAbility;
|
||||||
|
import mage.constants.SubType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author TheElk801
|
||||||
|
*/
|
||||||
|
public final class DinosaurBeastToken extends TokenImpl {
|
||||||
|
|
||||||
|
public DinosaurBeastToken(int xValue) {
|
||||||
|
super("Dinosaur Beast", "X/X green Dinosaur Beast creature token with trample");
|
||||||
|
cardType.add(CardType.CREATURE);
|
||||||
|
color.setGreen(true);
|
||||||
|
subtype.add(SubType.DINOSAUR);
|
||||||
|
subtype.add(SubType.BEAST);
|
||||||
|
power = new MageInt(xValue);
|
||||||
|
toughness = new MageInt(xValue);
|
||||||
|
addAbility(TrampleAbility.getInstance());
|
||||||
|
}
|
||||||
|
|
||||||
|
public DinosaurBeastToken(final DinosaurBeastToken token) {
|
||||||
|
super(token);
|
||||||
|
}
|
||||||
|
|
||||||
|
public DinosaurBeastToken copy() {
|
||||||
|
return new DinosaurBeastToken(this);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue