removed copy/paste code

This commit is contained in:
gp66 2020-05-15 12:57:28 -05:00
parent 162907b9da
commit 877abe087a
3 changed files with 3 additions and 26 deletions

View file

@ -11,16 +11,8 @@ 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());
this(0);
}
public DinosaurBeastToken(int xValue) {
super("Dinosaur Beast", "X/X green Dinosaur Beast creature token with trample");
cardType.add(CardType.CREATURE);