- Temporarily reverted 30117:30118 (related to Echo update) because the current new implementation misbehaves (please see the related forum post) and I could not fix the rule interaction bug in a timely manner.

- Feel free to revert this commit and continue working on the new Echo implementation.
This commit is contained in:
Agetian
2015-09-27 06:00:21 +00:00
parent 5f4b9480e7
commit 273e71cc0a
7 changed files with 83 additions and 25 deletions

View File

@@ -165,7 +165,7 @@ public class CreatureEvaluator implements Function<Card, Integer> {
value -= subValue(30, "cupkeep");
} else if (c.hasStartOfKeyword("At the beginning of your upkeep, sacrifice CARDNAME unless you pay")) {
value -= subValue(20, "sac-unless");
} else if (c.hasStartOfKeyword("Echo") && c.cameUnderControlSinceLastUpkeep()) {
} else if (c.hasStartOfKeyword("(Echo unpaid)")) {
value -= subValue(10, "echo-unpaid");
}