Commit 4f8bc564 authored by mercury233's avatar mercury233

fix

parent 0419383b
......@@ -59,7 +59,7 @@ namespace WindBot.Game.AI.Decks
AddExecutor(ExecutorType.Activate, (int)CardId.鬼青蛙, 鬼青蛙效果);
AddExecutor(ExecutorType.Activate, (int)CardId.小灰篮史莱姆, 小灰篮史莱姆效果);
AddExecutor(ExecutorType.Activate, (int)CardId.粹蛙, 低攻怪兽通常召唤);
AddExecutor(ExecutorType.Activate, (int)CardId.粹蛙, 粹蛙效果);
AddExecutor(ExecutorType.Activate, (int)CardId.冰结界的传道师);
AddExecutor(ExecutorType.Activate, (int)CardId.魔知青蛙);
......@@ -264,6 +264,16 @@ namespace WindBot.Game.AI.Decks
return true;
}
private bool 粹蛙效果()
{
if (低攻怪兽通常召唤())
{
AI.SelectPosition(CardPosition.FaceUpDefence);
return true;
}
return false;
}
private bool 低攻怪兽通常召唤()
{
List<ClientCard> monsters = Duel.Fields[0].GetMonsters();
......
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