forked from External/mage
another batch of text cleanup (#11694)
* minor refactor EntersBattlefieldEffect * more minor refactoring * text fix * fix more text * more text adjustments * more text discrepancy fixes * continue the text fixes * followup fixes and more fixes
This commit is contained in:
parent
7008f0a7f0
commit
4959ef4d49
84 changed files with 192 additions and 212 deletions
|
|
@ -18,9 +18,9 @@ import mage.game.events.GameEvent;
|
|||
*/
|
||||
public class BecomesAttachedToCreatureSourceEffect extends ReplacementEffectImpl {
|
||||
|
||||
protected Effects baseEffects = new Effects();
|
||||
protected String text;
|
||||
protected Condition condition;
|
||||
private final Effects baseEffects;
|
||||
private final String text;
|
||||
private final Condition condition;
|
||||
|
||||
public BecomesAttachedToCreatureSourceEffect(Effect baseEffect) {
|
||||
this(baseEffect, "");
|
||||
|
|
@ -32,6 +32,7 @@ public class BecomesAttachedToCreatureSourceEffect extends ReplacementEffectImpl
|
|||
|
||||
public BecomesAttachedToCreatureSourceEffect(Effect baseEffect, Condition condition, String text) {
|
||||
super(Duration.WhileOnBattlefield, baseEffect.getOutcome(), false);
|
||||
this.baseEffects = new Effects();
|
||||
this.baseEffects.add(baseEffect);
|
||||
this.text = text;
|
||||
this.condition = condition;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue