Commit eaf00426 authored by mercury233's avatar mercury233

update LuckyExecutor

parent 94847929
...@@ -136,6 +136,8 @@ namespace WindBot.Game.AI.Decks ...@@ -136,6 +136,8 @@ namespace WindBot.Game.AI.Decks
YGOSharp.OCGWrapper.NamedCard cardData = YGOSharp.OCGWrapper.NamedCard.Get(cardId); YGOSharp.OCGWrapper.NamedCard cardData = YGOSharp.OCGWrapper.NamedCard.Get(cardId);
if (cardData != null) if (cardData != null)
{ {
if (cardData.Attack < 0)
return CardPosition.FaceUpAttack;
if (cardData.Attack <= 1000) if (cardData.Attack <= 1000)
return CardPosition.FaceUpDefence; return CardPosition.FaceUpDefence;
} }
......
...@@ -97,7 +97,7 @@ namespace WindBot.Game.AI ...@@ -97,7 +97,7 @@ namespace WindBot.Game.AI
public const int LockBird = 94145021; public const int LockBird = 94145021;
public const int GhostOgreAndSnowRabbit = 59438930; public const int GhostOgreAndSnowRabbit = 59438930;
public const int GhostBelle = 73642296; public const int GhostBelle = 73642296;
public const int EffectVeiler = 63845230; public const int EffectVeiler = 97268402;
public const int ArtifactLancea = 34267821; public const int ArtifactLancea = 34267821;
public const int CalledByTheGrave = 24224830; public const int CalledByTheGrave = 24224830;
......
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