e4k-data 4.84.37 → 4.87.51
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/data/buildings.json +6524 -701
- package/data/constructionItems.json +300 -38
- package/data/constructionItemsEffectGroups.json +1 -1
- package/data/currencies.json +7 -0
- package/data/districtTypes.json +10 -0
- package/data/effectCaps.json +140 -0
- package/data/effects.json +231 -1
- package/data/equipments.json +92 -0
- package/data/expansions.json +54 -54
- package/data/horses.json +143 -143
- package/data/leaguetypeEvents.json +99 -0
- package/data/packages.json +2463 -0
- package/data/researches.json +71 -71
- package/data/rewards.json +2036 -3
- package/data/sceatSkillTiers.json +14 -15
- package/data/sceatSkills.json +560 -796
- package/data/tempServerDailyTaskRewards.json +5 -5
- package/data/tempServerRankRewards.json +972 -0
- package/data/tempServerSettings.json +59 -0
- package/data/units.json +123 -0
- package/data/version.json +1 -1
- package/data/versionInfo.json +3 -3
- package/data/wodIds.json +192 -192
- package/images/x768.json +767 -16
- package/languages/da.json +361 -203
- package/languages/de.json +360 -202
- package/languages/el.json +362 -204
- package/languages/en.json +365 -206
- package/languages/es.json +363 -205
- package/languages/fi.json +361 -203
- package/languages/fr.json +361 -203
- package/languages/it.json +363 -205
- package/languages/ja.json +358 -200
- package/languages/ko.json +357 -199
- package/languages/nl.json +361 -203
- package/languages/no.json +363 -205
- package/languages/pl.json +361 -203
- package/languages/pt.json +363 -205
- package/languages/ru.json +361 -203
- package/languages/sv.json +363 -205
- package/languages/tr.json +359 -201
- package/languages/zh_CN.json +360 -202
- package/languages/zh_TW.json +360 -202
- package/package.json +1 -1
- package/typings/data.d.ts +15 -3
- package/typings/images.d.ts +55 -6
- package/typings/languages.d.ts +177 -18
package/package.json
CHANGED
package/typings/data.d.ts
CHANGED
|
@@ -162,7 +162,7 @@ export interface Data {
|
|
|
162
162
|
officersSchoolPowerDistributions: OfficersSchoolPowerDistribution[];
|
|
163
163
|
officersSchoolUnitPairs: OfficersSchoolUnitPair[];
|
|
164
164
|
packageCategories: PackageCategory[];
|
|
165
|
-
packageCategoryCostRelations:
|
|
165
|
+
packageCategoryCostRelations: PackageCategoryCostRelation[];
|
|
166
166
|
packageCategoryFilterRelations: PackageCategoryFilterRelation[];
|
|
167
167
|
packageFilters: PackageFilter[];
|
|
168
168
|
packages: Package[];
|
|
@@ -642,15 +642,25 @@ export interface Building {
|
|
|
642
642
|
"constructionItemGroupIDs"?: number | string;
|
|
643
643
|
"constructionSlotCount"?: number;
|
|
644
644
|
"costAquamarine"?: number;
|
|
645
|
+
"costC1"?: number;
|
|
645
646
|
"costC2"?: number;
|
|
646
647
|
"costCoal"?: number;
|
|
648
|
+
"costCommonStraw"?: number;
|
|
649
|
+
"costCommonTimber"?: number;
|
|
647
650
|
"costDragonScaleTile"?: number;
|
|
651
|
+
"costFloraToken"?: number;
|
|
648
652
|
"costGlass"?: number;
|
|
653
|
+
"costGoldToken"?: number;
|
|
649
654
|
"costIron"?: number;
|
|
655
|
+
"costKhanMedal"?: number;
|
|
656
|
+
"costKhanTablet"?: number;
|
|
650
657
|
"costLegendaryMaterial"?: number;
|
|
651
658
|
"costLegendaryToken"?: number;
|
|
652
659
|
"costOil"?: number;
|
|
653
660
|
"costPlaster"?: number;
|
|
661
|
+
"costRareGlue"?: number;
|
|
662
|
+
"costRareNails"?: number;
|
|
663
|
+
"costSamuraiToken"?: number;
|
|
654
664
|
"costSceatToken"?: number;
|
|
655
665
|
"costStone"?: number;
|
|
656
666
|
"costWood"?: number;
|
|
@@ -725,6 +735,7 @@ export interface Building {
|
|
|
725
735
|
"sceatSkillLocked"?: number;
|
|
726
736
|
"scoringID"?: number;
|
|
727
737
|
"sellC1"?: number;
|
|
738
|
+
"sellFloraToken"?: number;
|
|
728
739
|
"sellLegendaryMaterial"?: number;
|
|
729
740
|
"sellLegendaryToken"?: number;
|
|
730
741
|
"server"?: number;
|
|
@@ -2301,7 +2312,7 @@ export interface PackageCategory {
|
|
|
2301
2312
|
"sortOrder"?: number;
|
|
2302
2313
|
}
|
|
2303
2314
|
|
|
2304
|
-
export interface
|
|
2315
|
+
export interface PackageCategoryCostRelation {
|
|
2305
2316
|
"categoryID": number;
|
|
2306
2317
|
"crossplayID": number;
|
|
2307
2318
|
"currencyID"?: number;
|
|
@@ -2375,6 +2386,7 @@ export interface Package {
|
|
|
2375
2386
|
"addEpicResin"?: number;
|
|
2376
2387
|
"addEssenceBoosterKey"?: number;
|
|
2377
2388
|
"addFatKingToken"?: number;
|
|
2389
|
+
"addFloraToken"?: number;
|
|
2378
2390
|
"addFurSkinnerBoosterKey"?: number;
|
|
2379
2391
|
"addFusionCurrency"?: number;
|
|
2380
2392
|
"addGenXP15000"?: number;
|
|
@@ -3110,7 +3122,6 @@ export interface SceatSkill {
|
|
|
3110
3122
|
"requiredBuildings": number | string;
|
|
3111
3123
|
"requiredBuildingsCondition"?: string;
|
|
3112
3124
|
"requiredLegendLevel": number;
|
|
3113
|
-
"requiredSkillID"?: number;
|
|
3114
3125
|
"requiredSkillIDs"?: number | string;
|
|
3115
3126
|
"skillGroupID": number;
|
|
3116
3127
|
"skillID": number;
|
|
@@ -3471,6 +3482,7 @@ export interface Townsfolk {
|
|
|
3471
3482
|
export interface Unit {
|
|
3472
3483
|
"allowedForNpcAttackInKingdom"?: number | string;
|
|
3473
3484
|
"allowedToAttack"?: string;
|
|
3485
|
+
"allowedToDefend"?: number;
|
|
3474
3486
|
"allowedToTravel"?: string;
|
|
3475
3487
|
"amountPerWave"?: number;
|
|
3476
3488
|
"attackscreenBuyable"?: number;
|
package/typings/images.d.ts
CHANGED
|
@@ -394,6 +394,7 @@ export interface Images {
|
|
|
394
394
|
"Bg_AllianceBattleGround_210_402": ImageData;
|
|
395
395
|
"Bg_AllianceBattleGround_610_210": ImageData;
|
|
396
396
|
"Bg_BuildingDistrict_FreeSlot": ImageData;
|
|
397
|
+
"Bg_BuildingDistrict_GardenSlot": ImageData;
|
|
397
398
|
"BossDragonDungeon_BG_Volcano": ImageData;
|
|
398
399
|
"BossDragonDungeon_Left_Volcano": ImageData;
|
|
399
400
|
"BossDragonDungeon_Middle_Volcano": ImageData;
|
|
@@ -955,12 +956,6 @@ export interface Images {
|
|
|
955
956
|
"Deco_Building_Cage1": ImageData;
|
|
956
957
|
"Deco_Building_Cage2": ImageData;
|
|
957
958
|
"Deco_Building_CarnivalDecoWithEffect": ImageData;
|
|
958
|
-
"Deco_Building_CarnivorousPlantT1": ImageData;
|
|
959
|
-
"Deco_Building_CarnivorousPlantT2": ImageData;
|
|
960
|
-
"Deco_Building_CarnivorousPlantT3": ImageData;
|
|
961
|
-
"Deco_Building_CarnivorousPlantT4Green": ImageData;
|
|
962
|
-
"Deco_Building_CarnivorousPlantT4Purple": ImageData;
|
|
963
|
-
"Deco_Building_CarnivorousPlantT4Red": ImageData;
|
|
964
959
|
"Deco_Building_CarriageDistrictDeco": ImageData;
|
|
965
960
|
"Deco_Building_Carriagegood": ImageData;
|
|
966
961
|
"Deco_Building_CelebrationOfSpring": ImageData;
|
|
@@ -986,6 +981,10 @@ export interface Images {
|
|
|
986
981
|
"Deco_Building_CrowsCrypt": ImageData;
|
|
987
982
|
"Deco_Building_CrystalFountain": ImageData;
|
|
988
983
|
"Deco_Building_CrystalWaterfall": ImageData;
|
|
984
|
+
"Deco_Building_CustomBigTree": ImageData;
|
|
985
|
+
"Deco_Building_CustomFlowers": ImageData;
|
|
986
|
+
"Deco_Building_CustomShelter": ImageData;
|
|
987
|
+
"Deco_Building_CustomSmallTree": ImageData;
|
|
989
988
|
"Deco_Building_CyberMondday22": ImageData;
|
|
990
989
|
"Deco_Building_DancingKnight": ImageData;
|
|
991
990
|
"Deco_Building_DarkRoomHalloween": ImageData;
|
|
@@ -1012,10 +1011,13 @@ export interface Images {
|
|
|
1012
1011
|
"Deco_Building_EternalBlossoms": ImageData;
|
|
1013
1012
|
"Deco_Building_EternityGarden": ImageData;
|
|
1014
1013
|
"Deco_Building_ExaltedGreenLavaShrineofDuality": ImageData;
|
|
1014
|
+
"Deco_Building_ExaltedGreenOktoberfestGarden": ImageData;
|
|
1015
1015
|
"Deco_Building_ExaltedGreenWaterShrineofDuality": ImageData;
|
|
1016
1016
|
"Deco_Building_ExaltedPurpleLavaShrineofDuality": ImageData;
|
|
1017
|
+
"Deco_Building_ExaltedPurpleOktoberfestGarden": ImageData;
|
|
1017
1018
|
"Deco_Building_ExaltedPurpleWaterShrineofDuality": ImageData;
|
|
1018
1019
|
"Deco_Building_ExaltedRedLavaShrineofDuality": ImageData;
|
|
1020
|
+
"Deco_Building_ExaltedRedOktoberfestGarden": ImageData;
|
|
1019
1021
|
"Deco_Building_Excalibur": ImageData;
|
|
1020
1022
|
"Deco_Building_Fairground": ImageData;
|
|
1021
1023
|
"Deco_Building_FalconRecolour": ImageData;
|
|
@@ -1110,6 +1112,7 @@ export interface Images {
|
|
|
1110
1112
|
"Deco_Building_NobilityGarden": ImageData;
|
|
1111
1113
|
"Deco_Building_NomadHorseStatue": ImageData;
|
|
1112
1114
|
"Deco_Building_NutcrackersGrotto": ImageData;
|
|
1115
|
+
"Deco_Building_OktoberfestFair": ImageData;
|
|
1113
1116
|
"Deco_Building_OktoberfestForestPond": ImageData;
|
|
1114
1117
|
"Deco_Building_OktoberfestStrength": ImageData;
|
|
1115
1118
|
"Deco_Building_OnceAndFutureKings": ImageData;
|
|
@@ -1255,6 +1258,12 @@ export interface Images {
|
|
|
1255
1258
|
"Deco_Building_anniversaryParty": ImageData;
|
|
1256
1259
|
"Deco_Building_anniversaryPartyEnd": ImageData;
|
|
1257
1260
|
"Deco_Building_blueSalesFountain": ImageData;
|
|
1261
|
+
"Deco_Building_carnivorousPlantT1": ImageData;
|
|
1262
|
+
"Deco_Building_carnivorousPlantT2": ImageData;
|
|
1263
|
+
"Deco_Building_carnivorousPlantT3": ImageData;
|
|
1264
|
+
"Deco_Building_carnivorousPlantT4Green": ImageData;
|
|
1265
|
+
"Deco_Building_carnivorousPlantT4Purple": ImageData;
|
|
1266
|
+
"Deco_Building_carnivorousPlantT4Red": ImageData;
|
|
1258
1267
|
"Deco_Building_chaliceOfTheHattrickHero": ImageData;
|
|
1259
1268
|
"Deco_Building_chineseTiger": ImageData;
|
|
1260
1269
|
"Deco_Building_christmasCarousel": ImageData;
|
|
@@ -1817,12 +1826,14 @@ export interface Images {
|
|
|
1817
1826
|
"Eventunit_Unit_AuxiliaryMelee": ImageData;
|
|
1818
1827
|
"Eventunit_Unit_AuxiliaryRange": ImageData;
|
|
1819
1828
|
"Eventunit_Unit_Axeviking": ImageData;
|
|
1829
|
+
"Eventunit_Unit_BavarianBrewer": ImageData;
|
|
1820
1830
|
"Eventunit_Unit_BerimondRewardMelee": ImageData;
|
|
1821
1831
|
"Eventunit_Unit_BerimondRewardRange": ImageData;
|
|
1822
1832
|
"Eventunit_Unit_Bluemelee": ImageData;
|
|
1823
1833
|
"Eventunit_Unit_Bluerange": ImageData;
|
|
1824
1834
|
"Eventunit_Unit_Bonerattler": ImageData;
|
|
1825
1835
|
"Eventunit_Unit_Bowviking": ImageData;
|
|
1836
|
+
"Eventunit_Unit_CaskMarksmann": ImageData;
|
|
1826
1837
|
"Eventunit_Unit_Conan": ImageData;
|
|
1827
1838
|
"Eventunit_Unit_CorruptedAssassin": ImageData;
|
|
1828
1839
|
"Eventunit_Unit_CorruptedCrossbowman": ImageData;
|
|
@@ -1884,6 +1895,7 @@ export interface Images {
|
|
|
1884
1895
|
"Eventunit_Unit_Pikeman": ImageData;
|
|
1885
1896
|
"Eventunit_Unit_Piratebowman": ImageData;
|
|
1886
1897
|
"Eventunit_Unit_Piratespeerman": ImageData;
|
|
1898
|
+
"Eventunit_Unit_PretzelGuardian": ImageData;
|
|
1887
1899
|
"Eventunit_Unit_Rankrewardmelee": ImageData;
|
|
1888
1900
|
"Eventunit_Unit_RankrewardmeleeUSA": ImageData;
|
|
1889
1901
|
"Eventunit_Unit_Rankrewardrange": ImageData;
|
|
@@ -1919,6 +1931,7 @@ export interface Images {
|
|
|
1919
1931
|
"Eventunit_Unit_Skeletalscytheman": ImageData;
|
|
1920
1932
|
"Eventunit_Unit_Slingshotmarksman": ImageData;
|
|
1921
1933
|
"Eventunit_Unit_Spearthrower": ImageData;
|
|
1934
|
+
"Eventunit_Unit_SteinSmasher": ImageData;
|
|
1922
1935
|
"Eventunit_Unit_StpatricksDefenderMelee": ImageData;
|
|
1923
1936
|
"Eventunit_Unit_StpatricksDefenderRange": ImageData;
|
|
1924
1937
|
"Eventunit_Unit_SummerHuntress": ImageData;
|
|
@@ -2124,6 +2137,7 @@ export interface Images {
|
|
|
2124
2137
|
"FatKing_Idle": ImageData;
|
|
2125
2138
|
"FatKing_Shoulder_left": ImageData;
|
|
2126
2139
|
"FlamesLayer": ImageData;
|
|
2140
|
+
"FoodDistrict_Building_Level1": ImageData;
|
|
2127
2141
|
"Forge_Building_Level1": ImageData;
|
|
2128
2142
|
"FriendshipMonument_Surroundings": ImageData;
|
|
2129
2143
|
"General_Alien_Arm_Left": ImageData;
|
|
@@ -3873,8 +3887,14 @@ export interface Images {
|
|
|
3873
3887
|
"SceatSkill_66_xl": ImageData;
|
|
3874
3888
|
"SceatSkill_67": ImageData;
|
|
3875
3889
|
"SceatSkill_67_xl": ImageData;
|
|
3890
|
+
"SceatSkill_68": ImageData;
|
|
3891
|
+
"SceatSkill_68_xl": ImageData;
|
|
3892
|
+
"SceatSkill_69": ImageData;
|
|
3893
|
+
"SceatSkill_69_xl": ImageData;
|
|
3876
3894
|
"SceatSkill_6_xl": ImageData;
|
|
3877
3895
|
"SceatSkill_7": ImageData;
|
|
3896
|
+
"SceatSkill_70": ImageData;
|
|
3897
|
+
"SceatSkill_70_xl": ImageData;
|
|
3878
3898
|
"SceatSkill_7_xl": ImageData;
|
|
3879
3899
|
"SceatSkill_8": ImageData;
|
|
3880
3900
|
"SceatSkill_8_xl": ImageData;
|
|
@@ -4096,6 +4116,7 @@ export interface Images {
|
|
|
4096
4116
|
"Teaser_OffersHub_Big_39": ImageData;
|
|
4097
4117
|
"Teaser_OffersHub_Big_4": ImageData;
|
|
4098
4118
|
"Teaser_OffersHub_Big_40": ImageData;
|
|
4119
|
+
"Teaser_OffersHub_Big_41": ImageData;
|
|
4099
4120
|
"Teaser_OffersHub_Big_5": ImageData;
|
|
4100
4121
|
"Teaser_OffersHub_Big_6": ImageData;
|
|
4101
4122
|
"Teaser_OffersHub_Big_7": ImageData;
|
|
@@ -4108,6 +4129,7 @@ export interface Images {
|
|
|
4108
4129
|
"Teaser_OffersHub_Big_WhaleChest_13": ImageData;
|
|
4109
4130
|
"Teaser_OffersHub_Big_WhaleChest_14": ImageData;
|
|
4110
4131
|
"Teaser_OffersHub_Big_WhaleChest_15": ImageData;
|
|
4132
|
+
"Teaser_OffersHub_Big_WhaleChest_16": ImageData;
|
|
4111
4133
|
"Teaser_OffersHub_Big_WhaleChest_5": ImageData;
|
|
4112
4134
|
"Teaser_OffersHub_Medium_1": ImageData;
|
|
4113
4135
|
"Teaser_OffersHub_Medium_10": ImageData;
|
|
@@ -4472,14 +4494,20 @@ export interface Images {
|
|
|
4472
4494
|
"giantsForestWoodcutter": ImageData;
|
|
4473
4495
|
"giantsForestlumbermill": ImageData;
|
|
4474
4496
|
"global_primetime_background_Anniversary2024": ImageData;
|
|
4497
|
+
"global_primetime_background_Halloween2024": ImageData;
|
|
4498
|
+
"global_primetime_background_Oktoberfest2024": ImageData;
|
|
4475
4499
|
"global_primetime_background_generic1": ImageData;
|
|
4476
4500
|
"global_primetime_background_generic2": ImageData;
|
|
4477
4501
|
"global_primetime_background_generic3": ImageData;
|
|
4478
4502
|
"global_primetime_hub_teaser_Anniversary2024": ImageData;
|
|
4503
|
+
"global_primetime_hub_teaser_Halloween2024": ImageData;
|
|
4504
|
+
"global_primetime_hub_teaser_Oktoberfest2024": ImageData;
|
|
4479
4505
|
"global_primetime_hub_teaser_generic1": ImageData;
|
|
4480
4506
|
"global_primetime_hub_teaser_generic2": ImageData;
|
|
4481
4507
|
"global_primetime_hub_teaser_generic3": ImageData;
|
|
4482
4508
|
"global_primetime_teaser_Anniversary2024": ImageData;
|
|
4509
|
+
"global_primetime_teaser_Halloween2024": ImageData;
|
|
4510
|
+
"global_primetime_teaser_Oktoberfest2024": ImageData;
|
|
4483
4511
|
"global_primetime_teaser_generic1": ImageData;
|
|
4484
4512
|
"global_primetime_teaser_generic2": ImageData;
|
|
4485
4513
|
"global_primetime_teaser_generic3": ImageData;
|
|
@@ -4796,6 +4824,20 @@ export interface Images {
|
|
|
4796
4824
|
"icon_ci_effect_venicecarnival": ImageData;
|
|
4797
4825
|
"icon_ci_effect_winter": ImageData;
|
|
4798
4826
|
"icon_ci_effect_wood": ImageData;
|
|
4827
|
+
"icon_ci_effectamount_1": ImageData;
|
|
4828
|
+
"icon_ci_effectamount_1_small": ImageData;
|
|
4829
|
+
"icon_ci_effectamount_1_xl": ImageData;
|
|
4830
|
+
"icon_ci_effectamount_2": ImageData;
|
|
4831
|
+
"icon_ci_effectamount_2_small": ImageData;
|
|
4832
|
+
"icon_ci_effectamount_2_xl": ImageData;
|
|
4833
|
+
"icon_ci_effectamount_3": ImageData;
|
|
4834
|
+
"icon_ci_effectamount_3_small": ImageData;
|
|
4835
|
+
"icon_ci_effectamount_3_xl": ImageData;
|
|
4836
|
+
"icon_ci_filter_rareness_0_ds": ImageData;
|
|
4837
|
+
"icon_ci_filter_rareness_1_ds": ImageData;
|
|
4838
|
+
"icon_ci_filter_rareness_2_ds": ImageData;
|
|
4839
|
+
"icon_ci_filter_rareness_3_ds": ImageData;
|
|
4840
|
+
"icon_ci_filter_rareness_4_ds": ImageData;
|
|
4799
4841
|
"icon_ci_primary_0": ImageData;
|
|
4800
4842
|
"icon_ci_primary_1": ImageData;
|
|
4801
4843
|
"icon_ci_primary_2": ImageData;
|
|
@@ -5143,6 +5185,9 @@ export interface Images {
|
|
|
5143
5185
|
"icon_currency_FatKingToken_medium": ImageData;
|
|
5144
5186
|
"icon_currency_FatKingToken_medium_ds": ImageData;
|
|
5145
5187
|
"icon_currency_FatKingToken_small": ImageData;
|
|
5188
|
+
"icon_currency_FloraToken": ImageData;
|
|
5189
|
+
"icon_currency_FloraToken_big": ImageData;
|
|
5190
|
+
"icon_currency_FloraToken_medium": ImageData;
|
|
5146
5191
|
"icon_currency_FurSkinnerBoosterKey": ImageData;
|
|
5147
5192
|
"icon_currency_FurSkinnerBoosterKey_big": ImageData;
|
|
5148
5193
|
"icon_currency_FurSkinnerBoosterKey_medium": ImageData;
|
|
@@ -6595,6 +6640,7 @@ export interface Images {
|
|
|
6595
6640
|
"icon_middleFlank_flat_dark": ImageData;
|
|
6596
6641
|
"icon_might_points": ImageData;
|
|
6597
6642
|
"icon_mightpoints_building_small": ImageData;
|
|
6643
|
+
"icon_mightpoints_cumulative": ImageData;
|
|
6598
6644
|
"icon_monthly_campaign_round": ImageData;
|
|
6599
6645
|
"icon_moral_sort_down": ImageData;
|
|
6600
6646
|
"icon_moral_sort_up": ImageData;
|
|
@@ -7067,6 +7113,7 @@ export interface Images {
|
|
|
7067
7113
|
"icon_traveloverview_tab": ImageData;
|
|
7068
7114
|
"icon_travelspee": ImageData;
|
|
7069
7115
|
"icon_travelspeed": ImageData;
|
|
7116
|
+
"icon_traveltime_back": ImageData;
|
|
7070
7117
|
"icon_unit_militia": ImageData;
|
|
7071
7118
|
"icon_unit_peasant": ImageData;
|
|
7072
7119
|
"icon_usa": ImageData;
|
|
@@ -7767,6 +7814,8 @@ export interface Images {
|
|
|
7767
7814
|
"nomadDrillGround": ImageData;
|
|
7768
7815
|
"nomadGuardhouse": ImageData;
|
|
7769
7816
|
"nomadTavern": ImageData;
|
|
7817
|
+
"octoberfestGuardhouse": ImageData;
|
|
7818
|
+
"octoberfestHunter": ImageData;
|
|
7770
7819
|
"octoberfestMarket": ImageData;
|
|
7771
7820
|
"octoberfestTower": ImageData;
|
|
7772
7821
|
"partyGuardhouse": ImageData;
|