fix Fungal Fortitude text

This commit is contained in:
Susucre 2023-11-04 18:19:32 +01:00
parent 106bcd5ef5
commit 357ebec523
2 changed files with 6 additions and 4 deletions

View file

@ -18,13 +18,15 @@ public class ReturnToBattlefieldUnderOwnerControlAttachedEffect extends OneShotE
private final boolean tapped;
public ReturnToBattlefieldUnderOwnerControlAttachedEffect() {
this(false);
this("that card", false);
}
public ReturnToBattlefieldUnderOwnerControlAttachedEffect(boolean tapped) {
public ReturnToBattlefieldUnderOwnerControlAttachedEffect(String textCard, boolean tapped) {
super(Outcome.Neutral);
this.tapped = tapped;
staticText = "return that card to the battlefield under its owner's control";
staticText = "return " + textCard + " to the battlefield "
+ (tapped ? "tapped " : "")
+ "under its owner's control";
}
protected ReturnToBattlefieldUnderOwnerControlAttachedEffect(final ReturnToBattlefieldUnderOwnerControlAttachedEffect effect) {