@dchighs/dc-config 0.1.16 → 0.1.17
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 +130 -50
- package/dist/dtos/game-config.js +19 -21
- package/package.json +1 -1
|
@@ -1234,9 +1234,15 @@ export declare enum ActionType {
|
|
|
1234
1234
|
}
|
|
1235
1235
|
export interface Currency {
|
|
1236
1236
|
id: number;
|
|
1237
|
-
tid_name:
|
|
1237
|
+
tid_name: CurrencyTidName;
|
|
1238
1238
|
actions: number[];
|
|
1239
1239
|
}
|
|
1240
|
+
export declare enum CurrencyTidName {
|
|
1241
|
+
TidFiCurrencyName = "tid_fi_currency_name",
|
|
1242
|
+
TidGiCurrencyName = "tid_gi_currency_name",
|
|
1243
|
+
TidMazeIslandCurrencyName = "tid_maze_island_currency_name",
|
|
1244
|
+
TidTowerIslandCurrencyName = "tid_tower_island_currency_name"
|
|
1245
|
+
}
|
|
1240
1246
|
export interface Hint {
|
|
1241
1247
|
id: number;
|
|
1242
1248
|
type: string;
|
|
@@ -1350,22 +1356,24 @@ export interface FogIslandParameter {
|
|
|
1350
1356
|
}
|
|
1351
1357
|
export interface FogIslandReward {
|
|
1352
1358
|
id: number;
|
|
1353
|
-
type:
|
|
1359
|
+
type: ViewTypeEnum;
|
|
1354
1360
|
island_id: number;
|
|
1355
1361
|
reward_id: number;
|
|
1356
1362
|
last_piece_cost: number;
|
|
1357
1363
|
num_pieces: number;
|
|
1358
1364
|
show_new_badge: number;
|
|
1359
1365
|
}
|
|
1360
|
-
export declare enum
|
|
1366
|
+
export declare enum ViewTypeEnum {
|
|
1361
1367
|
Chest = "CHEST",
|
|
1368
|
+
Dragon = "DRAGON",
|
|
1362
1369
|
DragonPiece = "DRAGON_PIECE",
|
|
1363
1370
|
None = "NONE",
|
|
1371
|
+
Resource = "RESOURCE",
|
|
1364
1372
|
Step = "STEP"
|
|
1365
1373
|
}
|
|
1366
1374
|
export interface FogIslandSquare {
|
|
1367
1375
|
id: number;
|
|
1368
|
-
type:
|
|
1376
|
+
type: ViewTypeEnum;
|
|
1369
1377
|
type_id?: number;
|
|
1370
1378
|
highlight: number;
|
|
1371
1379
|
x: number;
|
|
@@ -1374,6 +1382,10 @@ export interface FogIslandSquare {
|
|
|
1374
1382
|
claim_cost: number;
|
|
1375
1383
|
come_back_cost: number;
|
|
1376
1384
|
reward_id?: number;
|
|
1385
|
+
resource?: PurpleResource;
|
|
1386
|
+
}
|
|
1387
|
+
export interface PurpleResource {
|
|
1388
|
+
b: number[];
|
|
1377
1389
|
}
|
|
1378
1390
|
export interface GridIsland {
|
|
1379
1391
|
islands: FogIslandIsland[];
|
|
@@ -1411,13 +1423,13 @@ export declare enum FightBackgroundID {
|
|
|
1411
1423
|
BgBattleBackgroundHrFallFriday = "bg_battle_background_hr_fall_friday",
|
|
1412
1424
|
BgBattleBackgroundHrNewBeginnings = "bg_battle_background_hr_new_beginnings",
|
|
1413
1425
|
BgBattleBackgroundHrSaintvalentine26 = "bg_battle_background_hr_saintvalentine_26",
|
|
1426
|
+
BgBattleBackgroundMiAprilShowers = "bg_battle_background_mi_april_showers",
|
|
1414
1427
|
BgBattleBackgroundMiCarnival = "bg_battle_background_mi_carnival",
|
|
1415
1428
|
BgBattleBackgroundMiDragonmysteries = "bg_battle_background_mi_dragonmysteries",
|
|
1416
1429
|
BgBattleBackgroundMiEaster2020 = "bg_battle_background_mi_easter2020",
|
|
1417
1430
|
BgBattleBackgroundMiMidsummerMisery = "bg_battle_background_mi_midsummer_misery",
|
|
1418
1431
|
BgBattleBackgroundMiMysteryInParadise = "bg_battle_background_mi_mystery_in_paradise",
|
|
1419
1432
|
BgBattleBackgroundMiRebornRetold = "bg_battle_background_mi_reborn_retold",
|
|
1420
|
-
BgBattleBackgroundMiSpringB = "bg_battle_background_mi_spring_b",
|
|
1421
1433
|
BgBattleBackgroundMiValentinesVault = "bg_battle_background_mi_valentines_vault",
|
|
1422
1434
|
BgBattleBackgroundMr101_MythicalElixir = "bg_battle_background_mr_101_mythical_elixir",
|
|
1423
1435
|
BgBattleBackgroundMr102_MythicalCryogenic = "bg_battle_background_mr_102_mythical_cryogenic",
|
|
@@ -1432,12 +1444,6 @@ export interface GridIslandEnemy {
|
|
|
1432
1444
|
elements_view_type: any[];
|
|
1433
1445
|
cooldown: number;
|
|
1434
1446
|
}
|
|
1435
|
-
export declare enum ViewTypeEnum {
|
|
1436
|
-
Chest = "CHEST",
|
|
1437
|
-
Dragon = "DRAGON",
|
|
1438
|
-
None = "NONE",
|
|
1439
|
-
Resource = "RESOURCE"
|
|
1440
|
-
}
|
|
1441
1447
|
export interface Episode {
|
|
1442
1448
|
id: number;
|
|
1443
1449
|
island_id: number;
|
|
@@ -1474,9 +1480,9 @@ export interface GridIslandSquare {
|
|
|
1474
1480
|
claim_cost: number;
|
|
1475
1481
|
wall?: Wall;
|
|
1476
1482
|
wall_suffix?: WallSuffix;
|
|
1477
|
-
resource?:
|
|
1483
|
+
resource?: FluffyResource;
|
|
1478
1484
|
}
|
|
1479
|
-
export interface
|
|
1485
|
+
export interface FluffyResource {
|
|
1480
1486
|
"pet_food_pack.s"?: number;
|
|
1481
1487
|
"pet_food_pack.m"?: number;
|
|
1482
1488
|
"pet_food_pack.l"?: number;
|
|
@@ -2174,17 +2180,18 @@ export interface MazeIslandReward {
|
|
|
2174
2180
|
export interface News {
|
|
2175
2181
|
"0": The0;
|
|
2176
2182
|
"1": The1;
|
|
2177
|
-
"2":
|
|
2178
|
-
"3":
|
|
2179
|
-
"4":
|
|
2183
|
+
"2": The2;
|
|
2184
|
+
"3": The13;
|
|
2185
|
+
"4": The13;
|
|
2180
2186
|
"5": The5;
|
|
2181
|
-
"6":
|
|
2182
|
-
"7":
|
|
2183
|
-
"8":
|
|
2184
|
-
"9":
|
|
2185
|
-
"10":
|
|
2186
|
-
"11":
|
|
2187
|
-
"12":
|
|
2187
|
+
"6": The6;
|
|
2188
|
+
"7": The7;
|
|
2189
|
+
"8": The1;
|
|
2190
|
+
"9": The10;
|
|
2191
|
+
"10": The10;
|
|
2192
|
+
"11": The1;
|
|
2193
|
+
"12": The1;
|
|
2194
|
+
"13": The13;
|
|
2188
2195
|
canvas: Canva[];
|
|
2189
2196
|
}
|
|
2190
2197
|
export interface The0 {
|
|
@@ -2193,38 +2200,74 @@ export interface The0 {
|
|
|
2193
2200
|
assets_name: string;
|
|
2194
2201
|
direct_to_shop: number;
|
|
2195
2202
|
end_ts: string;
|
|
2203
|
+
filter_category: null;
|
|
2204
|
+
hud_button: The0_HudButton;
|
|
2196
2205
|
id: number;
|
|
2206
|
+
label_text_tid: null;
|
|
2207
|
+
label_title_tid: null;
|
|
2197
2208
|
min_level: number;
|
|
2198
2209
|
popup_frequency: string;
|
|
2199
2210
|
popup_type: string;
|
|
2211
|
+
priority: null;
|
|
2200
2212
|
show_on_startup: number;
|
|
2201
2213
|
slides: The0_Slide[];
|
|
2202
2214
|
start_ts: string;
|
|
2203
2215
|
}
|
|
2216
|
+
export interface The0_HudButton {
|
|
2217
|
+
file: string;
|
|
2218
|
+
title: string;
|
|
2219
|
+
viral_icon_tier: number;
|
|
2220
|
+
}
|
|
2204
2221
|
export interface The0_Slide {
|
|
2222
|
+
content_localized_key?: string;
|
|
2223
|
+
custom_title_localized_key: string;
|
|
2224
|
+
header_localized_key?: string;
|
|
2225
|
+
image_url: string;
|
|
2226
|
+
link: string;
|
|
2227
|
+
link_button_key: string;
|
|
2228
|
+
link_item_id?: number;
|
|
2229
|
+
slide_type: string;
|
|
2230
|
+
slide_type_2: string;
|
|
2231
|
+
timer?: string;
|
|
2232
|
+
times_to_show?: number;
|
|
2233
|
+
}
|
|
2234
|
+
export interface The1 {
|
|
2235
|
+
active_platforms: ValueClass;
|
|
2236
|
+
allow_island_tutorial: number;
|
|
2237
|
+
assets_name: string;
|
|
2238
|
+
direct_to_shop: number;
|
|
2239
|
+
end_ts: string;
|
|
2240
|
+
id: number;
|
|
2241
|
+
min_level: number;
|
|
2242
|
+
popup_frequency: string;
|
|
2243
|
+
popup_type: string;
|
|
2244
|
+
show_on_startup: number;
|
|
2245
|
+
slides: The1_Slide[];
|
|
2246
|
+
start_ts: string;
|
|
2247
|
+
}
|
|
2248
|
+
export interface The1_Slide {
|
|
2205
2249
|
content_localized_key: FluffyContentLocalizedKey;
|
|
2206
2250
|
custom_title_localized_key: string;
|
|
2207
2251
|
forceClose?: boolean;
|
|
2208
2252
|
header_localized_key: string;
|
|
2209
2253
|
image_url: string;
|
|
2210
|
-
multiple_buttons:
|
|
2254
|
+
multiple_buttons: PurpleMultipleButton[];
|
|
2211
2255
|
times_to_show: number;
|
|
2212
2256
|
type: SlideType;
|
|
2213
2257
|
}
|
|
2214
2258
|
export declare enum FluffyContentLocalizedKey {
|
|
2215
2259
|
Empty = "",
|
|
2216
2260
|
TidNewsEasterraceDesc = "tid_news_easterrace_desc",
|
|
2217
|
-
TidNewsEventifiedarenasDesc = "tid_news_eventifiedarenas_desc",
|
|
2218
2261
|
TidNewsMdsEventDesc = "tid_news_mds_event_desc"
|
|
2219
2262
|
}
|
|
2220
|
-
export interface
|
|
2263
|
+
export interface PurpleMultipleButton {
|
|
2221
2264
|
animation: AnimationNameEnum;
|
|
2222
2265
|
animationPlace: AnimationPlace;
|
|
2223
2266
|
forceClose: boolean;
|
|
2224
2267
|
glint: boolean;
|
|
2225
2268
|
key: Key;
|
|
2226
2269
|
link: string;
|
|
2227
|
-
linkItemId
|
|
2270
|
+
linkItemId: number;
|
|
2228
2271
|
normalizedPosition: NormalizedPosition;
|
|
2229
2272
|
size: Size;
|
|
2230
2273
|
spineAsset: SpineAsset;
|
|
@@ -2235,7 +2278,6 @@ export declare enum AnimationPlace {
|
|
|
2235
2278
|
}
|
|
2236
2279
|
export declare enum Key {
|
|
2237
2280
|
Empty = "",
|
|
2238
|
-
TidNewsApocalypsepathButton = "tid_news_apocalypsepath_button",
|
|
2239
2281
|
TidNewsPetsdaypassS1Button = "tid_news_petsdaypass_s1_button",
|
|
2240
2282
|
TidNewsPetsdaypassS3Button = "tid_news_petsdaypass_s3_button"
|
|
2241
2283
|
}
|
|
@@ -2248,18 +2290,16 @@ export interface Size {
|
|
|
2248
2290
|
w: number;
|
|
2249
2291
|
}
|
|
2250
2292
|
export declare enum SpineAsset {
|
|
2251
|
-
Empty = "",
|
|
2252
2293
|
PointerAnimationV2 = "pointer_animation_v2"
|
|
2253
2294
|
}
|
|
2254
2295
|
export declare enum Style {
|
|
2255
2296
|
Blue = "Blue",
|
|
2256
|
-
BlueLarge = "BlueLarge",
|
|
2257
2297
|
Transparent = "Transparent"
|
|
2258
2298
|
}
|
|
2259
2299
|
export declare enum SlideType {
|
|
2260
2300
|
FullImage = "FullImage"
|
|
2261
2301
|
}
|
|
2262
|
-
export interface
|
|
2302
|
+
export interface The10 {
|
|
2263
2303
|
active_platforms: ValueClass;
|
|
2264
2304
|
allow_island_tutorial: number;
|
|
2265
2305
|
assets_name: string;
|
|
@@ -2270,19 +2310,33 @@ export interface The1 {
|
|
|
2270
2310
|
popup_frequency: string;
|
|
2271
2311
|
popup_type: string;
|
|
2272
2312
|
show_on_startup: number;
|
|
2273
|
-
slides:
|
|
2313
|
+
slides: The10_Slide[];
|
|
2274
2314
|
start_ts: string;
|
|
2275
2315
|
}
|
|
2276
|
-
export interface
|
|
2316
|
+
export interface The10_Slide {
|
|
2277
2317
|
content_localized_key: string;
|
|
2278
2318
|
custom_title_localized_key: string;
|
|
2319
|
+
forceClose: boolean;
|
|
2279
2320
|
header_localized_key: string;
|
|
2280
2321
|
image_url: string;
|
|
2281
|
-
multiple_buttons:
|
|
2322
|
+
multiple_buttons: FluffyMultipleButton[];
|
|
2282
2323
|
times_to_show: number;
|
|
2283
2324
|
type: SlideType;
|
|
2284
2325
|
}
|
|
2285
|
-
export interface
|
|
2326
|
+
export interface FluffyMultipleButton {
|
|
2327
|
+
animation: AnimationNameEnum;
|
|
2328
|
+
animationPlace: AnimationPlace;
|
|
2329
|
+
forceClose: boolean;
|
|
2330
|
+
glint: boolean;
|
|
2331
|
+
key: string;
|
|
2332
|
+
link: string;
|
|
2333
|
+
linkItemId?: number | string;
|
|
2334
|
+
normalizedPosition: NormalizedPosition;
|
|
2335
|
+
size: Size;
|
|
2336
|
+
spineAsset: string;
|
|
2337
|
+
style: string;
|
|
2338
|
+
}
|
|
2339
|
+
export interface The13 {
|
|
2286
2340
|
active_platforms: ValueClass;
|
|
2287
2341
|
allow_island_tutorial: number;
|
|
2288
2342
|
assets_name: string;
|
|
@@ -2296,10 +2350,10 @@ export interface The12 {
|
|
|
2296
2350
|
popup_type: string;
|
|
2297
2351
|
priority: number | null;
|
|
2298
2352
|
show_on_startup: number;
|
|
2299
|
-
slides:
|
|
2353
|
+
slides: The1_Slide[];
|
|
2300
2354
|
start_ts: string;
|
|
2301
2355
|
}
|
|
2302
|
-
export interface
|
|
2356
|
+
export interface The2 {
|
|
2303
2357
|
active_platforms: ValueClass;
|
|
2304
2358
|
allow_island_tutorial: number;
|
|
2305
2359
|
assets_name: string;
|
|
@@ -2308,38 +2362,63 @@ export interface The4 {
|
|
|
2308
2362
|
id: number;
|
|
2309
2363
|
min_level: number;
|
|
2310
2364
|
popup_frequency: string;
|
|
2311
|
-
popup_is_critical: boolean;
|
|
2312
2365
|
popup_type: string;
|
|
2313
2366
|
show_on_startup: number;
|
|
2314
|
-
slides:
|
|
2367
|
+
slides: The2_Slide[];
|
|
2315
2368
|
start_ts: string;
|
|
2316
2369
|
}
|
|
2317
|
-
export interface
|
|
2370
|
+
export interface The2_Slide {
|
|
2318
2371
|
content_localized_key: string;
|
|
2319
2372
|
custom_title_localized_key: string;
|
|
2320
2373
|
header_localized_key: string;
|
|
2321
2374
|
image_url: string;
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
slide_type_2: string;
|
|
2326
|
-
timer?: string;
|
|
2327
|
-
times_to_show?: number;
|
|
2375
|
+
multiple_buttons: FluffyMultipleButton[];
|
|
2376
|
+
times_to_show: number;
|
|
2377
|
+
type: SlideType;
|
|
2328
2378
|
}
|
|
2329
2379
|
export interface The5 {
|
|
2380
|
+
active_platforms: ValueClass;
|
|
2381
|
+
allow_island_tutorial: number;
|
|
2382
|
+
assets_name: string;
|
|
2383
|
+
direct_to_shop: number;
|
|
2384
|
+
end_ts: string;
|
|
2385
|
+
id: number;
|
|
2386
|
+
min_level: number;
|
|
2387
|
+
popup_frequency: string;
|
|
2388
|
+
popup_is_critical: boolean;
|
|
2389
|
+
popup_type: string;
|
|
2390
|
+
show_on_startup: number;
|
|
2391
|
+
slides: The0_Slide[];
|
|
2392
|
+
start_ts: string;
|
|
2393
|
+
}
|
|
2394
|
+
export interface The6 {
|
|
2395
|
+
active_platforms: ValueClass;
|
|
2396
|
+
allow_island_tutorial: number;
|
|
2397
|
+
assets_name: string;
|
|
2398
|
+
direct_to_shop: number;
|
|
2399
|
+
end_ts: string;
|
|
2400
|
+
hud_button: The0_HudButton;
|
|
2401
|
+
id: number;
|
|
2402
|
+
min_level: number;
|
|
2403
|
+
popup_type: string;
|
|
2404
|
+
show_on_startup: number;
|
|
2405
|
+
slides: The0_Slide[];
|
|
2406
|
+
start_ts: string;
|
|
2407
|
+
}
|
|
2408
|
+
export interface The7 {
|
|
2330
2409
|
active_platforms: ValueClass;
|
|
2331
2410
|
allow_island_tutorial: number;
|
|
2332
2411
|
assets_name: string;
|
|
2333
2412
|
end_ts: string;
|
|
2334
|
-
hud_button:
|
|
2413
|
+
hud_button: The7_HudButton;
|
|
2335
2414
|
id: number;
|
|
2336
2415
|
min_level: number;
|
|
2337
2416
|
popup_type: string;
|
|
2338
2417
|
show_on_startup: number;
|
|
2339
|
-
slides:
|
|
2418
|
+
slides: The0_Slide[];
|
|
2340
2419
|
start_ts: string;
|
|
2341
2420
|
}
|
|
2342
|
-
export interface
|
|
2421
|
+
export interface The7_HudButton {
|
|
2343
2422
|
file: string;
|
|
2344
2423
|
title: string;
|
|
2345
2424
|
}
|
|
@@ -2351,6 +2430,7 @@ export interface Canva {
|
|
|
2351
2430
|
min_level?: number;
|
|
2352
2431
|
slides: CanvaSlide[];
|
|
2353
2432
|
show_on_startup?: number;
|
|
2433
|
+
priority?: string;
|
|
2354
2434
|
}
|
|
2355
2435
|
export interface CanvaSlide {
|
|
2356
2436
|
custom_title_localized_key?: string;
|
|
@@ -2358,7 +2438,7 @@ export interface CanvaSlide {
|
|
|
2358
2438
|
image_url?: string;
|
|
2359
2439
|
times_to_show?: number;
|
|
2360
2440
|
type?: SlideType;
|
|
2361
|
-
multiple_buttons?:
|
|
2441
|
+
multiple_buttons?: PurpleMultipleButton[];
|
|
2362
2442
|
bg?: string;
|
|
2363
2443
|
content?: Content[];
|
|
2364
2444
|
edit_mode?: number;
|
package/dist/dtos/game-config.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
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.Key = exports.AnimationPlace = exports.FluffyContentLocalizedKey = 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.PurpleContentLocalizedKey = exports.AnimationNameEnum = exports.PopupType = exports.WallSuffix = exports.Wall = exports.CanvasBackground = exports.
|
|
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.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.Key = exports.AnimationPlace = exports.FluffyContentLocalizedKey = 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.PurpleContentLocalizedKey = exports.AnimationNameEnum = exports.PopupType = exports.WallSuffix = exports.Wall = exports.CanvasBackground = exports.FightBackgroundID = exports.File = void 0;
|
|
5
5
|
exports.TreasureItemType = exports.Feature = exports.PurpleType = exports.FloorImage = exports.Name = exports.Target = exports.StatusEffectDataEffectName = exports.EffectVfxEnum = exports.VfxTextEffectname = exports.Vfx = exports.TidDamageMultiplier = void 0;
|
|
6
6
|
var Format;
|
|
7
7
|
(function (Format) {
|
|
@@ -375,13 +375,22 @@ var ActionType;
|
|
|
375
375
|
ActionType["HatchLegend"] = "HATCH_LEGEND";
|
|
376
376
|
ActionType["Pvp"] = "PVP";
|
|
377
377
|
})(ActionType || (exports.ActionType = ActionType = {}));
|
|
378
|
-
var
|
|
379
|
-
(function (
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
})(
|
|
378
|
+
var CurrencyTidName;
|
|
379
|
+
(function (CurrencyTidName) {
|
|
380
|
+
CurrencyTidName["TidFiCurrencyName"] = "tid_fi_currency_name";
|
|
381
|
+
CurrencyTidName["TidGiCurrencyName"] = "tid_gi_currency_name";
|
|
382
|
+
CurrencyTidName["TidMazeIslandCurrencyName"] = "tid_maze_island_currency_name";
|
|
383
|
+
CurrencyTidName["TidTowerIslandCurrencyName"] = "tid_tower_island_currency_name";
|
|
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
394
|
var File;
|
|
386
395
|
(function (File) {
|
|
387
396
|
File["The1X1Slot1"] = "1x1_slot1";
|
|
@@ -394,26 +403,19 @@ var FightBackgroundID;
|
|
|
394
403
|
FightBackgroundID["BgBattleBackgroundHrFallFriday"] = "bg_battle_background_hr_fall_friday";
|
|
395
404
|
FightBackgroundID["BgBattleBackgroundHrNewBeginnings"] = "bg_battle_background_hr_new_beginnings";
|
|
396
405
|
FightBackgroundID["BgBattleBackgroundHrSaintvalentine26"] = "bg_battle_background_hr_saintvalentine_26";
|
|
406
|
+
FightBackgroundID["BgBattleBackgroundMiAprilShowers"] = "bg_battle_background_mi_april_showers";
|
|
397
407
|
FightBackgroundID["BgBattleBackgroundMiCarnival"] = "bg_battle_background_mi_carnival";
|
|
398
408
|
FightBackgroundID["BgBattleBackgroundMiDragonmysteries"] = "bg_battle_background_mi_dragonmysteries";
|
|
399
409
|
FightBackgroundID["BgBattleBackgroundMiEaster2020"] = "bg_battle_background_mi_easter2020";
|
|
400
410
|
FightBackgroundID["BgBattleBackgroundMiMidsummerMisery"] = "bg_battle_background_mi_midsummer_misery";
|
|
401
411
|
FightBackgroundID["BgBattleBackgroundMiMysteryInParadise"] = "bg_battle_background_mi_mystery_in_paradise";
|
|
402
412
|
FightBackgroundID["BgBattleBackgroundMiRebornRetold"] = "bg_battle_background_mi_reborn_retold";
|
|
403
|
-
FightBackgroundID["BgBattleBackgroundMiSpringB"] = "bg_battle_background_mi_spring_b";
|
|
404
413
|
FightBackgroundID["BgBattleBackgroundMiValentinesVault"] = "bg_battle_background_mi_valentines_vault";
|
|
405
414
|
FightBackgroundID["BgBattleBackgroundMr101_MythicalElixir"] = "bg_battle_background_mr_101_mythical_elixir";
|
|
406
415
|
FightBackgroundID["BgBattleBackgroundMr102_MythicalCryogenic"] = "bg_battle_background_mr_102_mythical_cryogenic";
|
|
407
416
|
FightBackgroundID["BgBattleBackgroundMr103_MythicalDracarticpredator"] = "bg_battle_background_mr_103_mythical_dracarticpredator";
|
|
408
417
|
FightBackgroundID["BgBattleBackgroundMr104_MythicalUnfaethful"] = "bg_battle_background_mr_104_mythical_unfaethful";
|
|
409
418
|
})(FightBackgroundID || (exports.FightBackgroundID = FightBackgroundID = {}));
|
|
410
|
-
var ViewTypeEnum;
|
|
411
|
-
(function (ViewTypeEnum) {
|
|
412
|
-
ViewTypeEnum["Chest"] = "CHEST";
|
|
413
|
-
ViewTypeEnum["Dragon"] = "DRAGON";
|
|
414
|
-
ViewTypeEnum["None"] = "NONE";
|
|
415
|
-
ViewTypeEnum["Resource"] = "RESOURCE";
|
|
416
|
-
})(ViewTypeEnum || (exports.ViewTypeEnum = ViewTypeEnum = {}));
|
|
417
419
|
var CanvasBackground;
|
|
418
420
|
(function (CanvasBackground) {
|
|
419
421
|
CanvasBackground["F"] = "f";
|
|
@@ -598,7 +600,6 @@ var FluffyContentLocalizedKey;
|
|
|
598
600
|
(function (FluffyContentLocalizedKey) {
|
|
599
601
|
FluffyContentLocalizedKey["Empty"] = "";
|
|
600
602
|
FluffyContentLocalizedKey["TidNewsEasterraceDesc"] = "tid_news_easterrace_desc";
|
|
601
|
-
FluffyContentLocalizedKey["TidNewsEventifiedarenasDesc"] = "tid_news_eventifiedarenas_desc";
|
|
602
603
|
FluffyContentLocalizedKey["TidNewsMdsEventDesc"] = "tid_news_mds_event_desc";
|
|
603
604
|
})(FluffyContentLocalizedKey || (exports.FluffyContentLocalizedKey = FluffyContentLocalizedKey = {}));
|
|
604
605
|
var AnimationPlace;
|
|
@@ -608,19 +609,16 @@ var AnimationPlace;
|
|
|
608
609
|
var Key;
|
|
609
610
|
(function (Key) {
|
|
610
611
|
Key["Empty"] = "";
|
|
611
|
-
Key["TidNewsApocalypsepathButton"] = "tid_news_apocalypsepath_button";
|
|
612
612
|
Key["TidNewsPetsdaypassS1Button"] = "tid_news_petsdaypass_s1_button";
|
|
613
613
|
Key["TidNewsPetsdaypassS3Button"] = "tid_news_petsdaypass_s3_button";
|
|
614
614
|
})(Key || (exports.Key = Key = {}));
|
|
615
615
|
var SpineAsset;
|
|
616
616
|
(function (SpineAsset) {
|
|
617
|
-
SpineAsset["Empty"] = "";
|
|
618
617
|
SpineAsset["PointerAnimationV2"] = "pointer_animation_v2";
|
|
619
618
|
})(SpineAsset || (exports.SpineAsset = SpineAsset = {}));
|
|
620
619
|
var Style;
|
|
621
620
|
(function (Style) {
|
|
622
621
|
Style["Blue"] = "Blue";
|
|
623
|
-
Style["BlueLarge"] = "BlueLarge";
|
|
624
622
|
Style["Transparent"] = "Transparent";
|
|
625
623
|
})(Style || (exports.Style = Style = {}));
|
|
626
624
|
var SlideType;
|