- Added Empty City Ruse and False Peace.

This commit is contained in:
Sloth
2012-05-03 11:42:58 +00:00
parent 7b1a0aa5b4
commit 53e237283f
5 changed files with 38 additions and 7 deletions

View File

@@ -260,10 +260,17 @@ public class PhaseUtil {
if (player.hasKeyword("Skip your next combat phase.")) {
return true;
}
if (player.hasKeyword("Skip your combat phase.")) {
return true;
}
if (player.hasKeyword("Skip all combat phases of your next turn.")) {
player.removeKeyword("Skip all combat phases of your next turn.");
player.addKeyword("Skip all combat phases of this turn.");
return true;
}
if (player.hasKeyword("Skip all combat phases of this turn.")) {
return true;
}
return false;
}