mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
various ability word text fixes
This commit is contained in:
parent
58dac0a890
commit
f57693392c
78 changed files with 132 additions and 169 deletions
|
|
@ -22,7 +22,6 @@ public class ConstellationAbility extends TriggeredAbilityImpl {
|
|||
|
||||
public ConstellationAbility(Effect effect) {
|
||||
this(effect, false);
|
||||
setAbilityWord(AbilityWord.CONSTELLATION);
|
||||
}
|
||||
|
||||
public ConstellationAbility(Effect effect, boolean optional) {
|
||||
|
|
@ -32,6 +31,7 @@ public class ConstellationAbility extends TriggeredAbilityImpl {
|
|||
public ConstellationAbility(Effect effect, boolean optional, boolean thisOr) {
|
||||
super(Zone.BATTLEFIELD, effect, optional);
|
||||
this.thisOr = thisOr;
|
||||
setAbilityWord(AbilityWord.CONSTELLATION);
|
||||
}
|
||||
|
||||
public ConstellationAbility(final ConstellationAbility ability) {
|
||||
|
|
|
|||
|
|
@ -37,7 +37,8 @@ public class StriveAbility extends SimpleStaticAbility {
|
|||
|
||||
@Override
|
||||
public String getRule() {
|
||||
return new StringBuilder("this spell costs ").append(striveCost).append(" more to cast for each target beyond the first.").toString();
|
||||
return abilityWord.formatWord() + "This spell costs "
|
||||
+ striveCost + " more to cast for each target beyond the first.";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ public class IntimidateAbility extends EvasionAbility implements MageSingleton {
|
|||
|
||||
@Override
|
||||
public String getRule() {
|
||||
return "Intimidate";
|
||||
return "intimidate";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ public final class EldraziHorrorToken extends TokenImpl {
|
|||
}
|
||||
|
||||
public EldraziHorrorToken() {
|
||||
super("Eldrazi Horror", "3/2 colorless Eldrazi Horror creature");
|
||||
super("Eldrazi Horror", "3/2 colorless Eldrazi Horror creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.ELDRAZI);
|
||||
subtype.add(SubType.HORROR);
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ import mage.MageInt;
|
|||
public final class GrovetenderDruidsPlantToken extends TokenImpl {
|
||||
|
||||
public GrovetenderDruidsPlantToken() {
|
||||
super("Plant", "1/1 green Plant creature");
|
||||
super("Plant", "1/1 green Plant creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setGreen(true);
|
||||
subtype.add(SubType.PLANT);
|
||||
|
|
|
|||
|
|
@ -1008,7 +1008,7 @@
|
|||
"manaCost": "{1}{U}",
|
||||
"name": "Chart a Course",
|
||||
"number": "48",
|
||||
"originalText": "Draw two cards. Then discard a card unless you attacked with a creature this turn.",
|
||||
"originalText": "Draw two cards. Then discard a card unless you attacked this turn.",
|
||||
"originalType": "Sorcery",
|
||||
"printings": [
|
||||
"JMP",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue