- Added Wretched Banquet.

This commit is contained in:
Sloth
2011-09-16 14:12:33 +00:00
parent 39878c3f70
commit 858aa751e4
3 changed files with 19 additions and 0 deletions

View File

@@ -5046,6 +5046,13 @@ public class Card extends GameEntity implements Comparable<Card> {
return false;
}
}
} else if (Property.startsWith("leastPower")) {
CardList list = AllZoneUtil.getCreaturesInPlay();
for (Card crd : list) {
if (crd.getNetAttack() < getNetAttack()) {
return false;
}
}
} else if (Property.startsWith("greatestCMC")) {
CardList list = AllZoneUtil.getCreaturesInPlay();
for (Card crd : list) {