@dchighs/dc-config 0.1.15 → 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.
@@ -1181,11 +1181,11 @@ export interface FogIsland {
1181
1181
  squares: FogIslandSquare[];
1182
1182
  currencies: Currency[];
1183
1183
  rewards: FogIslandReward[];
1184
- actions: Action[];
1184
+ actions: ActionElement[];
1185
1185
  hints: Hint[];
1186
1186
  parameters: FogIslandParameter[];
1187
1187
  }
1188
- export interface Action {
1188
+ export interface ActionElement {
1189
1189
  id: number;
1190
1190
  type: ActionType;
1191
1191
  tid_name: ActionTidName;
@@ -1234,9 +1234,15 @@ export declare enum ActionType {
1234
1234
  }
1235
1235
  export interface Currency {
1236
1236
  id: number;
1237
- tid_name: string;
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: RewardType;
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 RewardType {
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: RewardType;
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[];
@@ -1383,7 +1395,7 @@ export interface GridIsland {
1383
1395
  encounters: Encounter[];
1384
1396
  enemies: GridIslandEnemy[];
1385
1397
  currencies: Currency[];
1386
- actions: Action[];
1398
+ actions: ActionElement[];
1387
1399
  parameters: FogIslandParameter[];
1388
1400
  }
1389
1401
  export interface Decoration {
@@ -1407,15 +1419,17 @@ export interface Encounter {
1407
1419
  }
1408
1420
  export declare enum FightBackgroundID {
1409
1421
  BgBattleBackgroundGiTreasurehunt = "bg_battle_background_gi_treasurehunt",
1422
+ BgBattleBackgroundHrEaster26 = "bg_battle_background_hr_easter26",
1410
1423
  BgBattleBackgroundHrFallFriday = "bg_battle_background_hr_fall_friday",
1411
1424
  BgBattleBackgroundHrNewBeginnings = "bg_battle_background_hr_new_beginnings",
1412
1425
  BgBattleBackgroundHrSaintvalentine26 = "bg_battle_background_hr_saintvalentine_26",
1426
+ BgBattleBackgroundMiAprilShowers = "bg_battle_background_mi_april_showers",
1413
1427
  BgBattleBackgroundMiCarnival = "bg_battle_background_mi_carnival",
1414
1428
  BgBattleBackgroundMiDragonmysteries = "bg_battle_background_mi_dragonmysteries",
1429
+ BgBattleBackgroundMiEaster2020 = "bg_battle_background_mi_easter2020",
1415
1430
  BgBattleBackgroundMiMidsummerMisery = "bg_battle_background_mi_midsummer_misery",
1416
1431
  BgBattleBackgroundMiMysteryInParadise = "bg_battle_background_mi_mystery_in_paradise",
1417
1432
  BgBattleBackgroundMiRebornRetold = "bg_battle_background_mi_reborn_retold",
1418
- BgBattleBackgroundMiSpringB = "bg_battle_background_mi_spring_b",
1419
1433
  BgBattleBackgroundMiValentinesVault = "bg_battle_background_mi_valentines_vault",
1420
1434
  BgBattleBackgroundMr101_MythicalElixir = "bg_battle_background_mr_101_mythical_elixir",
1421
1435
  BgBattleBackgroundMr102_MythicalCryogenic = "bg_battle_background_mr_102_mythical_cryogenic",
@@ -1430,12 +1444,6 @@ export interface GridIslandEnemy {
1430
1444
  elements_view_type: any[];
1431
1445
  cooldown: number;
1432
1446
  }
1433
- export declare enum ViewTypeEnum {
1434
- Chest = "CHEST",
1435
- Dragon = "DRAGON",
1436
- None = "NONE",
1437
- Resource = "RESOURCE"
1438
- }
1439
1447
  export interface Episode {
1440
1448
  id: number;
1441
1449
  island_id: number;
@@ -1472,9 +1480,9 @@ export interface GridIslandSquare {
1472
1480
  claim_cost: number;
1473
1481
  wall?: Wall;
1474
1482
  wall_suffix?: WallSuffix;
1475
- resource?: SquareResource;
1483
+ resource?: FluffyResource;
1476
1484
  }
1477
- export interface SquareResource {
1485
+ export interface FluffyResource {
1478
1486
  "pet_food_pack.s"?: number;
1479
1487
  "pet_food_pack.m"?: number;
1480
1488
  "pet_food_pack.l"?: number;
@@ -1512,7 +1520,7 @@ export declare enum PopupType {
1512
1520
  }
1513
1521
  export interface HelpViewSlide {
1514
1522
  header_localized_key?: string;
1515
- content_localized_key?: ContentLocalizedKey;
1523
+ content_localized_key?: PurpleContentLocalizedKey;
1516
1524
  image_url?: string;
1517
1525
  custom_title_localized_key?: string;
1518
1526
  slide_type: string;
@@ -1524,7 +1532,7 @@ export interface HelpViewSlide {
1524
1532
  export declare enum AnimationNameEnum {
1525
1533
  Anim1 = "anim1"
1526
1534
  }
1527
- export declare enum ContentLocalizedKey {
1535
+ export declare enum PurpleContentLocalizedKey {
1528
1536
  Empty = "",
1529
1537
  TidDBCollectionsHelpScreen1 = "tid_db_collections_help_screen_1",
1530
1538
  TidDBCollectionsHelpScreen2 = "tid_db_collections_help_screen_2",
@@ -2078,7 +2086,7 @@ export interface MazeIsland {
2078
2086
  encounters: Encounter[];
2079
2087
  enemies: GridIslandEnemy[];
2080
2088
  happy_hours: any[];
2081
- actions: Action[];
2089
+ actions: ActionElement[];
2082
2090
  clouds: Cloud[];
2083
2091
  currencies: Currency[];
2084
2092
  parameters: FogIslandParameter[];
@@ -2173,14 +2181,17 @@ export interface News {
2173
2181
  "0": The0;
2174
2182
  "1": The1;
2175
2183
  "2": The2;
2176
- "3": The10;
2177
- "4": The4;
2184
+ "3": The13;
2185
+ "4": The13;
2178
2186
  "5": The5;
2179
- "6": The10;
2180
- "7": The10;
2181
- "8": The10;
2182
- "9": The1;
2187
+ "6": The6;
2188
+ "7": The7;
2189
+ "8": The1;
2190
+ "9": The10;
2183
2191
  "10": The10;
2192
+ "11": The1;
2193
+ "12": The1;
2194
+ "13": The13;
2184
2195
  canvas: Canva[];
2185
2196
  }
2186
2197
  export interface The0 {
@@ -2189,39 +2200,87 @@ export interface The0 {
2189
2200
  assets_name: string;
2190
2201
  direct_to_shop: number;
2191
2202
  end_ts: string;
2203
+ filter_category: null;
2204
+ hud_button: The0_HudButton;
2192
2205
  id: number;
2206
+ label_text_tid: null;
2207
+ label_title_tid: null;
2193
2208
  min_level: number;
2194
2209
  popup_frequency: string;
2195
2210
  popup_type: string;
2211
+ priority: null;
2196
2212
  show_on_startup: number;
2197
2213
  slides: The0_Slide[];
2198
2214
  start_ts: string;
2199
2215
  }
2216
+ export interface The0_HudButton {
2217
+ file: string;
2218
+ title: string;
2219
+ viral_icon_tier: number;
2220
+ }
2200
2221
  export interface The0_Slide {
2201
- content_localized_key: string;
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 {
2249
+ content_localized_key: FluffyContentLocalizedKey;
2202
2250
  custom_title_localized_key: string;
2251
+ forceClose?: boolean;
2203
2252
  header_localized_key: string;
2204
2253
  image_url: string;
2205
- multiple_buttons: MultipleButton[];
2254
+ multiple_buttons: PurpleMultipleButton[];
2206
2255
  times_to_show: number;
2207
2256
  type: SlideType;
2208
2257
  }
2209
- export interface MultipleButton {
2258
+ export declare enum FluffyContentLocalizedKey {
2259
+ Empty = "",
2260
+ TidNewsEasterraceDesc = "tid_news_easterrace_desc",
2261
+ TidNewsMdsEventDesc = "tid_news_mds_event_desc"
2262
+ }
2263
+ export interface PurpleMultipleButton {
2210
2264
  animation: AnimationNameEnum;
2211
2265
  animationPlace: AnimationPlace;
2212
2266
  forceClose: boolean;
2213
2267
  glint: boolean;
2214
- key: string;
2268
+ key: Key;
2215
2269
  link: string;
2270
+ linkItemId: number;
2216
2271
  normalizedPosition: NormalizedPosition;
2217
2272
  size: Size;
2218
2273
  spineAsset: SpineAsset;
2219
2274
  style: Style;
2220
- linkItemId?: number | string;
2221
2275
  }
2222
2276
  export declare enum AnimationPlace {
2223
2277
  Foreground = "Foreground"
2224
2278
  }
2279
+ export declare enum Key {
2280
+ Empty = "",
2281
+ TidNewsPetsdaypassS1Button = "tid_news_petsdaypass_s1_button",
2282
+ TidNewsPetsdaypassS3Button = "tid_news_petsdaypass_s3_button"
2283
+ }
2225
2284
  export interface NormalizedPosition {
2226
2285
  x: number;
2227
2286
  y: number;
@@ -2231,54 +2290,65 @@ export interface Size {
2231
2290
  w: number;
2232
2291
  }
2233
2292
  export declare enum SpineAsset {
2234
- Empty = "",
2235
2293
  PointerAnimationV2 = "pointer_animation_v2"
2236
2294
  }
2237
2295
  export declare enum Style {
2238
2296
  Blue = "Blue",
2239
- BlueLarge = "BlueLarge",
2240
2297
  Transparent = "Transparent"
2241
2298
  }
2242
2299
  export declare enum SlideType {
2243
2300
  FullImage = "FullImage"
2244
2301
  }
2245
- export interface The1 {
2302
+ export interface The10 {
2246
2303
  active_platforms: ValueClass;
2247
2304
  allow_island_tutorial: number;
2248
2305
  assets_name: string;
2249
2306
  direct_to_shop: number;
2250
2307
  end_ts: string;
2251
- filter_category: null;
2252
2308
  id: number;
2253
- label_text_tid: null;
2254
- label_title_tid: null;
2255
2309
  min_level: number;
2310
+ popup_frequency: string;
2256
2311
  popup_type: string;
2257
- priority: null;
2258
2312
  show_on_startup: number;
2259
- slides: The1_Slide[];
2313
+ slides: The10_Slide[];
2260
2314
  start_ts: string;
2261
2315
  }
2262
- export interface The1_Slide {
2263
- content_localized_key?: string;
2316
+ export interface The10_Slide {
2317
+ content_localized_key: string;
2264
2318
  custom_title_localized_key: string;
2319
+ forceClose: boolean;
2265
2320
  header_localized_key: string;
2266
2321
  image_url: string;
2267
- multiple_buttons: MultipleButton[];
2322
+ multiple_buttons: FluffyMultipleButton[];
2268
2323
  times_to_show: number;
2269
2324
  type: SlideType;
2270
- forceClose?: boolean;
2271
2325
  }
2272
- export interface The10 {
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 {
2273
2340
  active_platforms: ValueClass;
2274
2341
  allow_island_tutorial: number;
2275
2342
  assets_name: string;
2276
2343
  direct_to_shop: number;
2277
2344
  end_ts: string;
2345
+ filter_category: null;
2278
2346
  id: number;
2347
+ label_text_tid: null;
2348
+ label_title_tid: null;
2279
2349
  min_level: number;
2280
- popup_frequency: string;
2281
2350
  popup_type: string;
2351
+ priority: number | null;
2282
2352
  show_on_startup: number;
2283
2353
  slides: The1_Slide[];
2284
2354
  start_ts: string;
@@ -2292,7 +2362,6 @@ export interface The2 {
2292
2362
  id: number;
2293
2363
  min_level: number;
2294
2364
  popup_frequency: string;
2295
- popup_is_critical: boolean;
2296
2365
  popup_type: string;
2297
2366
  show_on_startup: number;
2298
2367
  slides: The2_Slide[];
@@ -2303,57 +2372,100 @@ export interface The2_Slide {
2303
2372
  custom_title_localized_key: string;
2304
2373
  header_localized_key: string;
2305
2374
  image_url: string;
2306
- link: string;
2307
- link_button_key: string;
2308
- slide_type: string;
2309
- slide_type_2: string;
2310
- timer?: string;
2311
- times_to_show?: number;
2375
+ multiple_buttons: FluffyMultipleButton[];
2376
+ times_to_show: number;
2377
+ type: SlideType;
2312
2378
  }
2313
- export interface The4 {
2379
+ export interface The5 {
2314
2380
  active_platforms: ValueClass;
2315
2381
  allow_island_tutorial: number;
2316
2382
  assets_name: string;
2317
2383
  direct_to_shop: number;
2318
2384
  end_ts: string;
2319
- hud_button: The4_HudButton;
2320
2385
  id: number;
2321
2386
  min_level: number;
2387
+ popup_frequency: string;
2388
+ popup_is_critical: boolean;
2322
2389
  popup_type: string;
2323
2390
  show_on_startup: number;
2324
- slides: The2_Slide[];
2391
+ slides: The0_Slide[];
2325
2392
  start_ts: string;
2326
2393
  }
2327
- export interface The4_HudButton {
2328
- file: string;
2329
- title: string;
2330
- viral_icon_tier: number;
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;
2331
2407
  }
2332
- export interface The5 {
2408
+ export interface The7 {
2333
2409
  active_platforms: ValueClass;
2334
2410
  allow_island_tutorial: number;
2335
2411
  assets_name: string;
2336
2412
  end_ts: string;
2337
- hud_button: The5_HudButton;
2413
+ hud_button: The7_HudButton;
2338
2414
  id: number;
2339
2415
  min_level: number;
2340
2416
  popup_type: string;
2341
2417
  show_on_startup: number;
2342
- slides: The2_Slide[];
2418
+ slides: The0_Slide[];
2343
2419
  start_ts: string;
2344
2420
  }
2345
- export interface The5_HudButton {
2421
+ export interface The7_HudButton {
2346
2422
  file: string;
2347
2423
  title: string;
2348
2424
  }
2349
2425
  export interface Canva {
2350
2426
  id: number;
2351
2427
  assets_name: string;
2352
- start_ts: number;
2353
- end_ts: number;
2354
- min_level: number;
2355
- slides: The1_Slide[];
2356
- show_on_startup: number;
2428
+ start_ts: number | string;
2429
+ end_ts: number | string;
2430
+ min_level?: number;
2431
+ slides: CanvaSlide[];
2432
+ show_on_startup?: number;
2433
+ priority?: string;
2434
+ }
2435
+ export interface CanvaSlide {
2436
+ custom_title_localized_key?: string;
2437
+ header_localized_key?: string;
2438
+ image_url?: string;
2439
+ times_to_show?: number;
2440
+ type?: SlideType;
2441
+ multiple_buttons?: PurpleMultipleButton[];
2442
+ bg?: string;
2443
+ content?: Content[];
2444
+ edit_mode?: number;
2445
+ id?: number;
2446
+ title_key?: string;
2447
+ viral_icon_key?: string;
2448
+ viral_icon_timer?: string;
2449
+ }
2450
+ export interface Content {
2451
+ height: number;
2452
+ rotation: number;
2453
+ stroke?: string;
2454
+ text_color?: string;
2455
+ text_key: string;
2456
+ text_size?: number;
2457
+ timer?: number;
2458
+ type: string;
2459
+ width: number;
2460
+ x: number;
2461
+ y: number;
2462
+ action?: ContentAction;
2463
+ style?: string;
2464
+ }
2465
+ export interface ContentAction {
2466
+ itemId: string;
2467
+ storeCategory: number;
2468
+ type: string;
2357
2469
  }
2358
2470
  export interface Perks {
2359
2471
  abilities: Ability[];
@@ -3081,7 +3193,7 @@ export interface TowerIsland {
3081
3193
  happy_hours: HappyHour[];
3082
3194
  parameters: FogIslandParameter[];
3083
3195
  currencies: Currency[];
3084
- actions: Action[];
3196
+ actions: ActionElement[];
3085
3197
  }
3086
3198
  export interface Floor {
3087
3199
  id: number;
@@ -3271,8 +3383,8 @@ export interface MultiplierTime {
3271
3383
  multiplier_time: number;
3272
3384
  }
3273
3385
  export interface TreeOfLifePowerupRaritySeed {
3274
- max_rarity_seeds_per_grade: number[];
3275
3386
  rarity: Rarity;
3387
+ max_rarity_seeds_per_grade: number[];
3276
3388
  }
3277
3389
  export interface Visual {
3278
3390
  id: number;
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
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.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.ViewTypeEnum = exports.FightBackgroundID = 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.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
+ 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) {
8
8
  Format["Efk"] = "efk";
@@ -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 RewardType;
379
- (function (RewardType) {
380
- RewardType["Chest"] = "CHEST";
381
- RewardType["DragonPiece"] = "DRAGON_PIECE";
382
- RewardType["None"] = "NONE";
383
- RewardType["Step"] = "STEP";
384
- })(RewardType || (exports.RewardType = RewardType = {}));
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";
@@ -390,28 +399,23 @@ var File;
390
399
  var FightBackgroundID;
391
400
  (function (FightBackgroundID) {
392
401
  FightBackgroundID["BgBattleBackgroundGiTreasurehunt"] = "bg_battle_background_gi_treasurehunt";
402
+ FightBackgroundID["BgBattleBackgroundHrEaster26"] = "bg_battle_background_hr_easter26";
393
403
  FightBackgroundID["BgBattleBackgroundHrFallFriday"] = "bg_battle_background_hr_fall_friday";
394
404
  FightBackgroundID["BgBattleBackgroundHrNewBeginnings"] = "bg_battle_background_hr_new_beginnings";
395
405
  FightBackgroundID["BgBattleBackgroundHrSaintvalentine26"] = "bg_battle_background_hr_saintvalentine_26";
406
+ FightBackgroundID["BgBattleBackgroundMiAprilShowers"] = "bg_battle_background_mi_april_showers";
396
407
  FightBackgroundID["BgBattleBackgroundMiCarnival"] = "bg_battle_background_mi_carnival";
397
408
  FightBackgroundID["BgBattleBackgroundMiDragonmysteries"] = "bg_battle_background_mi_dragonmysteries";
409
+ FightBackgroundID["BgBattleBackgroundMiEaster2020"] = "bg_battle_background_mi_easter2020";
398
410
  FightBackgroundID["BgBattleBackgroundMiMidsummerMisery"] = "bg_battle_background_mi_midsummer_misery";
399
411
  FightBackgroundID["BgBattleBackgroundMiMysteryInParadise"] = "bg_battle_background_mi_mystery_in_paradise";
400
412
  FightBackgroundID["BgBattleBackgroundMiRebornRetold"] = "bg_battle_background_mi_reborn_retold";
401
- FightBackgroundID["BgBattleBackgroundMiSpringB"] = "bg_battle_background_mi_spring_b";
402
413
  FightBackgroundID["BgBattleBackgroundMiValentinesVault"] = "bg_battle_background_mi_valentines_vault";
403
414
  FightBackgroundID["BgBattleBackgroundMr101_MythicalElixir"] = "bg_battle_background_mr_101_mythical_elixir";
404
415
  FightBackgroundID["BgBattleBackgroundMr102_MythicalCryogenic"] = "bg_battle_background_mr_102_mythical_cryogenic";
405
416
  FightBackgroundID["BgBattleBackgroundMr103_MythicalDracarticpredator"] = "bg_battle_background_mr_103_mythical_dracarticpredator";
406
417
  FightBackgroundID["BgBattleBackgroundMr104_MythicalUnfaethful"] = "bg_battle_background_mr_104_mythical_unfaethful";
407
418
  })(FightBackgroundID || (exports.FightBackgroundID = FightBackgroundID = {}));
408
- var ViewTypeEnum;
409
- (function (ViewTypeEnum) {
410
- ViewTypeEnum["Chest"] = "CHEST";
411
- ViewTypeEnum["Dragon"] = "DRAGON";
412
- ViewTypeEnum["None"] = "NONE";
413
- ViewTypeEnum["Resource"] = "RESOURCE";
414
- })(ViewTypeEnum || (exports.ViewTypeEnum = ViewTypeEnum = {}));
415
419
  var CanvasBackground;
416
420
  (function (CanvasBackground) {
417
421
  CanvasBackground["F"] = "f";
@@ -441,14 +445,14 @@ var AnimationNameEnum;
441
445
  (function (AnimationNameEnum) {
442
446
  AnimationNameEnum["Anim1"] = "anim1";
443
447
  })(AnimationNameEnum || (exports.AnimationNameEnum = AnimationNameEnum = {}));
444
- var ContentLocalizedKey;
445
- (function (ContentLocalizedKey) {
446
- ContentLocalizedKey["Empty"] = "";
447
- ContentLocalizedKey["TidDBCollectionsHelpScreen1"] = "tid_db_collections_help_screen_1";
448
- ContentLocalizedKey["TidDBCollectionsHelpScreen2"] = "tid_db_collections_help_screen_2";
449
- ContentLocalizedKey["TidDBMasteryHelpScreen1"] = "tid_db_mastery_help_screen_1";
450
- ContentLocalizedKey["TidPiggyBankBestDealMessage"] = "tid_piggy_bank_best_deal_message";
451
- })(ContentLocalizedKey || (exports.ContentLocalizedKey = ContentLocalizedKey = {}));
448
+ var PurpleContentLocalizedKey;
449
+ (function (PurpleContentLocalizedKey) {
450
+ PurpleContentLocalizedKey["Empty"] = "";
451
+ PurpleContentLocalizedKey["TidDBCollectionsHelpScreen1"] = "tid_db_collections_help_screen_1";
452
+ PurpleContentLocalizedKey["TidDBCollectionsHelpScreen2"] = "tid_db_collections_help_screen_2";
453
+ PurpleContentLocalizedKey["TidDBMasteryHelpScreen1"] = "tid_db_mastery_help_screen_1";
454
+ PurpleContentLocalizedKey["TidPiggyBankBestDealMessage"] = "tid_piggy_bank_best_deal_message";
455
+ })(PurpleContentLocalizedKey || (exports.PurpleContentLocalizedKey = PurpleContentLocalizedKey = {}));
452
456
  var IslandTitleTid;
453
457
  (function (IslandTitleTid) {
454
458
  IslandTitleTid["TidHeroicRaceTitle"] = "tid_heroic_race_title";
@@ -592,19 +596,29 @@ var IslandTidName;
592
596
  (function (IslandTidName) {
593
597
  IslandTidName["TidMiGenericName"] = "tid_mi_generic_name";
594
598
  })(IslandTidName || (exports.IslandTidName = IslandTidName = {}));
599
+ var FluffyContentLocalizedKey;
600
+ (function (FluffyContentLocalizedKey) {
601
+ FluffyContentLocalizedKey["Empty"] = "";
602
+ FluffyContentLocalizedKey["TidNewsEasterraceDesc"] = "tid_news_easterrace_desc";
603
+ FluffyContentLocalizedKey["TidNewsMdsEventDesc"] = "tid_news_mds_event_desc";
604
+ })(FluffyContentLocalizedKey || (exports.FluffyContentLocalizedKey = FluffyContentLocalizedKey = {}));
595
605
  var AnimationPlace;
596
606
  (function (AnimationPlace) {
597
607
  AnimationPlace["Foreground"] = "Foreground";
598
608
  })(AnimationPlace || (exports.AnimationPlace = AnimationPlace = {}));
609
+ var Key;
610
+ (function (Key) {
611
+ Key["Empty"] = "";
612
+ Key["TidNewsPetsdaypassS1Button"] = "tid_news_petsdaypass_s1_button";
613
+ Key["TidNewsPetsdaypassS3Button"] = "tid_news_petsdaypass_s3_button";
614
+ })(Key || (exports.Key = Key = {}));
599
615
  var SpineAsset;
600
616
  (function (SpineAsset) {
601
- SpineAsset["Empty"] = "";
602
617
  SpineAsset["PointerAnimationV2"] = "pointer_animation_v2";
603
618
  })(SpineAsset || (exports.SpineAsset = SpineAsset = {}));
604
619
  var Style;
605
620
  (function (Style) {
606
621
  Style["Blue"] = "Blue";
607
- Style["BlueLarge"] = "BlueLarge";
608
622
  Style["Transparent"] = "Transparent";
609
623
  })(Style || (exports.Style = Style = {}));
610
624
  var SlideType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dchighs/dc-config",
3
- "version": "0.1.15",
3
+ "version": "0.1.17",
4
4
  "description": "A library to handle configuration for Dragon City.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",