@dchighs/dc-config 0.0.7 → 0.0.8
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/dist/dtos/game-config.d.ts +26 -56
- package/package.json +1 -1
|
@@ -1073,10 +1073,10 @@ export interface MatchReward {
|
|
|
1073
1073
|
"album_pack.temp"?: number;
|
|
1074
1074
|
w_token?: number;
|
|
1075
1075
|
keys?: number;
|
|
1076
|
+
li_token?: number;
|
|
1076
1077
|
wd_token?: number;
|
|
1077
1078
|
el_token?: number;
|
|
1078
1079
|
m_token?: number;
|
|
1079
|
-
li_token?: number;
|
|
1080
1080
|
"rank_up_coin.common"?: number;
|
|
1081
1081
|
"rank_up_coin.rare"?: number;
|
|
1082
1082
|
"rank_up_coin.very_rare"?: number;
|
|
@@ -2159,22 +2159,21 @@ export interface MazeIslandReward {
|
|
|
2159
2159
|
export interface News {
|
|
2160
2160
|
"0": The0;
|
|
2161
2161
|
"1": The1;
|
|
2162
|
-
"2":
|
|
2163
|
-
"3":
|
|
2164
|
-
"4":
|
|
2162
|
+
"2": The2;
|
|
2163
|
+
"3": The11;
|
|
2164
|
+
"4": The10;
|
|
2165
2165
|
"5": The10;
|
|
2166
2166
|
"6": The10;
|
|
2167
|
-
"7":
|
|
2168
|
-
"8":
|
|
2169
|
-
"9":
|
|
2167
|
+
"7": The11;
|
|
2168
|
+
"8": The8;
|
|
2169
|
+
"9": The10;
|
|
2170
2170
|
"10": The10;
|
|
2171
|
-
"11":
|
|
2172
|
-
"12":
|
|
2171
|
+
"11": The11;
|
|
2172
|
+
"12": The10;
|
|
2173
2173
|
"13": The10;
|
|
2174
|
-
"14":
|
|
2175
|
-
"15":
|
|
2176
|
-
"16":
|
|
2177
|
-
"17": The12;
|
|
2174
|
+
"14": The11;
|
|
2175
|
+
"15": The15;
|
|
2176
|
+
"16": The11;
|
|
2178
2177
|
canvas: Canva[];
|
|
2179
2178
|
}
|
|
2180
2179
|
export interface The0 {
|
|
@@ -2186,7 +2185,7 @@ export interface The0 {
|
|
|
2186
2185
|
hud_button: The0_HudButton;
|
|
2187
2186
|
id: number;
|
|
2188
2187
|
min_level: number;
|
|
2189
|
-
popup_frequency
|
|
2188
|
+
popup_frequency: string;
|
|
2190
2189
|
popup_type: string;
|
|
2191
2190
|
show_on_startup: number;
|
|
2192
2191
|
slides: The0_Slide[];
|
|
@@ -2198,9 +2197,9 @@ export interface The0_HudButton {
|
|
|
2198
2197
|
viral_icon_tier: number;
|
|
2199
2198
|
}
|
|
2200
2199
|
export interface The0_Slide {
|
|
2201
|
-
content_localized_key
|
|
2200
|
+
content_localized_key: string;
|
|
2202
2201
|
custom_title_localized_key: string;
|
|
2203
|
-
header_localized_key
|
|
2202
|
+
header_localized_key: string;
|
|
2204
2203
|
image_url: string;
|
|
2205
2204
|
link: string;
|
|
2206
2205
|
link_button_key: string;
|
|
@@ -2240,13 +2239,13 @@ export interface The10 {
|
|
|
2240
2239
|
start_ts: string;
|
|
2241
2240
|
}
|
|
2242
2241
|
export interface The10_Slide {
|
|
2242
|
+
content_localized_key?: string;
|
|
2243
2243
|
custom_title_localized_key: string;
|
|
2244
2244
|
header_localized_key: string;
|
|
2245
2245
|
image_url: string;
|
|
2246
2246
|
multiple_buttons: MultipleButton[];
|
|
2247
2247
|
times_to_show: number;
|
|
2248
2248
|
type: SlideType;
|
|
2249
|
-
content_localized_key?: string;
|
|
2250
2249
|
forceClose?: boolean;
|
|
2251
2250
|
}
|
|
2252
2251
|
export interface MultipleButton {
|
|
@@ -2256,11 +2255,11 @@ export interface MultipleButton {
|
|
|
2256
2255
|
glint: boolean;
|
|
2257
2256
|
key: Key;
|
|
2258
2257
|
link: string;
|
|
2259
|
-
linkItemId?: number | string;
|
|
2260
2258
|
normalizedPosition: NormalizedPosition;
|
|
2261
2259
|
size: Size;
|
|
2262
2260
|
spineAsset: SpineAsset;
|
|
2263
2261
|
style: Style;
|
|
2262
|
+
linkItemId?: number | string;
|
|
2264
2263
|
}
|
|
2265
2264
|
export declare enum AnimationPlace {
|
|
2266
2265
|
Foreground = "Foreground"
|
|
@@ -2288,7 +2287,7 @@ export declare enum Style {
|
|
|
2288
2287
|
export declare enum SlideType {
|
|
2289
2288
|
FullImage = "FullImage"
|
|
2290
2289
|
}
|
|
2291
|
-
export interface
|
|
2290
|
+
export interface The11 {
|
|
2292
2291
|
active_platforms: ValueClass;
|
|
2293
2292
|
allow_island_tutorial: number;
|
|
2294
2293
|
assets_name: string;
|
|
@@ -2305,7 +2304,7 @@ export interface The12 {
|
|
|
2305
2304
|
slides: The10_Slide[];
|
|
2306
2305
|
start_ts: string;
|
|
2307
2306
|
}
|
|
2308
|
-
export interface
|
|
2307
|
+
export interface The15 {
|
|
2309
2308
|
active_platforms: ValueClass;
|
|
2310
2309
|
allow_island_tutorial: number;
|
|
2311
2310
|
assets_name: string;
|
|
@@ -2324,12 +2323,12 @@ export interface The16 {
|
|
|
2324
2323
|
slides: The10_Slide[];
|
|
2325
2324
|
start_ts: string;
|
|
2326
2325
|
}
|
|
2327
|
-
export interface
|
|
2326
|
+
export interface The2 {
|
|
2328
2327
|
active_platforms: ValueClass;
|
|
2329
2328
|
allow_island_tutorial: number;
|
|
2330
2329
|
assets_name: string;
|
|
2331
2330
|
end_ts: string;
|
|
2332
|
-
hud_button:
|
|
2331
|
+
hud_button: The2_HudButton;
|
|
2333
2332
|
id: number;
|
|
2334
2333
|
min_level: number;
|
|
2335
2334
|
popup_type: string;
|
|
@@ -2337,11 +2336,11 @@ export interface The3 {
|
|
|
2337
2336
|
slides: The0_Slide[];
|
|
2338
2337
|
start_ts: string;
|
|
2339
2338
|
}
|
|
2340
|
-
export interface
|
|
2339
|
+
export interface The2_HudButton {
|
|
2341
2340
|
file: string;
|
|
2342
2341
|
title: string;
|
|
2343
2342
|
}
|
|
2344
|
-
export interface
|
|
2343
|
+
export interface The8 {
|
|
2345
2344
|
active_platforms: ValueClass;
|
|
2346
2345
|
allow_island_tutorial: number;
|
|
2347
2346
|
assets_name: string;
|
|
@@ -2363,40 +2362,11 @@ export interface The9 {
|
|
|
2363
2362
|
export interface Canva {
|
|
2364
2363
|
id: number;
|
|
2365
2364
|
assets_name: string;
|
|
2366
|
-
start_ts: number
|
|
2367
|
-
end_ts: number
|
|
2365
|
+
start_ts: number;
|
|
2366
|
+
end_ts: number;
|
|
2368
2367
|
min_level: number;
|
|
2369
|
-
slides:
|
|
2368
|
+
slides: The10_Slide[];
|
|
2370
2369
|
show_on_startup: number;
|
|
2371
|
-
priority?: string;
|
|
2372
|
-
}
|
|
2373
|
-
export interface CanvaSlide {
|
|
2374
|
-
custom_title_localized_key?: string;
|
|
2375
|
-
header_localized_key?: string;
|
|
2376
|
-
image_url?: string;
|
|
2377
|
-
times_to_show?: number;
|
|
2378
|
-
type?: SlideType;
|
|
2379
|
-
multiple_buttons?: MultipleButton[];
|
|
2380
|
-
bg?: string;
|
|
2381
|
-
content?: Content[];
|
|
2382
|
-
edit_mode?: number;
|
|
2383
|
-
id?: number;
|
|
2384
|
-
title_key?: string;
|
|
2385
|
-
viral_icon_key?: string;
|
|
2386
|
-
viral_icon_timer?: string;
|
|
2387
|
-
}
|
|
2388
|
-
export interface Content {
|
|
2389
|
-
height: number;
|
|
2390
|
-
rotation: number;
|
|
2391
|
-
stroke: string;
|
|
2392
|
-
text_color: string;
|
|
2393
|
-
text_key: string;
|
|
2394
|
-
text_size: number;
|
|
2395
|
-
timer: number;
|
|
2396
|
-
type: string;
|
|
2397
|
-
width: number;
|
|
2398
|
-
x: number;
|
|
2399
|
-
y: number;
|
|
2400
2370
|
}
|
|
2401
2371
|
export interface Perks {
|
|
2402
2372
|
abilities: Ability[];
|