forked from External/mage
[KHM] added tokens and download support;
This commit is contained in:
parent
abe65411b6
commit
f7bc745f10
50 changed files with 267 additions and 194 deletions
|
|
@ -0,0 +1,30 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
public final class GiantWizardToken extends TokenImpl {
|
||||
|
||||
public GiantWizardToken() {
|
||||
super("Giant Wizard", "4/4 blue Giant Wizard creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlue(true);
|
||||
subtype.add(SubType.GIANT);
|
||||
subtype.add(SubType.WIZARD);
|
||||
power = new MageInt(4);
|
||||
toughness = new MageInt(4);
|
||||
|
||||
availableImageSetCodes = Arrays.asList("KHM");
|
||||
}
|
||||
|
||||
public GiantWizardToken(final GiantWizardToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public GiantWizardToken copy() {
|
||||
return new GiantWizardToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue