mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
missing token images in thb and war
This commit is contained in:
parent
651f0875bb
commit
3865c52974
1 changed files with 11 additions and 0 deletions
|
@ -10,6 +10,17 @@ package mage.game.permanent.token;
|
|||
*/
|
||||
public final class DinosaurBeastToken extends TokenImpl {
|
||||
|
||||
public DinosaurBeastToken() {
|
||||
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(0);
|
||||
toughness = new MageInt(0);
|
||||
addAbility(TrampleAbility.getInstance());
|
||||
}
|
||||
|
||||
public DinosaurBeastToken(int xValue) {
|
||||
super("Dinosaur Beast", "X/X green Dinosaur Beast creature token with trample");
|
||||
cardType.add(CardType.CREATURE);
|
||||
|
|
Loading…
Reference in a new issue