foul-magics/Mage/src/main/java/mage/game/permanent/token/GuardianIdolGolemToken.java
2018-06-02 17:59:49 +02:00

30 lines
707 B
Java

package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
/**
*
* @author spjspj
*/
public final class GuardianIdolGolemToken extends TokenImpl {
public GuardianIdolGolemToken() {
super("Golem", "2/2 Golem artifact creature token");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
subtype.add(SubType.GOLEM);
power = new MageInt(2);
toughness = new MageInt(2);
}
public GuardianIdolGolemToken(final GuardianIdolGolemToken token) {
super(token);
}
public GuardianIdolGolemToken copy() {
return new GuardianIdolGolemToken(this);
}
}