mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 18:58:00 +00:00
- Added Menace to evaluateCreature calculation.
This commit is contained in:
@@ -57,6 +57,9 @@ public class CreatureEvaluator implements Function<Card, Integer> {
|
||||
if (c.hasKeyword("Intimidate")) {
|
||||
value += addValue(power * 6, "intimidate");
|
||||
}
|
||||
if (c.hasStartOfKeyword("Menace")) {
|
||||
value += addValue(power * 4, "menace");
|
||||
}
|
||||
if (c.hasStartOfKeyword("CantBeBlockedBy")) {
|
||||
value += addValue(power * 3, "block-restrict");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user