Commit 9a2852d8 authored by mercury233's avatar mercury233

new deck S71732

parent eb3eeb25
#created by ...
#main
32295838
36211150
7445307
70950698
70950698
70950698
35595518
35595518
9190563
9190563
44956694
44956694
44956694
8567955
8567955
8567955
71172240
71172240
45778242
45778242
62706865
62706865
18789533
37520316
53129443
83764718
5318639
8267140
14087893
43839002
43839002
19508728
61583217
29401950
44095762
53582587
70238111
83326048
94192409
40605147
#extra
1861629
1861629
1861629
6622715
6622715
6622715
32617464
32617464
34472920
34472920
79016563
79016563
98978921
98978921
98978921
!side
This diff is collapsed.
......@@ -289,7 +289,7 @@ namespace WindBot.Game.AI
/// </summary>
protected bool DefaultSpellSet()
{
return Card.IsTrap() && Bot.GetSpellCountWithoutField() < 4;
return (Card.IsTrap() || Card.HasType(CardType.QuickPlay)) && Bot.GetSpellCountWithoutField() < 4;
}
/// <summary>
......
......@@ -89,6 +89,16 @@ namespace WindBot.Game
return GetCards(SpellZone);
}
public List<ClientCard> GetMonstersInExtraZone()
{
List<ClientCard> cards = new List<ClientCard>();
if (MonsterZone[5] != null)
cards.Add(MonsterZone[5]);
if (MonsterZone[6] != null)
cards.Add(MonsterZone[6]);
return cards;
}
public bool HasInHand(int cardId)
{
return HasInCards(Hand, cardId);
......
......@@ -74,6 +74,7 @@
<Compile Include="Game\AI\Decks\GraydleExecutor.cs" />
<Compile Include="Game\AI\Decks\LightswornExecutor.cs" />
<Compile Include="Game\AI\Decks\QliphortExecutor.cs" />
<Compile Include="Game\AI\Decks\ST1732Executor.cs" />
<Compile Include="Game\AI\Decks\YosenjuExecutor.cs" />
<Compile Include="Game\AI\Decks\DragunityExecutor.cs" />
<Compile Include="Game\AI\Decks\FrogExecutor.cs" />
......
......@@ -60,6 +60,21 @@
"deck": "Qliphort",
"dialog": "near.zh-CN"
},
{
"name": "试作型机器人1732",
"deck": "ST1732",
"dialog": "default"
},
{
"name": "试作型机器人1732",
"deck": "ST1732",
"dialog": "default"
},
{
"name": "试作型机器人1732",
"deck": "ST1732",
"dialog": "default"
},
{
"name": "永远之魂",
"deck": "Burn",
......
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