File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff 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
28542856class 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
31133117COND_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
Original file line number Diff line number Diff 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
12711273export enum NiceVoiceCondType {
You can’t perform that action at this time.
0 commit comments