mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
[FUT] various text fixes
This commit is contained in:
parent
27338dc620
commit
ca9b2ea135
24 changed files with 106 additions and 225 deletions
|
|
@ -72,9 +72,9 @@ public class DamageAttachedEffect extends OneShotEffect {
|
|||
return staticText;
|
||||
}
|
||||
if ("equal to".equals(amount.toString())) {
|
||||
return this.sourceName + " deals damage " + amount + " that creatures toughness to that creature";
|
||||
return this.sourceName + " deals damage " + amount + " that creatures toughness to enchanted creature";
|
||||
}
|
||||
return this.sourceName + " deals " + amount + " damage to that creature";
|
||||
return this.sourceName + " deals " + amount + " damage to enchanted creature";
|
||||
}
|
||||
|
||||
public String getSourceName() {
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
public final class FesteringGoblinToken extends TokenImpl {
|
||||
|
||||
public FesteringGoblinToken() {
|
||||
super("Festering Goblin", "1/1 black Zombie Goblin creature token named Festering Goblin with \"When Festering Goblin dies, target creature gets -1/-1 until end of turn.\"");
|
||||
super("Festering Goblin", "1/1 black Zombie Goblin creature token named Festering Goblin. It has \"When Festering Goblin dies, target creature gets -1/-1 until end of turn.\"");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlack(true);
|
||||
subtype.add(SubType.ZOMBIE);
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
public final class GoldmeadowHarrierToken extends TokenImpl {
|
||||
|
||||
public GoldmeadowHarrierToken() {
|
||||
super("Goldmeadow Harrier", "1/1 white Kithkin Soldier creature token named Goldmeadow Harrier with \"{W}, {T}: Tap target creature.\"");
|
||||
super("Goldmeadow Harrier", "1/1 white Kithkin Soldier creature token named Goldmeadow Harrier. It has \"{W}, {T}: Tap target creature.\"");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
subtype.add(SubType.KITHKIN);
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ import mage.constants.TargetController;
|
|||
public final class SparkElementalToken extends TokenImpl {
|
||||
|
||||
public SparkElementalToken() {
|
||||
super("Spark Elemental", "3/1 red Elemental creature token named Spark Elemental with trample, haste, and \"At the beginning of the end step, sacrifice Spark Elemental.\"");
|
||||
super("Spark Elemental", "3/1 red Elemental creature token named Spark Elemental. It has trample, haste, and \"At the beginning of the end step, sacrifice Spark Elemental.\"");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setRed(true);
|
||||
subtype.add(SubType.ELEMENTAL);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue