mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
CardProperty.cardHasProperty "powerGTbasePower"
This commit is contained in:
@@ -1391,6 +1391,10 @@ public class CardProperty {
|
||||
if (card.getNetPower() <= card.getNetToughness()) {
|
||||
return false;
|
||||
}
|
||||
} else if (property.equals("powerGTbasePower")) {
|
||||
if (card.getNetPower() <= card.getCurrentPower()) {
|
||||
return false;
|
||||
}
|
||||
} else if (property.equals("powerLTtoughness")) {
|
||||
if (card.getNetPower() >= card.getNetToughness()) {
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user