mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18:01 +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")) {
|
if (c.hasKeyword("Intimidate")) {
|
||||||
value += addValue(power * 6, "intimidate");
|
value += addValue(power * 6, "intimidate");
|
||||||
}
|
}
|
||||||
|
if (c.hasStartOfKeyword("Menace")) {
|
||||||
|
value += addValue(power * 4, "menace");
|
||||||
|
}
|
||||||
if (c.hasStartOfKeyword("CantBeBlockedBy")) {
|
if (c.hasStartOfKeyword("CantBeBlockedBy")) {
|
||||||
value += addValue(power * 3, "block-restrict");
|
value += addValue(power * 3, "block-restrict");
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user