Add fear to evasion abilities

This commit is contained in:
Seravy
2018-02-16 12:34:35 +01:00
parent 32ef472b0c
commit 99f64d7565

View File

@@ -484,6 +484,10 @@ public class AttachAi extends SpellAbilityAi {
if (card.hasKeyword("Menace")) { if (card.hasKeyword("Menace")) {
thisprio += 10; thisprio += 10;
} }
// Avoid this for Sleepers Robe?
if (card.hasKeyword("Fear")) {
thisprio += 15;
}
if (card.hasKeyword("Flying")) { if (card.hasKeyword("Flying")) {
thisprio += 20; thisprio += 20;
} }