From 86b92da97fe1ebbfe6475c8e6d21c6311cbbef51 Mon Sep 17 00:00:00 2001 From: Sloth Date: Sun, 9 Jun 2013 19:01:49 +0000 Subject: [PATCH] - Improved AI for Searing Spear Askari. --- src/main/java/forge/card/ability/ai/PumpAiBase.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/forge/card/ability/ai/PumpAiBase.java b/src/main/java/forge/card/ability/ai/PumpAiBase.java index 9e703ad7a81..61dd8277a24 100644 --- a/src/main/java/forge/card/ability/ai/PumpAiBase.java +++ b/src/main/java/forge/card/ability/ai/PumpAiBase.java @@ -167,7 +167,8 @@ public abstract class PumpAiBase extends SpellAbilityAi { final boolean evasive = (keyword.endsWith("Unblockable") || keyword.endsWith("Fear") || keyword.endsWith("Intimidate") || keyword.endsWith("Shadow") - || keyword.contains("CantBeBlockedBy") || keyword.endsWith("CARDNAME can't be blocked except by Walls.")); + || keyword.contains("CantBeBlockedBy") || keyword.endsWith("CARDNAME can't be blocked except by Walls.") + || keyword.endsWith("CARDNAME can't be blocked except by two or more creatures.")); final boolean combatRelevant = (keyword.endsWith("First Strike") || keyword.contains("Bushido")); // give evasive keywords to creatures that can or do attack if (evasive) {