@dchighs/dc-config 0.1.22 → 0.1.24
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 +20 -20
- package/dist/dtos/game-config.d.ts +145 -128
- package/dist/dtos/game-config.js +38 -12
- package/package.json +39 -38
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:
|
|
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
|
-
|
|
1052
|
-
d_token?: number;
|
|
1053
|
-
"rank_up_coin.heroic"?: number;
|
|
1054
|
-
b?: number[] | number;
|
|
1043
|
+
b?: number;
|
|
1055
1044
|
moves?: number;
|
|
1056
|
-
|
|
1057
|
-
"
|
|
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
|
-
"
|
|
1070
|
-
"
|
|
1071
|
-
|
|
1072
|
-
|
|
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;
|
|
@@ -1181,11 +1153,11 @@ export interface FogIsland {
|
|
|
1181
1153
|
squares: FogIslandSquare[];
|
|
1182
1154
|
currencies: Currency[];
|
|
1183
1155
|
rewards: FogIslandReward[];
|
|
1184
|
-
actions:
|
|
1156
|
+
actions: ActionElement[];
|
|
1185
1157
|
hints: Hint[];
|
|
1186
1158
|
parameters: FogIslandParameter[];
|
|
1187
1159
|
}
|
|
1188
|
-
export interface
|
|
1160
|
+
export interface ActionElement {
|
|
1189
1161
|
id: number;
|
|
1190
1162
|
type: ActionType;
|
|
1191
1163
|
tid_name: ActionTidName;
|
|
@@ -1356,24 +1328,22 @@ export interface FogIslandParameter {
|
|
|
1356
1328
|
}
|
|
1357
1329
|
export interface FogIslandReward {
|
|
1358
1330
|
id: number;
|
|
1359
|
-
type:
|
|
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
|
|
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:
|
|
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[];
|
|
@@ -1395,7 +1361,7 @@ export interface GridIsland {
|
|
|
1395
1361
|
encounters: Encounter[];
|
|
1396
1362
|
enemies: GridIslandEnemy[];
|
|
1397
1363
|
currencies: Currency[];
|
|
1398
|
-
actions:
|
|
1364
|
+
actions: ActionElement[];
|
|
1399
1365
|
parameters: FogIslandParameter[];
|
|
1400
1366
|
}
|
|
1401
1367
|
export interface Decoration {
|
|
@@ -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?:
|
|
1459
|
+
resource?: SquareResource;
|
|
1484
1460
|
}
|
|
1485
|
-
export interface
|
|
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 {
|
|
@@ -2086,7 +2064,7 @@ export interface MazeIsland {
|
|
|
2086
2064
|
encounters: Encounter[];
|
|
2087
2065
|
enemies: GridIslandEnemy[];
|
|
2088
2066
|
happy_hours: any[];
|
|
2089
|
-
actions:
|
|
2067
|
+
actions: ActionElement[];
|
|
2090
2068
|
clouds: Cloud[];
|
|
2091
2069
|
currencies: Currency[];
|
|
2092
2070
|
parameters: FogIslandParameter[];
|
|
@@ -2180,17 +2158,14 @@ export interface MazeIslandReward {
|
|
|
2180
2158
|
export interface News {
|
|
2181
2159
|
"0": The0;
|
|
2182
2160
|
"1": The1;
|
|
2183
|
-
"2":
|
|
2184
|
-
"3":
|
|
2185
|
-
"4":
|
|
2161
|
+
"2": The2;
|
|
2162
|
+
"3": The0;
|
|
2163
|
+
"4": The0;
|
|
2186
2164
|
"5": The5;
|
|
2187
|
-
"6":
|
|
2165
|
+
"6": The6;
|
|
2188
2166
|
"7": The0;
|
|
2189
2167
|
"8": The0;
|
|
2190
|
-
"9":
|
|
2191
|
-
"10": The1;
|
|
2192
|
-
"11": The0;
|
|
2193
|
-
"12": The0;
|
|
2168
|
+
"9": The1;
|
|
2194
2169
|
canvas: Canva[];
|
|
2195
2170
|
}
|
|
2196
2171
|
export interface The0 {
|
|
@@ -2208,16 +2183,16 @@ export interface The0 {
|
|
|
2208
2183
|
start_ts: string;
|
|
2209
2184
|
}
|
|
2210
2185
|
export interface The0_Slide {
|
|
2211
|
-
content_localized_key
|
|
2186
|
+
content_localized_key: string;
|
|
2212
2187
|
custom_title_localized_key: string;
|
|
2213
2188
|
forceClose?: boolean;
|
|
2214
2189
|
header_localized_key: string;
|
|
2215
2190
|
image_url: string;
|
|
2216
|
-
multiple_buttons:
|
|
2191
|
+
multiple_buttons: MultipleButton[];
|
|
2217
2192
|
times_to_show: number;
|
|
2218
2193
|
type: SlideType;
|
|
2219
2194
|
}
|
|
2220
|
-
export interface
|
|
2195
|
+
export interface MultipleButton {
|
|
2221
2196
|
animation: AnimationNameEnum;
|
|
2222
2197
|
animationPlace: AnimationPlace;
|
|
2223
2198
|
forceClose: boolean;
|
|
@@ -2251,23 +2226,6 @@ export declare enum SlideType {
|
|
|
2251
2226
|
FullImage = "FullImage"
|
|
2252
2227
|
}
|
|
2253
2228
|
export interface The1 {
|
|
2254
|
-
active_platforms: ValueClass;
|
|
2255
|
-
allow_island_tutorial: number;
|
|
2256
|
-
assets_name: string;
|
|
2257
|
-
direct_to_shop: number;
|
|
2258
|
-
end_ts: string;
|
|
2259
|
-
filter_category: null;
|
|
2260
|
-
id: number;
|
|
2261
|
-
label_text_tid: null;
|
|
2262
|
-
label_title_tid: null;
|
|
2263
|
-
min_level: number;
|
|
2264
|
-
popup_type: string;
|
|
2265
|
-
priority: number | null;
|
|
2266
|
-
show_on_startup: number;
|
|
2267
|
-
slides: The0_Slide[];
|
|
2268
|
-
start_ts: string;
|
|
2269
|
-
}
|
|
2270
|
-
export interface The3 {
|
|
2271
2229
|
active_platforms: ValueClass;
|
|
2272
2230
|
allow_island_tutorial: number;
|
|
2273
2231
|
assets_name: string;
|
|
@@ -2276,16 +2234,16 @@ export interface The3 {
|
|
|
2276
2234
|
id: number;
|
|
2277
2235
|
min_level: number;
|
|
2278
2236
|
popup_frequency: string;
|
|
2279
|
-
popup_is_critical
|
|
2237
|
+
popup_is_critical?: boolean;
|
|
2280
2238
|
popup_type: string;
|
|
2281
2239
|
show_on_startup: number;
|
|
2282
|
-
slides:
|
|
2240
|
+
slides: The1_Slide[];
|
|
2283
2241
|
start_ts: string;
|
|
2284
2242
|
}
|
|
2285
|
-
export interface
|
|
2286
|
-
content_localized_key
|
|
2243
|
+
export interface The1_Slide {
|
|
2244
|
+
content_localized_key: string;
|
|
2287
2245
|
custom_title_localized_key: string;
|
|
2288
|
-
header_localized_key
|
|
2246
|
+
header_localized_key: string;
|
|
2289
2247
|
image_url: string;
|
|
2290
2248
|
link: string;
|
|
2291
2249
|
link_button_key: string;
|
|
@@ -2294,68 +2252,106 @@ export interface The3_Slide {
|
|
|
2294
2252
|
timer?: string;
|
|
2295
2253
|
times_to_show?: number;
|
|
2296
2254
|
}
|
|
2297
|
-
export interface
|
|
2255
|
+
export interface The2 {
|
|
2298
2256
|
active_platforms: ValueClass;
|
|
2299
2257
|
allow_island_tutorial: number;
|
|
2300
2258
|
assets_name: string;
|
|
2259
|
+
direct_to_shop: number;
|
|
2301
2260
|
end_ts: string;
|
|
2302
|
-
|
|
2261
|
+
filter_category: null;
|
|
2262
|
+
hud_button: The2_HudButton;
|
|
2303
2263
|
id: number;
|
|
2264
|
+
label_text_tid: null;
|
|
2265
|
+
label_title_tid: null;
|
|
2304
2266
|
min_level: number;
|
|
2305
2267
|
popup_type: string;
|
|
2268
|
+
priority: null;
|
|
2306
2269
|
show_on_startup: number;
|
|
2307
|
-
slides:
|
|
2270
|
+
slides: The0_Slide[];
|
|
2308
2271
|
start_ts: string;
|
|
2309
2272
|
}
|
|
2310
|
-
export interface
|
|
2273
|
+
export interface The2_HudButton {
|
|
2311
2274
|
file: string;
|
|
2312
2275
|
title: string;
|
|
2276
|
+
viral_icon_tier: number;
|
|
2313
2277
|
}
|
|
2314
2278
|
export interface The5 {
|
|
2315
2279
|
active_platforms: ValueClass;
|
|
2316
2280
|
allow_island_tutorial: number;
|
|
2317
2281
|
assets_name: string;
|
|
2318
|
-
direct_to_shop: number;
|
|
2319
2282
|
end_ts: string;
|
|
2283
|
+
hud_button: The5_HudButton;
|
|
2320
2284
|
id: number;
|
|
2321
2285
|
min_level: number;
|
|
2322
|
-
popup_frequency: string;
|
|
2323
2286
|
popup_type: string;
|
|
2324
2287
|
show_on_startup: number;
|
|
2325
|
-
slides:
|
|
2288
|
+
slides: The1_Slide[];
|
|
2326
2289
|
start_ts: string;
|
|
2327
2290
|
}
|
|
2328
|
-
export interface
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
forceClose: boolean;
|
|
2332
|
-
header_localized_key: string;
|
|
2333
|
-
image_url: string;
|
|
2334
|
-
multiple_buttons: FluffyMultipleButton[];
|
|
2335
|
-
times_to_show: number;
|
|
2336
|
-
type: SlideType;
|
|
2291
|
+
export interface The5_HudButton {
|
|
2292
|
+
file: string;
|
|
2293
|
+
title: string;
|
|
2337
2294
|
}
|
|
2338
|
-
export interface
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
|
|
2295
|
+
export interface The6 {
|
|
2296
|
+
active_platforms: ValueClass;
|
|
2297
|
+
allow_island_tutorial: number;
|
|
2298
|
+
assets_name: string;
|
|
2299
|
+
direct_to_shop: number;
|
|
2300
|
+
end_ts: string;
|
|
2301
|
+
filter_category: null;
|
|
2302
|
+
id: number;
|
|
2303
|
+
label_text_tid: null;
|
|
2304
|
+
label_title_tid: null;
|
|
2305
|
+
min_level: number;
|
|
2306
|
+
popup_type: string;
|
|
2307
|
+
priority: number;
|
|
2308
|
+
show_on_startup: number;
|
|
2309
|
+
slides: The0_Slide[];
|
|
2310
|
+
start_ts: string;
|
|
2350
2311
|
}
|
|
2351
2312
|
export interface Canva {
|
|
2352
2313
|
id: number;
|
|
2353
2314
|
assets_name: string;
|
|
2354
|
-
start_ts: number;
|
|
2355
|
-
end_ts: number;
|
|
2356
|
-
min_level
|
|
2357
|
-
slides:
|
|
2358
|
-
show_on_startup
|
|
2315
|
+
start_ts: number | string;
|
|
2316
|
+
end_ts: number | string;
|
|
2317
|
+
min_level?: number;
|
|
2318
|
+
slides: CanvaSlide[];
|
|
2319
|
+
show_on_startup?: number;
|
|
2320
|
+
}
|
|
2321
|
+
export interface CanvaSlide {
|
|
2322
|
+
custom_title_localized_key?: string;
|
|
2323
|
+
header_localized_key?: string;
|
|
2324
|
+
image_url?: string;
|
|
2325
|
+
times_to_show?: number;
|
|
2326
|
+
type?: SlideType;
|
|
2327
|
+
multiple_buttons?: MultipleButton[];
|
|
2328
|
+
bg?: string;
|
|
2329
|
+
content?: Content[];
|
|
2330
|
+
edit_mode?: number;
|
|
2331
|
+
id?: number;
|
|
2332
|
+
title_key?: string;
|
|
2333
|
+
viral_icon_key?: string;
|
|
2334
|
+
viral_icon_timer?: string;
|
|
2335
|
+
}
|
|
2336
|
+
export interface Content {
|
|
2337
|
+
height: number;
|
|
2338
|
+
rotation: number;
|
|
2339
|
+
stroke?: string;
|
|
2340
|
+
text_color?: string;
|
|
2341
|
+
text_key: string;
|
|
2342
|
+
text_size?: number;
|
|
2343
|
+
timer?: number;
|
|
2344
|
+
type: string;
|
|
2345
|
+
width: number;
|
|
2346
|
+
x: number;
|
|
2347
|
+
y: number;
|
|
2348
|
+
action?: ContentAction;
|
|
2349
|
+
style?: string;
|
|
2350
|
+
}
|
|
2351
|
+
export interface ContentAction {
|
|
2352
|
+
itemId: string;
|
|
2353
|
+
storeCategory: number;
|
|
2354
|
+
type: string;
|
|
2359
2355
|
}
|
|
2360
2356
|
export interface Perks {
|
|
2361
2357
|
abilities: Ability[];
|
|
@@ -2822,7 +2818,7 @@ export interface Effect {
|
|
|
2822
2818
|
parameters: EffectParameters;
|
|
2823
2819
|
sfx_id?: number;
|
|
2824
2820
|
vfx_id?: string;
|
|
2825
|
-
passive_trigger_type?:
|
|
2821
|
+
passive_trigger_type?: PassiveTriggerType[];
|
|
2826
2822
|
level_based_parameters?: number;
|
|
2827
2823
|
status_effect_data?: StatusEffectData;
|
|
2828
2824
|
}
|
|
@@ -2885,6 +2881,9 @@ export interface EffectParameters {
|
|
|
2885
2881
|
avoidSkills?: AvoidSkillElement[];
|
|
2886
2882
|
destroySkills?: DestroySkill[];
|
|
2887
2883
|
element?: ElementType;
|
|
2884
|
+
giveToDragons?: string;
|
|
2885
|
+
canReceiveElementalDamage?: boolean;
|
|
2886
|
+
canReceiveCriticals?: boolean;
|
|
2888
2887
|
}
|
|
2889
2888
|
export declare enum AvoidSkillElement {
|
|
2890
2889
|
Evasion = "EVASION",
|
|
@@ -2934,11 +2933,19 @@ export declare enum Vfx {
|
|
|
2934
2933
|
DoomMarkSkill = "doom-mark_skill",
|
|
2935
2934
|
Empty = "",
|
|
2936
2935
|
SilencedShield3 = "silenced_shield_3",
|
|
2937
|
-
TestVfx = "testVfx"
|
|
2936
|
+
TestVfx = "testVfx",
|
|
2937
|
+
VoidSkill = "void_skill"
|
|
2938
2938
|
}
|
|
2939
2939
|
export declare enum VfxTextEffectname {
|
|
2940
2940
|
MegacritSkill = "megacrit_skill"
|
|
2941
2941
|
}
|
|
2942
|
+
export declare enum PassiveTriggerType {
|
|
2943
|
+
Attack = "attack",
|
|
2944
|
+
Defense = "defense",
|
|
2945
|
+
Negative = "negative",
|
|
2946
|
+
OnDie = "onDie",
|
|
2947
|
+
OnEnterCombat = "onEnterCombat"
|
|
2948
|
+
}
|
|
2942
2949
|
export interface StatusEffectData {
|
|
2943
2950
|
statusIcon: string;
|
|
2944
2951
|
effectName: StatusEffectDataEffectName;
|
|
@@ -2951,12 +2958,14 @@ export declare enum EffectVfxEnum {
|
|
|
2951
2958
|
SkillOverdrive = "skill_overdrive",
|
|
2952
2959
|
SpineKarmaSkills = "spine_karma_skills",
|
|
2953
2960
|
TitanShield = "titan_shield",
|
|
2954
|
-
VampireTitanShield = "vampire_titan_shield"
|
|
2961
|
+
VampireTitanShield = "vampire_titan_shield",
|
|
2962
|
+
VoidSkill = "void_skill"
|
|
2955
2963
|
}
|
|
2956
2964
|
export declare enum StatusEffectDataEffectName {
|
|
2957
2965
|
TidCritEffectName = "tid_crit_effect_name",
|
|
2958
2966
|
TidDoomSkillEffectName = "tid_doom_skill_effect_name",
|
|
2959
2967
|
TidSkillArmorEffectName = "tid_skill_armor_effect_name",
|
|
2968
|
+
TidSkillDrainedEffectName = "tid_skill_drained_effect_name",
|
|
2960
2969
|
TidSkillExhaustionEffectName = "tid_skill_exhaustion_effect_name"
|
|
2961
2970
|
}
|
|
2962
2971
|
export declare enum Target {
|
|
@@ -3083,7 +3092,7 @@ export interface TowerIsland {
|
|
|
3083
3092
|
happy_hours: HappyHour[];
|
|
3084
3093
|
parameters: FogIslandParameter[];
|
|
3085
3094
|
currencies: Currency[];
|
|
3086
|
-
actions:
|
|
3095
|
+
actions: ActionElement[];
|
|
3087
3096
|
}
|
|
3088
3097
|
export interface Floor {
|
|
3089
3098
|
id: number;
|
|
@@ -3200,6 +3209,7 @@ export interface TreeOfLife {
|
|
|
3200
3209
|
parameters: TreeOfLifeParameter[];
|
|
3201
3210
|
rarity_summon_time: SummonTime[];
|
|
3202
3211
|
dragonid_summon_time: SummonTime[];
|
|
3212
|
+
non_summonable_dragons: NonSummonableDragon[];
|
|
3203
3213
|
rarity_seeds: TreeOfLifeRaritySeed[];
|
|
3204
3214
|
}
|
|
3205
3215
|
export interface SummonTime {
|
|
@@ -3212,6 +3222,13 @@ export interface SummonTime {
|
|
|
3212
3222
|
summon_time_seconds_ngu_soft: number;
|
|
3213
3223
|
rarity?: Rarity;
|
|
3214
3224
|
}
|
|
3225
|
+
export interface NonSummonableDragon {
|
|
3226
|
+
dragon_id: number;
|
|
3227
|
+
unlock_system_id?: UnlockSystemID;
|
|
3228
|
+
}
|
|
3229
|
+
export declare enum UnlockSystemID {
|
|
3230
|
+
NguLmhNoSummon = "ngu_lmh_no_summon"
|
|
3231
|
+
}
|
|
3215
3232
|
export interface TreeOfLifeParameter {
|
|
3216
3233
|
id: number;
|
|
3217
3234
|
name: string;
|
package/dist/dtos/game-config.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
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
|
|
386
|
-
(function (
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
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.
|
|
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.
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@dchighs/dc-config",
|
|
3
|
+
"version": "0.1.24",
|
|
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
|
+
}
|