@dchighs/dc-config 0.1.8 → 0.1.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.
@@ -1072,6 +1072,7 @@ export interface MatchReward {
1072
1072
  pu_token?: number;
1073
1073
  "album_pack.temp"?: number;
1074
1074
  w_token?: number;
1075
+ "album_pack_aces.5"?: number;
1075
1076
  keys?: number;
1076
1077
  li_token?: number;
1077
1078
  wd_token?: number;
@@ -1083,7 +1084,6 @@ export interface MatchReward {
1083
1084
  "rank_up_coin.epic"?: number;
1084
1085
  i_token?: number;
1085
1086
  perks?: RewardPerk[];
1086
- "album_pack_aces.5"?: number;
1087
1087
  }
1088
1088
  export interface DragonTournamentsReward {
1089
1089
  id: number;
@@ -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;
@@ -1383,7 +1383,7 @@ export interface GridIsland {
1383
1383
  encounters: Encounter[];
1384
1384
  enemies: GridIslandEnemy[];
1385
1385
  currencies: Currency[];
1386
- actions: Action[];
1386
+ actions: ActionElement[];
1387
1387
  parameters: FogIslandParameter[];
1388
1388
  }
1389
1389
  export interface Decoration {
@@ -1519,10 +1519,7 @@ export interface HelpViewSlide {
1519
1519
  image_path?: string;
1520
1520
  custom_title_localized_tidkey?: string;
1521
1521
  animatedAssetName?: string;
1522
- animationName?: AnimationNameEnum;
1523
- }
1524
- export declare enum AnimationNameEnum {
1525
- Anim1 = "anim1"
1522
+ animationName?: string;
1526
1523
  }
1527
1524
  export declare enum ContentLocalizedKey {
1528
1525
  Empty = "",
@@ -2077,7 +2074,7 @@ export interface MazeIsland {
2077
2074
  encounters: Encounter[];
2078
2075
  enemies: GridIslandEnemy[];
2079
2076
  happy_hours: any[];
2080
- actions: Action[];
2077
+ actions: ActionElement[];
2081
2078
  clouds: Cloud[];
2082
2079
  currencies: Currency[];
2083
2080
  parameters: FogIslandParameter[];
@@ -2171,52 +2168,64 @@ export interface MazeIslandReward {
2171
2168
  export interface News {
2172
2169
  "0": The0;
2173
2170
  "1": The1;
2174
- "2": The10;
2175
- "3": The11;
2176
- "4": The10;
2177
- "5": The11;
2171
+ "2": The11;
2172
+ "3": The3;
2173
+ "4": The4;
2174
+ "5": The13;
2178
2175
  "6": The6;
2179
- "7": The11;
2180
- "8": The10;
2181
- "9": The9;
2176
+ "7": The0;
2177
+ "8": The11;
2178
+ "9": The4;
2182
2179
  "10": The10;
2183
2180
  "11": The11;
2184
- "12": The10;
2185
- "13": The10;
2186
- "14": The14;
2187
- "15": The15;
2188
- "16": The11;
2189
- "17": The11;
2181
+ "12": The0;
2182
+ "13": The13;
2190
2183
  canvas: Canva[];
2191
2184
  }
2192
2185
  export interface The0 {
2193
2186
  active_platforms: ValueClass;
2194
2187
  allow_island_tutorial: number;
2195
2188
  assets_name: string;
2189
+ direct_to_shop: number;
2196
2190
  end_ts: string;
2197
- hud_button: The0_HudButton;
2198
2191
  id: number;
2199
2192
  min_level: number;
2193
+ popup_frequency: string;
2200
2194
  popup_type: string;
2201
2195
  show_on_startup: number;
2202
2196
  slides: The0_Slide[];
2203
2197
  start_ts: string;
2204
2198
  }
2205
- export interface The0_HudButton {
2206
- file: string;
2207
- title: string;
2208
- }
2209
2199
  export interface The0_Slide {
2210
- content_localized_key: string;
2211
2200
  custom_title_localized_key: string;
2201
+ forceClose: boolean;
2212
2202
  header_localized_key: string;
2213
2203
  image_url: string;
2204
+ times_to_show: number;
2205
+ type: string;
2206
+ content_localized_key?: string;
2207
+ multiple_buttons?: PurpleMultipleButton[];
2208
+ }
2209
+ export interface PurpleMultipleButton {
2210
+ animation: string;
2211
+ animationPlace: string;
2212
+ forceClose: boolean;
2213
+ glint: boolean;
2214
+ key: string;
2214
2215
  link: string;
2215
- link_button_key: string;
2216
- slide_type: string;
2217
- slide_type_2: string;
2218
- timer?: string;
2219
- times_to_show?: number;
2216
+ linkItemId?: number | string;
2217
+ normalizedPosition: NormalizedPosition;
2218
+ size: Size;
2219
+ spineAsset: string;
2220
+ style: string;
2221
+ }
2222
+ export interface NormalizedPosition {
2223
+ x: number;
2224
+ y: number;
2225
+ }
2226
+ export interface Size {
2227
+ h: number;
2228
+ w: number;
2220
2229
  }
2221
2230
  export interface The1 {
2222
2231
  active_platforms: ValueClass;
@@ -2224,12 +2233,17 @@ export interface The1 {
2224
2233
  assets_name: string;
2225
2234
  direct_to_shop: number;
2226
2235
  end_ts: string;
2236
+ filter_category: null;
2227
2237
  hud_button: The1_HudButton;
2228
2238
  id: number;
2239
+ label_text_tid: null;
2240
+ label_title_tid: null;
2229
2241
  min_level: number;
2242
+ popup_frequency: string;
2230
2243
  popup_type: string;
2244
+ priority: null;
2231
2245
  show_on_startup: number;
2232
- slides: The0_Slide[];
2246
+ slides: The1_Slide[];
2233
2247
  start_ts: string;
2234
2248
  }
2235
2249
  export interface The1_HudButton {
@@ -2237,67 +2251,46 @@ export interface The1_HudButton {
2237
2251
  title: string;
2238
2252
  viral_icon_tier: number;
2239
2253
  }
2254
+ export interface The1_Slide {
2255
+ content_localized_key: string;
2256
+ custom_title_localized_key: string;
2257
+ header_localized_key: string;
2258
+ image_url: string;
2259
+ link: string;
2260
+ link_button_key: string;
2261
+ link_item_id?: number;
2262
+ slide_type: string;
2263
+ slide_type_2: string;
2264
+ timer?: string;
2265
+ }
2240
2266
  export interface The10 {
2241
2267
  active_platforms: ValueClass;
2242
2268
  allow_island_tutorial: number;
2243
2269
  assets_name: string;
2244
- direct_to_shop: number;
2245
2270
  end_ts: string;
2246
- filter_category: null;
2271
+ hud_button: The10_HudButton;
2247
2272
  id: number;
2248
- label_text_tid: null;
2249
- label_title_tid: null;
2250
2273
  min_level: number;
2251
2274
  popup_type: string;
2252
- priority: number | null;
2253
2275
  show_on_startup: number;
2254
2276
  slides: The10_Slide[];
2255
2277
  start_ts: string;
2256
2278
  }
2279
+ export interface The10_HudButton {
2280
+ file: string;
2281
+ title: string;
2282
+ }
2257
2283
  export interface The10_Slide {
2258
- content_localized_key?: string;
2259
2284
  custom_title_localized_key: string;
2260
- header_localized_key: string;
2261
2285
  image_url: string;
2262
- multiple_buttons: PurpleMultipleButton[];
2263
- times_to_show: number;
2264
- type: SlideType;
2265
- forceClose?: boolean;
2266
- }
2267
- export interface PurpleMultipleButton {
2268
- animation: AnimationNameEnum;
2269
- animationPlace: AnimationPlace;
2270
- forceClose: boolean;
2271
- glint: boolean;
2272
- key: string;
2273
2286
  link: string;
2274
- linkItemId: number;
2275
- normalizedPosition: NormalizedPosition;
2276
- size: Size;
2277
- spineAsset: SpineAsset;
2278
- style: Style;
2279
- }
2280
- export declare enum AnimationPlace {
2281
- Foreground = "Foreground"
2282
- }
2283
- export interface NormalizedPosition {
2284
- x: number;
2285
- y: number;
2286
- }
2287
- export interface Size {
2288
- h: number;
2289
- w: number;
2290
- }
2291
- export declare enum SpineAsset {
2292
- Empty = "",
2293
- PointerAnimationV2 = "pointer_animation_v2"
2294
- }
2295
- export declare enum Style {
2296
- BlueLarge = "BlueLarge",
2297
- Transparent = "Transparent"
2298
- }
2299
- export declare enum SlideType {
2300
- FullImage = "FullImage"
2287
+ link_button_key: string;
2288
+ slide_type: string;
2289
+ slide_type_2: string;
2290
+ timer?: string;
2291
+ times_to_show?: number;
2292
+ content_localized_key?: string;
2293
+ header_localized_key?: string;
2301
2294
  }
2302
2295
  export interface The11 {
2303
2296
  active_platforms: ValueClass;
@@ -2310,25 +2303,50 @@ export interface The11 {
2310
2303
  popup_frequency: string;
2311
2304
  popup_type: string;
2312
2305
  show_on_startup: number;
2313
- slides: The10_Slide[];
2306
+ slides: The11_Slide[];
2314
2307
  start_ts: string;
2315
2308
  }
2316
- export interface The14 {
2309
+ export interface The11_Slide {
2310
+ content_localized_key: string;
2311
+ custom_title_localized_key: string;
2312
+ header_localized_key: string;
2313
+ image_url: string;
2314
+ multiple_buttons: FluffyMultipleButton[];
2315
+ times_to_show: number;
2316
+ type: string;
2317
+ forceClose?: boolean;
2318
+ }
2319
+ export interface FluffyMultipleButton {
2320
+ animation: string;
2321
+ animationPlace: string;
2322
+ forceClose: boolean;
2323
+ glint: boolean;
2324
+ key: string;
2325
+ link: string;
2326
+ linkItemId: number;
2327
+ normalizedPosition: NormalizedPosition;
2328
+ size: Size;
2329
+ spineAsset: string;
2330
+ style: string;
2331
+ }
2332
+ export interface The13 {
2317
2333
  active_platforms: ValueClass;
2318
2334
  allow_island_tutorial: number;
2319
2335
  assets_name: string;
2320
2336
  direct_to_shop: number;
2321
2337
  end_ts: string;
2338
+ filter_category: null;
2322
2339
  id: number;
2340
+ label_text_tid: null;
2341
+ label_title_tid: null;
2323
2342
  min_level: number;
2324
- popup_frequency: string;
2325
- popup_is_critical: boolean;
2326
2343
  popup_type: string;
2344
+ priority: null;
2327
2345
  show_on_startup: number;
2328
- slides: The0_Slide[];
2346
+ slides: The11_Slide[];
2329
2347
  start_ts: string;
2330
2348
  }
2331
- export interface The15 {
2349
+ export interface The3 {
2332
2350
  active_platforms: ValueClass;
2333
2351
  allow_island_tutorial: number;
2334
2352
  assets_name: string;
@@ -2339,99 +2357,103 @@ export interface The15 {
2339
2357
  popup_frequency: string;
2340
2358
  popup_type: string;
2341
2359
  show_on_startup: number;
2342
- slides: The15_Slide[];
2360
+ slides: The3_Slide[];
2343
2361
  start_ts: string;
2344
2362
  }
2345
- export interface The15_Slide {
2363
+ export interface The3_Slide {
2346
2364
  content_localized_key: string;
2347
2365
  custom_title_localized_key: string;
2348
- forceClose: boolean;
2349
2366
  header_localized_key: string;
2350
2367
  image_url: string;
2351
- multiple_buttons: FluffyMultipleButton[];
2368
+ multiple_buttons: PurpleMultipleButton[];
2352
2369
  times_to_show: number;
2353
- type: SlideType;
2354
- }
2355
- export interface FluffyMultipleButton {
2356
- animation: AnimationNameEnum;
2357
- animationPlace: AnimationPlace;
2358
- forceClose: boolean;
2359
- glint: boolean;
2360
- key: Key;
2361
- link: string;
2362
- linkItemId?: number | string;
2363
- normalizedPosition: NormalizedPosition;
2364
- size: Size;
2365
- spineAsset: SpineAsset;
2366
- style: Style;
2367
- }
2368
- export declare enum Key {
2369
- Empty = "",
2370
- TidNewsApocalypsepathButton = "tid_news_apocalypsepath_button"
2370
+ type: string;
2371
2371
  }
2372
- export interface The6 {
2372
+ export interface The4 {
2373
2373
  active_platforms: ValueClass;
2374
2374
  allow_island_tutorial: number;
2375
2375
  assets_name: string;
2376
2376
  direct_to_shop: number;
2377
2377
  end_ts: string;
2378
+ hud_button: The1_HudButton;
2378
2379
  id: number;
2379
2380
  min_level: number;
2380
- popup_frequency: string;
2381
+ popup_frequency?: string;
2381
2382
  popup_type: string;
2382
2383
  show_on_startup: number;
2383
- slides: The6_Slide[];
2384
+ slides: The4_Slide[];
2384
2385
  start_ts: string;
2385
2386
  }
2386
- export interface The6_Slide {
2387
+ export interface The4_Slide {
2387
2388
  content_localized_key: string;
2388
2389
  custom_title_localized_key: string;
2389
2390
  header_localized_key: string;
2390
2391
  image_url: string;
2391
- multiple_buttons: TentacledMultipleButton[];
2392
- times_to_show: number;
2393
- type: SlideType;
2394
- forceClose?: boolean;
2395
- }
2396
- export interface TentacledMultipleButton {
2397
- animation: AnimationNameEnum;
2398
- animationPlace: AnimationPlace;
2399
- forceClose: boolean;
2400
- glint: boolean;
2401
- key: Key;
2402
2392
  link: string;
2403
- normalizedPosition: NormalizedPosition;
2404
- size: Size;
2405
- spineAsset: SpineAsset;
2406
- style: Style;
2393
+ link_button_key: string;
2394
+ slide_type: string;
2395
+ slide_type_2: string;
2396
+ timer: string;
2407
2397
  }
2408
- export interface The9 {
2398
+ export interface The6 {
2409
2399
  active_platforms: ValueClass;
2410
2400
  allow_island_tutorial: number;
2411
2401
  assets_name: string;
2412
2402
  direct_to_shop: number;
2413
2403
  end_ts: string;
2414
- filter_category: null;
2415
- hud_button: The1_HudButton;
2416
2404
  id: number;
2417
- label_text_tid: null;
2418
- label_title_tid: null;
2419
2405
  min_level: number;
2420
2406
  popup_frequency: string;
2407
+ popup_is_critical: boolean;
2421
2408
  popup_type: string;
2422
- priority: null;
2423
2409
  show_on_startup: number;
2424
- slides: The6_Slide[];
2410
+ slides: The10_Slide[];
2425
2411
  start_ts: string;
2426
2412
  }
2427
2413
  export interface Canva {
2428
2414
  id: number;
2429
2415
  assets_name: string;
2430
- start_ts: number;
2431
- end_ts: number;
2432
- min_level: number;
2433
- slides: The10_Slide[];
2434
- show_on_startup: number;
2416
+ start_ts: number | string;
2417
+ end_ts: number | string;
2418
+ min_level?: number;
2419
+ slides: CanvaSlide[];
2420
+ show_on_startup?: number;
2421
+ priority?: string;
2422
+ }
2423
+ export interface CanvaSlide {
2424
+ custom_title_localized_key?: string;
2425
+ header_localized_key?: string;
2426
+ image_url?: string;
2427
+ times_to_show?: number;
2428
+ type?: string;
2429
+ multiple_buttons?: PurpleMultipleButton[];
2430
+ bg?: string;
2431
+ content?: Content[];
2432
+ edit_mode?: number;
2433
+ id?: number;
2434
+ title_key?: string;
2435
+ viral_icon_key?: string;
2436
+ viral_icon_timer?: string;
2437
+ }
2438
+ export interface Content {
2439
+ height: number;
2440
+ rotation: number;
2441
+ stroke?: string;
2442
+ text_color?: string;
2443
+ text_key: string;
2444
+ text_size?: number;
2445
+ timer?: number;
2446
+ type: string;
2447
+ width: number;
2448
+ x: number;
2449
+ y: number;
2450
+ action?: ContentAction;
2451
+ style?: string;
2452
+ }
2453
+ export interface ContentAction {
2454
+ itemId: string;
2455
+ storeCategory: number;
2456
+ type: string;
2435
2457
  }
2436
2458
  export interface Perks {
2437
2459
  abilities: Ability[];
@@ -2865,12 +2887,15 @@ export interface AuraParameters {
2865
2887
  criticalProtection?: boolean;
2866
2888
  reflectDamage?: number;
2867
2889
  reflectionsPerTurn?: number;
2868
- deployText?: string;
2890
+ deployText?: DeployText;
2869
2891
  deployTextColor?: DeployTextColor;
2870
2892
  dodgeChance?: number;
2871
2893
  statusIcon?: string;
2872
2894
  effectName?: Level1_EffectName;
2873
2895
  }
2896
+ export declare enum DeployText {
2897
+ TidSkillImpalerBattlefield = "tid_skill_impaler_battlefield"
2898
+ }
2874
2899
  export interface DeployTextColor {
2875
2900
  r: number;
2876
2901
  g: number;
@@ -3156,7 +3181,7 @@ export interface TowerIsland {
3156
3181
  happy_hours: HappyHour[];
3157
3182
  parameters: FogIslandParameter[];
3158
3183
  currencies: Currency[];
3159
- actions: Action[];
3184
+ actions: ActionElement[];
3160
3185
  }
3161
3186
  export interface Floor {
3162
3187
  id: number;
@@ -3297,7 +3322,7 @@ export interface TreeOfLifeRaritySeed {
3297
3322
  }
3298
3323
  export interface TreeOfLifePowerup {
3299
3324
  parameters: BattlesConfigElement[];
3300
- animation: AnimationElement[];
3325
+ animation: Animation[];
3301
3326
  grades_by_rarity: GradesBy[];
3302
3327
  grades_by_dragon: GradesBy[];
3303
3328
  visuals: Visual[];
@@ -3306,7 +3331,7 @@ export interface TreeOfLifePowerup {
3306
3331
  rarity_seeds: TreeOfLifePowerupRaritySeed[];
3307
3332
  gold_boost: GoldBoost[];
3308
3333
  }
3309
- export interface AnimationElement {
3334
+ export interface Animation {
3310
3335
  dragon_grade: number;
3311
3336
  background_color: string;
3312
3337
  dragon_particle_color: string;
@@ -3346,8 +3371,8 @@ export interface MultiplierTime {
3346
3371
  multiplier_time: number;
3347
3372
  }
3348
3373
  export interface TreeOfLifePowerupRaritySeed {
3349
- max_rarity_seeds_per_grade: number[];
3350
3374
  rarity: Rarity;
3375
+ max_rarity_seeds_per_grade: number[];
3351
3376
  }
3352
3377
  export interface Visual {
3353
3378
  id: number;
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
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.AuraCenterMode = exports.AttackType = exports.Texture = exports.RewardEnum = exports.ZipFile = exports.TentacledSoundTag = exports.ActivityType = exports.PerkType = exports.AbilityType = exports.Key = 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;
4
+ exports.Name = exports.Target = exports.StatusEffectDataEffectName = exports.EffectVfxEnum = 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.DeployText = exports.AuraCenterMode = exports.AttackType = exports.Texture = exports.RewardEnum = exports.ZipFile = exports.TentacledSoundTag = exports.ActivityType = exports.PerkType = exports.AbilityType = 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.PopupType = exports.WallSuffix = exports.Wall = exports.CanvasBackground = exports.ViewTypeEnum = exports.FightBackgroundID = void 0;
5
+ exports.TreasureItemType = exports.Feature = exports.PurpleType = exports.FloorImage = void 0;
6
6
  var Format;
7
7
  (function (Format) {
8
8
  Format["Efk"] = "efk";
@@ -437,10 +437,6 @@ var PopupType;
437
437
  PopupType["DefaultCustomSlides"] = "DefaultCustomSlides";
438
438
  PopupType["HelpViewDeityWorld"] = "/HelpView/DeityWorld";
439
439
  })(PopupType || (exports.PopupType = PopupType = {}));
440
- var AnimationNameEnum;
441
- (function (AnimationNameEnum) {
442
- AnimationNameEnum["Anim1"] = "anim1";
443
- })(AnimationNameEnum || (exports.AnimationNameEnum = AnimationNameEnum = {}));
444
440
  var ContentLocalizedKey;
445
441
  (function (ContentLocalizedKey) {
446
442
  ContentLocalizedKey["Empty"] = "";
@@ -592,29 +588,6 @@ var IslandTidName;
592
588
  (function (IslandTidName) {
593
589
  IslandTidName["TidMiGenericName"] = "tid_mi_generic_name";
594
590
  })(IslandTidName || (exports.IslandTidName = IslandTidName = {}));
595
- var AnimationPlace;
596
- (function (AnimationPlace) {
597
- AnimationPlace["Foreground"] = "Foreground";
598
- })(AnimationPlace || (exports.AnimationPlace = AnimationPlace = {}));
599
- var SpineAsset;
600
- (function (SpineAsset) {
601
- SpineAsset["Empty"] = "";
602
- SpineAsset["PointerAnimationV2"] = "pointer_animation_v2";
603
- })(SpineAsset || (exports.SpineAsset = SpineAsset = {}));
604
- var Style;
605
- (function (Style) {
606
- Style["BlueLarge"] = "BlueLarge";
607
- Style["Transparent"] = "Transparent";
608
- })(Style || (exports.Style = Style = {}));
609
- var SlideType;
610
- (function (SlideType) {
611
- SlideType["FullImage"] = "FullImage";
612
- })(SlideType || (exports.SlideType = SlideType = {}));
613
- var Key;
614
- (function (Key) {
615
- Key["Empty"] = "";
616
- Key["TidNewsApocalypsepathButton"] = "tid_news_apocalypsepath_button";
617
- })(Key || (exports.Key = Key = {}));
618
591
  var AbilityType;
619
592
  (function (AbilityType) {
620
593
  AbilityType["DragonAttackBoost"] = "dragon_attack_boost";
@@ -712,6 +685,10 @@ var AuraCenterMode;
712
685
  (function (AuraCenterMode) {
713
686
  AuraCenterMode["Side"] = "SIDE";
714
687
  })(AuraCenterMode || (exports.AuraCenterMode = AuraCenterMode = {}));
688
+ var DeployText;
689
+ (function (DeployText) {
690
+ DeployText["TidSkillImpalerBattlefield"] = "tid_skill_impaler_battlefield";
691
+ })(DeployText || (exports.DeployText = DeployText = {}));
715
692
  var Level1_EffectName;
716
693
  (function (Level1_EffectName) {
717
694
  Level1_EffectName["TidCritEffectDamageName"] = "tid_crit_effect_damage_name";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dchighs/dc-config",
3
- "version": "0.1.8",
3
+ "version": "0.1.10",
4
4
  "description": "A library to handle configuration for Dragon City.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",