[LCI] Implement Master's Guide-Mural

This commit is contained in:
Susucre 2023-10-28 18:46:41 +02:00
parent bcd8687285
commit a681325f66
4 changed files with 182 additions and 0 deletions

View file

@ -0,0 +1,30 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author Susucr
*/
public final class GolemWhiteBlueToken extends TokenImpl {
public GolemWhiteBlueToken() {
super("Golem Token", "4/4 white and blue Golem artifact creature token");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
subtype.add(SubType.GOLEM);
color.setWhite(true);
color.setBlue(true);
power = new MageInt(4);
toughness = new MageInt(4);
}
protected GolemWhiteBlueToken(final GolemWhiteBlueToken token) {
super(token);
}
public GolemWhiteBlueToken copy() {
return new GolemWhiteBlueToken(this);
}
}