mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 13:32:06 -08:00
updated legendary token generators
This commit is contained in:
parent
f2b2bfd9f8
commit
d3640103b2
12 changed files with 12 additions and 12 deletions
|
|
@ -13,7 +13,7 @@ import mage.constants.SuperType;
|
|||
public final class KaldraToken extends TokenImpl {
|
||||
|
||||
public KaldraToken() {
|
||||
super("Kaldra", "legendary 4/4 colorless Avatar creature token named Kaldra");
|
||||
super("Kaldra", "Kaldra, a legendary 4/4 colorless Avatar creature token");
|
||||
addSuperType(SuperType.LEGENDARY);
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.AVATAR);
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ import mage.constants.SuperType;
|
|||
public final class MowuToken extends TokenImpl {
|
||||
|
||||
public MowuToken() {
|
||||
super("Mowu", "legendary 3/3 green Dog creature token named Mowu");
|
||||
super("Mowu", "Mowu, a legendary 3/3 green Dog creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setGreen(true);
|
||||
this.addSuperType(SuperType.LEGENDARY);
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ import mage.constants.SuperType;
|
|||
public final class NissaSageAnimistToken extends TokenImpl {
|
||||
|
||||
public NissaSageAnimistToken() {
|
||||
super("Ashaya, the Awoken World", "legendary 4/4 green Elemental creature token named Ashaya, the Awoken World");
|
||||
super("Ashaya, the Awoken World", "Ashaya, the Awoken World, a legendary 4/4 green Elemental creature token");
|
||||
this.setOriginalExpansionSetCode("ORI");
|
||||
this.supertype.add(SuperType.LEGENDARY);
|
||||
this.getPower().modifyBaseValue(4);
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ import mage.constants.SuperType;
|
|||
public final class RagavanToken extends TokenImpl {
|
||||
|
||||
public RagavanToken() {
|
||||
super("Ragavan", "legendary 2/1 red Monkey creature token named Ragavan");
|
||||
super("Ragavan", "Ragavan, a legendary 2/1 red Monkey creature token");
|
||||
this.setOriginalExpansionSetCode("AER");
|
||||
this.supertype.add(SuperType.LEGENDARY);
|
||||
this.getPower().modifyBaseValue(2);
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ import mage.constants.SuperType;
|
|||
public final class StanggTwinToken extends TokenImpl {
|
||||
|
||||
public StanggTwinToken() {
|
||||
super("Stangg Twin", "legendary 3/4 red and green Human Warrior creature token named Stangg Twin");
|
||||
super("Stangg Twin", "Stangg Twin, a legendary 3/4 red and green Human Warrior creature token");
|
||||
this.cardType.add(CardType.CREATURE);
|
||||
addSuperType(SuperType.LEGENDARY);
|
||||
this.subtype.add(SubType.HUMAN);
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ public final class TuktukTheReturnedToken extends TokenImpl {
|
|||
}
|
||||
|
||||
public TuktukTheReturnedToken(String setCode) {
|
||||
super("Tuktuk the Returned", "legendary 5/5 colorless Goblin Golem artifact creature token");
|
||||
super("Tuktuk the Returned", "Tuktuk the Returned, a legendary 5/5 colorless Goblin Golem artifact creature token");
|
||||
setOriginalExpansionSetCode(setCode);
|
||||
cardType.add(CardType.ARTIFACT);
|
||||
cardType.add(CardType.CREATURE);
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ import mage.constants.SuperType;
|
|||
public final class UramiToken extends TokenImpl {
|
||||
|
||||
public UramiToken() {
|
||||
super("Urami", "legendary 5/5 black Demon Spirit creature token with flying named Urami");
|
||||
super("Urami", "Urami, a legendary 5/5 black Demon Spirit creature token with flying");
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.DEMON);
|
||||
subtype.add(SubType.SPIRIT);
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ import mage.constants.SuperType;
|
|||
public final class VojaToken extends TokenImpl {
|
||||
|
||||
public VojaToken() {
|
||||
super("Voja", "legendary 2/2 green and white Wolf creature token named Voja");
|
||||
super("Voja", "Voja, a legendary 2/2 green and white Wolf creature token");
|
||||
this.cardType.add(CardType.CREATURE);
|
||||
addSuperType(SuperType.LEGENDARY);
|
||||
this.subtype.add(SubType.WOLF);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue