Added the keyword "CARDNAME can't be blocked except by Walls and/or creatures with flying.". I also added Elven Riders via this keyword and it's LQ pic url.

This commit is contained in:
jendave
2011-08-06 04:06:04 +00:00
parent eeff889cef
commit b7b8f9f086
3 changed files with 11 additions and 0 deletions

View File

@@ -225,6 +225,9 @@ public class CombatUtil {
if (attacker.getKeyword().contains("CARDNAME can't be blocked except by Walls.") && !blocker.getType().contains("Wall")) return false;
if (attacker.getKeyword().contains("CARDNAME can't be blocked except by Walls and/or creatures with flying.") &&
!(blocker.getType().contains("Wall") || blocker.getKeyword().contains("Flying"))) return false;
return true;
}//canBlock()