Skip to content

Commit c0db07f

Browse files
committed
Updated enums
1 parent 738d610 commit c0db07f

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

app/schemas/gameenums.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2849,6 +2849,8 @@ class CondType(IntEnum):
28492849
PLAYED_MOVIE = 259
28502850
NOT_PLAYED_MOVIE = 260
28512851
NOT_SHOP_GROUP_LIMIT_NUM = 263
2852+
EQUIP_GET = 264
2853+
NOT_EQUIP_GET = 265
28522854

28532855

28542856
class NiceCondType(StrEnum):
@@ -3108,6 +3110,8 @@ class NiceCondType(StrEnum):
31083110
playedMovie = "playedMovie"
31093111
notPlayedMovie = "notPlayedMovie"
31103112
notShopGroupLimitNum = "notShopGroupLimitNum"
3113+
equipGet = "equipGet"
3114+
notEquipGet = "notEquipGet"
31113115

31123116

31133117
COND_TYPE_NAME: dict[int, NiceCondType] = {
@@ -3365,6 +3369,8 @@ class NiceCondType(StrEnum):
33653369
259: NiceCondType.playedMovie,
33663370
260: NiceCondType.notPlayedMovie,
33673371
263: NiceCondType.notShopGroupLimitNum,
3372+
264: NiceCondType.equipGet,
3373+
265: NiceCondType.notEquipGet,
33683374
}
33693375

33703376

scripts/enum.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1266,6 +1266,8 @@ export enum NiceCondType {
12661266
PLAYED_MOVIE = "playedMovie",
12671267
NOT_PLAYED_MOVIE = "notPlayedMovie",
12681268
NOT_SHOP_GROUP_LIMIT_NUM = "notShopGroupLimitNum",
1269+
EQUIP_GET = "equipGet",
1270+
NOT_EQUIP_GET = "notEquipGet",
12691271
}
12701272

12711273
export enum NiceVoiceCondType {

0 commit comments

Comments
 (0)