[C21] Implemented Triplicate Titan

This commit is contained in:
Evan Kranzler 2021-04-12 09:32:44 -04:00
parent d0d152ec44
commit c8e21a8c6a
5 changed files with 149 additions and 0 deletions

View file

@ -0,0 +1,30 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.FlyingAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class GolemFlyingToken extends TokenImpl {
public GolemFlyingToken() {
super("Golem", "3/3 colorless Golem artifact creature token with flying");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
subtype.add(SubType.GOLEM);
power = new MageInt(3);
toughness = new MageInt(3);
addAbility(FlyingAbility.getInstance());
}
private GolemFlyingToken(final GolemFlyingToken token) {
super(token);
}
public GolemFlyingToken copy() {
return new GolemFlyingToken(this);
}
}

View file

@ -0,0 +1,30 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.TrampleAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class GolemTrampleToken extends TokenImpl {
public GolemTrampleToken() {
super("Golem", "3/3 colorless Golem artifact creature token with trample");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
subtype.add(SubType.GOLEM);
power = new MageInt(3);
toughness = new MageInt(3);
addAbility(TrampleAbility.getInstance());
}
private GolemTrampleToken(final GolemTrampleToken token) {
super(token);
}
public GolemTrampleToken copy() {
return new GolemTrampleToken(this);
}
}

View file

@ -0,0 +1,30 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.VigilanceAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class GolemVigilanceToken extends TokenImpl {
public GolemVigilanceToken() {
super("Golem", "3/3 colorless Golem artifact creature token with vigilance");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
subtype.add(SubType.GOLEM);
power = new MageInt(3);
toughness = new MageInt(3);
addAbility(VigilanceAbility.getInstance());
}
private GolemVigilanceToken(final GolemVigilanceToken token) {
super(token);
}
public GolemVigilanceToken copy() {
return new GolemVigilanceToken(this);
}
}