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
List
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
alstroemeria-silentlove
windbot
Commits
433bb044
Commit
433bb044
authored
Jul 28, 2016
by
mercury233
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor fix
parent
7eb0f1e9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
Game/AI/Decks/ZexalWeaponsExecutor.cs
Game/AI/Decks/ZexalWeaponsExecutor.cs
+8
-1
Game/AI/Enums/InvincibleMonster.cs
Game/AI/Enums/InvincibleMonster.cs
+1
-2
No files found.
Game/AI/Decks/ZexalWeaponsExecutor.cs
View file @
433bb044
...
...
@@ -58,7 +58,7 @@ namespace DevBot.Game.AI.Decks
AddExecutor
(
ExecutorType
.
Activate
,
(
int
)
CardId
.
DarkHole
,
DefaultDarkHole
);
AddExecutor
(
ExecutorType
.
Activate
,
(
int
)
CardId
.
Raigeki
,
DefaultRaigeki
);
AddExecutor
(
ExecutorType
.
Activate
,
(
int
)
CardId
.
ReinforcementOfTheArmy
,
ReinforcementOfTheArmy
);
AddExecutor
(
ExecutorType
.
Activate
,
(
int
)
CardId
.
XyzChangeTactics
);
AddExecutor
(
ExecutorType
.
Activate
,
(
int
)
CardId
.
XyzChangeTactics
,
XyzChangeTactics
);
// XYZ summons
AddExecutor
(
ExecutorType
.
SpSummon
,
(
int
)
CardId
.
Number39Utopia
);
...
...
@@ -178,6 +178,8 @@ namespace DevBot.Game.AI.Decks
private
bool
InstantFusion
()
{
if
(
Duel
.
LifePoints
[
0
]
<=
1000
)
return
false
;
List
<
ClientCard
>
monsters
=
Duel
.
Fields
[
0
].
GetMonsters
();
int
count4
=
0
;
int
count5
=
0
;
...
...
@@ -201,6 +203,11 @@ namespace DevBot.Game.AI.Decks
return
false
;
}
private
bool
XyzChangeTactics
()
{
return
Duel
.
LifePoints
[
0
]
>
500
;
}
private
bool
NumberS39UtopiatheLightning
()
{
return
Card
.
Attack
<
5000
;
...
...
Game/AI/Enums/InvincibleMonster.cs
View file @
433bb044
...
...
@@ -11,7 +11,6 @@
MaskedHeroDivineWind
=
22093873
,
DarknessNeosphere
=
60417395
,
MetaionTheTimelord
=
74530899
,
CastleGate
=
36931229
,
Number39Utopia
=
84013237
CastleGate
=
36931229
}
}
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