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
8667065b
Commit
8667065b
authored
Aug 17, 2018
by
wind2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2pick windbot
parent
7d2a40df
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
68 additions
and
132 deletions
+68
-132
Game/AI/Decks/PickExecutor.cs
Game/AI/Decks/PickExecutor.cs
+65
-0
WindBot.csproj
WindBot.csproj
+1
-0
bots.json
bots.json
+2
-132
No files found.
Game/AI/Decks/PickExecutor.cs
0 → 100644
View file @
8667065b
using
YGOSharp.OCGWrapper.Enums
;
using
System.Collections.Generic
;
using
WindBot
;
using
WindBot.Game
;
using
WindBot.Game.AI
;
namespace
WindBot.Game.AI.Decks
{
[
Deck
(
"Pick"
,
"AI_Trickstar"
)]
public
class
PickExecutor
:
DefaultExecutor
{
public
class
CardId
{
public
const
int
LeoWizard
=
4392470
;
public
const
int
Bunilla
=
69380702
;
}
public
PickExecutor
(
GameAI
ai
,
Duel
duel
)
:
base
(
ai
,
duel
)
{
AddExecutor
(
ExecutorType
.
SpSummon
);
AddExecutor
(
ExecutorType
.
Activate
,
DefaultDontChainMyself
);
AddExecutor
(
ExecutorType
.
SummonOrSet
);
AddExecutor
(
ExecutorType
.
Repos
,
DefaultMonsterRepos
);
AddExecutor
(
ExecutorType
.
SpellSet
);
}
IList
<
ClientCard
>
lastpick
=
new
List
<
ClientCard
>();
public
override
IList
<
ClientCard
>
OnSelectCard
(
IList
<
ClientCard
>
cards
,
int
min
,
int
max
,
int
hint
,
bool
cancelable
)
{
if
(
hint
==
507
)
{
Logger
.
DebugWriteLine
(
"Call SelectCard with hint 507"
);
if
(
cards
.
Count
==
4
)
{
if
(
lastpick
.
Count
==
0
)
{
lastpick
=
cards
;
}
else
{
IList
<
ClientCard
>
now_select
=
lastpick
;
lastpick
.
Clear
();
return
now_select
;
}
}
}
if
(
Duel
.
Phase
==
DuelPhase
.
BattleStart
)
return
null
;
IList
<
ClientCard
>
selected
=
new
List
<
ClientCard
>();
// select the last cards
for
(
int
i
=
1
;
i
<=
max
;
++
i
)
selected
.
Add
(
cards
[
cards
.
Count
-
i
]);
return
selected
;
}
public
override
int
OnSelectOption
(
IList
<
int
>
options
)
{
return
Program
.
Rand
.
Next
(
options
.
Count
);
}
}
}
\ No newline at end of file
WindBot.csproj
View file @
8667065b
...
@@ -69,6 +69,7 @@
...
@@ -69,6 +69,7 @@
<Compile
Include=
"Game\AI\Decks\BlackwingExecutor.cs"
/>
<Compile
Include=
"Game\AI\Decks\BlackwingExecutor.cs"
/>
<Compile
Include=
"Game\AI\Decks\CyberDragonExecutor.cs"
/>
<Compile
Include=
"Game\AI\Decks\CyberDragonExecutor.cs"
/>
<Compile
Include=
"Game\AI\Decks\DarkMagicianExecutor.cs"
/>
<Compile
Include=
"Game\AI\Decks\DarkMagicianExecutor.cs"
/>
<Compile
Include=
"Game\AI\Decks\PickExecutor.cs"
/>
<Compile
Include=
"Game\AI\Decks\SkyStrikerExecutor.cs"
/>
<Compile
Include=
"Game\AI\Decks\SkyStrikerExecutor.cs"
/>
<Compile
Include=
"Game\AI\Decks\MokeyMokeyKingExecutor.cs"
/>
<Compile
Include=
"Game\AI\Decks\MokeyMokeyKingExecutor.cs"
/>
<Compile
Include=
"Game\AI\Decks\MokeyMokeyExecutor.cs"
/>
<Compile
Include=
"Game\AI\Decks\MokeyMokeyExecutor.cs"
/>
...
...
bots.json
View file @
8667065b
{
{
"windbots"
:
[
"windbots"
:
[
{
{
"name"
:
"琪露诺"
,
"name"
:
"千奈"
,
"deck"
:
"Toadally Awesome"
,
"deck"
:
"Pick"
,
"dialog"
:
"cirno.zh-CN"
},
{
"name"
:
"琪露诺"
,
"deck"
:
"Rainbow"
,
"dialog"
:
"cirno.zh-CN"
},
{
"name"
:
"琪露诺"
,
"deck"
:
"Rainbow"
,
"dialog"
:
"cirno.zh-CN"
},
{
"name"
:
"谜之剑士LV4"
,
"deck"
:
"Dragunity"
,
"dialog"
:
"swordsman.zh-CN"
},
{
"name"
:
"谜之剑士LV4"
,
"deck"
:
"Rank V"
,
"dialog"
:
"swordsman.zh-CN"
},
{
"name"
:
"谜之剑士LV4"
,
"deck"
:
"Zexal Weapons"
,
"dialog"
:
"swordsman.zh-CN"
},
{
"name"
:
"复制植物"
,
"deck"
:
"Zoodiac"
,
"dialog"
:
"copy.zh-CN"
},
{
"name"
:
"复制植物"
,
"deck"
:
"Blue-Eyes"
,
"dialog"
:
"copy.zh-CN"
},
{
"name"
:
"复制植物"
,
"deck"
:
"Blue-Eyes"
,
"dialog"
:
"copy.zh-CN"
},
{
"name"
:
"复制梁龙"
,
"deck"
:
"SkyStriker"
,
"dialog"
:
"anothercopy.zh-CN"
},
{
"name"
:
"复制梁龙"
,
"deck"
:
"SkyStriker"
,
"dialog"
:
"anothercopy.zh-CN"
},
{
"name"
:
"复制梁龙"
,
"deck"
:
"SkyStriker"
,
"dialog"
:
"anothercopy.zh-CN"
},
{
"name"
:
"尼亚"
,
"deck"
:
"Yosenju"
,
"dialog"
:
"near.zh-CN"
},
{
"name"
:
"尼亚"
,
"deck"
:
"Qliphort"
,
"dialog"
:
"near.zh-CN"
},
{
"name"
:
"尼亚"
,
"deck"
:
"Trickstar"
,
"dialog"
:
"near.zh-CN"
},
{
"name"
:
"试作型机器人1732"
,
"deck"
:
"ST1732"
,
"dialog"
:
"default"
},
{
"name"
:
"试作型机器人1732"
,
"deck"
:
"ST1732"
,
"dialog"
:
"default"
"dialog"
:
"default"
},
{
"name"
:
"试作型机器人1732"
,
"deck"
:
"ST1732"
,
"dialog"
:
"default"
},
{
"name"
:
"永远之魂"
,
"deck"
:
"Burn"
,
"dialog"
:
"soul.zh-CN"
},
{
"name"
:
"永远之魂"
,
"deck"
:
"Frog"
,
"dialog"
:
"soul.zh-CN"
},
{
"name"
:
"永远之魂"
,
"deck"
:
"Horus"
,
"dialog"
:
"soul.zh-CN"
},
{
"name"
:
"奇異果"
,
"deck"
:
"LightswornShaddoldinosour"
,
"dialog"
:
"kiwi.zh-TW"
},
{
"name"
:
"奇異果"
,
"deck"
:
"LightswornShaddoldinosour"
,
"dialog"
:
"kiwi.zh-TW"
},
{
"name"
:
"奇魔果"
,
"deck"
:
"DarkMagician"
,
"dialog"
:
"kiwi.zh-TW"
},
{
"name"
:
"奇魔果"
,
"deck"
:
"DarkMagician"
,
"dialog"
:
"kiwi.zh-TW"
},
{
"name"
:
"燃血鬥士"
,
"deck"
:
"ChainBurn"
,
"dialog"
:
"kiwi.zh-TW"
},
{
"name"
:
"燃血鬥士"
,
"deck"
:
"ChainBurn"
,
"dialog"
:
"kiwi.zh-TW"
}
}
]
]
}
}
\ No newline at end of file
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