- BNG: Added Nessian Demolok and Oracle of Bones

This commit is contained in:
swordshine
2014-01-22 10:58:32 +00:00
parent 0b75a0ee8e
commit e8aeec7f87

View File

@@ -358,10 +358,11 @@ public class CountersPutAi extends SpellAbilityAi {
// add counter if that opponent has a giant creature
final List<Card> creats = player.getCreaturesInPlay();
final int tributeAmount = source.getKeywordMagnitude("Tribute");
final boolean isHaste = source.hasKeyword("Haste");
List<Card> threatening = CardLists.filter(creats, new Predicate<Card>() {
@Override
public boolean apply(Card c) {
return CombatUtil.canBlock(source, c, true)
return CombatUtil.canBlock(source, c, !isHaste)
&& (c.getNetDefense() > source.getNetAttack() + tributeAmount || c.hasKeyword("DeathTouch"));
}
});