[KLD] Added 7 blue cards.

This commit is contained in:
LevelX2 2016-09-17 10:17:40 +02:00
parent 18cce84694
commit 5244363081
14 changed files with 647 additions and 22 deletions

View file

@ -30,10 +30,8 @@ public class MayTapOrUntapTargetEffect extends OneShotEffect {
if (player.chooseUse(Outcome.Untap, "Untap that permanent?", source, game)) {
target.untap(game);
}
} else {
if (player.chooseUse(Outcome.Tap, "Tap that permanent?", source, game)) {
target.tap(game);
}
} else if (player.chooseUse(Outcome.Tap, "Tap that permanent?", source, game)) {
target.tap(game);
}
return true;
}
@ -47,6 +45,9 @@ public class MayTapOrUntapTargetEffect extends OneShotEffect {
@Override
public String getText(Mode mode) {
if (!staticText.isEmpty()) {
return staticText;
}
if (mode.getTargets().isEmpty()) {
return "you may tap or untap it";
} else {