mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
Implemented Goblin Wizardry
This commit is contained in:
parent
e3a1fee1ea
commit
3839b0c665
3 changed files with 63 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue