- Reorganized Conditions of static abilities (WIP).

This commit is contained in:
Sloth
2012-11-24 11:05:57 +00:00
parent 161350dae1
commit 591f0b945b
55 changed files with 69 additions and 69 deletions

View File

@@ -504,17 +504,17 @@ public class StaticAbility {
|| controller.getColoredCardsInPlay(Constant.Color.WHITE).isEmpty())) {
return false;
}
} else if (params.get("Condition").equals("FatefulHour")) {
if (controller.getLife() > 5) {
return false;
}
} else if (params.get("Condition").equals("Threshold")) {
if (!controller.hasThreshold()) {
return false;
}
}
}
if (this.params.containsKey("FatefulHour") && controller.getLife() > 5) {
return false;
}
if (this.params.containsKey("Threshold") && !controller.hasThreshold()) {
return false;
}
if (this.params.containsKey("Hellbent") && !controller.hasHellbent()) {
return false;
}