text fixes for blink effects

This commit is contained in:
Evan Kranzler 2022-06-07 08:56:43 -04:00
parent 81c8d4e28f
commit 3d0e8c3404
16 changed files with 29 additions and 23 deletions

View file

@ -47,7 +47,7 @@ public class ReturnToBattlefieldUnderOwnerControlTargetEffect extends OneShotEff
}
private void updateText() {
this.staticText = "then return " + this.returnName
this.staticText = ", then return " + this.returnName
+ " to the battlefield" + (tapped ? " tapped" : "")
+ " under " + this.returnUnderControlName + " control";
}

View file

@ -59,7 +59,7 @@ public class ReturnToBattlefieldUnderYourControlTargetEffect extends OneShotEffe
}
private void updateText() {
this.staticText = "return " + returnName + " to the battlefield under " + returnUnderControlName + " control"
this.staticText = ", then return " + returnName + " to the battlefield under " + returnUnderControlName + " control"
+ (tapped ? " tapped" : "")
+ (tapped && attacking ? " and" : "")
+ (attacking ? " attacking" : "");