Commit 1968ca78 authored by mercury233's avatar mercury233

fix DefaultScarlightRedDragonArchfiendEffect

parent 139df65a
......@@ -1065,7 +1065,7 @@ namespace WindBot.Game.AI
{
int selfCount = Bot.GetMonsters().Count(monster => !monster.Equals(Card) && monster.IsSpecialSummoned && monster.HasType(CardType.Effect) && monster.Attack <= Card.Attack);
int oppoCount = Enemy.GetMonsters().Count(monster => monster.IsSpecialSummoned && monster.HasType(CardType.Effect) && monster.Attack <= Card.Attack);
return selfCount <= oppoCount || oppoCount >= 3;
return selfCount <= oppoCount && oppoCount > 0 || oppoCount >= 3;
}
/// <summary>
......
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