mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
Updated "this spell" wordings
This commit is contained in:
parent
487503afcd
commit
2b2f3b6e01
31 changed files with 31 additions and 31 deletions
|
|
@ -50,7 +50,7 @@ public class CastOnlyIfConditionIsTrueEffect extends ContinuousRuleModifyingEffe
|
|||
}
|
||||
|
||||
private String setText() {
|
||||
StringBuilder sb = new StringBuilder("cast {this} only ");
|
||||
StringBuilder sb = new StringBuilder("cast this spell only ");
|
||||
if (condition != null) {
|
||||
sb.append(' ').append(condition.toString());
|
||||
}
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ public class CastOnlyDuringPhaseStepSourceEffect extends ContinuousRuleModifying
|
|||
}
|
||||
|
||||
private String setText() {
|
||||
StringBuilder sb = new StringBuilder("cast {this} only during ");
|
||||
StringBuilder sb = new StringBuilder("cast this spell only during ");
|
||||
if (turnPhase != null) {
|
||||
sb.append(turnPhase.toString());
|
||||
}
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ public class CastOnlyIfYouHaveCastAnotherSpellEffect extends ContinuousRuleModif
|
|||
|
||||
public CastOnlyIfYouHaveCastAnotherSpellEffect() {
|
||||
super(Duration.EndOfGame, Outcome.Detriment);
|
||||
staticText = "Cast {this} only if you've cast another spell this turn";
|
||||
staticText = "Cast this spell only if you've cast another spell this turn";
|
||||
}
|
||||
|
||||
public CastOnlyIfYouHaveCastAnotherSpellEffect(final CastOnlyIfYouHaveCastAnotherSpellEffect effect) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue