Added Sovereigns of Lost Alara and fixed AI targeting for Temporal Fissure

This commit is contained in:
jendave
2011-08-06 04:40:38 +00:00
parent 75983cd412
commit 4f7d13ccbc
6 changed files with 91 additions and 21 deletions

View File

@@ -7362,8 +7362,8 @@ public class CardFactory implements NewConstants {
CardList human3 = CardFactoryUtil.AI_getHumanEnchantment(card, true);
CardList human4 = CardFactoryUtil.getLandsInPlay(player);
if(human != null) setTargetCard(CardFactoryUtil.AI_getBestCreature(human));
else if(human2 != null) setTargetCard(CardFactoryUtil.AI_getBestArtifact(human));
else if(human3 != null) setTargetCard(CardFactoryUtil.AI_getBestEnchantment(human,card, true));
else if(human2 != null) setTargetCard(CardFactoryUtil.AI_getBestArtifact(human2));
else if(human3 != null) setTargetCard(CardFactoryUtil.AI_getBestEnchantment(human3,card, true));
else if(human4 != null) setTargetCard(CardFactoryUtil.AI_getBestLand(human4));
}