- DTK:Added Silumgar Assassin

This commit is contained in:
swordshine
2015-03-04 22:37:45 +00:00
parent af29a5fde7
commit 0236900f10

View File

@@ -912,6 +912,10 @@ public class CombatUtil {
return false; return false;
} }
if (attacker.hasKeyword("Creatures with power greater than CARDNAME's power can't block it.") && attacker.getNetPower() < blocker.getNetPower()) {
return false;
}
if (attacker.hasStartOfKeyword("CantBeBlockedBy ")) { if (attacker.hasStartOfKeyword("CantBeBlockedBy ")) {
final int keywordPosition = attacker.getKeywordPosition("CantBeBlockedBy "); final int keywordPosition = attacker.getKeywordPosition("CantBeBlockedBy ");
final String parse = attacker.getKeywords().get(keywordPosition).toString(); final String parse = attacker.getKeywords().get(keywordPosition).toString();