- Added Topple.

This commit is contained in:
Sloth
2011-08-25 20:31:18 +00:00
parent 5f5d857017
commit f412265403
4 changed files with 16 additions and 1 deletions

View File

@@ -4837,6 +4837,13 @@ public class Card extends MyObservable implements Comparable<Card> {
return false;
} else if (Property.startsWith("wasDealtDamageThisTurn")) {
if ((getReceivedDamageFromThisTurn().keySet()).isEmpty()) return false;
} else if (Property.startsWith("greatestPower")) {
CardList list = AllZoneUtil.getCreaturesInPlay();
for (Card crd : list) {
if (crd.getNetAttack() > getNetAttack()) {
return false;
}
}
} else if (Property.startsWith("enchanted")) {
if (!isEnchanted()) return false;
} else if (Property.startsWith("unenchanted")) {