Commit 157b7917 authored by nanahira's avatar nanahira

Merge branch 'auto' of github.com:jwyxym/windbot

parents eed94020 6d604610
Pipeline #25579 passed with stages
in 43 seconds
using YGOSharp.OCGWrapper.Enums;
using YGOSharp.OCGWrapper.Enums;
using System.Collections.Generic;
using System.Linq;
using WindBot;
......@@ -418,15 +418,16 @@ namespace WindBot.Game.AI.Decks
else
return DefaultMonsterSummon();
}
else if (Bot.LifePoints <= 1500 && GetZoneCards(CardLocation.MonsterZone, Enemy).Count(card => card != null && card.Attack < Card.Attack))
else if (Bot.LifePoints <= 1500 && GetZoneCards(CardLocation.MonsterZone, Enemy).Count(card => card != null && card.Attack < Card.Attack) > 0)
return DefaultMonsterSummon();
return false;
}
private bool MonsterSet()
{
if (Card.HasType(CardType.Flip))
return DefaultMonsterSummon();
if (card.HasSetcode(0x40)) return false;
if (Card.HasSetcode(0x40)) return false;
return DefaultMonsterSummon() && (Bot.LifePoints <= 1500 || Card.HasType(CardType.Flip) || GetZoneCards(CardLocation.MonsterZone, Bot).Count() == 0 || GetZoneCards(CardLocation.MonsterZone, Bot).Count() <= GetZoneCards(CardLocation.MonsterZone, Enemy).Count());
}
}
}
\ No newline at end of file
}
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