Commit 4101773a authored by nanahira's avatar nanahira

add pot of greed to 3 decks

parent 3bd53ba5
Pipeline #2847 failed with stage
in 33 seconds
...@@ -40,6 +40,9 @@ ...@@ -40,6 +40,9 @@
10045474 10045474
40605147 40605147
40605147 40605147
55144522
55144522
55144522
#extra #extra
37818794 37818794
37818794 37818794
......
...@@ -21,8 +21,9 @@ ...@@ -21,8 +21,9 @@
18144506 18144506
35261759 35261759
35261759 35261759
49238328 55144522
49238328 55144522
55144522
73915051 73915051
73915051 73915051
62256492 62256492
......
...@@ -25,9 +25,9 @@ ...@@ -25,9 +25,9 @@
11110587 11110587
14532163 14532163
14532163 14532163
49238328 55144522
49238328 55144522
49238328 55144522
54693926 54693926
54693926 54693926
57916305 57916305
......
...@@ -59,6 +59,8 @@ namespace WindBot.Game.AI.Decks ...@@ -59,6 +59,8 @@ namespace WindBot.Game.AI.Decks
AddExecutor(ExecutorType.Activate, CardId.MaxxC, DefaultMaxxC); AddExecutor(ExecutorType.Activate, CardId.MaxxC, DefaultMaxxC);
AddExecutor(ExecutorType.Activate, CardId.HarpiesFeatherDuster); AddExecutor(ExecutorType.Activate, CardId.HarpiesFeatherDuster);
AddExecutor(ExecutorType.Activate, CardId.PotofGreed);
AddExecutor(ExecutorType.Activate, CardId.DragunofRedEyes, DragunofRedEyesDestroy); AddExecutor(ExecutorType.Activate, CardId.DragunofRedEyes, DragunofRedEyesDestroy);
AddExecutor(ExecutorType.Activate, CardId.ThousandEyesRestrict, ThousandEyesRestrictEffect); AddExecutor(ExecutorType.Activate, CardId.ThousandEyesRestrict, ThousandEyesRestrictEffect);
......
...@@ -99,6 +99,7 @@ namespace WindBot.Game.AI.Decks ...@@ -99,6 +99,7 @@ namespace WindBot.Game.AI.Decks
AddExecutor(ExecutorType.Activate, CardId.HarpieFeatherDuster, DefaultHarpiesFeatherDusterFirst); AddExecutor(ExecutorType.Activate, CardId.HarpieFeatherDuster, DefaultHarpiesFeatherDusterFirst);
AddExecutor(ExecutorType.Activate, CardId.CosmicCyclone, DefaultMysticalSpaceTyphoon); AddExecutor(ExecutorType.Activate, CardId.CosmicCyclone, DefaultMysticalSpaceTyphoon);
AddExecutor(ExecutorType.Activate, CardId.Raigeki, DefaultRaigeki); AddExecutor(ExecutorType.Activate, CardId.Raigeki, DefaultRaigeki);
AddExecutor(ExecutorType.Activate, CardId.PotofGreed);
AddExecutor(ExecutorType.Activate, CardId.PotOfDesires, PotOfDesireseff); AddExecutor(ExecutorType.Activate, CardId.PotOfDesires, PotOfDesireseff);
//sp //sp
AddExecutor(ExecutorType.Activate, CardId.Linkuriboh, Linkuriboheff); AddExecutor(ExecutorType.Activate, CardId.Linkuriboh, Linkuriboheff);
......
...@@ -79,6 +79,7 @@ namespace WindBot.Game.AI.Decks ...@@ -79,6 +79,7 @@ namespace WindBot.Game.AI.Decks
: base(ai, duel) : base(ai, duel)
{ {
// do first // do first
AddExecutor(ExecutorType.Activate, CardId.PotofGreed);
AddExecutor(ExecutorType.Activate, CardId.PotofExtravagance, PotofExtravaganceActivate); AddExecutor(ExecutorType.Activate, CardId.PotofExtravagance, PotofExtravaganceActivate);
AddExecutor(ExecutorType.SpellSet, SpellSetForFiveRainbow); AddExecutor(ExecutorType.SpellSet, SpellSetForFiveRainbow);
......
...@@ -121,6 +121,7 @@ namespace WindBot.Game.AI ...@@ -121,6 +121,7 @@ namespace WindBot.Game.AI
public const int AntiSpellFragrance = 58921041; public const int AntiSpellFragrance = 58921041;
public const int lightningStorm = 14532163; public const int lightningStorm = 14532163;
public const int PotOfGreed = 55144522;
} }
protected DefaultExecutor(GameAI ai, Duel duel) protected DefaultExecutor(GameAI ai, Duel duel)
......
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