mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +00:00
- Added Wretched Banquet.
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user