@dchighs/dc-config 0.1.16 → 0.1.18

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.
@@ -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[];
@@ -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?: SquareResource;
1483
+ resource?: FluffyResource;
1478
1484
  }
1479
- export interface SquareResource {
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;
@@ -1514,7 +1520,7 @@ export declare enum PopupType {
1514
1520
  }
1515
1521
  export interface HelpViewSlide {
1516
1522
  header_localized_key?: string;
1517
- content_localized_key?: PurpleContentLocalizedKey;
1523
+ content_localized_key?: ContentLocalizedKey;
1518
1524
  image_url?: string;
1519
1525
  custom_title_localized_key?: string;
1520
1526
  slide_type: string;
@@ -1526,7 +1532,7 @@ export interface HelpViewSlide {
1526
1532
  export declare enum AnimationNameEnum {
1527
1533
  Anim1 = "anim1"
1528
1534
  }
1529
- export declare enum PurpleContentLocalizedKey {
1535
+ export declare enum ContentLocalizedKey {
1530
1536
  Empty = "",
1531
1537
  TidDBCollectionsHelpScreen1 = "tid_db_collections_help_screen_1",
1532
1538
  TidDBCollectionsHelpScreen2 = "tid_db_collections_help_screen_2",
@@ -2174,16 +2180,16 @@ export interface MazeIslandReward {
2174
2180
  export interface News {
2175
2181
  "0": The0;
2176
2182
  "1": The1;
2177
- "2": The12;
2183
+ "2": The2;
2178
2184
  "3": The12;
2179
- "4": The4;
2185
+ "4": The12;
2180
2186
  "5": The5;
2181
- "6": The0;
2182
- "7": The0;
2183
- "8": The0;
2184
- "9": The0;
2185
- "10": The0;
2186
- "11": The0;
2187
+ "6": The6;
2188
+ "7": The1;
2189
+ "8": The1;
2190
+ "9": The1;
2191
+ "10": The1;
2192
+ "11": The1;
2187
2193
  "12": The12;
2188
2194
  canvas: Canva[];
2189
2195
  }
@@ -2193,16 +2199,53 @@ export interface The0 {
2193
2199
  assets_name: string;
2194
2200
  direct_to_shop: number;
2195
2201
  end_ts: string;
2202
+ filter_category: null;
2203
+ hud_button: The0_HudButton;
2196
2204
  id: number;
2205
+ label_text_tid: null;
2206
+ label_title_tid: null;
2197
2207
  min_level: number;
2198
2208
  popup_frequency: string;
2199
2209
  popup_type: string;
2210
+ priority: null;
2200
2211
  show_on_startup: number;
2201
2212
  slides: The0_Slide[];
2202
2213
  start_ts: string;
2203
2214
  }
2215
+ export interface The0_HudButton {
2216
+ file: string;
2217
+ title: string;
2218
+ viral_icon_tier: number;
2219
+ }
2204
2220
  export interface The0_Slide {
2205
- content_localized_key: FluffyContentLocalizedKey;
2221
+ content_localized_key: string;
2222
+ custom_title_localized_key: string;
2223
+ header_localized_key: string;
2224
+ image_url: string;
2225
+ link: string;
2226
+ link_button_key: string;
2227
+ link_item_id?: number;
2228
+ slide_type: string;
2229
+ slide_type_2: string;
2230
+ timer?: string;
2231
+ times_to_show?: number;
2232
+ }
2233
+ export interface The1 {
2234
+ active_platforms: ValueClass;
2235
+ allow_island_tutorial: number;
2236
+ assets_name: string;
2237
+ direct_to_shop: number;
2238
+ end_ts: string;
2239
+ id: number;
2240
+ min_level: number;
2241
+ popup_frequency: string;
2242
+ popup_type: string;
2243
+ show_on_startup: number;
2244
+ slides: The1_Slide[];
2245
+ start_ts: string;
2246
+ }
2247
+ export interface The1_Slide {
2248
+ content_localized_key: string;
2206
2249
  custom_title_localized_key: string;
2207
2250
  forceClose?: boolean;
2208
2251
  header_localized_key: string;
@@ -2211,12 +2254,6 @@ export interface The0_Slide {
2211
2254
  times_to_show: number;
2212
2255
  type: SlideType;
2213
2256
  }
2214
- export declare enum FluffyContentLocalizedKey {
2215
- Empty = "",
2216
- TidNewsEasterraceDesc = "tid_news_easterrace_desc",
2217
- TidNewsEventifiedarenasDesc = "tid_news_eventifiedarenas_desc",
2218
- TidNewsMdsEventDesc = "tid_news_mds_event_desc"
2219
- }
2220
2257
  export interface MultipleButton {
2221
2258
  animation: AnimationNameEnum;
2222
2259
  animationPlace: AnimationPlace;
@@ -2235,7 +2272,6 @@ export declare enum AnimationPlace {
2235
2272
  }
2236
2273
  export declare enum Key {
2237
2274
  Empty = "",
2238
- TidNewsApocalypsepathButton = "tid_news_apocalypsepath_button",
2239
2275
  TidNewsPetsdaypassS1Button = "tid_news_petsdaypass_s1_button",
2240
2276
  TidNewsPetsdaypassS3Button = "tid_news_petsdaypass_s3_button"
2241
2277
  }
@@ -2253,53 +2289,53 @@ export declare enum SpineAsset {
2253
2289
  }
2254
2290
  export declare enum Style {
2255
2291
  Blue = "Blue",
2256
- BlueLarge = "BlueLarge",
2292
+ Empty = "",
2257
2293
  Transparent = "Transparent"
2258
2294
  }
2259
2295
  export declare enum SlideType {
2260
2296
  FullImage = "FullImage"
2261
2297
  }
2262
- export interface The1 {
2298
+ export interface The12 {
2263
2299
  active_platforms: ValueClass;
2264
2300
  allow_island_tutorial: number;
2265
2301
  assets_name: string;
2266
2302
  direct_to_shop: number;
2267
2303
  end_ts: string;
2304
+ filter_category: null;
2268
2305
  id: number;
2306
+ label_text_tid: null;
2307
+ label_title_tid: null;
2269
2308
  min_level: number;
2270
- popup_frequency: string;
2271
2309
  popup_type: string;
2310
+ priority: number | null;
2272
2311
  show_on_startup: number;
2273
2312
  slides: The1_Slide[];
2274
2313
  start_ts: string;
2275
2314
  }
2276
- export interface The1_Slide {
2277
- content_localized_key: string;
2278
- custom_title_localized_key: string;
2279
- header_localized_key: string;
2280
- image_url: string;
2281
- multiple_buttons: MultipleButton[];
2282
- times_to_show: number;
2283
- type: SlideType;
2284
- }
2285
- export interface The12 {
2315
+ export interface The2 {
2286
2316
  active_platforms: ValueClass;
2287
2317
  allow_island_tutorial: number;
2288
2318
  assets_name: string;
2289
2319
  direct_to_shop: number;
2290
2320
  end_ts: string;
2291
- filter_category: null;
2292
2321
  id: number;
2293
- label_text_tid: null;
2294
- label_title_tid: null;
2295
2322
  min_level: number;
2323
+ popup_frequency: string;
2296
2324
  popup_type: string;
2297
- priority: number | null;
2298
2325
  show_on_startup: number;
2299
- slides: The0_Slide[];
2326
+ slides: The2_Slide[];
2300
2327
  start_ts: string;
2301
2328
  }
2302
- export interface The4 {
2329
+ export interface The2_Slide {
2330
+ content_localized_key: string;
2331
+ custom_title_localized_key: string;
2332
+ header_localized_key: string;
2333
+ image_url: string;
2334
+ multiple_buttons: MultipleButton[];
2335
+ times_to_show: number;
2336
+ type: SlideType;
2337
+ }
2338
+ export interface The5 {
2303
2339
  active_platforms: ValueClass;
2304
2340
  allow_island_tutorial: number;
2305
2341
  assets_name: string;
@@ -2311,35 +2347,23 @@ export interface The4 {
2311
2347
  popup_is_critical: boolean;
2312
2348
  popup_type: string;
2313
2349
  show_on_startup: number;
2314
- slides: The4_Slide[];
2350
+ slides: The0_Slide[];
2315
2351
  start_ts: string;
2316
2352
  }
2317
- export interface The4_Slide {
2318
- content_localized_key: string;
2319
- custom_title_localized_key: string;
2320
- header_localized_key: string;
2321
- image_url: string;
2322
- link: string;
2323
- link_button_key: string;
2324
- slide_type: string;
2325
- slide_type_2: string;
2326
- timer?: string;
2327
- times_to_show?: number;
2328
- }
2329
- export interface The5 {
2353
+ export interface The6 {
2330
2354
  active_platforms: ValueClass;
2331
2355
  allow_island_tutorial: number;
2332
2356
  assets_name: string;
2333
2357
  end_ts: string;
2334
- hud_button: HudButton;
2358
+ hud_button: The6_HudButton;
2335
2359
  id: number;
2336
2360
  min_level: number;
2337
2361
  popup_type: string;
2338
2362
  show_on_startup: number;
2339
- slides: The4_Slide[];
2363
+ slides: The0_Slide[];
2340
2364
  start_ts: string;
2341
2365
  }
2342
- export interface HudButton {
2366
+ export interface The6_HudButton {
2343
2367
  file: string;
2344
2368
  title: string;
2345
2369
  }
@@ -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.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.ViewTypeEnum = exports.FightBackgroundID = 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;
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.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.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.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 = 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";
@@ -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";
@@ -443,14 +445,14 @@ var AnimationNameEnum;
443
445
  (function (AnimationNameEnum) {
444
446
  AnimationNameEnum["Anim1"] = "anim1";
445
447
  })(AnimationNameEnum || (exports.AnimationNameEnum = AnimationNameEnum = {}));
446
- var PurpleContentLocalizedKey;
447
- (function (PurpleContentLocalizedKey) {
448
- PurpleContentLocalizedKey["Empty"] = "";
449
- PurpleContentLocalizedKey["TidDBCollectionsHelpScreen1"] = "tid_db_collections_help_screen_1";
450
- PurpleContentLocalizedKey["TidDBCollectionsHelpScreen2"] = "tid_db_collections_help_screen_2";
451
- PurpleContentLocalizedKey["TidDBMasteryHelpScreen1"] = "tid_db_mastery_help_screen_1";
452
- PurpleContentLocalizedKey["TidPiggyBankBestDealMessage"] = "tid_piggy_bank_best_deal_message";
453
- })(PurpleContentLocalizedKey || (exports.PurpleContentLocalizedKey = PurpleContentLocalizedKey = {}));
448
+ var ContentLocalizedKey;
449
+ (function (ContentLocalizedKey) {
450
+ ContentLocalizedKey["Empty"] = "";
451
+ ContentLocalizedKey["TidDBCollectionsHelpScreen1"] = "tid_db_collections_help_screen_1";
452
+ ContentLocalizedKey["TidDBCollectionsHelpScreen2"] = "tid_db_collections_help_screen_2";
453
+ ContentLocalizedKey["TidDBMasteryHelpScreen1"] = "tid_db_mastery_help_screen_1";
454
+ ContentLocalizedKey["TidPiggyBankBestDealMessage"] = "tid_piggy_bank_best_deal_message";
455
+ })(ContentLocalizedKey || (exports.ContentLocalizedKey = ContentLocalizedKey = {}));
454
456
  var IslandTitleTid;
455
457
  (function (IslandTitleTid) {
456
458
  IslandTitleTid["TidHeroicRaceTitle"] = "tid_heroic_race_title";
@@ -594,13 +596,6 @@ var IslandTidName;
594
596
  (function (IslandTidName) {
595
597
  IslandTidName["TidMiGenericName"] = "tid_mi_generic_name";
596
598
  })(IslandTidName || (exports.IslandTidName = IslandTidName = {}));
597
- var FluffyContentLocalizedKey;
598
- (function (FluffyContentLocalizedKey) {
599
- FluffyContentLocalizedKey["Empty"] = "";
600
- FluffyContentLocalizedKey["TidNewsEasterraceDesc"] = "tid_news_easterrace_desc";
601
- FluffyContentLocalizedKey["TidNewsEventifiedarenasDesc"] = "tid_news_eventifiedarenas_desc";
602
- FluffyContentLocalizedKey["TidNewsMdsEventDesc"] = "tid_news_mds_event_desc";
603
- })(FluffyContentLocalizedKey || (exports.FluffyContentLocalizedKey = FluffyContentLocalizedKey = {}));
604
599
  var AnimationPlace;
605
600
  (function (AnimationPlace) {
606
601
  AnimationPlace["Foreground"] = "Foreground";
@@ -608,7 +603,6 @@ var AnimationPlace;
608
603
  var Key;
609
604
  (function (Key) {
610
605
  Key["Empty"] = "";
611
- Key["TidNewsApocalypsepathButton"] = "tid_news_apocalypsepath_button";
612
606
  Key["TidNewsPetsdaypassS1Button"] = "tid_news_petsdaypass_s1_button";
613
607
  Key["TidNewsPetsdaypassS3Button"] = "tid_news_petsdaypass_s3_button";
614
608
  })(Key || (exports.Key = Key = {}));
@@ -620,7 +614,7 @@ var SpineAsset;
620
614
  var Style;
621
615
  (function (Style) {
622
616
  Style["Blue"] = "Blue";
623
- Style["BlueLarge"] = "BlueLarge";
617
+ Style["Empty"] = "";
624
618
  Style["Transparent"] = "Transparent";
625
619
  })(Style || (exports.Style = Style = {}));
626
620
  var SlideType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dchighs/dc-config",
3
- "version": "0.1.16",
3
+ "version": "0.1.18",
4
4
  "description": "A library to handle configuration for Dragon City.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",