forked from External/mage
[KLD] Added 7 blue cards.
This commit is contained in:
parent
18cce84694
commit
5244363081
14 changed files with 647 additions and 22 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue