[KHM] Implemented Usher of the Fallen

This commit is contained in:
Evan Kranzler 2021-01-14 17:55:36 -05:00
parent b04e5e6abf
commit 5105fec8e3
3 changed files with 73 additions and 0 deletions

View file

@ -0,0 +1,30 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class HumanWarriorToken extends TokenImpl {
public HumanWarriorToken() {
super("Human Warrior", "1/1 white Human Warrior creature token");
cardType.add(CardType.CREATURE);
color.setWhite(true);
subtype.add(SubType.HUMAN);
subtype.add(SubType.WARRIOR);
power = new MageInt(1);
toughness = new MageInt(1);
}
private HumanWarriorToken(final HumanWarriorToken token) {
super(token);
}
@Override
public HumanWarriorToken copy() {
return new HumanWarriorToken(this);
}
}