Replaced more mana pool errata

This commit is contained in:
Evan Kranzler 2018-05-25 19:37:54 -04:00
parent 9e7041f44b
commit ac6c68180a
50 changed files with 111 additions and 120 deletions

View file

@ -45,7 +45,7 @@ public class ManaTypeInManaPoolCount implements DynamicValue {
@Override
public String getMessage() {
StringBuilder sb = new StringBuilder();
StringBuilder sb = new StringBuilder("unspent ");
switch (manaType) {
case BLACK:
sb.append("black");
@ -66,7 +66,7 @@ public class ManaTypeInManaPoolCount implements DynamicValue {
sb.append("colorless");
break;
}
sb.append(" mana in your mana pool");
sb.append(" mana you have");
return sb.toString();
}
}

View file

@ -50,6 +50,7 @@ import mage.game.events.ManaEvent;
* Commander rule #4 was removed Jan. 18, 2016
*
*/
@Deprecated
public class CommanderManaReplacementEffect extends ReplacementEffectImpl {
private final UUID playerId;

View file

@ -45,7 +45,7 @@ public class AddManaAnyColorAttachedControllerEffect extends ManaEffect {
public AddManaAnyColorAttachedControllerEffect() {
super();
staticText = "its controller adds one mana of any color to their mana pool";
staticText = "its controller adds one mana of any color";
}
public AddManaAnyColorAttachedControllerEffect(final AddManaAnyColorAttachedControllerEffect effect) {

View file

@ -44,7 +44,7 @@ public class AddManaOfAnyTypeProducedEffect extends ManaEffect {
public AddManaOfAnyTypeProducedEffect() {
super();
staticText = "that player adds one mana to their mana pool of any type that land produced";
staticText = "that player adds one mana of any type that land produced";
}
public AddManaOfAnyTypeProducedEffect(final AddManaOfAnyTypeProducedEffect effect) {

View file

@ -38,7 +38,7 @@ public class AddManaToManaPoolTargetControllerEffect extends ManaEffect {
super();
this.mana = mana;
this.emptyOnlyOnTurnsEnd = emptyOnTurnsEnd;
this.staticText = (textManaPoolOwner.equals("their") ? "that player adds " : "add ") + mana.toString() + " to " + textManaPoolOwner + " mana pool";
this.staticText = (textManaPoolOwner.equals("their") ? "that player adds " : "add ") + mana.toString();
}
public AddManaToManaPoolTargetControllerEffect(final AddManaToManaPoolTargetControllerEffect effect) {