Implemented Quartzwood Crasher

This commit is contained in:
Evan Kranzler 2020-04-15 08:32:17 -04:00
parent fd02d66227
commit 1874a8404a
3 changed files with 201 additions and 0 deletions

View file

@ -0,0 +1,31 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.TrampleAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class BeastXToken extends TokenImpl {
public BeastXToken(int xValue) {
super("Beast", "X/X green Beast creature token");
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add(SubType.BEAST);
power = new MageInt(xValue);
toughness = new MageInt(xValue);
addAbility(TrampleAbility.getInstance());
}
private BeastXToken(final BeastXToken token) {
super(token);
}
@Override
public BeastXToken copy() {
return new BeastXToken(this);
}
}