mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 21:42:07 -08:00
[C21] Implemented Triplicate Titan
This commit is contained in:
parent
d0d152ec44
commit
c8e21a8c6a
5 changed files with 149 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue