@dchighs/dc-config 0.1.21 → 0.1.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 Marcuth
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Marcuth
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
21
  SOFTWARE.
@@ -604,6 +604,7 @@ export interface Chest {
604
604
  pool_size: number;
605
605
  gatcha_ids?: number[];
606
606
  instant?: boolean | AnimatedCanvas;
607
+ foreground_asset?: string;
607
608
  }
608
609
  export declare enum AnimatedCanvas {
609
610
  Empty = "\r"
@@ -1005,7 +1006,7 @@ export interface Match {
1005
1006
  enemy1: Enemy1Class;
1006
1007
  enemy2: Enemy1Class;
1007
1008
  enemy3: Enemy1Class;
1008
- requirements1: Requirements1;
1009
+ requirements1: Requirements;
1009
1010
  requirements2: Requirements;
1010
1011
  requirements3: Requirements;
1011
1012
  battle_cooldown: number;
@@ -1019,18 +1020,10 @@ export interface Enemy1Class {
1019
1020
  grade?: number;
1020
1021
  level?: number;
1021
1022
  }
1022
- export interface Requirements1 {
1023
- level?: number;
1024
- elements?: ElementType[];
1025
- rarity?: Rarity;
1026
- dragonId?: number | string;
1027
- noRequirements?: boolean;
1028
- staticLevel?: number;
1029
- }
1030
1023
  export interface Requirements {
1031
1024
  level?: number;
1032
- rarity?: Rarity;
1033
1025
  elements?: ElementType[];
1026
+ rarity?: Rarity;
1034
1027
  dragonId?: number;
1035
1028
  noRequirements?: boolean;
1036
1029
  }
@@ -1038,7 +1031,6 @@ export interface MatchReward {
1038
1031
  x?: number;
1039
1032
  egg?: number;
1040
1033
  chest?: number;
1041
- elp?: number;
1042
1034
  ep?: number;
1043
1035
  f?: number;
1044
1036
  trade_tickets?: TradeTicket[];
@@ -1048,42 +1040,22 @@ export interface MatchReward {
1048
1040
  "rank_up_coin.mythical"?: number;
1049
1041
  rarity_seeds?: RewardRaritySeed[];
1050
1042
  skin?: number;
1051
- n_token?: number;
1052
- d_token?: number;
1053
- "rank_up_coin.heroic"?: number;
1054
- b?: number[] | number;
1043
+ b?: number;
1055
1044
  moves?: number;
1056
- pr_token?: number;
1057
- "album_pack.s"?: number;
1045
+ g?: number;
1046
+ "rank_up_coin.heroic"?: number;
1047
+ n_token?: number;
1058
1048
  "album_pack.m"?: number;
1049
+ pu_token?: number;
1059
1050
  "album_pack.l"?: number;
1051
+ li_token?: number;
1060
1052
  "album_pack.xl"?: number;
1061
- l_token?: number;
1062
- g?: number;
1063
- "album_pack_aces.2"?: number;
1064
- "album_pack_aces.4"?: number;
1065
- wr_token?: number;
1066
- e_token?: number;
1067
1053
  "album_pack_aces.1"?: number;
1068
1054
  "album_pack_aces.3"?: number;
1069
- "album_pack_aces.generic"?: number;
1070
- "rank_up_coin.legendary"?: number;
1071
- p_token?: number;
1072
- pu_token?: number;
1073
- "album_pack.temp"?: number;
1074
- w_token?: number;
1075
- "album_pack_aces.5"?: number;
1076
- keys?: number;
1077
- li_token?: number;
1078
- wd_token?: number;
1079
- el_token?: number;
1080
- m_token?: number;
1081
- "rank_up_coin.common"?: number;
1082
- "rank_up_coin.rare"?: number;
1083
- "rank_up_coin.very_rare"?: number;
1084
- "rank_up_coin.epic"?: number;
1085
- i_token?: number;
1086
- perks?: RewardPerk[];
1055
+ "album_pack.s"?: number;
1056
+ "album_pack_aces.2"?: number;
1057
+ "album_pack_aces.4"?: number;
1058
+ d_token?: number;
1087
1059
  }
1088
1060
  export interface DragonTournamentsReward {
1089
1061
  id: number;
@@ -1356,24 +1328,22 @@ export interface FogIslandParameter {
1356
1328
  }
1357
1329
  export interface FogIslandReward {
1358
1330
  id: number;
1359
- type: ViewTypeEnum;
1331
+ type: RewardType;
1360
1332
  island_id: number;
1361
1333
  reward_id: number;
1362
1334
  last_piece_cost: number;
1363
1335
  num_pieces: number;
1364
1336
  show_new_badge: number;
1365
1337
  }
1366
- export declare enum ViewTypeEnum {
1338
+ export declare enum RewardType {
1367
1339
  Chest = "CHEST",
1368
- Dragon = "DRAGON",
1369
1340
  DragonPiece = "DRAGON_PIECE",
1370
1341
  None = "NONE",
1371
- Resource = "RESOURCE",
1372
1342
  Step = "STEP"
1373
1343
  }
1374
1344
  export interface FogIslandSquare {
1375
1345
  id: number;
1376
- type: ViewTypeEnum;
1346
+ type: RewardType;
1377
1347
  type_id?: number;
1378
1348
  highlight: number;
1379
1349
  x: number;
@@ -1382,10 +1352,6 @@ export interface FogIslandSquare {
1382
1352
  claim_cost: number;
1383
1353
  come_back_cost: number;
1384
1354
  reward_id?: number;
1385
- resource?: PurpleResource;
1386
- }
1387
- export interface PurpleResource {
1388
- b: number[];
1389
1355
  }
1390
1356
  export interface GridIsland {
1391
1357
  islands: FogIslandIsland[];
@@ -1419,6 +1385,7 @@ export interface Encounter {
1419
1385
  }
1420
1386
  export declare enum FightBackgroundID {
1421
1387
  BgBattleBackgroundGiTreasurehunt = "bg_battle_background_gi_treasurehunt",
1388
+ BgBattleBackgroundHrAnniversary14 = "bg_battle_background_hr_anniversary14",
1422
1389
  BgBattleBackgroundHrEaster26 = "bg_battle_background_hr_easter26",
1423
1390
  BgBattleBackgroundHrFallFriday = "bg_battle_background_hr_fall_friday",
1424
1391
  BgBattleBackgroundHrNewBeginnings = "bg_battle_background_hr_new_beginnings",
@@ -1427,14 +1394,17 @@ export declare enum FightBackgroundID {
1427
1394
  BgBattleBackgroundMiCarnival = "bg_battle_background_mi_carnival",
1428
1395
  BgBattleBackgroundMiDragonmysteries = "bg_battle_background_mi_dragonmysteries",
1429
1396
  BgBattleBackgroundMiEaster2020 = "bg_battle_background_mi_easter2020",
1397
+ BgBattleBackgroundMiForestOfLife = "bg_battle_background_mi_forest_of_life",
1430
1398
  BgBattleBackgroundMiMidsummerMisery = "bg_battle_background_mi_midsummer_misery",
1431
1399
  BgBattleBackgroundMiMysteryInParadise = "bg_battle_background_mi_mystery_in_paradise",
1432
1400
  BgBattleBackgroundMiRebornRetold = "bg_battle_background_mi_reborn_retold",
1401
+ BgBattleBackgroundMiSpringB = "bg_battle_background_mi_spring_b",
1433
1402
  BgBattleBackgroundMiValentinesVault = "bg_battle_background_mi_valentines_vault",
1434
1403
  BgBattleBackgroundMr101_MythicalElixir = "bg_battle_background_mr_101_mythical_elixir",
1435
1404
  BgBattleBackgroundMr102_MythicalCryogenic = "bg_battle_background_mr_102_mythical_cryogenic",
1436
1405
  BgBattleBackgroundMr103_MythicalDracarticpredator = "bg_battle_background_mr_103_mythical_dracarticpredator",
1437
- BgBattleBackgroundMr104_MythicalUnfaethful = "bg_battle_background_mr_104_mythical_unfaethful"
1406
+ BgBattleBackgroundMr104_MythicalUnfaethful = "bg_battle_background_mr_104_mythical_unfaethful",
1407
+ BgBattleBackgroundMr105_MythicalDeepjungle = "bg_battle_background_mr_105_mythical_deepjungle"
1438
1408
  }
1439
1409
  export interface GridIslandEnemy {
1440
1410
  id: number;
@@ -1444,6 +1414,12 @@ export interface GridIslandEnemy {
1444
1414
  elements_view_type: any[];
1445
1415
  cooldown: number;
1446
1416
  }
1417
+ export declare enum ViewTypeEnum {
1418
+ Chest = "CHEST",
1419
+ Dragon = "DRAGON",
1420
+ None = "NONE",
1421
+ Resource = "RESOURCE"
1422
+ }
1447
1423
  export interface Episode {
1448
1424
  id: number;
1449
1425
  island_id: number;
@@ -1480,9 +1456,9 @@ export interface GridIslandSquare {
1480
1456
  claim_cost: number;
1481
1457
  wall?: Wall;
1482
1458
  wall_suffix?: WallSuffix;
1483
- resource?: FluffyResource;
1459
+ resource?: SquareResource;
1484
1460
  }
1485
- export interface FluffyResource {
1461
+ export interface SquareResource {
1486
1462
  "pet_food_pack.s"?: number;
1487
1463
  "pet_food_pack.m"?: number;
1488
1464
  "pet_food_pack.l"?: number;
@@ -1639,13 +1615,13 @@ export interface LapRewardReward {
1639
1615
  "rank_up_coin.mythical"?: number;
1640
1616
  "album_pack.s"?: number;
1641
1617
  "pet_food_pack.s"?: number;
1618
+ "pet_food_pack.m"?: number;
1642
1619
  b?: number[];
1643
1620
  chest?: number;
1644
1621
  "album_pack_aces.1"?: number;
1645
1622
  "album_pack.m"?: number;
1646
1623
  "album_pack.l"?: number;
1647
1624
  "album_pack_aces.2"?: number;
1648
- "pet_food_pack.m"?: number;
1649
1625
  "pet_food_pack.l"?: number;
1650
1626
  "album_pack.xl"?: number;
1651
1627
  "album_pack_aces.3"?: number;
@@ -1935,6 +1911,7 @@ export interface Properties {
1935
1911
  ft_flying?: number;
1936
1912
  }
1937
1913
  export declare enum Tag {
1914
+ Apex = "Apex",
1938
1915
  Apocalypse = "Apocalypse",
1939
1916
  Armor = "Armor",
1940
1917
  Astro = "Astro",
@@ -1959,6 +1936,7 @@ export declare enum Tag {
1959
1936
  Twd = "TWD",
1960
1937
  Vampire = "Vampire",
1961
1938
  Vip = "VIP",
1939
+ Void = "Void",
1962
1940
  Youtuber = "Youtuber"
1963
1941
  }
1964
1942
  export declare enum ItemType {
@@ -2180,17 +2158,15 @@ export interface MazeIslandReward {
2180
2158
  export interface News {
2181
2159
  "0": The0;
2182
2160
  "1": The1;
2183
- "2": The1;
2161
+ "2": The2;
2184
2162
  "3": The3;
2185
- "4": The4;
2163
+ "4": The3;
2186
2164
  "5": The5;
2187
- "6": The5;
2188
- "7": The0;
2189
- "8": The0;
2190
- "9": The0;
2191
- "10": The1;
2192
- "11": The0;
2193
- "12": The0;
2165
+ "6": The6;
2166
+ "7": The2;
2167
+ "8": The3;
2168
+ "9": The3;
2169
+ "10": The0;
2194
2170
  canvas: Canva[];
2195
2171
  }
2196
2172
  export interface The0 {
@@ -2202,22 +2178,58 @@ export interface The0 {
2202
2178
  id: number;
2203
2179
  min_level: number;
2204
2180
  popup_frequency: string;
2181
+ popup_is_critical?: boolean;
2205
2182
  popup_type: string;
2206
2183
  show_on_startup: number;
2207
2184
  slides: The0_Slide[];
2208
2185
  start_ts: string;
2209
2186
  }
2210
2187
  export interface The0_Slide {
2188
+ content_localized_key: string;
2189
+ custom_title_localized_key: string;
2190
+ header_localized_key: string;
2191
+ image_url: string;
2192
+ link: string;
2193
+ link_button_key: string;
2194
+ slide_type: string;
2195
+ slide_type_2: string;
2196
+ timer?: string;
2197
+ times_to_show?: number;
2198
+ }
2199
+ export interface The1 {
2200
+ active_platforms: ValueClass;
2201
+ allow_island_tutorial: number;
2202
+ assets_name: string;
2203
+ direct_to_shop: number;
2204
+ end_ts: string;
2205
+ filter_category: null;
2206
+ hud_button: The1_HudButton;
2207
+ id: number;
2208
+ label_text_tid: null;
2209
+ label_title_tid: null;
2210
+ min_level: number;
2211
+ popup_type: string;
2212
+ priority: null;
2213
+ show_on_startup: number;
2214
+ slides: The1_Slide[];
2215
+ start_ts: string;
2216
+ }
2217
+ export interface The1_HudButton {
2218
+ file: string;
2219
+ title: string;
2220
+ viral_icon_tier: number;
2221
+ }
2222
+ export interface The1_Slide {
2211
2223
  content_localized_key?: string;
2212
2224
  custom_title_localized_key: string;
2213
2225
  forceClose?: boolean;
2214
2226
  header_localized_key: string;
2215
2227
  image_url: string;
2216
- multiple_buttons: PurpleMultipleButton[];
2228
+ multiple_buttons: MultipleButton[];
2217
2229
  times_to_show: number;
2218
2230
  type: SlideType;
2219
2231
  }
2220
- export interface PurpleMultipleButton {
2232
+ export interface MultipleButton {
2221
2233
  animation: AnimationNameEnum;
2222
2234
  animationPlace: AnimationPlace;
2223
2235
  forceClose: boolean;
@@ -2250,7 +2262,7 @@ export declare enum Style {
2250
2262
  export declare enum SlideType {
2251
2263
  FullImage = "FullImage"
2252
2264
  }
2253
- export interface The1 {
2265
+ export interface The2 {
2254
2266
  active_platforms: ValueClass;
2255
2267
  allow_island_tutorial: number;
2256
2268
  assets_name: string;
@@ -2264,7 +2276,7 @@ export interface The1 {
2264
2276
  popup_type: string;
2265
2277
  priority: number | null;
2266
2278
  show_on_startup: number;
2267
- slides: The0_Slide[];
2279
+ slides: The1_Slide[];
2268
2280
  start_ts: string;
2269
2281
  }
2270
2282
  export interface The3 {
@@ -2276,77 +2288,41 @@ export interface The3 {
2276
2288
  id: number;
2277
2289
  min_level: number;
2278
2290
  popup_frequency: string;
2279
- popup_is_critical: boolean;
2280
2291
  popup_type: string;
2281
2292
  show_on_startup: number;
2282
- slides: The3_Slide[];
2293
+ slides: The1_Slide[];
2283
2294
  start_ts: string;
2284
2295
  }
2285
- export interface The3_Slide {
2286
- content_localized_key?: string;
2287
- custom_title_localized_key: string;
2288
- header_localized_key?: string;
2289
- image_url: string;
2290
- link: string;
2291
- link_button_key: string;
2292
- slide_type: string;
2293
- slide_type_2: string;
2294
- timer?: string;
2295
- times_to_show?: number;
2296
- }
2297
- export interface The4 {
2296
+ export interface The5 {
2298
2297
  active_platforms: ValueClass;
2299
2298
  allow_island_tutorial: number;
2300
2299
  assets_name: string;
2300
+ direct_to_shop: number;
2301
2301
  end_ts: string;
2302
- hud_button: HudButton;
2302
+ hud_button: The1_HudButton;
2303
2303
  id: number;
2304
2304
  min_level: number;
2305
2305
  popup_type: string;
2306
2306
  show_on_startup: number;
2307
- slides: The3_Slide[];
2307
+ slides: The0_Slide[];
2308
2308
  start_ts: string;
2309
2309
  }
2310
- export interface HudButton {
2311
- file: string;
2312
- title: string;
2313
- }
2314
- export interface The5 {
2310
+ export interface The6 {
2315
2311
  active_platforms: ValueClass;
2316
2312
  allow_island_tutorial: number;
2317
2313
  assets_name: string;
2318
- direct_to_shop: number;
2319
2314
  end_ts: string;
2315
+ hud_button: The6_HudButton;
2320
2316
  id: number;
2321
2317
  min_level: number;
2322
- popup_frequency: string;
2323
2318
  popup_type: string;
2324
2319
  show_on_startup: number;
2325
- slides: The5_Slide[];
2320
+ slides: The0_Slide[];
2326
2321
  start_ts: string;
2327
2322
  }
2328
- export interface The5_Slide {
2329
- content_localized_key: string;
2330
- custom_title_localized_key: string;
2331
- forceClose: boolean;
2332
- header_localized_key: string;
2333
- image_url: string;
2334
- multiple_buttons: FluffyMultipleButton[];
2335
- times_to_show: number;
2336
- type: SlideType;
2337
- }
2338
- export interface FluffyMultipleButton {
2339
- animation: AnimationNameEnum;
2340
- animationPlace: AnimationPlace;
2341
- forceClose: boolean;
2342
- glint: boolean;
2343
- key: string;
2344
- link: string;
2345
- linkItemId: number | string;
2346
- normalizedPosition: NormalizedPosition;
2347
- size: Size;
2348
- spineAsset: SpineAsset;
2349
- style: Style;
2323
+ export interface The6_HudButton {
2324
+ file: string;
2325
+ title: string;
2350
2326
  }
2351
2327
  export interface Canva {
2352
2328
  id: number;
@@ -2354,7 +2330,7 @@ export interface Canva {
2354
2330
  start_ts: number;
2355
2331
  end_ts: number;
2356
2332
  min_level: number;
2357
- slides: The0_Slide[];
2333
+ slides: The1_Slide[];
2358
2334
  show_on_startup: number;
2359
2335
  }
2360
2336
  export interface Perks {
@@ -2822,7 +2798,7 @@ export interface Effect {
2822
2798
  parameters: EffectParameters;
2823
2799
  sfx_id?: number;
2824
2800
  vfx_id?: string;
2825
- passive_trigger_type?: string[];
2801
+ passive_trigger_type?: PassiveTriggerType[];
2826
2802
  level_based_parameters?: number;
2827
2803
  status_effect_data?: StatusEffectData;
2828
2804
  }
@@ -2885,6 +2861,9 @@ export interface EffectParameters {
2885
2861
  avoidSkills?: AvoidSkillElement[];
2886
2862
  destroySkills?: DestroySkill[];
2887
2863
  element?: ElementType;
2864
+ giveToDragons?: string;
2865
+ canReceiveElementalDamage?: boolean;
2866
+ canReceiveCriticals?: boolean;
2888
2867
  }
2889
2868
  export declare enum AvoidSkillElement {
2890
2869
  Evasion = "EVASION",
@@ -2934,11 +2913,19 @@ export declare enum Vfx {
2934
2913
  DoomMarkSkill = "doom-mark_skill",
2935
2914
  Empty = "",
2936
2915
  SilencedShield3 = "silenced_shield_3",
2937
- TestVfx = "testVfx"
2916
+ TestVfx = "testVfx",
2917
+ VoidSkill = "void_skill"
2938
2918
  }
2939
2919
  export declare enum VfxTextEffectname {
2940
2920
  MegacritSkill = "megacrit_skill"
2941
2921
  }
2922
+ export declare enum PassiveTriggerType {
2923
+ Attack = "attack",
2924
+ Defense = "defense",
2925
+ Negative = "negative",
2926
+ OnDie = "onDie",
2927
+ OnEnterCombat = "onEnterCombat"
2928
+ }
2942
2929
  export interface StatusEffectData {
2943
2930
  statusIcon: string;
2944
2931
  effectName: StatusEffectDataEffectName;
@@ -2951,12 +2938,14 @@ export declare enum EffectVfxEnum {
2951
2938
  SkillOverdrive = "skill_overdrive",
2952
2939
  SpineKarmaSkills = "spine_karma_skills",
2953
2940
  TitanShield = "titan_shield",
2954
- VampireTitanShield = "vampire_titan_shield"
2941
+ VampireTitanShield = "vampire_titan_shield",
2942
+ VoidSkill = "void_skill"
2955
2943
  }
2956
2944
  export declare enum StatusEffectDataEffectName {
2957
2945
  TidCritEffectName = "tid_crit_effect_name",
2958
2946
  TidDoomSkillEffectName = "tid_doom_skill_effect_name",
2959
2947
  TidSkillArmorEffectName = "tid_skill_armor_effect_name",
2948
+ TidSkillDrainedEffectName = "tid_skill_drained_effect_name",
2960
2949
  TidSkillExhaustionEffectName = "tid_skill_exhaustion_effect_name"
2961
2950
  }
2962
2951
  export declare enum Target {
@@ -3200,6 +3189,7 @@ export interface TreeOfLife {
3200
3189
  parameters: TreeOfLifeParameter[];
3201
3190
  rarity_summon_time: SummonTime[];
3202
3191
  dragonid_summon_time: SummonTime[];
3192
+ non_summonable_dragons: NonSummonableDragon[];
3203
3193
  rarity_seeds: TreeOfLifeRaritySeed[];
3204
3194
  }
3205
3195
  export interface SummonTime {
@@ -3212,6 +3202,13 @@ export interface SummonTime {
3212
3202
  summon_time_seconds_ngu_soft: number;
3213
3203
  rarity?: Rarity;
3214
3204
  }
3205
+ export interface NonSummonableDragon {
3206
+ dragon_id: number;
3207
+ unlock_system_id?: UnlockSystemID;
3208
+ }
3209
+ export declare enum UnlockSystemID {
3210
+ NguLmhNoSummon = "ngu_lmh_no_summon"
3211
+ }
3215
3212
  export interface TreeOfLifeParameter {
3216
3213
  id: number;
3217
3214
  name: string;
@@ -3273,8 +3270,8 @@ export interface MultiplierTime {
3273
3270
  multiplier_time: number;
3274
3271
  }
3275
3272
  export interface TreeOfLifePowerupRaritySeed {
3276
- rarity: Rarity;
3277
3273
  max_rarity_seeds_per_grade: number[];
3274
+ rarity: Rarity;
3278
3275
  }
3279
3276
  export interface Visual {
3280
3277
  id: number;
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ViewTypeEnum = exports.CurrencyTidName = exports.ActionType = exports.ActionTidName = exports.Image = exports.UIAsset = exports.Behaviour = exports.ItemsUnitsAttributeModifierAttribute = exports.AchievementType = exports.DifficultyEnum = exports.TitleTid = exports.TaskType = exports.TaskIncrease = exports.DescTid = exports.Local = exports.CanvasBg = exports.DragonGroupType = exports.AttributeElement = exports.CategoryEnum = exports.ChestType = exports.AnimatedCanvas = exports.Background = exports.PremiumReward2_Tid = exports.PremiumPriceStyle = exports.PremiumDiscountPriceStyle = exports.PremiumDescriptionStyle = exports.PurchasePopupEliteMainTitleStyle = exports.EliteReward3_Tid = exports.EliteReward1_Tid = exports.ElitePriceStyle = exports.BadgeTid = exports.RightRewardsDescriptionTid = exports.QuantityLabelStyleEnum = exports.MoreTitleStyle = exports.PurchasePopupMainTitleStyle = exports.LeftRewardsDescriptionTid = exports.DescriptionElementsStyleEnum = exports.CollectibleActionType = exports.Rarity = exports.ElementType = exports.TypeElement = exports.BattlePassSoundTag = exports.IconID = exports.IapUid = exports.IapEliteUpgradeUid = exports.IapEliteUid = exports.IapEliteDiscountUidIap = exports.Dur = exports.IapDiscountUidIap = exports.Format = void 0;
4
- exports.Vfx = exports.TidDamageMultiplier = exports.PlayerEffectName = exports.FgVfxScreenEffectname = exports.FgVfxNodeName = exports.EffectTid = exports.PurpleEffectName = exports.DragonLife = exports.DragonAnimation = exports.DestroySkill = exports.CounterAttackEffectName = exports.BgVfxNodeName = exports.BenchTargetMode = exports.AvoidSkillElement = exports.AuraType = exports.Level1_EffectName = exports.DeployText = exports.AuraCenterMode = exports.AttackType = exports.Texture = exports.RewardEnum = exports.ZipFile = exports.TentacledSoundTag = exports.ActivityType = exports.PerkType = exports.AbilityType = exports.SlideType = exports.Style = exports.SpineAsset = exports.AnimationPlace = exports.IslandTidName = exports.FluffySoundTag = exports.CollectibleType = exports.ItemType = exports.Tag = exports.ItemGroupType = exports.SpinRewardType = exports.NodesPositionType = exports.MissionType = exports.RewardCellType = exports.PurpleSoundTag = exports.IslandTitleTid = exports.ContentLocalizedKey = exports.AnimationNameEnum = exports.PopupType = exports.WallSuffix = exports.Wall = exports.CanvasBackground = exports.FightBackgroundID = exports.File = void 0;
5
- exports.TreasureItemType = exports.Feature = exports.PurpleType = exports.FloorImage = exports.Name = exports.Target = exports.StatusEffectDataEffectName = exports.EffectVfxEnum = exports.VfxTextEffectname = void 0;
3
+ exports.RewardType = exports.CurrencyTidName = exports.ActionType = exports.ActionTidName = exports.Image = exports.UIAsset = exports.Behaviour = exports.ItemsUnitsAttributeModifierAttribute = exports.AchievementType = exports.DifficultyEnum = exports.TitleTid = exports.TaskType = exports.TaskIncrease = exports.DescTid = exports.Local = exports.CanvasBg = exports.DragonGroupType = exports.AttributeElement = exports.CategoryEnum = exports.ChestType = exports.AnimatedCanvas = exports.Background = exports.PremiumReward2_Tid = exports.PremiumPriceStyle = exports.PremiumDiscountPriceStyle = exports.PremiumDescriptionStyle = exports.PurchasePopupEliteMainTitleStyle = exports.EliteReward3_Tid = exports.EliteReward1_Tid = exports.ElitePriceStyle = exports.BadgeTid = exports.RightRewardsDescriptionTid = exports.QuantityLabelStyleEnum = exports.MoreTitleStyle = exports.PurchasePopupMainTitleStyle = exports.LeftRewardsDescriptionTid = exports.DescriptionElementsStyleEnum = exports.CollectibleActionType = exports.Rarity = exports.ElementType = exports.TypeElement = exports.BattlePassSoundTag = exports.IconID = exports.IapUid = exports.IapEliteUpgradeUid = exports.IapEliteUid = exports.IapEliteDiscountUidIap = exports.Dur = exports.IapDiscountUidIap = exports.Format = void 0;
4
+ exports.TidDamageMultiplier = exports.PlayerEffectName = exports.FgVfxScreenEffectname = exports.FgVfxNodeName = exports.EffectTid = exports.PurpleEffectName = exports.DragonLife = exports.DragonAnimation = exports.DestroySkill = exports.CounterAttackEffectName = exports.BgVfxNodeName = exports.BenchTargetMode = exports.AvoidSkillElement = exports.AuraType = exports.Level1_EffectName = exports.DeployText = exports.AuraCenterMode = exports.AttackType = exports.Texture = exports.RewardEnum = exports.ZipFile = exports.TentacledSoundTag = exports.ActivityType = exports.PerkType = exports.AbilityType = exports.SlideType = exports.Style = exports.SpineAsset = exports.AnimationPlace = exports.IslandTidName = exports.FluffySoundTag = exports.CollectibleType = exports.ItemType = exports.Tag = exports.ItemGroupType = exports.SpinRewardType = exports.NodesPositionType = exports.MissionType = exports.RewardCellType = exports.PurpleSoundTag = exports.IslandTitleTid = exports.ContentLocalizedKey = exports.AnimationNameEnum = exports.PopupType = exports.WallSuffix = exports.Wall = exports.CanvasBackground = exports.ViewTypeEnum = exports.FightBackgroundID = exports.File = void 0;
5
+ exports.UnlockSystemID = exports.TreasureItemType = exports.Feature = exports.PurpleType = exports.FloorImage = exports.Name = exports.Target = exports.StatusEffectDataEffectName = exports.EffectVfxEnum = exports.PassiveTriggerType = exports.VfxTextEffectname = exports.Vfx = void 0;
6
6
  var Format;
7
7
  (function (Format) {
8
8
  Format["Efk"] = "efk";
@@ -382,15 +382,13 @@ var CurrencyTidName;
382
382
  CurrencyTidName["TidMazeIslandCurrencyName"] = "tid_maze_island_currency_name";
383
383
  CurrencyTidName["TidTowerIslandCurrencyName"] = "tid_tower_island_currency_name";
384
384
  })(CurrencyTidName || (exports.CurrencyTidName = CurrencyTidName = {}));
385
- var ViewTypeEnum;
386
- (function (ViewTypeEnum) {
387
- ViewTypeEnum["Chest"] = "CHEST";
388
- ViewTypeEnum["Dragon"] = "DRAGON";
389
- ViewTypeEnum["DragonPiece"] = "DRAGON_PIECE";
390
- ViewTypeEnum["None"] = "NONE";
391
- ViewTypeEnum["Resource"] = "RESOURCE";
392
- ViewTypeEnum["Step"] = "STEP";
393
- })(ViewTypeEnum || (exports.ViewTypeEnum = ViewTypeEnum = {}));
385
+ var RewardType;
386
+ (function (RewardType) {
387
+ RewardType["Chest"] = "CHEST";
388
+ RewardType["DragonPiece"] = "DRAGON_PIECE";
389
+ RewardType["None"] = "NONE";
390
+ RewardType["Step"] = "STEP";
391
+ })(RewardType || (exports.RewardType = RewardType = {}));
394
392
  var File;
395
393
  (function (File) {
396
394
  File["The1X1Slot1"] = "1x1_slot1";
@@ -399,6 +397,7 @@ var File;
399
397
  var FightBackgroundID;
400
398
  (function (FightBackgroundID) {
401
399
  FightBackgroundID["BgBattleBackgroundGiTreasurehunt"] = "bg_battle_background_gi_treasurehunt";
400
+ FightBackgroundID["BgBattleBackgroundHrAnniversary14"] = "bg_battle_background_hr_anniversary14";
402
401
  FightBackgroundID["BgBattleBackgroundHrEaster26"] = "bg_battle_background_hr_easter26";
403
402
  FightBackgroundID["BgBattleBackgroundHrFallFriday"] = "bg_battle_background_hr_fall_friday";
404
403
  FightBackgroundID["BgBattleBackgroundHrNewBeginnings"] = "bg_battle_background_hr_new_beginnings";
@@ -407,15 +406,25 @@ var FightBackgroundID;
407
406
  FightBackgroundID["BgBattleBackgroundMiCarnival"] = "bg_battle_background_mi_carnival";
408
407
  FightBackgroundID["BgBattleBackgroundMiDragonmysteries"] = "bg_battle_background_mi_dragonmysteries";
409
408
  FightBackgroundID["BgBattleBackgroundMiEaster2020"] = "bg_battle_background_mi_easter2020";
409
+ FightBackgroundID["BgBattleBackgroundMiForestOfLife"] = "bg_battle_background_mi_forest_of_life";
410
410
  FightBackgroundID["BgBattleBackgroundMiMidsummerMisery"] = "bg_battle_background_mi_midsummer_misery";
411
411
  FightBackgroundID["BgBattleBackgroundMiMysteryInParadise"] = "bg_battle_background_mi_mystery_in_paradise";
412
412
  FightBackgroundID["BgBattleBackgroundMiRebornRetold"] = "bg_battle_background_mi_reborn_retold";
413
+ FightBackgroundID["BgBattleBackgroundMiSpringB"] = "bg_battle_background_mi_spring_b";
413
414
  FightBackgroundID["BgBattleBackgroundMiValentinesVault"] = "bg_battle_background_mi_valentines_vault";
414
415
  FightBackgroundID["BgBattleBackgroundMr101_MythicalElixir"] = "bg_battle_background_mr_101_mythical_elixir";
415
416
  FightBackgroundID["BgBattleBackgroundMr102_MythicalCryogenic"] = "bg_battle_background_mr_102_mythical_cryogenic";
416
417
  FightBackgroundID["BgBattleBackgroundMr103_MythicalDracarticpredator"] = "bg_battle_background_mr_103_mythical_dracarticpredator";
417
418
  FightBackgroundID["BgBattleBackgroundMr104_MythicalUnfaethful"] = "bg_battle_background_mr_104_mythical_unfaethful";
419
+ FightBackgroundID["BgBattleBackgroundMr105_MythicalDeepjungle"] = "bg_battle_background_mr_105_mythical_deepjungle";
418
420
  })(FightBackgroundID || (exports.FightBackgroundID = FightBackgroundID = {}));
421
+ var ViewTypeEnum;
422
+ (function (ViewTypeEnum) {
423
+ ViewTypeEnum["Chest"] = "CHEST";
424
+ ViewTypeEnum["Dragon"] = "DRAGON";
425
+ ViewTypeEnum["None"] = "NONE";
426
+ ViewTypeEnum["Resource"] = "RESOURCE";
427
+ })(ViewTypeEnum || (exports.ViewTypeEnum = ViewTypeEnum = {}));
419
428
  var CanvasBackground;
420
429
  (function (CanvasBackground) {
421
430
  CanvasBackground["F"] = "f";
@@ -551,6 +560,7 @@ var ItemGroupType;
551
560
  })(ItemGroupType || (exports.ItemGroupType = ItemGroupType = {}));
552
561
  var Tag;
553
562
  (function (Tag) {
563
+ Tag["Apex"] = "Apex";
554
564
  Tag["Apocalypse"] = "Apocalypse";
555
565
  Tag["Armor"] = "Armor";
556
566
  Tag["Astro"] = "Astro";
@@ -575,6 +585,7 @@ var Tag;
575
585
  Tag["Twd"] = "TWD";
576
586
  Tag["Vampire"] = "Vampire";
577
587
  Tag["Vip"] = "VIP";
588
+ Tag["Void"] = "Void";
578
589
  Tag["Youtuber"] = "Youtuber";
579
590
  })(Tag || (exports.Tag = Tag = {}));
580
591
  var ItemType;
@@ -788,11 +799,20 @@ var Vfx;
788
799
  Vfx["Empty"] = "";
789
800
  Vfx["SilencedShield3"] = "silenced_shield_3";
790
801
  Vfx["TestVfx"] = "testVfx";
802
+ Vfx["VoidSkill"] = "void_skill";
791
803
  })(Vfx || (exports.Vfx = Vfx = {}));
792
804
  var VfxTextEffectname;
793
805
  (function (VfxTextEffectname) {
794
806
  VfxTextEffectname["MegacritSkill"] = "megacrit_skill";
795
807
  })(VfxTextEffectname || (exports.VfxTextEffectname = VfxTextEffectname = {}));
808
+ var PassiveTriggerType;
809
+ (function (PassiveTriggerType) {
810
+ PassiveTriggerType["Attack"] = "attack";
811
+ PassiveTriggerType["Defense"] = "defense";
812
+ PassiveTriggerType["Negative"] = "negative";
813
+ PassiveTriggerType["OnDie"] = "onDie";
814
+ PassiveTriggerType["OnEnterCombat"] = "onEnterCombat";
815
+ })(PassiveTriggerType || (exports.PassiveTriggerType = PassiveTriggerType = {}));
796
816
  var EffectVfxEnum;
797
817
  (function (EffectVfxEnum) {
798
818
  EffectVfxEnum["GenericHiddenVfx"] = "generic_hidden_vfx";
@@ -801,12 +821,14 @@ var EffectVfxEnum;
801
821
  EffectVfxEnum["SpineKarmaSkills"] = "spine_karma_skills";
802
822
  EffectVfxEnum["TitanShield"] = "titan_shield";
803
823
  EffectVfxEnum["VampireTitanShield"] = "vampire_titan_shield";
824
+ EffectVfxEnum["VoidSkill"] = "void_skill";
804
825
  })(EffectVfxEnum || (exports.EffectVfxEnum = EffectVfxEnum = {}));
805
826
  var StatusEffectDataEffectName;
806
827
  (function (StatusEffectDataEffectName) {
807
828
  StatusEffectDataEffectName["TidCritEffectName"] = "tid_crit_effect_name";
808
829
  StatusEffectDataEffectName["TidDoomSkillEffectName"] = "tid_doom_skill_effect_name";
809
830
  StatusEffectDataEffectName["TidSkillArmorEffectName"] = "tid_skill_armor_effect_name";
831
+ StatusEffectDataEffectName["TidSkillDrainedEffectName"] = "tid_skill_drained_effect_name";
810
832
  StatusEffectDataEffectName["TidSkillExhaustionEffectName"] = "tid_skill_exhaustion_effect_name";
811
833
  })(StatusEffectDataEffectName || (exports.StatusEffectDataEffectName = StatusEffectDataEffectName = {}));
812
834
  var Target;
@@ -857,3 +879,7 @@ var TreasureItemType;
857
879
  TreasureItemType["Keys"] = "keys";
858
880
  TreasureItemType["P"] = "p";
859
881
  })(TreasureItemType || (exports.TreasureItemType = TreasureItemType = {}));
882
+ var UnlockSystemID;
883
+ (function (UnlockSystemID) {
884
+ UnlockSystemID["NguLmhNoSummon"] = "ngu_lmh_no_summon";
885
+ })(UnlockSystemID || (exports.UnlockSystemID = UnlockSystemID = {}));
package/package.json CHANGED
@@ -1,38 +1,39 @@
1
- {
2
- "name": "@dchighs/dc-config",
3
- "version": "0.1.21",
4
- "description": "A library to handle configuration for Dragon City.",
5
- "main": "./dist/index.js",
6
- "module": "./dist/index.js",
7
- "types": "./dist/index.d.ts",
8
- "files": [
9
- "dist/*",
10
- "!/**/__tests__"
11
- ],
12
- "keywords": [
13
- "dragon city",
14
- "dc",
15
- "configuration",
16
- "dc highs"
17
- ],
18
- "scripts": {
19
- "build": "tsc",
20
- "update-dto": "ts-node scripts/update-dto.ts"
21
- },
22
- "author": "Marcuth",
23
- "license": "MIT",
24
- "type": "commonjs",
25
- "devDependencies": {
26
- "@marcuth/env": "^0.0.1",
27
- "@types/node": "^25.0.3",
28
- "quicktype-core": "^23.2.6",
29
- "ts-node": "^10.9.2",
30
- "typescript": "^5.9.3"
31
- },
32
- "dependencies": {
33
- "axios": "^1.13.2"
34
- },
35
- "peerDependencies": {
36
- "@dchighs/dc-core": "^0.3.0"
37
- }
38
- }
1
+ {
2
+ "name": "@dchighs/dc-config",
3
+ "version": "0.1.23",
4
+ "description": "A library to handle configuration for Dragon City.",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "files": [
9
+ "dist/*",
10
+ "!/**/__tests__"
11
+ ],
12
+ "keywords": [
13
+ "dragon city",
14
+ "dc",
15
+ "configuration",
16
+ "dc highs"
17
+ ],
18
+ "scripts": {
19
+ "build": "tsc",
20
+ "update-dto": "ts-node scripts/update-dto.ts"
21
+ },
22
+ "author": "Marcuth",
23
+ "license": "MIT",
24
+ "type": "commonjs",
25
+ "devDependencies": {
26
+ "@marcuth/env": "^0.0.1",
27
+ "@types/node": "^25.7.0",
28
+ "dotenv": "^17.4.2",
29
+ "quicktype-core": "^23.2.6",
30
+ "ts-node": "^10.9.2",
31
+ "typescript": "^6.0.2"
32
+ },
33
+ "dependencies": {
34
+ "axios": "^1.15.0"
35
+ },
36
+ "peerDependencies": {
37
+ "@dchighs/dc-core": "^0.4.2"
38
+ }
39
+ }