mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
[LCI] Implement Master's Guide-Mural
This commit is contained in:
parent
bcd8687285
commit
a681325f66
4 changed files with 182 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue