mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
- 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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user