- Added special AI for Skullclamp.

This commit is contained in:
jendave
2011-08-07 00:50:55 +00:00
parent ed266ae235
commit 658a82f1cb

View File

@@ -1277,7 +1277,7 @@ public class CardFactoryUtil {
return c.isCreature()
&& CombatUtil.canAttackNextTurn(c)
&& CardFactoryUtil.canTarget(sourceCard, c)
&& (c.getNetDefense() + Tough > 0);
&& (c.getNetDefense() + Tough > 0 || sourceCard.getName().equals("Skullclamp"));
}
});