mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
Spellwild Ouphe - fixed cost reduction effect (#6698)
This commit is contained in:
parent
eaae0ce256
commit
83135f347f
2 changed files with 16 additions and 61 deletions
|
|
@ -46,16 +46,16 @@ public class SpellsCostModificationThatTargetSourceEffect extends CostModificati
|
|||
case ANY:
|
||||
break;
|
||||
case YOU:
|
||||
sb.append(" you");
|
||||
sb.append(" you cast");
|
||||
break;
|
||||
case OPPONENT:
|
||||
sb.append(" your opponents");
|
||||
sb.append(" your opponents cast");
|
||||
break;
|
||||
default:
|
||||
throw new IllegalArgumentException("Unsupported target controller " + this.targetController);
|
||||
}
|
||||
|
||||
sb.append(" cast that target ").append(this.targetName);
|
||||
sb.append(" that target ").append(this.targetName);
|
||||
if (this.modificationAmount < 0) {
|
||||
sb.append(" cost {").append(-1 * this.modificationAmount).append("} less to cast");
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue