@dchighs/dc-config 0.0.8 → 0.0.10
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 +121 -72
- package/dist/dtos/game-config.js +27 -18
- package/package.json +1 -1
|
@@ -1181,14 +1181,14 @@ export interface FogIsland {
|
|
|
1181
1181
|
squares: FogIslandSquare[];
|
|
1182
1182
|
currencies: Currency[];
|
|
1183
1183
|
rewards: FogIslandReward[];
|
|
1184
|
-
actions:
|
|
1184
|
+
actions: ActionElement[];
|
|
1185
1185
|
hints: Hint[];
|
|
1186
1186
|
parameters: FogIslandParameter[];
|
|
1187
1187
|
}
|
|
1188
|
-
export interface
|
|
1188
|
+
export interface ActionElement {
|
|
1189
1189
|
id: number;
|
|
1190
1190
|
type: ActionType;
|
|
1191
|
-
tid_name:
|
|
1191
|
+
tid_name: ActionTidName;
|
|
1192
1192
|
image: Image;
|
|
1193
1193
|
pool_percent: number;
|
|
1194
1194
|
max_points: number;
|
|
@@ -1211,7 +1211,7 @@ export declare enum Image {
|
|
|
1211
1211
|
ICInfoActionHatchLegendaryPNG = "ic-info-action-hatch-legendary.png",
|
|
1212
1212
|
ICInfoActionPvpPNG = "ic-info-action-pvp.png"
|
|
1213
1213
|
}
|
|
1214
|
-
export declare enum
|
|
1214
|
+
export declare enum ActionTidName {
|
|
1215
1215
|
TidGridIslandsBreedDragons = "tid_grid_islands_breed_dragons",
|
|
1216
1216
|
TidGridIslandsCollectFarmFood = "tid_grid_islands_collect_farm_food",
|
|
1217
1217
|
TidGridIslandsCollectGold = "tid_grid_islands_collect_gold",
|
|
@@ -1383,7 +1383,7 @@ export interface GridIsland {
|
|
|
1383
1383
|
encounters: Encounter[];
|
|
1384
1384
|
enemies: GridIslandEnemy[];
|
|
1385
1385
|
currencies: Currency[];
|
|
1386
|
-
actions:
|
|
1386
|
+
actions: ActionElement[];
|
|
1387
1387
|
parameters: FogIslandParameter[];
|
|
1388
1388
|
}
|
|
1389
1389
|
export interface Decoration {
|
|
@@ -1415,6 +1415,7 @@ export declare enum FightBackgroundID {
|
|
|
1415
1415
|
BgBattleBackgroundMiMidsummerMisery = "bg_battle_background_mi_midsummer_misery",
|
|
1416
1416
|
BgBattleBackgroundMiMysteryInParadise = "bg_battle_background_mi_mystery_in_paradise",
|
|
1417
1417
|
BgBattleBackgroundMiRebornRetold = "bg_battle_background_mi_reborn_retold",
|
|
1418
|
+
BgBattleBackgroundMiSpringB = "bg_battle_background_mi_spring_b",
|
|
1418
1419
|
BgBattleBackgroundMiValentinesVault = "bg_battle_background_mi_valentines_vault",
|
|
1419
1420
|
BgBattleBackgroundMr101_MythicalElixir = "bg_battle_background_mr_101_mythical_elixir",
|
|
1420
1421
|
BgBattleBackgroundMr102_MythicalCryogenic = "bg_battle_background_mr_102_mythical_cryogenic",
|
|
@@ -2074,7 +2075,7 @@ export interface MazeIsland {
|
|
|
2074
2075
|
encounters: Encounter[];
|
|
2075
2076
|
enemies: GridIslandEnemy[];
|
|
2076
2077
|
happy_hours: any[];
|
|
2077
|
-
actions:
|
|
2078
|
+
actions: ActionElement[];
|
|
2078
2079
|
clouds: Cloud[];
|
|
2079
2080
|
currencies: Currency[];
|
|
2080
2081
|
parameters: FogIslandParameter[];
|
|
@@ -2088,7 +2089,7 @@ export interface Cloud {
|
|
|
2088
2089
|
}
|
|
2089
2090
|
export interface MazeIslandIsland {
|
|
2090
2091
|
id: number;
|
|
2091
|
-
tid_name:
|
|
2092
|
+
tid_name: IslandTidName;
|
|
2092
2093
|
name: string;
|
|
2093
2094
|
availability: TimerIntervalElement;
|
|
2094
2095
|
paths: number[];
|
|
@@ -2111,7 +2112,13 @@ export interface MazeIslandIsland {
|
|
|
2111
2112
|
mobile_building_position: number[];
|
|
2112
2113
|
active_platforms: ValueClass;
|
|
2113
2114
|
help_view_id: number;
|
|
2114
|
-
sound_tag:
|
|
2115
|
+
sound_tag: FluffySoundTag;
|
|
2116
|
+
}
|
|
2117
|
+
export declare enum FluffySoundTag {
|
|
2118
|
+
Fantasy = "FANTASY"
|
|
2119
|
+
}
|
|
2120
|
+
export declare enum IslandTidName {
|
|
2121
|
+
TidMiGenericName = "tid_mi_generic_name"
|
|
2115
2122
|
}
|
|
2116
2123
|
export interface MazeIslandNode {
|
|
2117
2124
|
id: number;
|
|
@@ -2138,6 +2145,9 @@ export interface NodeReward {
|
|
|
2138
2145
|
"album_pack_aces.2"?: number;
|
|
2139
2146
|
"album_pack_aces.4"?: number;
|
|
2140
2147
|
egg?: number;
|
|
2148
|
+
"pet_food_pack.s"?: number;
|
|
2149
|
+
"pet_food_pack.m"?: number;
|
|
2150
|
+
"pet_food_pack.l"?: number;
|
|
2141
2151
|
}
|
|
2142
2152
|
export interface Path {
|
|
2143
2153
|
id: number;
|
|
@@ -2159,33 +2169,30 @@ export interface MazeIslandReward {
|
|
|
2159
2169
|
export interface News {
|
|
2160
2170
|
"0": The0;
|
|
2161
2171
|
"1": The1;
|
|
2162
|
-
"2":
|
|
2163
|
-
"3":
|
|
2164
|
-
"4":
|
|
2165
|
-
"5":
|
|
2166
|
-
"6":
|
|
2167
|
-
"7":
|
|
2168
|
-
"8":
|
|
2169
|
-
"9":
|
|
2172
|
+
"2": The11;
|
|
2173
|
+
"3": The3;
|
|
2174
|
+
"4": The1;
|
|
2175
|
+
"5": The3;
|
|
2176
|
+
"6": The1;
|
|
2177
|
+
"7": The3;
|
|
2178
|
+
"8": The3;
|
|
2179
|
+
"9": The1;
|
|
2170
2180
|
"10": The10;
|
|
2171
2181
|
"11": The11;
|
|
2172
|
-
"12":
|
|
2173
|
-
"13":
|
|
2174
|
-
"14":
|
|
2182
|
+
"12": The1;
|
|
2183
|
+
"13": The1;
|
|
2184
|
+
"14": The14;
|
|
2175
2185
|
"15": The15;
|
|
2176
|
-
"16": The11;
|
|
2177
2186
|
canvas: Canva[];
|
|
2178
2187
|
}
|
|
2179
2188
|
export interface The0 {
|
|
2180
2189
|
active_platforms: ValueClass;
|
|
2181
2190
|
allow_island_tutorial: number;
|
|
2182
2191
|
assets_name: string;
|
|
2183
|
-
direct_to_shop: number;
|
|
2184
2192
|
end_ts: string;
|
|
2185
2193
|
hud_button: The0_HudButton;
|
|
2186
2194
|
id: number;
|
|
2187
2195
|
min_level: number;
|
|
2188
|
-
popup_frequency: string;
|
|
2189
2196
|
popup_type: string;
|
|
2190
2197
|
show_on_startup: number;
|
|
2191
2198
|
slides: The0_Slide[];
|
|
@@ -2194,7 +2201,6 @@ export interface The0 {
|
|
|
2194
2201
|
export interface The0_HudButton {
|
|
2195
2202
|
file: string;
|
|
2196
2203
|
title: string;
|
|
2197
|
-
viral_icon_tier: number;
|
|
2198
2204
|
}
|
|
2199
2205
|
export interface The0_Slide {
|
|
2200
2206
|
content_localized_key: string;
|
|
@@ -2207,7 +2213,6 @@ export interface The0_Slide {
|
|
|
2207
2213
|
slide_type_2: string;
|
|
2208
2214
|
timer?: string;
|
|
2209
2215
|
times_to_show?: number;
|
|
2210
|
-
link_item_id?: number;
|
|
2211
2216
|
}
|
|
2212
2217
|
export interface The1 {
|
|
2213
2218
|
active_platforms: ValueClass;
|
|
@@ -2215,38 +2220,25 @@ export interface The1 {
|
|
|
2215
2220
|
assets_name: string;
|
|
2216
2221
|
direct_to_shop: number;
|
|
2217
2222
|
end_ts: string;
|
|
2223
|
+
filter_category: null;
|
|
2218
2224
|
id: number;
|
|
2225
|
+
label_text_tid: null;
|
|
2226
|
+
label_title_tid: null;
|
|
2219
2227
|
min_level: number;
|
|
2220
|
-
popup_frequency: string;
|
|
2221
|
-
popup_is_critical: boolean;
|
|
2222
|
-
popup_type: string;
|
|
2223
|
-
show_on_startup: number;
|
|
2224
|
-
slides: The0_Slide[];
|
|
2225
|
-
start_ts: string;
|
|
2226
|
-
}
|
|
2227
|
-
export interface The10 {
|
|
2228
|
-
active_platforms: ValueClass;
|
|
2229
|
-
allow_island_tutorial: number;
|
|
2230
|
-
assets_name: string;
|
|
2231
|
-
direct_to_shop: number;
|
|
2232
|
-
end_ts: string;
|
|
2233
|
-
id: number;
|
|
2234
|
-
min_level: number;
|
|
2235
|
-
popup_frequency: string;
|
|
2236
2228
|
popup_type: string;
|
|
2229
|
+
priority: number | null;
|
|
2237
2230
|
show_on_startup: number;
|
|
2238
|
-
slides:
|
|
2231
|
+
slides: The1_Slide[];
|
|
2239
2232
|
start_ts: string;
|
|
2240
2233
|
}
|
|
2241
|
-
export interface
|
|
2242
|
-
content_localized_key
|
|
2234
|
+
export interface The1_Slide {
|
|
2235
|
+
content_localized_key: string;
|
|
2243
2236
|
custom_title_localized_key: string;
|
|
2244
2237
|
header_localized_key: string;
|
|
2245
2238
|
image_url: string;
|
|
2246
2239
|
multiple_buttons: MultipleButton[];
|
|
2247
2240
|
times_to_show: number;
|
|
2248
2241
|
type: SlideType;
|
|
2249
|
-
forceClose?: boolean;
|
|
2250
2242
|
}
|
|
2251
2243
|
export interface MultipleButton {
|
|
2252
2244
|
animation: AnimationNameEnum;
|
|
@@ -2255,11 +2247,11 @@ export interface MultipleButton {
|
|
|
2255
2247
|
glint: boolean;
|
|
2256
2248
|
key: Key;
|
|
2257
2249
|
link: string;
|
|
2250
|
+
linkItemId?: number | string;
|
|
2258
2251
|
normalizedPosition: NormalizedPosition;
|
|
2259
2252
|
size: Size;
|
|
2260
2253
|
spineAsset: SpineAsset;
|
|
2261
2254
|
style: Style;
|
|
2262
|
-
linkItemId?: number | string;
|
|
2263
2255
|
}
|
|
2264
2256
|
export declare enum AnimationPlace {
|
|
2265
2257
|
Foreground = "Foreground"
|
|
@@ -2287,86 +2279,143 @@ export declare enum Style {
|
|
|
2287
2279
|
export declare enum SlideType {
|
|
2288
2280
|
FullImage = "FullImage"
|
|
2289
2281
|
}
|
|
2290
|
-
export interface
|
|
2282
|
+
export interface The10 {
|
|
2291
2283
|
active_platforms: ValueClass;
|
|
2292
2284
|
allow_island_tutorial: number;
|
|
2293
2285
|
assets_name: string;
|
|
2294
2286
|
direct_to_shop: number;
|
|
2295
2287
|
end_ts: string;
|
|
2296
2288
|
filter_category: null;
|
|
2289
|
+
hud_button: The10_HudButton;
|
|
2297
2290
|
id: number;
|
|
2298
2291
|
label_text_tid: null;
|
|
2299
2292
|
label_title_tid: null;
|
|
2300
2293
|
min_level: number;
|
|
2294
|
+
popup_frequency: string;
|
|
2301
2295
|
popup_type: string;
|
|
2302
|
-
priority:
|
|
2296
|
+
priority: null;
|
|
2303
2297
|
show_on_startup: number;
|
|
2304
2298
|
slides: The10_Slide[];
|
|
2305
2299
|
start_ts: string;
|
|
2306
2300
|
}
|
|
2307
|
-
export interface
|
|
2301
|
+
export interface The10_HudButton {
|
|
2302
|
+
file: string;
|
|
2303
|
+
title: string;
|
|
2304
|
+
viral_icon_tier: number;
|
|
2305
|
+
}
|
|
2306
|
+
export interface The10_Slide {
|
|
2307
|
+
content_localized_key: string;
|
|
2308
|
+
custom_title_localized_key: string;
|
|
2309
|
+
forceClose?: boolean;
|
|
2310
|
+
header_localized_key: string;
|
|
2311
|
+
image_url: string;
|
|
2312
|
+
multiple_buttons?: MultipleButton[];
|
|
2313
|
+
times_to_show: number;
|
|
2314
|
+
type: SlideType;
|
|
2315
|
+
}
|
|
2316
|
+
export interface The11 {
|
|
2308
2317
|
active_platforms: ValueClass;
|
|
2309
2318
|
allow_island_tutorial: number;
|
|
2310
2319
|
assets_name: string;
|
|
2311
2320
|
direct_to_shop: number;
|
|
2312
2321
|
end_ts: string;
|
|
2313
|
-
filter_category: null;
|
|
2314
|
-
hud_button: The0_HudButton;
|
|
2315
2322
|
id: number;
|
|
2316
|
-
label_text_tid: null;
|
|
2317
|
-
label_title_tid: null;
|
|
2318
2323
|
min_level: number;
|
|
2319
2324
|
popup_frequency: string;
|
|
2320
2325
|
popup_type: string;
|
|
2321
|
-
priority: null;
|
|
2322
2326
|
show_on_startup: number;
|
|
2323
|
-
slides:
|
|
2327
|
+
slides: The1_Slide[];
|
|
2324
2328
|
start_ts: string;
|
|
2325
2329
|
}
|
|
2326
|
-
export interface
|
|
2330
|
+
export interface The14 {
|
|
2327
2331
|
active_platforms: ValueClass;
|
|
2328
2332
|
allow_island_tutorial: number;
|
|
2329
2333
|
assets_name: string;
|
|
2334
|
+
direct_to_shop: number;
|
|
2330
2335
|
end_ts: string;
|
|
2331
|
-
hud_button: The2_HudButton;
|
|
2332
2336
|
id: number;
|
|
2333
2337
|
min_level: number;
|
|
2338
|
+
popup_frequency: string;
|
|
2339
|
+
popup_is_critical: boolean;
|
|
2334
2340
|
popup_type: string;
|
|
2335
2341
|
show_on_startup: number;
|
|
2336
2342
|
slides: The0_Slide[];
|
|
2337
2343
|
start_ts: string;
|
|
2338
2344
|
}
|
|
2339
|
-
export interface
|
|
2340
|
-
file: string;
|
|
2341
|
-
title: string;
|
|
2342
|
-
}
|
|
2343
|
-
export interface The8 {
|
|
2345
|
+
export interface The15 {
|
|
2344
2346
|
active_platforms: ValueClass;
|
|
2345
2347
|
allow_island_tutorial: number;
|
|
2346
2348
|
assets_name: string;
|
|
2347
2349
|
direct_to_shop: number;
|
|
2348
2350
|
end_ts: string;
|
|
2349
2351
|
filter_category: null;
|
|
2350
|
-
hud_button: The0_HudButton;
|
|
2351
2352
|
id: number;
|
|
2352
2353
|
label_text_tid: null;
|
|
2353
2354
|
label_title_tid: null;
|
|
2354
2355
|
min_level: number;
|
|
2355
|
-
popup_frequency: string;
|
|
2356
2356
|
popup_type: string;
|
|
2357
2357
|
priority: null;
|
|
2358
2358
|
show_on_startup: number;
|
|
2359
|
-
slides:
|
|
2359
|
+
slides: The10_Slide[];
|
|
2360
2360
|
start_ts: string;
|
|
2361
2361
|
}
|
|
2362
|
-
export interface
|
|
2363
|
-
|
|
2362
|
+
export interface The3 {
|
|
2363
|
+
active_platforms: ValueClass;
|
|
2364
|
+
allow_island_tutorial: number;
|
|
2364
2365
|
assets_name: string;
|
|
2365
|
-
|
|
2366
|
-
end_ts:
|
|
2366
|
+
direct_to_shop: number;
|
|
2367
|
+
end_ts: string;
|
|
2368
|
+
id: number;
|
|
2367
2369
|
min_level: number;
|
|
2368
|
-
|
|
2370
|
+
popup_frequency: string;
|
|
2371
|
+
popup_type: string;
|
|
2369
2372
|
show_on_startup: number;
|
|
2373
|
+
slides: The10_Slide[];
|
|
2374
|
+
start_ts: string;
|
|
2375
|
+
}
|
|
2376
|
+
export interface Canva {
|
|
2377
|
+
id: number;
|
|
2378
|
+
assets_name: string;
|
|
2379
|
+
start_ts: number | string;
|
|
2380
|
+
end_ts: number | string;
|
|
2381
|
+
min_level?: number;
|
|
2382
|
+
slides: CanvaSlide[];
|
|
2383
|
+
show_on_startup?: number;
|
|
2384
|
+
}
|
|
2385
|
+
export interface CanvaSlide {
|
|
2386
|
+
custom_title_localized_key?: string;
|
|
2387
|
+
header_localized_key?: string;
|
|
2388
|
+
image_url?: string;
|
|
2389
|
+
times_to_show?: number;
|
|
2390
|
+
type?: SlideType;
|
|
2391
|
+
multiple_buttons?: MultipleButton[];
|
|
2392
|
+
bg?: string;
|
|
2393
|
+
content?: Content[];
|
|
2394
|
+
edit_mode?: number;
|
|
2395
|
+
id?: number;
|
|
2396
|
+
title_key?: string;
|
|
2397
|
+
viral_icon_key?: string;
|
|
2398
|
+
viral_icon_timer?: string;
|
|
2399
|
+
}
|
|
2400
|
+
export interface Content {
|
|
2401
|
+
height: number;
|
|
2402
|
+
rotation: number;
|
|
2403
|
+
stroke?: string;
|
|
2404
|
+
text_color?: string;
|
|
2405
|
+
text_key: string;
|
|
2406
|
+
text_size?: number;
|
|
2407
|
+
timer?: number;
|
|
2408
|
+
type: string;
|
|
2409
|
+
width: number;
|
|
2410
|
+
x: number;
|
|
2411
|
+
y: number;
|
|
2412
|
+
action?: ContentAction;
|
|
2413
|
+
style?: string;
|
|
2414
|
+
}
|
|
2415
|
+
export interface ContentAction {
|
|
2416
|
+
itemId: string;
|
|
2417
|
+
storeCategory: number;
|
|
2418
|
+
type: string;
|
|
2370
2419
|
}
|
|
2371
2420
|
export interface Perks {
|
|
2372
2421
|
abilities: Ability[];
|
|
@@ -2564,14 +2613,14 @@ export interface RunnerIslandIsland {
|
|
|
2564
2613
|
zip_file: ZipFile;
|
|
2565
2614
|
help_id: number;
|
|
2566
2615
|
run_cost: number;
|
|
2567
|
-
sound_tag:
|
|
2616
|
+
sound_tag: TentacledSoundTag;
|
|
2568
2617
|
mission_pool: number[];
|
|
2569
2618
|
sections: number[];
|
|
2570
2619
|
building_tooltip_position: number[];
|
|
2571
2620
|
building_timer_position: number[];
|
|
2572
2621
|
milestone_rewards: number[];
|
|
2573
2622
|
}
|
|
2574
|
-
export declare enum
|
|
2623
|
+
export declare enum TentacledSoundTag {
|
|
2575
2624
|
Aquatic = "AQUATIC"
|
|
2576
2625
|
}
|
|
2577
2626
|
export declare enum ZipFile {
|
|
@@ -3084,7 +3133,7 @@ export interface TowerIsland {
|
|
|
3084
3133
|
happy_hours: HappyHour[];
|
|
3085
3134
|
parameters: FogIslandParameter[];
|
|
3086
3135
|
currencies: Currency[];
|
|
3087
|
-
actions:
|
|
3136
|
+
actions: ActionElement[];
|
|
3088
3137
|
}
|
|
3089
3138
|
export interface Floor {
|
|
3090
3139
|
id: number;
|
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.File = exports.RewardType = exports.ActionType = exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.TreasureItemType = exports.Feature = exports.PurpleType = exports.FloorImage = exports.Name = exports.Target = void 0;
|
|
3
|
+
exports.File = exports.RewardType = 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.VfxTextEffectname = 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.AuraCenterMode = exports.AttackType = exports.Texture = exports.RewardEnum = exports.ZipFile = exports.TentacledSoundTag = exports.ActivityType = exports.PerkType = exports.SlideType = exports.Style = exports.SpineAsset = exports.Key = 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 = void 0;
|
|
5
|
+
exports.TreasureItemType = exports.Feature = exports.PurpleType = exports.FloorImage = exports.Name = exports.Target = exports.StatusEffectDataEffectName = exports.EffectVfxEnum = void 0;
|
|
6
6
|
var Format;
|
|
7
7
|
(function (Format) {
|
|
8
8
|
Format["Efk"] = "efk";
|
|
@@ -352,17 +352,17 @@ var Image;
|
|
|
352
352
|
Image["ICInfoActionHatchLegendaryPNG"] = "ic-info-action-hatch-legendary.png";
|
|
353
353
|
Image["ICInfoActionPvpPNG"] = "ic-info-action-pvp.png";
|
|
354
354
|
})(Image || (exports.Image = Image = {}));
|
|
355
|
-
var
|
|
356
|
-
(function (
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
})(
|
|
355
|
+
var ActionTidName;
|
|
356
|
+
(function (ActionTidName) {
|
|
357
|
+
ActionTidName["TidGridIslandsBreedDragons"] = "tid_grid_islands_breed_dragons";
|
|
358
|
+
ActionTidName["TidGridIslandsCollectFarmFood"] = "tid_grid_islands_collect_farm_food";
|
|
359
|
+
ActionTidName["TidGridIslandsCollectGold"] = "tid_grid_islands_collect_gold";
|
|
360
|
+
ActionTidName["TidGridIslandsFeedDragons"] = "tid_grid_islands_feed_dragons";
|
|
361
|
+
ActionTidName["TidGridIslandsHatching2_El"] = "tid_grid_islands_hatching_2_el";
|
|
362
|
+
ActionTidName["TidGridIslandsHatching3_El"] = "tid_grid_islands_hatching_3_el";
|
|
363
|
+
ActionTidName["TidGridIslandsHatchingLegendary"] = "tid_grid_islands_hatching_legendary";
|
|
364
|
+
ActionTidName["TidGridIslandsPvpBattle"] = "tid_grid_islands_pvp_battle";
|
|
365
|
+
})(ActionTidName || (exports.ActionTidName = ActionTidName = {}));
|
|
366
366
|
var ActionType;
|
|
367
367
|
(function (ActionType) {
|
|
368
368
|
ActionType["BreedDragons"] = "BREED_DRAGONS";
|
|
@@ -398,6 +398,7 @@ var FightBackgroundID;
|
|
|
398
398
|
FightBackgroundID["BgBattleBackgroundMiMidsummerMisery"] = "bg_battle_background_mi_midsummer_misery";
|
|
399
399
|
FightBackgroundID["BgBattleBackgroundMiMysteryInParadise"] = "bg_battle_background_mi_mystery_in_paradise";
|
|
400
400
|
FightBackgroundID["BgBattleBackgroundMiRebornRetold"] = "bg_battle_background_mi_reborn_retold";
|
|
401
|
+
FightBackgroundID["BgBattleBackgroundMiSpringB"] = "bg_battle_background_mi_spring_b";
|
|
401
402
|
FightBackgroundID["BgBattleBackgroundMiValentinesVault"] = "bg_battle_background_mi_valentines_vault";
|
|
402
403
|
FightBackgroundID["BgBattleBackgroundMr101_MythicalElixir"] = "bg_battle_background_mr_101_mythical_elixir";
|
|
403
404
|
FightBackgroundID["BgBattleBackgroundMr102_MythicalCryogenic"] = "bg_battle_background_mr_102_mythical_cryogenic";
|
|
@@ -583,6 +584,14 @@ var CollectibleType;
|
|
|
583
584
|
CollectibleType["Dragon"] = "DRAGON";
|
|
584
585
|
CollectibleType["Item"] = "ITEM";
|
|
585
586
|
})(CollectibleType || (exports.CollectibleType = CollectibleType = {}));
|
|
587
|
+
var FluffySoundTag;
|
|
588
|
+
(function (FluffySoundTag) {
|
|
589
|
+
FluffySoundTag["Fantasy"] = "FANTASY";
|
|
590
|
+
})(FluffySoundTag || (exports.FluffySoundTag = FluffySoundTag = {}));
|
|
591
|
+
var IslandTidName;
|
|
592
|
+
(function (IslandTidName) {
|
|
593
|
+
IslandTidName["TidMiGenericName"] = "tid_mi_generic_name";
|
|
594
|
+
})(IslandTidName || (exports.IslandTidName = IslandTidName = {}));
|
|
586
595
|
var AnimationPlace;
|
|
587
596
|
(function (AnimationPlace) {
|
|
588
597
|
AnimationPlace["Foreground"] = "Foreground";
|
|
@@ -623,10 +632,10 @@ var ActivityType;
|
|
|
623
632
|
ActivityType["PvpArenas"] = "PVP_ARENAS";
|
|
624
633
|
ActivityType["TournamentMatch"] = "TOURNAMENT_MATCH";
|
|
625
634
|
})(ActivityType || (exports.ActivityType = ActivityType = {}));
|
|
626
|
-
var
|
|
627
|
-
(function (
|
|
628
|
-
|
|
629
|
-
})(
|
|
635
|
+
var TentacledSoundTag;
|
|
636
|
+
(function (TentacledSoundTag) {
|
|
637
|
+
TentacledSoundTag["Aquatic"] = "AQUATIC";
|
|
638
|
+
})(TentacledSoundTag || (exports.TentacledSoundTag = TentacledSoundTag = {}));
|
|
630
639
|
var ZipFile;
|
|
631
640
|
(function (ZipFile) {
|
|
632
641
|
ZipFile["MobileUIRunnerIslandsOceanRunnerIslandBZip"] = "/mobile/ui/runner_islands/ocean-runner-island_b.zip";
|