[BRO] Implement Mask of the Jadecrafter

This commit is contained in:
Evan Kranzler 2022-11-06 11:26:21 -05:00
parent ea367c2005
commit 5352ce8595
3 changed files with 102 additions and 0 deletions

View file

@ -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);
}
}