Implemented Goblin Wizardry

This commit is contained in:
Evan Kranzler 2020-06-16 22:14:57 -04:00
parent e3a1fee1ea
commit 3839b0c665
3 changed files with 63 additions and 0 deletions

View file

@ -0,0 +1,31 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.ProwessAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class GoblinWizardToken extends TokenImpl {
public GoblinWizardToken() {
super("Goblin Wizard", "1/1 red Goblin Wizard creature token with prowess");
cardType.add(CardType.CREATURE);
subtype.add(SubType.GOBLIN);
subtype.add(SubType.WIZARD);
color.setRed(true);
power = new MageInt(1);
toughness = new MageInt(1);
this.addAbility(new ProwessAbility());
}
private GoblinWizardToken(final GoblinWizardToken token) {
super(token);
}
public GoblinWizardToken copy() {
return new GoblinWizardToken(this);
}
}