- AttachAi: for the purpose of attaching equipment and enchantments, consider +2 power a significant enough power bonus for Infect creatures (since only 10 counters are necessary to win and it can cripple opposing creatures).

This commit is contained in:
Agetian
2017-02-02 11:56:04 +00:00
parent 7b5c05b5d2
commit d38f47c9e5

View File

@@ -938,6 +938,10 @@ public class AttachAi extends SpellAbilityAi {
if (isUsefulAttachKeyword(keyword, c, sa, pow)) {
return true;
}
if (c.hasKeyword("Infect") && pow >= 2) {
// consider +2 power a significant bonus on Infect creatures
return true;
}
}
return false;
}