Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
W
windbot
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
windbot
Commits
64d906c1
Commit
64d906c1
authored
May 27, 2023
by
mercury233
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
https://github.com/IceYGO/windbot
parents
6260492f
1b401e3a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
6 deletions
+20
-6
Game/AI/Decks/ExosisterExecutor.cs
Game/AI/Decks/ExosisterExecutor.cs
+18
-4
Game/GameBehavior.cs
Game/GameBehavior.cs
+1
-1
WindBotInfo.cs
WindBotInfo.cs
+1
-1
No files found.
Game/AI/Decks/ExosisterExecutor.cs
View file @
64d906c1
...
...
@@ -1950,7 +1950,7 @@ namespace WindBot.Game.AI.Decks
}
// become target
if
(
DefaultOnBecomeTarget
(
)
||
(
Duel
.
CurrentChain
.
Any
(
c
=>
c
==
Card
)
&&
Duel
.
LastChainPlayer
!=
0
))
if
(
(
DefaultOnBecomeTarget
()
&&
!
Util
.
ChainContainsCard
(
_CardId
.
EvenlyMatched
)
)
||
(
Duel
.
CurrentChain
.
Any
(
c
=>
c
==
Card
)
&&
Duel
.
LastChainPlayer
!=
0
))
{
targetedMagnificaList
.
Add
(
Card
);
transformDestList
.
AddRange
(
new
List
<
int
>{
CardId
.
ExosistersMagnifica
,
CardId
.
ExosisterMikailis
,
CardId
.
ExosisterGibrine
,
CardId
.
ExosisterKaspitell
,
CardId
.
ExosisterAsophiel
});
...
...
@@ -2025,7 +2025,7 @@ namespace WindBot.Game.AI.Decks
public
bool
ExosisterPaxActivate
()
{
if
(
potActivate
)
if
(
potActivate
||
Bot
.
LifePoints
<=
800
)
{
return
false
;
}
...
...
@@ -2198,7 +2198,7 @@ namespace WindBot.Game.AI.Decks
public
bool
ExosisterPaxActivateForEndSearch
()
{
if
(
potActivate
)
if
(
potActivate
||
Bot
.
LifePoints
<=
800
)
{
return
false
;
}
...
...
@@ -2230,6 +2230,10 @@ namespace WindBot.Game.AI.Decks
public
bool
ExosisterArmentActivate
()
{
if
(
Bot
.
LifePoints
<=
800
)
{
return
false
;
}
ClientCard
activateTarget
=
null
;
if
(
Duel
.
Player
==
0
)
...
...
@@ -2366,6 +2370,11 @@ namespace WindBot.Game.AI.Decks
public
bool
ExosisterVadisActivate
()
{
if
(
Bot
.
LifePoints
<=
800
)
{
return
false
;
}
List
<
int
>
checkListForSpSummon
=
new
List
<
int
>{
CardId
.
ExosisterSophia
,
CardId
.
ExosisterIrene
,
CardId
.
ExosisterStella
,
CardId
.
ExosisterMartha
,
CardId
.
ExosisterElis
};
...
...
@@ -2435,6 +2444,11 @@ namespace WindBot.Game.AI.Decks
public
bool
ExosisterReturniaActivate
()
{
if
(
Bot
.
LifePoints
<=
800
)
{
return
false
;
}
// banish problem card
ClientCard
target
=
GetProblematicEnemyCard
(
true
);
if
(
target
!=
null
&&
Duel
.
LastChainPlayer
!=
0
)
...
...
@@ -2463,7 +2477,7 @@ namespace WindBot.Game.AI.Decks
// dump banish
target
=
GetBestEnemyCard
(
false
,
true
,
true
);
bool
check1
=
DefaultOnBecomeTarget
()
&&
target
.
Id
!=
_CardId
.
EvenlyMatched
;
bool
check1
=
DefaultOnBecomeTarget
()
&&
target
!=
null
&&
(
target
.
Location
!=
CardLocation
.
Onfield
||
target
.
Id
!=
_CardId
.
EvenlyMatched
)
;
bool
check2
=
Bot
.
UnderAttack
;
bool
check3
=
(
Duel
.
Player
==
1
&&
Duel
.
Phase
==
DuelPhase
.
End
&&
Duel
.
LastChainPlayer
!=
0
&&
target
!=
null
&&
target
.
Location
!=
CardLocation
.
Grave
);
bool
check4
=
(
Duel
.
Player
==
1
&&
Enemy
.
GetMonsterCount
()
>=
2
&&
Duel
.
LastChainPlayer
!=
0
);
...
...
Game/GameBehavior.cs
View file @
64d906c1
...
...
@@ -1755,7 +1755,7 @@ namespace WindBot.Game
int
count
=
packet
.
ReadByte
();
int
available
=
packet
.
ReadInt32
();
int
filter
=
0x1
;
for
(
int
i
=
0
;
i
<
2
3
;
++
i
)
for
(
int
i
=
0
;
i
<
2
6
;
++
i
)
{
if
((
available
&
filter
)
!=
0
)
races
.
Add
((
CardRace
)
filter
);
...
...
WindBotInfo.cs
View file @
64d906c1
...
...
@@ -24,7 +24,7 @@ namespace WindBot
Host
=
"127.0.0.1"
;
Port
=
7911
;
HostInfo
=
""
;
Version
=
0x13
54
;
Version
=
0x13
60
;
Hand
=
0
;
Debug
=
false
;
Chat
=
true
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment