[KHM] Implemented Waking the Trolls

This commit is contained in:
Evan Kranzler 2021-01-12 20:35:45 -05:00
parent 7ef79d3138
commit 4b2b36cf7d
3 changed files with 139 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 TrollWarriorToken extends TokenImpl {
public TrollWarriorToken() {
super("Troll Warrior", "4/4 green Troll Warrior creature token with trample");
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add(SubType.TROLL);
subtype.add(SubType.WARRIOR);
power = new MageInt(4);
toughness = new MageInt(4);
addAbility(TrampleAbility.getInstance());
}
private TrollWarriorToken(final TrollWarriorToken token) {
super(token);
}
public TrollWarriorToken copy() {
return new TrollWarriorToken(this);
}
}