mirror of
https://github.com/correl/mage.git
synced 2025-04-12 09:11:05 -09:00
updated legendary token generators
This commit is contained in:
parent
f2b2bfd9f8
commit
d3640103b2
12 changed files with 12 additions and 12 deletions
Mage.Sets/src/mage/cards
Mage/src/main/java/mage/game/permanent/token
|
@ -95,7 +95,7 @@ class HelmOfKaldraEffect extends OneShotEffect {
|
|||
|
||||
public HelmOfKaldraEffect() {
|
||||
super(Outcome.Benefit);
|
||||
this.staticText = "If you control Equipment named Helm of Kaldra, Sword of Kaldra, and Shield of Kaldra, create a legendary 4/4 colorless Avatar creature token named Kaldra and attach those Equipment to it";
|
||||
this.staticText = "if you control Equipment named Helm of Kaldra, Sword of Kaldra, and Shield of Kaldra, create Kaldra, a legendary 4/4 colorless Avatar creature token. Attach those Equipment to it";
|
||||
}
|
||||
|
||||
public HelmOfKaldraEffect(final HelmOfKaldraEffect effect) {
|
||||
|
|
|
@ -55,7 +55,7 @@ public final class JiangYanggu extends CardImpl {
|
|||
new CreateTokenEffect(new MowuToken()),
|
||||
new InvertCondition(new PermanentsOnTheBattlefieldCondition(filter)),
|
||||
"If you don't control a creature named Mowu, "
|
||||
+ "creature a legendary 3/3 green Dog creature token named Mowu."
|
||||
+ "creature Mowu, a legendary 3/3 green Dog creature token."
|
||||
), -1));
|
||||
|
||||
// -5: Until end of turn, target creature gains trample and gets +X/+X, where X is the number of lands you control.
|
||||
|
|
|
@ -58,7 +58,7 @@ class KariZevSkyshipRaiderEffect extends OneShotEffect {
|
|||
|
||||
KariZevSkyshipRaiderEffect() {
|
||||
super(Outcome.PutCreatureInPlay);
|
||||
staticText = "create a legendary 2/1 red Monkey creature token named Ragavan that's tapped and attacking. Exile that token at end of combat";
|
||||
staticText = "create Ragaven, a legendary 2/1 red Monkey creature token. Ragavan enters the battlefied tapped and attacking. Exile that token at end of combat";
|
||||
}
|
||||
|
||||
KariZevSkyshipRaiderEffect(final KariZevSkyshipRaiderEffect effect) {
|
||||
|
|
|
@ -65,7 +65,7 @@ class StanggCreateTokenEffect extends OneShotEffect {
|
|||
|
||||
public StanggCreateTokenEffect() {
|
||||
super(Outcome.PutCreatureInPlay);
|
||||
staticText = "create a legendary 3/4 red and green Human Warrior creature token named Stangg Twin";
|
||||
staticText = "create Stangg Twin, a legendary 3/4 red and green Human Warrior creature token";
|
||||
}
|
||||
|
||||
public StanggCreateTokenEffect(final StanggCreateTokenEffect effect) {
|
||||
|
|
|
@ -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
Reference in a new issue