Commit b94542d3 authored by mercury233's avatar mercury233

fix

parent 6b4c0ccb
...@@ -337,13 +337,13 @@ namespace WindBot.Game.AI.Decks ...@@ -337,13 +337,13 @@ namespace WindBot.Game.AI.Decks
{ {
//if (AI.Utils.IsOneEnemyBetterThanValue(2500, true)) //if (AI.Utils.IsOneEnemyBetterThanValue(2500, true))
// return true; // return true;
ClientCard invincible = AI.Utils.GetProblematicEnemyCard(); ClientCard invincible = AI.Utils.GetProblematicEnemyCard(3000);
return invincible != null; return invincible != null;
} }
private bool ScrapDragonEffect() private bool ScrapDragonEffect()
{ {
ClientCard invincible = AI.Utils.GetProblematicEnemyCard(); ClientCard invincible = AI.Utils.GetProblematicEnemyCard(3000);
if (invincible == null && !AI.Utils.IsOneEnemyBetterThanValue(2800 - 1, false)) if (invincible == null && !AI.Utils.IsOneEnemyBetterThanValue(2800 - 1, false))
return false; return false;
......
...@@ -67,7 +67,7 @@ namespace WindBot.Game.AI.Decks ...@@ -67,7 +67,7 @@ namespace WindBot.Game.AI.Decks
AddExecutor(ExecutorType.Activate, CardId.PotOfDesires, DefaultPotOfDesires); AddExecutor(ExecutorType.Activate, CardId.PotOfDesires, DefaultPotOfDesires);
AddExecutor(ExecutorType.Summon, CardId.AngelTrumpeter, AngelTrumpeterSummon); AddExecutor(ExecutorType.Summon, CardId.AngelTrumpeter, AngelTrumpeterSummon);
AddExecutor(ExecutorType.Summon, CardId.MegalosmasherX, KabazaulsSummon); AddExecutor(ExecutorType.Summon, CardId.MegalosmasherX, MegalosmasherXSummon);
AddExecutor(ExecutorType.Summon, CardId.MasterPendulumTheDracoslayer, MasterPendulumTheDracoslayerSummon); AddExecutor(ExecutorType.Summon, CardId.MasterPendulumTheDracoslayer, MasterPendulumTheDracoslayerSummon);
AddExecutor(ExecutorType.Summon, CardId.MysteryShellDragon, MysteryShellDragonSummon); AddExecutor(ExecutorType.Summon, CardId.MysteryShellDragon, MysteryShellDragonSummon);
AddExecutor(ExecutorType.Summon, CardId.PhantomGryphon, PhantomGryphonSummon); AddExecutor(ExecutorType.Summon, CardId.PhantomGryphon, PhantomGryphonSummon);
...@@ -233,7 +233,7 @@ namespace WindBot.Game.AI.Decks ...@@ -233,7 +233,7 @@ namespace WindBot.Game.AI.Decks
{ {
return Bot.HasInMonstersZone(CardId.MetalfoesGoldriver); return Bot.HasInMonstersZone(CardId.MetalfoesGoldriver);
} }
private bool KabazaulsSummon() private bool MegalosmasherXSummon()
{ {
return Bot.HasInMonstersZone(CardId.MegalosmasherX); return Bot.HasInMonstersZone(CardId.MegalosmasherX);
} }
......
...@@ -127,6 +127,8 @@ The parameters are same as commandlines, but low cased. ...@@ -127,6 +127,8 @@ The parameters are same as commandlines, but low cased.
* Get equip of card. * Get equip of card.
* Get attack target.
* Better new master rule support * Better new master rule support
* Update the known card enums * Update the known card enums
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment