- Improved AI using Karmic Guide.

This commit is contained in:
Sloth
2016-03-13 17:52:34 +00:00
parent 4053e57854
commit bc7b39196b
2 changed files with 12 additions and 2 deletions

View File

@@ -972,7 +972,16 @@ public class ChangeZoneAi extends SpellAbilityAi {
if (destination.equals(ZoneType.Exile)) {
// If Exiling things, don't give bonus to Tokens
choice = ComputerUtilCard.getBestCreatureAI(list);
} else {
} else if (origin.equals(ZoneType.Graveyard)) {
choice = mostExpensive;
// Karmic Guide can chain another creature
for (Card c : list) {
if ("Karmic Guide".equals(c.getName())) {
choice = c;
break;
}
}
} else {
choice = ComputerUtilCard.getBestCreatureToBounceAI(list);
}
} else {