mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
[BRO] Implement Mask of the Jadecrafter
This commit is contained in:
parent
ea367c2005
commit
5352ce8595
3 changed files with 102 additions and 0 deletions
|
|
@ -0,0 +1,32 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class GolemXXToken extends TokenImpl {
|
||||
|
||||
public GolemXXToken(int xValue) {
|
||||
super("Golem Token", "X/X colorless Golem artifact creature token");
|
||||
cardType.add(CardType.ARTIFACT);
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.GOLEM);
|
||||
power = new MageInt(xValue);
|
||||
toughness = new MageInt(xValue);
|
||||
|
||||
availableImageSetCodes = Arrays.asList("BRO");
|
||||
}
|
||||
|
||||
public GolemXXToken(final GolemXXToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public GolemXXToken copy() {
|
||||
return new GolemXXToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue