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
xiaoye
windbot
Commits
65954e36
Commit
65954e36
authored
Jul 09, 2024
by
wind2009
Committed by
GitHub
Jul 09, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enum update (#196)
parent
4a0dc098
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
36 additions
and
11 deletions
+36
-11
Game/AI/DefaultExecutor.cs
Game/AI/DefaultExecutor.cs
+3
-1
Game/AI/Enums/Floodgate.cs
Game/AI/Enums/Floodgate.cs
+12
-1
Game/AI/Enums/FusionSpell.cs
Game/AI/Enums/FusionSpell.cs
+3
-1
Game/AI/Enums/InvincibleMonster.cs
Game/AI/Enums/InvincibleMonster.cs
+10
-1
Game/AI/Enums/PreventActivationEffectInBattle.cs
Game/AI/Enums/PreventActivationEffectInBattle.cs
+1
-5
Game/AI/Enums/ShouldBeDisabledBeforeItUseEffectMonster.cs
Game/AI/Enums/ShouldBeDisabledBeforeItUseEffectMonster.cs
+5
-1
Game/AI/Enums/ShouldNotBeMonsterTarget.cs
Game/AI/Enums/ShouldNotBeMonsterTarget.cs
+2
-1
No files found.
Game/AI/DefaultExecutor.cs
View file @
65954e36
...
...
@@ -181,6 +181,7 @@ namespace WindBot.Game.AI
public
const
int
DuelDragonToken
=
60025884
;
public
const
int
SeleneQueenOfTheMasterMagicians
=
45819647
;
public
const
int
TheWingedDragonofRaSphereMode
=
10000080
;
public
const
int
SelettriceVaalmonica
=
23093373
;
public
const
int
RockOfTheVanquisher
=
28168628
;
public
const
int
SpiralDischarge
=
29477860
;
...
...
@@ -302,7 +303,8 @@ namespace WindBot.Game.AI
{
_CardId
.
DuelLinkDragonTheDuelDragon
,
(
defender
,
list
)
=>
list
.
Any
(
monster
=>
monster
.
IsCode
(
_CardId
.
DuelDragonToken
))},
{
_CardId
.
SeleneQueenOfTheMasterMagicians
,
(
defender
,
list
)
=>
list
.
Any
(
monster
=>
monster
.
HasSetcode
(
_Setcode
.
Endymion
))},
{
_CardId
.
TheWingedDragonofRaSphereMode
,
(
defender
,
list
)
=>
true
}
{
_CardId
.
TheWingedDragonofRaSphereMode
,
(
defender
,
list
)
=>
true
},
{
_CardId
.
SelettriceVaalmonica
,
(
defender
,
list
)
=>
list
.
Any
(
monster
=>
!
monster
.
IsCode
(
_CardId
.
SelettriceVaalmonica
))}
};
/// <summary>
...
...
Game/AI/Enums/Floodgate.cs
View file @
65954e36
...
...
@@ -212,6 +212,17 @@
StellarNemesisTPHON_DoomsdayStar
=
93039339
,
SPLittleKnight
=
29301450
,
AngelRing
=
40678060
,
SkullGuardianTheSilenforcingProtector
=
10774240
SkullGuardianProtectorOfTheVoicelessVoice
=
10774240
,
FloweringEtoileTheMelodiousMagnificat
=
83793721
,
EnlightenmentDragon
=
46186135
,
GoldPrideEradicator
=
45464587
,
VarudrasTheFinalBringerOfTheEndTimes
=
70636044
,
RagnaraikaStagSovereign
=
42307760
,
DrytronMeteonisAlphaDraconids
=
56863746
,
TheUnstoppableExodiaIncarnate
=
83257450
,
LightAndDarknessDragonLord
=
19652159
,
FiendsmithDiesIrae
=
82135803
,
MementomictlanTecuhtlicaCombinedConqueror
=
14529511
,
MadolcheQueenTiaraalaFraise
=
49689480
}
}
Game/AI/Enums/FusionSpell.cs
View file @
65954e36
...
...
@@ -86,6 +86,8 @@
FusionReproduction
=
43331750
,
ChimeraFusion
=
63136489
,
HarmonicSynchroFusion
=
7473735
,
SouloftheSupremeCelestialKing
=
76840111
SouloftheSupremeCelestialKing
=
76840111
,
MelodiousConcerto
=
31458630
,
MementotlanFusion
=
66518509
}
}
Game/AI/Enums/InvincibleMonster.cs
View file @
65954e36
...
...
@@ -114,6 +114,15 @@
DarkGuardian
=
26746975
,
EnvoyOfTheWaxState
=
87462901
,
Fluffyfluff
=
85401123
,
YubelDasEwigLiebeWachter
=
47172959
YubelDasEwigLiebeWachter
=
47172959
,
TenpaiDragonFadra
=
65326118
,
GolgoilTheSteelSeismicSmasher
=
59369430
,
TalonsOfShurilane
=
74150658
,
NightmareApprentice
=
58143852
,
MillenniumoonMaiden
=
37552929
,
MillenniumFiendReflection
=
63947968
,
HereticalPhoboscobos
=
76078185
,
TopHatHareTheSilhouetteMagician
=
1528054
,
Silhouhatte
=
24440742
}
}
Game/AI/Enums/PreventActivationEffectInBattle.cs
View file @
65954e36
...
...
@@ -11,10 +11,6 @@
SamuraiDestroyer
=
40509732
,
ArmadesKeeperOfBoundaries
=
88033975
,
NumberS39UtopiaTheLightning
=
56832966
,
DualAvatarEmpoweredKonGyo
=
33026283
,
GGolemRockHammer
=
98875863
,
WishDragon
=
64583600
,
ChaosWitch
=
30327674
,
FissioningMotherSpider
=
34034150
DualAvatarEmpoweredKonGyo
=
33026283
}
}
Game/AI/Enums/ShouldBeDisabledBeforeItUseEffectMonster.cs
View file @
65954e36
...
...
@@ -63,6 +63,10 @@
ThreeEyedGhost
=
31464658
,
UrsarcticPolarStar
=
62714453
,
BattlinBoxerPromoter
=
83315222
,
TGRocketSalamander
=
77392987
TGRocketSalamander
=
77392987
,
GGolemRockHammer
=
98875863
,
WishDragon
=
64583600
,
ChaosWitch
=
30327674
,
FissioningMotherSpider
=
34034150
}
}
Game/AI/Enums/ShouldNotBeMonsterTarget.cs
View file @
65954e36
...
...
@@ -16,6 +16,7 @@
BorreloadDragon
=
31833038
,
BorrelendDragon
=
98630720
,
DrytronMeteonisDraconids
=
69815951
,
MyutantBeast
=
34695290
MyutantBeast
=
34695290
,
VeidosTheDragonOfEndlessDarkness
=
8540986
}
}
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