mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
[KHM] Implement Giant's Amulet (#7357)
This commit is contained in:
parent
2b64613c4e
commit
bad00742b2
3 changed files with 132 additions and 0 deletions
|
|
@ -0,0 +1,26 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
public final class GiantsAmuletToken extends TokenImpl {
|
||||
|
||||
public GiantsAmuletToken() {
|
||||
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);
|
||||
}
|
||||
|
||||
public GiantsAmuletToken(final GiantsAmuletToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public GiantsAmuletToken copy() {
|
||||
return new GiantsAmuletToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue