@dchighs/dc-config 0.1.14 → 0.1.16
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 +53 -36
- package/dist/dtos/game-config.js +26 -10
- package/package.json +1 -1
|
@@ -1407,11 +1407,13 @@ export interface Encounter {
|
|
|
1407
1407
|
}
|
|
1408
1408
|
export declare enum FightBackgroundID {
|
|
1409
1409
|
BgBattleBackgroundGiTreasurehunt = "bg_battle_background_gi_treasurehunt",
|
|
1410
|
+
BgBattleBackgroundHrEaster26 = "bg_battle_background_hr_easter26",
|
|
1410
1411
|
BgBattleBackgroundHrFallFriday = "bg_battle_background_hr_fall_friday",
|
|
1411
1412
|
BgBattleBackgroundHrNewBeginnings = "bg_battle_background_hr_new_beginnings",
|
|
1412
1413
|
BgBattleBackgroundHrSaintvalentine26 = "bg_battle_background_hr_saintvalentine_26",
|
|
1413
1414
|
BgBattleBackgroundMiCarnival = "bg_battle_background_mi_carnival",
|
|
1414
1415
|
BgBattleBackgroundMiDragonmysteries = "bg_battle_background_mi_dragonmysteries",
|
|
1416
|
+
BgBattleBackgroundMiEaster2020 = "bg_battle_background_mi_easter2020",
|
|
1415
1417
|
BgBattleBackgroundMiMidsummerMisery = "bg_battle_background_mi_midsummer_misery",
|
|
1416
1418
|
BgBattleBackgroundMiMysteryInParadise = "bg_battle_background_mi_mystery_in_paradise",
|
|
1417
1419
|
BgBattleBackgroundMiRebornRetold = "bg_battle_background_mi_reborn_retold",
|
|
@@ -1512,7 +1514,7 @@ export declare enum PopupType {
|
|
|
1512
1514
|
}
|
|
1513
1515
|
export interface HelpViewSlide {
|
|
1514
1516
|
header_localized_key?: string;
|
|
1515
|
-
content_localized_key?:
|
|
1517
|
+
content_localized_key?: PurpleContentLocalizedKey;
|
|
1516
1518
|
image_url?: string;
|
|
1517
1519
|
custom_title_localized_key?: string;
|
|
1518
1520
|
slide_type: string;
|
|
@@ -1524,7 +1526,7 @@ export interface HelpViewSlide {
|
|
|
1524
1526
|
export declare enum AnimationNameEnum {
|
|
1525
1527
|
Anim1 = "anim1"
|
|
1526
1528
|
}
|
|
1527
|
-
export declare enum
|
|
1529
|
+
export declare enum PurpleContentLocalizedKey {
|
|
1528
1530
|
Empty = "",
|
|
1529
1531
|
TidDBCollectionsHelpScreen1 = "tid_db_collections_help_screen_1",
|
|
1530
1532
|
TidDBCollectionsHelpScreen2 = "tid_db_collections_help_screen_2",
|
|
@@ -2172,14 +2174,17 @@ export interface MazeIslandReward {
|
|
|
2172
2174
|
export interface News {
|
|
2173
2175
|
"0": The0;
|
|
2174
2176
|
"1": The1;
|
|
2175
|
-
"2":
|
|
2176
|
-
"3":
|
|
2177
|
+
"2": The12;
|
|
2178
|
+
"3": The12;
|
|
2177
2179
|
"4": The4;
|
|
2178
|
-
"5":
|
|
2179
|
-
"6":
|
|
2180
|
-
"7":
|
|
2181
|
-
"8":
|
|
2182
|
-
"9":
|
|
2180
|
+
"5": The5;
|
|
2181
|
+
"6": The0;
|
|
2182
|
+
"7": The0;
|
|
2183
|
+
"8": The0;
|
|
2184
|
+
"9": The0;
|
|
2185
|
+
"10": The0;
|
|
2186
|
+
"11": The0;
|
|
2187
|
+
"12": The12;
|
|
2183
2188
|
canvas: Canva[];
|
|
2184
2189
|
}
|
|
2185
2190
|
export interface The0 {
|
|
@@ -2197,30 +2202,43 @@ export interface The0 {
|
|
|
2197
2202
|
start_ts: string;
|
|
2198
2203
|
}
|
|
2199
2204
|
export interface The0_Slide {
|
|
2200
|
-
content_localized_key:
|
|
2205
|
+
content_localized_key: FluffyContentLocalizedKey;
|
|
2201
2206
|
custom_title_localized_key: string;
|
|
2207
|
+
forceClose?: boolean;
|
|
2202
2208
|
header_localized_key: string;
|
|
2203
2209
|
image_url: string;
|
|
2204
2210
|
multiple_buttons: MultipleButton[];
|
|
2205
2211
|
times_to_show: number;
|
|
2206
2212
|
type: SlideType;
|
|
2207
2213
|
}
|
|
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
|
+
}
|
|
2208
2220
|
export interface MultipleButton {
|
|
2209
2221
|
animation: AnimationNameEnum;
|
|
2210
2222
|
animationPlace: AnimationPlace;
|
|
2211
2223
|
forceClose: boolean;
|
|
2212
2224
|
glint: boolean;
|
|
2213
|
-
key:
|
|
2225
|
+
key: Key;
|
|
2214
2226
|
link: string;
|
|
2227
|
+
linkItemId?: number | string;
|
|
2215
2228
|
normalizedPosition: NormalizedPosition;
|
|
2216
2229
|
size: Size;
|
|
2217
2230
|
spineAsset: SpineAsset;
|
|
2218
2231
|
style: Style;
|
|
2219
|
-
linkItemId?: number | string;
|
|
2220
2232
|
}
|
|
2221
2233
|
export declare enum AnimationPlace {
|
|
2222
2234
|
Foreground = "Foreground"
|
|
2223
2235
|
}
|
|
2236
|
+
export declare enum Key {
|
|
2237
|
+
Empty = "",
|
|
2238
|
+
TidNewsApocalypsepathButton = "tid_news_apocalypsepath_button",
|
|
2239
|
+
TidNewsPetsdaypassS1Button = "tid_news_petsdaypass_s1_button",
|
|
2240
|
+
TidNewsPetsdaypassS3Button = "tid_news_petsdaypass_s3_button"
|
|
2241
|
+
}
|
|
2224
2242
|
export interface NormalizedPosition {
|
|
2225
2243
|
x: number;
|
|
2226
2244
|
y: number;
|
|
@@ -2247,13 +2265,10 @@ export interface The1 {
|
|
|
2247
2265
|
assets_name: string;
|
|
2248
2266
|
direct_to_shop: number;
|
|
2249
2267
|
end_ts: string;
|
|
2250
|
-
filter_category: null;
|
|
2251
2268
|
id: number;
|
|
2252
|
-
label_text_tid: null;
|
|
2253
|
-
label_title_tid: null;
|
|
2254
2269
|
min_level: number;
|
|
2270
|
+
popup_frequency: string;
|
|
2255
2271
|
popup_type: string;
|
|
2256
|
-
priority: null;
|
|
2257
2272
|
show_on_startup: number;
|
|
2258
2273
|
slides: The1_Slide[];
|
|
2259
2274
|
start_ts: string;
|
|
@@ -2266,9 +2281,25 @@ export interface The1_Slide {
|
|
|
2266
2281
|
multiple_buttons: MultipleButton[];
|
|
2267
2282
|
times_to_show: number;
|
|
2268
2283
|
type: SlideType;
|
|
2269
|
-
forceClose?: boolean;
|
|
2270
2284
|
}
|
|
2271
|
-
export interface
|
|
2285
|
+
export interface The12 {
|
|
2286
|
+
active_platforms: ValueClass;
|
|
2287
|
+
allow_island_tutorial: number;
|
|
2288
|
+
assets_name: string;
|
|
2289
|
+
direct_to_shop: number;
|
|
2290
|
+
end_ts: string;
|
|
2291
|
+
filter_category: null;
|
|
2292
|
+
id: number;
|
|
2293
|
+
label_text_tid: null;
|
|
2294
|
+
label_title_tid: null;
|
|
2295
|
+
min_level: number;
|
|
2296
|
+
popup_type: string;
|
|
2297
|
+
priority: number | null;
|
|
2298
|
+
show_on_startup: number;
|
|
2299
|
+
slides: The0_Slide[];
|
|
2300
|
+
start_ts: string;
|
|
2301
|
+
}
|
|
2302
|
+
export interface The4 {
|
|
2272
2303
|
active_platforms: ValueClass;
|
|
2273
2304
|
allow_island_tutorial: number;
|
|
2274
2305
|
assets_name: string;
|
|
@@ -2280,10 +2311,10 @@ export interface The2 {
|
|
|
2280
2311
|
popup_is_critical: boolean;
|
|
2281
2312
|
popup_type: string;
|
|
2282
2313
|
show_on_startup: number;
|
|
2283
|
-
slides:
|
|
2314
|
+
slides: The4_Slide[];
|
|
2284
2315
|
start_ts: string;
|
|
2285
2316
|
}
|
|
2286
|
-
export interface
|
|
2317
|
+
export interface The4_Slide {
|
|
2287
2318
|
content_localized_key: string;
|
|
2288
2319
|
custom_title_localized_key: string;
|
|
2289
2320
|
header_localized_key: string;
|
|
@@ -2295,21 +2326,7 @@ export interface The2_Slide {
|
|
|
2295
2326
|
timer?: string;
|
|
2296
2327
|
times_to_show?: number;
|
|
2297
2328
|
}
|
|
2298
|
-
export interface
|
|
2299
|
-
active_platforms: ValueClass;
|
|
2300
|
-
allow_island_tutorial: number;
|
|
2301
|
-
assets_name: string;
|
|
2302
|
-
direct_to_shop: number;
|
|
2303
|
-
end_ts: string;
|
|
2304
|
-
id: number;
|
|
2305
|
-
min_level: number;
|
|
2306
|
-
popup_frequency: string;
|
|
2307
|
-
popup_type: string;
|
|
2308
|
-
show_on_startup: number;
|
|
2309
|
-
slides: The1_Slide[];
|
|
2310
|
-
start_ts: string;
|
|
2311
|
-
}
|
|
2312
|
-
export interface The4 {
|
|
2329
|
+
export interface The5 {
|
|
2313
2330
|
active_platforms: ValueClass;
|
|
2314
2331
|
allow_island_tutorial: number;
|
|
2315
2332
|
assets_name: string;
|
|
@@ -2319,7 +2336,7 @@ export interface The4 {
|
|
|
2319
2336
|
min_level: number;
|
|
2320
2337
|
popup_type: string;
|
|
2321
2338
|
show_on_startup: number;
|
|
2322
|
-
slides:
|
|
2339
|
+
slides: The4_Slide[];
|
|
2323
2340
|
start_ts: string;
|
|
2324
2341
|
}
|
|
2325
2342
|
export interface HudButton {
|
package/dist/dtos/game-config.js
CHANGED
|
@@ -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.
|
|
5
|
-
exports.TreasureItemType = exports.Feature = exports.PurpleType = exports.FloorImage = exports.Name = exports.Target = exports.StatusEffectDataEffectName = exports.EffectVfxEnum = exports.VfxTextEffectname = 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;
|
|
6
6
|
var Format;
|
|
7
7
|
(function (Format) {
|
|
8
8
|
Format["Efk"] = "efk";
|
|
@@ -390,11 +390,13 @@ var File;
|
|
|
390
390
|
var FightBackgroundID;
|
|
391
391
|
(function (FightBackgroundID) {
|
|
392
392
|
FightBackgroundID["BgBattleBackgroundGiTreasurehunt"] = "bg_battle_background_gi_treasurehunt";
|
|
393
|
+
FightBackgroundID["BgBattleBackgroundHrEaster26"] = "bg_battle_background_hr_easter26";
|
|
393
394
|
FightBackgroundID["BgBattleBackgroundHrFallFriday"] = "bg_battle_background_hr_fall_friday";
|
|
394
395
|
FightBackgroundID["BgBattleBackgroundHrNewBeginnings"] = "bg_battle_background_hr_new_beginnings";
|
|
395
396
|
FightBackgroundID["BgBattleBackgroundHrSaintvalentine26"] = "bg_battle_background_hr_saintvalentine_26";
|
|
396
397
|
FightBackgroundID["BgBattleBackgroundMiCarnival"] = "bg_battle_background_mi_carnival";
|
|
397
398
|
FightBackgroundID["BgBattleBackgroundMiDragonmysteries"] = "bg_battle_background_mi_dragonmysteries";
|
|
399
|
+
FightBackgroundID["BgBattleBackgroundMiEaster2020"] = "bg_battle_background_mi_easter2020";
|
|
398
400
|
FightBackgroundID["BgBattleBackgroundMiMidsummerMisery"] = "bg_battle_background_mi_midsummer_misery";
|
|
399
401
|
FightBackgroundID["BgBattleBackgroundMiMysteryInParadise"] = "bg_battle_background_mi_mystery_in_paradise";
|
|
400
402
|
FightBackgroundID["BgBattleBackgroundMiRebornRetold"] = "bg_battle_background_mi_reborn_retold";
|
|
@@ -441,14 +443,14 @@ var AnimationNameEnum;
|
|
|
441
443
|
(function (AnimationNameEnum) {
|
|
442
444
|
AnimationNameEnum["Anim1"] = "anim1";
|
|
443
445
|
})(AnimationNameEnum || (exports.AnimationNameEnum = AnimationNameEnum = {}));
|
|
444
|
-
var
|
|
445
|
-
(function (
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
})(
|
|
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 = {}));
|
|
452
454
|
var IslandTitleTid;
|
|
453
455
|
(function (IslandTitleTid) {
|
|
454
456
|
IslandTitleTid["TidHeroicRaceTitle"] = "tid_heroic_race_title";
|
|
@@ -592,10 +594,24 @@ var IslandTidName;
|
|
|
592
594
|
(function (IslandTidName) {
|
|
593
595
|
IslandTidName["TidMiGenericName"] = "tid_mi_generic_name";
|
|
594
596
|
})(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 = {}));
|
|
595
604
|
var AnimationPlace;
|
|
596
605
|
(function (AnimationPlace) {
|
|
597
606
|
AnimationPlace["Foreground"] = "Foreground";
|
|
598
607
|
})(AnimationPlace || (exports.AnimationPlace = AnimationPlace = {}));
|
|
608
|
+
var Key;
|
|
609
|
+
(function (Key) {
|
|
610
|
+
Key["Empty"] = "";
|
|
611
|
+
Key["TidNewsApocalypsepathButton"] = "tid_news_apocalypsepath_button";
|
|
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
617
|
SpineAsset["Empty"] = "";
|