mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 14:32:06 -08:00
Replaced more mana pool errata
This commit is contained in:
parent
9e7041f44b
commit
ac6c68180a
50 changed files with 111 additions and 120 deletions
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue