- 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 (destination.equals(ZoneType.Exile)) {
// If Exiling things, don't give bonus to Tokens // If Exiling things, don't give bonus to Tokens
choice = ComputerUtilCard.getBestCreatureAI(list); 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); choice = ComputerUtilCard.getBestCreatureToBounceAI(list);
} }
} else { } else {

View File

@@ -4,8 +4,9 @@ Types:Creature Angel Spirit
PT:2/2 PT:2/2
K:Flying K:Flying
K:Protection from black K:Protection from black
K:Echo:3 W W
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigChangeZone | TriggerDescription$ When CARDNAME enters the battlefield, return target creature card from your graveyard to the battlefield. T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigChangeZone | TriggerDescription$ When CARDNAME enters the battlefield, return target creature card from your graveyard to the battlefield.
SVar:TrigChangeZone:AB$ChangeZone | Cost$ 0 | Origin$ Graveyard | Destination$ Battlefield | ValidTgts$ Creature.YouCtrl SVar:TrigChangeZone:AB$ChangeZone | Cost$ 0 | Origin$ Graveyard | Destination$ Battlefield | ValidTgts$ Creature.YouCtrl
K:Echo:3 W W SVar:PlayMain1:TRUE
SVar:Picture:http://www.wizards.com/global/images/magic/general/karmic_guide.jpg SVar:Picture:http://www.wizards.com/global/images/magic/general/karmic_guide.jpg
Oracle:Flying, protection from black\nEcho {3}{W}{W} (At the beginning of your upkeep, if this came under your control since the beginning of your last upkeep, sacrifice it unless you pay its echo cost.)\nWhen Karmic Guide enters the battlefield, return target creature card from your graveyard to the battlefield. Oracle:Flying, protection from black\nEcho {3}{W}{W} (At the beginning of your upkeep, if this came under your control since the beginning of your last upkeep, sacrifice it unless you pay its echo cost.)\nWhen Karmic Guide enters the battlefield, return target creature card from your graveyard to the battlefield.