From 9071b352b12098cd1a59872969aef7fd1740edf7 Mon Sep 17 00:00:00 2001 From: linquan <349589071@qq.com> Date: Wed, 20 Aug 2025 16:49:47 +0800 Subject: [PATCH] =?UTF-8?q?=E6=88=98=E4=BB=A4=EF=BC=8C=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- refreshIp.js | 48 + .../config/AchievementsConfigCategory.json | 8 +- src/api/config/AllItemConfigCategory.json | 309 ++- src/api/config/AttributesConfigCategory.json | 2 +- src/api/config/BattlePassConfigCategory.json | 1964 +++++++++++++++++ .../config/BattlePassLvConfigCategory.json | 1922 ++++++++++++++++ .../config/BattlePassTaskConfigCategory.json | 402 ++++ src/api/config/BusinessManConfigCategory.json | 22 + .../CommonRankingListConfigCategory.json | 520 +++++ src/api/config/EquipmentConfigCategory.json | 10 +- .../config/ExpeditionBuffConfigCategory.json | 62 + .../config/ExpeditionMapConfigCategory.json | 69 + .../ExpeditionMapGroupConfigCategory.json | 38 + .../ExpeditionMonsterConfigCategory.json | 8 + .../ExpeditionMonsterStageConfigCategory.json | 38 + src/api/config/FeastTextConfigCategory.json | 3 +- src/api/config/FoodConfigCategory.json | 36 + .../config/FunctionItemConfigCategory.json | 8 + .../config/GoodsForSaleConfigCategory.json | 24 +- src/api/config/HelpConfigCategory.json | 26 + .../config/ImmortalTreeLvConfigCategory.json | 440 +++- .../config/LanternWordsConfigCategory.json | 1 + src/api/config/MailConfigCategory.json | 50 + src/api/config/MainButtonConfigCategory.json | 11 + src/api/config/MartialRankConfigCategory.json | 18 +- src/api/config/MonsterAiConfigCategory.json | 27 + src/api/config/MonsterConfigCategory.json | 264 +++ .../config/MonsterGroupConfigCategory.json | 21 + src/api/config/OrderConfigCategory.json | 8 +- src/api/config/RechargeConfigCategory.json | 18 + src/api/config/RegionConfigCategory.json | 23 + .../RegionVillagerGroupConfigCategory.json | 816 +++---- ...ReputationShopItemGroupConfigCategory.json | 2 +- src/api/config/RewardGroupConfigCategory.json | 296 ++- src/api/config/SkillBuffConfigCategory.json | 569 ++++- src/api/config/SkillBulletConfigCategory.json | 409 +++- src/api/config/SkillConfigCategory.json | 52 +- src/api/config/SkillEffectConfigCategory.json | 133 ++ src/api/config/StructureConfigCategory.json | 2 + .../StructureStrengthenConfigCategory.json | 6 +- src/api/config/SynthesisConfigCategory.json | 4 +- src/api/config/TextConfigCategory.json | 42 +- src/api/config/TitleConfigCategory.json | 56 + .../config/WorldParametersConfigCategory.json | 8 +- src/views/gameRole/online/index.vue | 111 +- src/views/serverBattlePass/update/index.vue | 51 +- 46 files changed, 8290 insertions(+), 667 deletions(-) create mode 100644 refreshIp.js create mode 100644 src/api/config/BattlePassLvConfigCategory.json create mode 100644 src/api/config/BattlePassTaskConfigCategory.json create mode 100644 src/api/config/ExpeditionBuffConfigCategory.json create mode 100644 src/api/config/ExpeditionMapConfigCategory.json create mode 100644 src/api/config/ExpeditionMapGroupConfigCategory.json create mode 100644 src/api/config/ExpeditionMonsterConfigCategory.json create mode 100644 src/api/config/ExpeditionMonsterStageConfigCategory.json create mode 100644 src/api/config/LanternWordsConfigCategory.json diff --git a/refreshIp.js b/refreshIp.js new file mode 100644 index 0000000..29565de --- /dev/null +++ b/refreshIp.js @@ -0,0 +1,48 @@ +var axios = require('axios'); +var IP = ''; +let main = function () { + const url = 'http://httpbin.org/ip'; + axios({ method: 'get', url: url }).then((response) => { + let data = response.data; + console.log(new Date().toLocaleString(), data); + if (IP !== data.origin) { + if (IP !== '') { + deleteIp(IP); + } + updateIp(data.origin); + IP = data.origin; + } + }); +}; + +let updateIp = function (ip) { + let url1 = 'http://111.231.140.87:4111/frontApi/game/whiteList/update?ip=' + ip; + let url2 = 'http://175.178.181.179:4111/frontApi/game/whiteList/update?ip=' + ip; + let url = 'http://192.168.2.100:4111/frontApi/game/whiteList/update?ip=' + ip; + post(url1); + post(url2); +}; + +let deleteIp = function (ip) { + let url1 = 'http://111.231.140.87:4111/frontApi/game/whiteList/del?ip=' + ip; + let url2 = 'http://175.178.181.179:4111/frontApi/game/whiteList/del?ip=' + ip; + let url = 'http://192.168.2.100:4111/frontApi/game/whiteList/del?ip=' + ip; + post(url1); + post(url2); +}; + +let post = function (url) { + axios + .post(url) + .then((response) => { + console.log(new Date().toLocaleString(), response.data); + }) + .catch((error) => { + console.error(new Date().toLocaleString(), 'Error:', error.response.status); // Error: 404 + }); +}; + +main(); +setInterval(function () { + main(); +}, 60 * 60 * 1000); diff --git a/src/api/config/AchievementsConfigCategory.json b/src/api/config/AchievementsConfigCategory.json index fdd90a5..bbded46 100644 --- a/src/api/config/AchievementsConfigCategory.json +++ b/src/api/config/AchievementsConfigCategory.json @@ -700,8 +700,8 @@ "AchievementsName": "人生七十古来稀", "AchievementsType": 4, "IsProgress": true, - "Describe": "累计{0}个村民寿命达到{3}岁", - "RequirementTpye": 2, + "Describe": "累计{0}个村民年龄达到{3}岁", + "RequirementTpye": 5, "TargetType": [ 20, 70 @@ -876,8 +876,8 @@ "AchievementsName": "鹤寿盈门映桃源", "AchievementsType": 5, "IsProgress": true, - "Describe": "累计{0}个村民寿命达到{3}岁", - "RequirementTpye": 2, + "Describe": "累计{0}个村民年龄达到{3}岁", + "RequirementTpye": 5, "TargetType": [ 50, 70 diff --git a/src/api/config/AllItemConfigCategory.json b/src/api/config/AllItemConfigCategory.json index d0768fb..49ff9c5 100644 --- a/src/api/config/AllItemConfigCategory.json +++ b/src/api/config/AllItemConfigCategory.json @@ -4231,6 +4231,29 @@ "GetMethod": "来源:材料合成", "Importantdata": false }, + { + "Id": 862, + "Name": "重铸石", + "DetailsPageName": "重铸石", + "Type": 1, + "RelatedId": 0, + "StockType": 2, + "StorageType": 1, + "Transport": false, + "BackpackTransfer": false, + "SuperpositionMax": 99999999, + "HasLimit": -1, + "AbleThrow": true, + "Gift": false, + "Favorability": 0, + "Track": false, + "Grade": 1, + "TreasureBowl": false, + "Icon": "Item_Icon_862", + "Description": "用于重铸高级装备的属性", + "GetMethod": "", + "Importantdata": false + }, { "Id": 863, "Name": "喜礼", @@ -7264,7 +7287,7 @@ "TreasureBowl": false, "Icon": "Item_Icon_2052", "Description": "以桃谷山间采撷的饱满浆果,辅以秘制酒曲发酵而成。酒色清亮如宝石,果香馥郁扑鼻。", - "GetMethod": "来源:食物制作", + "GetMethod": "来源:地窖酿制", "Importantdata": false }, { @@ -7287,7 +7310,7 @@ "TreasureBowl": false, "Icon": "Item_Icon_2053", "Description": "精选桃源糯米,辅以秘制酒曲发酵而成。酒液澄澈微黄,糯香清雅。入口绵软甘润,余味悠长。", - "GetMethod": "来源:食物制作", + "GetMethod": "来源:地窖酿制", "Importantdata": false }, { @@ -7313,6 +7336,98 @@ "GetMethod": "来源:食物制作", "Importantdata": false }, + { + "Id": 2055, + "Name": "渔溪蟹丸", + "DetailsPageName": "渔溪蟹丸", + "Type": 2, + "RelatedId": 55, + "StockType": 1, + "StorageType": 1, + "Transport": true, + "BackpackTransfer": false, + "SuperpositionMax": 99999999, + "HasLimit": -1, + "AbleThrow": true, + "Gift": true, + "Favorability": 80, + "Track": false, + "Grade": 1, + "TreasureBowl": false, + "Icon": "Item_Icon_2055", + "Description": "鲜蟹制丸,弹嫩爆汁,清甜中透一丝姜辛,满口河鲜香。", + "GetMethod": "来源:渔溪村联姻回礼", + "Importantdata": false + }, + { + "Id": 2056, + "Name": "赤丘老窖", + "DetailsPageName": "赤丘老窖", + "Type": 2, + "RelatedId": 56, + "StockType": 1, + "StorageType": 1, + "Transport": true, + "BackpackTransfer": false, + "SuperpositionMax": 99999999, + "HasLimit": -1, + "AbleThrow": true, + "Gift": true, + "Favorability": 80, + "Track": false, + "Grade": 1, + "TreasureBowl": false, + "Icon": "Item_Icon_2056", + "Description": "十年陈酿,醇厚如蜜,入喉暖如夕阳,余味悠长。", + "GetMethod": "来源:赤丘山村联姻回礼", + "Importantdata": false + }, + { + "Id": 2057, + "Name": "太姥肉羹", + "DetailsPageName": "太姥肉羹", + "Type": 2, + "RelatedId": 57, + "StockType": 1, + "StorageType": 1, + "Transport": true, + "BackpackTransfer": false, + "SuperpositionMax": 99999999, + "HasLimit": -1, + "AbleThrow": true, + "Gift": true, + "Favorability": 80, + "Track": false, + "Grade": 1, + "TreasureBowl": false, + "Icon": "Item_Icon_2057", + "Description": "肉烂羹滑,菌笋提鲜,醋香胡椒点睛,暖身落胃。", + "GetMethod": "来源:太姥村联姻回礼", + "Importantdata": false + }, + { + "Id": 2058, + "Name": "青山肥鹅蒸", + "DetailsPageName": "青山肥鹅蒸", + "Type": 2, + "RelatedId": 58, + "StockType": 1, + "StorageType": 1, + "Transport": true, + "BackpackTransfer": false, + "SuperpositionMax": 99999999, + "HasLimit": -1, + "AbleThrow": true, + "Gift": true, + "Favorability": 80, + "Track": false, + "Grade": 1, + "TreasureBowl": false, + "Icon": "Item_Icon_2058", + "Description": "鹅油浸糯,栗香四溢,荷叶清香裹着肥嫩,入口即化。", + "GetMethod": "来源:青山镇联姻回礼", + "Importantdata": false + }, { "Id": 2302, "Name": "野菜汤", @@ -11564,7 +11679,7 @@ "Grade": 1, "TreasureBowl": false, "Icon": "Item_Icon_7077", - "Description": "配方图纸,使用后可解锁制作果酒的配方", + "Description": "配方图纸,使用后可解锁地窖酿制果酒的配方", "GetMethod": "来源:渔溪村声望商人", "Importantdata": false }, @@ -11587,7 +11702,7 @@ "Grade": 1, "TreasureBowl": false, "Icon": "Item_Icon_7078", - "Description": "配方图纸,使用后可解锁制作杜康的配方", + "Description": "配方图纸,使用后可解锁地窖酿制杜康的配方", "GetMethod": "来源:神秘商人", "Importantdata": false }, @@ -11609,7 +11724,7 @@ "Track": false, "Grade": 2, "TreasureBowl": false, - "Icon": "Item_Icon_7079", + "Icon": "Item_Icon_7077", "Description": "精品炭烤鱼干食谱,使用后学会制作精品炭烤鱼干", "GetMethod": "来源:商城", "Importantdata": false @@ -14351,6 +14466,29 @@ "GetMethod": "来源:参加喜宴的宾客送来的礼物", "Importantdata": false }, + { + "Id": 7325, + "Name": "乐花", + "DetailsPageName": "乐花", + "Type": 7, + "RelatedId": 5003, + "StockType": 8, + "StorageType": 1, + "Transport": false, + "BackpackTransfer": false, + "SuperpositionMax": 99999999, + "HasLimit": -1, + "AbleThrow": true, + "Gift": false, + "Favorability": 0, + "Track": false, + "Grade": 3, + "TreasureBowl": false, + "Icon": "Item_Icon_7325", + "Description": "快乐的花朵,可用于不死树觉醒后的肥料", + "GetMethod": "来源:月卡每日奖励", + "Importantdata": false + }, { "Id": 7401, "Name": "大豆增产·1级", @@ -20745,6 +20883,98 @@ "GetMethod": "来源:成就-桃源宴宴庆良缘", "Importantdata": false }, + { + "Id": 140014, + "Name": "乐土圣君", + "DetailsPageName": "称号:乐土圣君", + "Type": 31, + "RelatedId": 0, + "StockType": 9, + "StorageType": 0, + "Transport": false, + "BackpackTransfer": false, + "SuperpositionMax": 1, + "HasLimit": 1, + "AbleThrow": false, + "Gift": false, + "Favorability": 0, + "Track": false, + "Grade": 1, + "TreasureBowl": false, + "Icon": "Item_Icon_140005", + "Description": "获得后可解锁称号:乐土圣君", + "GetMethod": "来源:最幸福桃源总榜第一名", + "Importantdata": false + }, + { + "Id": 140015, + "Name": "霓裳君", + "DetailsPageName": "称号:霓裳君", + "Type": 31, + "RelatedId": 0, + "StockType": 9, + "StorageType": 0, + "Transport": false, + "BackpackTransfer": false, + "SuperpositionMax": 1, + "HasLimit": 1, + "AbleThrow": false, + "Gift": false, + "Favorability": 0, + "Track": false, + "Grade": 1, + "TreasureBowl": false, + "Icon": "Item_Icon_140004", + "Description": "获得后可解锁称号:霓裳君", + "GetMethod": "来源:最幸福桃源锦衣榜第一名", + "Importantdata": false + }, + { + "Id": 140016, + "Name": "鼎中君", + "DetailsPageName": "称号:鼎中君", + "Type": 31, + "RelatedId": 0, + "StockType": 9, + "StorageType": 0, + "Transport": false, + "BackpackTransfer": false, + "SuperpositionMax": 1, + "HasLimit": 1, + "AbleThrow": false, + "Gift": false, + "Favorability": 0, + "Track": false, + "Grade": 1, + "TreasureBowl": false, + "Icon": "Item_Icon_140004", + "Description": "获得后可解锁称号:鼎中君", + "GetMethod": "来源:最幸福桃源玉食榜第一名", + "Importantdata": false + }, + { + "Id": 140017, + "Name": "青松君", + "DetailsPageName": "称号:青松君", + "Type": 31, + "RelatedId": 0, + "StockType": 9, + "StorageType": 0, + "Transport": false, + "BackpackTransfer": false, + "SuperpositionMax": 1, + "HasLimit": 1, + "AbleThrow": false, + "Gift": false, + "Favorability": 0, + "Track": false, + "Grade": 1, + "TreasureBowl": false, + "Icon": "Item_Icon_140004", + "Description": "获得后可解锁称号:青松君", + "GetMethod": "来源:最幸福桃源松龄榜第一名", + "Importantdata": false + }, { "Id": 200000, "Name": "任务物品", @@ -23137,6 +23367,75 @@ "GetMethod": "材料合成", "Importantdata": false }, + { + "Id": 10070, + "Name": "高级-剑", + "DetailsPageName": "高级-剑", + "Type": 15, + "RelatedId": 10070, + "StockType": 4, + "StorageType": 1, + "Transport": false, + "BackpackTransfer": true, + "SuperpositionMax": 1, + "HasLimit": -1, + "AbleThrow": false, + "Gift": false, + "Favorability": 0, + "Track": false, + "Grade": 3, + "TreasureBowl": false, + "Icon": "Item_Icon_10060", + "Description": "高级剑", + "GetMethod": "", + "Importantdata": false + }, + { + "Id": 10071, + "Name": "高级-剑", + "DetailsPageName": "高级-剑", + "Type": 15, + "RelatedId": 10071, + "StockType": 4, + "StorageType": 1, + "Transport": false, + "BackpackTransfer": true, + "SuperpositionMax": 1, + "HasLimit": -1, + "AbleThrow": false, + "Gift": false, + "Favorability": 0, + "Track": false, + "Grade": 4, + "TreasureBowl": false, + "Icon": "Item_Icon_10060", + "Description": "高级剑", + "GetMethod": "", + "Importantdata": false + }, + { + "Id": 10072, + "Name": "高级-剑", + "DetailsPageName": "高级-剑", + "Type": 15, + "RelatedId": 10072, + "StockType": 4, + "StorageType": 1, + "Transport": false, + "BackpackTransfer": true, + "SuperpositionMax": 1, + "HasLimit": -1, + "AbleThrow": false, + "Gift": false, + "Favorability": 0, + "Track": false, + "Grade": 5, + "TreasureBowl": false, + "Icon": "Item_Icon_10060", + "Description": "高级剑", + "GetMethod": "", + "Importantdata": false + }, { "Id": 10100, "Name": "石锤", diff --git a/src/api/config/AttributesConfigCategory.json b/src/api/config/AttributesConfigCategory.json index 5557ff7..4605ca9 100644 --- a/src/api/config/AttributesConfigCategory.json +++ b/src/api/config/AttributesConfigCategory.json @@ -451,7 +451,7 @@ }, { "Id": 1437, - "Name": "受到伤害", + "Name": "受击伤害", "Field": "BeHurt", "IsFloat": false, "IsNumeric": false, diff --git a/src/api/config/BattlePassConfigCategory.json b/src/api/config/BattlePassConfigCategory.json index fe4e035..dfa1e97 100644 --- a/src/api/config/BattlePassConfigCategory.json +++ b/src/api/config/BattlePassConfigCategory.json @@ -3926,5 +3926,1969 @@ 7230, 140 ] + }, + { + "Id": 2001, + "PeriodId": 3, + "ItemId1": [ + 210000, + 3 + ], + "ItemId2": [ + 2044, + 3 + ], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2002, + "PeriodId": 3, + "ItemId1": [ + 210000, + 2 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2003, + "PeriodId": 3, + "ItemId1": [ + 210000, + 3 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2004, + "PeriodId": 3, + "ItemId1": [ + 210000, + 4 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2005, + "PeriodId": 3, + "ItemId1": [ + 210000, + 5 + ], + "ItemId2": [ + 2044, + 10 + ], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2006, + "PeriodId": 3, + "ItemId1": [ + 210000, + 6 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2007, + "PeriodId": 3, + "ItemId1": [ + 210000, + 7 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2008, + "PeriodId": 3, + "ItemId1": [ + 210000, + 8 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2009, + "PeriodId": 3, + "ItemId1": [ + 210000, + 9 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2010, + "PeriodId": 3, + "ItemId1": [ + 210000, + 10 + ], + "ItemId2": [ + 2044, + 20 + ], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2011, + "PeriodId": 3, + "ItemId1": [ + 210000, + 11 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2012, + "PeriodId": 3, + "ItemId1": [ + 210000, + 12 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2013, + "PeriodId": 3, + "ItemId1": [ + 210000, + 13 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2014, + "PeriodId": 3, + "ItemId1": [ + 210000, + 14 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2015, + "PeriodId": 3, + "ItemId1": [ + 210000, + 15 + ], + "ItemId2": [ + 2044, + 30 + ], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2016, + "PeriodId": 3, + "ItemId1": [ + 210000, + 16 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2017, + "PeriodId": 3, + "ItemId1": [ + 210000, + 17 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2018, + "PeriodId": 3, + "ItemId1": [ + 210000, + 18 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2019, + "PeriodId": 3, + "ItemId1": [ + 210000, + 19 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2020, + "PeriodId": 3, + "ItemId1": [ + 210000, + 20 + ], + "ItemId2": [ + 2044, + 40 + ], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2021, + "PeriodId": 3, + "ItemId1": [ + 210000, + 21 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2022, + "PeriodId": 3, + "ItemId1": [ + 210000, + 22 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2023, + "PeriodId": 3, + "ItemId1": [ + 210000, + 23 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2024, + "PeriodId": 3, + "ItemId1": [ + 210000, + 24 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2025, + "PeriodId": 3, + "ItemId1": [ + 210000, + 25 + ], + "ItemId2": [ + 2044, + 50 + ], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2026, + "PeriodId": 3, + "ItemId1": [ + 210000, + 26 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2027, + "PeriodId": 3, + "ItemId1": [ + 210000, + 27 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2028, + "PeriodId": 3, + "ItemId1": [ + 210000, + 28 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2029, + "PeriodId": 3, + "ItemId1": [ + 210000, + 29 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2030, + "PeriodId": 3, + "ItemId1": [ + 210000, + 30 + ], + "ItemId2": [ + 2044, + 60 + ], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2031, + "PeriodId": 3, + "ItemId1": [ + 210000, + 31 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2032, + "PeriodId": 3, + "ItemId1": [ + 210000, + 32 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2033, + "PeriodId": 3, + "ItemId1": [ + 210000, + 33 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2034, + "PeriodId": 3, + "ItemId1": [ + 210000, + 34 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2035, + "PeriodId": 3, + "ItemId1": [ + 210000, + 35 + ], + "ItemId2": [ + 2044, + 70 + ], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2036, + "PeriodId": 3, + "ItemId1": [ + 210000, + 36 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2037, + "PeriodId": 3, + "ItemId1": [ + 210000, + 37 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2038, + "PeriodId": 3, + "ItemId1": [ + 210000, + 38 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2039, + "PeriodId": 3, + "ItemId1": [ + 210000, + 39 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2040, + "PeriodId": 3, + "ItemId1": [ + 210000, + 40 + ], + "ItemId2": [ + 2044, + 80 + ], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2041, + "PeriodId": 3, + "ItemId1": [ + 210000, + 41 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2042, + "PeriodId": 3, + "ItemId1": [ + 210000, + 42 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2043, + "PeriodId": 3, + "ItemId1": [ + 210000, + 43 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2044, + "PeriodId": 3, + "ItemId1": [ + 210000, + 44 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2045, + "PeriodId": 3, + "ItemId1": [ + 210000, + 45 + ], + "ItemId2": [ + 2044, + 90 + ], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2046, + "PeriodId": 3, + "ItemId1": [ + 210000, + 46 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2047, + "PeriodId": 3, + "ItemId1": [ + 210000, + 47 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2048, + "PeriodId": 3, + "ItemId1": [ + 210000, + 48 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2049, + "PeriodId": 3, + "ItemId1": [ + 210000, + 49 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2050, + "PeriodId": 3, + "ItemId1": [ + 210000, + 50 + ], + "ItemId2": [ + 2044, + 100 + ], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2051, + "PeriodId": 3, + "ItemId1": [ + 210000, + 51 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2052, + "PeriodId": 3, + "ItemId1": [ + 210000, + 52 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2053, + "PeriodId": 3, + "ItemId1": [ + 210000, + 53 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2054, + "PeriodId": 3, + "ItemId1": [ + 210000, + 54 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2055, + "PeriodId": 3, + "ItemId1": [ + 210000, + 55 + ], + "ItemId2": [ + 2044, + 110 + ], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2056, + "PeriodId": 3, + "ItemId1": [ + 210000, + 56 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2057, + "PeriodId": 3, + "ItemId1": [ + 210000, + 57 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2058, + "PeriodId": 3, + "ItemId1": [ + 210000, + 58 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2059, + "PeriodId": 3, + "ItemId1": [ + 210000, + 59 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2060, + "PeriodId": 3, + "ItemId1": [ + 210000, + 60 + ], + "ItemId2": [ + 2044, + 120 + ], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2061, + "PeriodId": 3, + "ItemId1": [ + 210000, + 61 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2062, + "PeriodId": 3, + "ItemId1": [ + 210000, + 62 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2063, + "PeriodId": 3, + "ItemId1": [ + 210000, + 63 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2064, + "PeriodId": 3, + "ItemId1": [ + 210000, + 64 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2065, + "PeriodId": 3, + "ItemId1": [ + 210000, + 65 + ], + "ItemId2": [ + 2044, + 130 + ], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2066, + "PeriodId": 3, + "ItemId1": [ + 210000, + 66 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2067, + "PeriodId": 3, + "ItemId1": [ + 210000, + 67 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2068, + "PeriodId": 3, + "ItemId1": [ + 210000, + 68 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2069, + "PeriodId": 3, + "ItemId1": [ + 210000, + 69 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2070, + "PeriodId": 3, + "ItemId1": [ + 210000, + 70 + ], + "ItemId2": [ + 2044, + 140 + ], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2071, + "PeriodId": 3, + "ItemId1": [ + 210000, + 71 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2072, + "PeriodId": 3, + "ItemId1": [ + 210000, + 72 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2073, + "PeriodId": 3, + "ItemId1": [ + 210000, + 73 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2074, + "PeriodId": 3, + "ItemId1": [ + 210000, + 74 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2075, + "PeriodId": 3, + "ItemId1": [ + 210000, + 75 + ], + "ItemId2": [ + 2044, + 150 + ], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2076, + "PeriodId": 3, + "ItemId1": [ + 210000, + 76 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2077, + "PeriodId": 3, + "ItemId1": [ + 210000, + 77 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2078, + "PeriodId": 3, + "ItemId1": [ + 210000, + 78 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2079, + "PeriodId": 3, + "ItemId1": [ + 210000, + 79 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2080, + "PeriodId": 3, + "ItemId1": [ + 210000, + 80 + ], + "ItemId2": [ + 2044, + 160 + ], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2201, + "PeriodId": 3, + "ItemId1": [ + 1900, + 1 + ], + "ItemId2": [ + 7301, + 1 + ], + "ItemId3": [ + 200001, + 1 + ], + "ItemId4": [ + 7230, + 1 + ] + }, + { + "Id": 2202, + "PeriodId": 3, + "ItemId1": [ + 1900, + 2 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2203, + "PeriodId": 3, + "ItemId1": [ + 1900, + 3 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2204, + "PeriodId": 3, + "ItemId1": [ + 1900, + 4 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2205, + "PeriodId": 3, + "ItemId1": [ + 1900, + 5 + ], + "ItemId2": [ + 7301, + 10 + ], + "ItemId3": [ + 200001, + 10 + ], + "ItemId4": [ + 7230, + 10 + ] + }, + { + "Id": 2206, + "PeriodId": 3, + "ItemId1": [ + 1900, + 6 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2207, + "PeriodId": 3, + "ItemId1": [ + 1900, + 7 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2208, + "PeriodId": 3, + "ItemId1": [ + 1900, + 8 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2209, + "PeriodId": 3, + "ItemId1": [ + 1900, + 9 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2210, + "PeriodId": 3, + "ItemId1": [ + 1900, + 10 + ], + "ItemId2": [ + 7301, + 20 + ], + "ItemId3": [ + 200001, + 20 + ], + "ItemId4": [ + 7230, + 20 + ] + }, + { + "Id": 2211, + "PeriodId": 3, + "ItemId1": [ + 1900, + 11 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2212, + "PeriodId": 3, + "ItemId1": [ + 1900, + 12 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2213, + "PeriodId": 3, + "ItemId1": [ + 1900, + 13 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2214, + "PeriodId": 3, + "ItemId1": [ + 1900, + 14 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2215, + "PeriodId": 3, + "ItemId1": [ + 1900, + 15 + ], + "ItemId2": [ + 7301, + 30 + ], + "ItemId3": [ + 200001, + 30 + ], + "ItemId4": [ + 7230, + 30 + ] + }, + { + "Id": 2216, + "PeriodId": 3, + "ItemId1": [ + 1900, + 16 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2217, + "PeriodId": 3, + "ItemId1": [ + 1900, + 17 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2218, + "PeriodId": 3, + "ItemId1": [ + 1900, + 18 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2219, + "PeriodId": 3, + "ItemId1": [ + 1900, + 19 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2220, + "PeriodId": 3, + "ItemId1": [ + 1900, + 20 + ], + "ItemId2": [ + 7301, + 40 + ], + "ItemId3": [ + 200001, + 40 + ], + "ItemId4": [ + 7230, + 40 + ] + }, + { + "Id": 2221, + "PeriodId": 3, + "ItemId1": [ + 1900, + 21 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2222, + "PeriodId": 3, + "ItemId1": [ + 1900, + 22 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2223, + "PeriodId": 3, + "ItemId1": [ + 1900, + 23 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2224, + "PeriodId": 3, + "ItemId1": [ + 1900, + 24 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2225, + "PeriodId": 3, + "ItemId1": [ + 1900, + 25 + ], + "ItemId2": [ + 7301, + 50 + ], + "ItemId3": [ + 200001, + 50 + ], + "ItemId4": [ + 7230, + 50 + ] + }, + { + "Id": 2226, + "PeriodId": 3, + "ItemId1": [ + 1900, + 26 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2227, + "PeriodId": 3, + "ItemId1": [ + 1900, + 27 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2228, + "PeriodId": 3, + "ItemId1": [ + 1900, + 28 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2229, + "PeriodId": 3, + "ItemId1": [ + 1900, + 29 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2230, + "PeriodId": 3, + "ItemId1": [ + 1900, + 30 + ], + "ItemId2": [ + 7301, + 60 + ], + "ItemId3": [ + 200001, + 60 + ], + "ItemId4": [ + 7230, + 60 + ] + }, + { + "Id": 2231, + "PeriodId": 3, + "ItemId1": [ + 1900, + 31 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2232, + "PeriodId": 3, + "ItemId1": [ + 1900, + 32 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2233, + "PeriodId": 3, + "ItemId1": [ + 1900, + 33 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2234, + "PeriodId": 3, + "ItemId1": [ + 1900, + 34 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2235, + "PeriodId": 3, + "ItemId1": [ + 1900, + 35 + ], + "ItemId2": [ + 7301, + 70 + ], + "ItemId3": [ + 200001, + 70 + ], + "ItemId4": [ + 7230, + 70 + ] + }, + { + "Id": 2236, + "PeriodId": 3, + "ItemId1": [ + 1900, + 36 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2237, + "PeriodId": 3, + "ItemId1": [ + 1900, + 37 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2238, + "PeriodId": 3, + "ItemId1": [ + 1900, + 38 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2239, + "PeriodId": 3, + "ItemId1": [ + 1900, + 39 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2240, + "PeriodId": 3, + "ItemId1": [ + 1900, + 40 + ], + "ItemId2": [ + 7301, + 80 + ], + "ItemId3": [ + 200001, + 80 + ], + "ItemId4": [ + 7230, + 80 + ] + }, + { + "Id": 2241, + "PeriodId": 3, + "ItemId1": [ + 1900, + 41 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2242, + "PeriodId": 3, + "ItemId1": [ + 1900, + 42 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2243, + "PeriodId": 3, + "ItemId1": [ + 1900, + 43 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2244, + "PeriodId": 3, + "ItemId1": [ + 1900, + 44 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2245, + "PeriodId": 3, + "ItemId1": [ + 1900, + 45 + ], + "ItemId2": [ + 7301, + 90 + ], + "ItemId3": [ + 200001, + 90 + ], + "ItemId4": [ + 7230, + 90 + ] + }, + { + "Id": 2246, + "PeriodId": 3, + "ItemId1": [ + 1900, + 46 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2247, + "PeriodId": 3, + "ItemId1": [ + 1900, + 47 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2248, + "PeriodId": 3, + "ItemId1": [ + 1900, + 48 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2249, + "PeriodId": 3, + "ItemId1": [ + 1900, + 49 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2250, + "PeriodId": 3, + "ItemId1": [ + 1900, + 50 + ], + "ItemId2": [ + 7301, + 100 + ], + "ItemId3": [ + 200001, + 100 + ], + "ItemId4": [ + 7230, + 100 + ] + }, + { + "Id": 2251, + "PeriodId": 3, + "ItemId1": [ + 1900, + 51 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2252, + "PeriodId": 3, + "ItemId1": [ + 1900, + 52 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2253, + "PeriodId": 3, + "ItemId1": [ + 1900, + 53 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2254, + "PeriodId": 3, + "ItemId1": [ + 1900, + 54 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2255, + "PeriodId": 3, + "ItemId1": [ + 1900, + 55 + ], + "ItemId2": [ + 7301, + 110 + ], + "ItemId3": [ + 200001, + 110 + ], + "ItemId4": [ + 7230, + 110 + ] + }, + { + "Id": 2256, + "PeriodId": 3, + "ItemId1": [ + 1900, + 56 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2257, + "PeriodId": 3, + "ItemId1": [ + 1900, + 57 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2258, + "PeriodId": 3, + "ItemId1": [ + 1900, + 58 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2259, + "PeriodId": 3, + "ItemId1": [ + 1900, + 59 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2260, + "PeriodId": 3, + "ItemId1": [ + 1900, + 60 + ], + "ItemId2": [ + 7301, + 120 + ], + "ItemId3": [ + 200001, + 120 + ], + "ItemId4": [ + 7230, + 120 + ] + }, + { + "Id": 2261, + "PeriodId": 3, + "ItemId1": [ + 1900, + 61 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2262, + "PeriodId": 3, + "ItemId1": [ + 1900, + 62 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2263, + "PeriodId": 3, + "ItemId1": [ + 1900, + 63 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2264, + "PeriodId": 3, + "ItemId1": [ + 1900, + 64 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2265, + "PeriodId": 3, + "ItemId1": [ + 1900, + 65 + ], + "ItemId2": [ + 7301, + 130 + ], + "ItemId3": [ + 200001, + 130 + ], + "ItemId4": [ + 7230, + 130 + ] + }, + { + "Id": 2266, + "PeriodId": 3, + "ItemId1": [ + 1900, + 66 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2267, + "PeriodId": 3, + "ItemId1": [ + 1900, + 67 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2268, + "PeriodId": 3, + "ItemId1": [ + 1900, + 68 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2269, + "PeriodId": 3, + "ItemId1": [ + 1900, + 69 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2270, + "PeriodId": 3, + "ItemId1": [ + 1900, + 70 + ], + "ItemId2": [ + 7301, + 140 + ], + "ItemId3": [ + 200001, + 140 + ], + "ItemId4": [ + 7230, + 140 + ] + }, + { + "Id": 2271, + "PeriodId": 3, + "ItemId1": [ + 1900, + 71 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2272, + "PeriodId": 3, + "ItemId1": [ + 1900, + 72 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2273, + "PeriodId": 3, + "ItemId1": [ + 1900, + 73 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2274, + "PeriodId": 3, + "ItemId1": [ + 1900, + 74 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2275, + "PeriodId": 3, + "ItemId1": [ + 1900, + 75 + ], + "ItemId2": [ + 7301, + 140 + ], + "ItemId3": [ + 200001, + 140 + ], + "ItemId4": [ + 7230, + 140 + ] + }, + { + "Id": 2276, + "PeriodId": 3, + "ItemId1": [ + 1900, + 76 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2277, + "PeriodId": 3, + "ItemId1": [ + 1900, + 77 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2278, + "PeriodId": 3, + "ItemId1": [ + 1900, + 78 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2279, + "PeriodId": 3, + "ItemId1": [ + 1900, + 79 + ], + "ItemId2": [], + "ItemId3": [], + "ItemId4": [] + }, + { + "Id": 2280, + "PeriodId": 3, + "ItemId1": [ + 1900, + 80 + ], + "ItemId2": [ + 7301, + 140 + ], + "ItemId3": [ + 200001, + 140 + ], + "ItemId4": [ + 7230, + 140 + ] } ] \ No newline at end of file diff --git a/src/api/config/BattlePassLvConfigCategory.json b/src/api/config/BattlePassLvConfigCategory.json new file mode 100644 index 0000000..156865b --- /dev/null +++ b/src/api/config/BattlePassLvConfigCategory.json @@ -0,0 +1,1922 @@ +[ + { + "Id": 1, + "Level": 1, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 1, + "SeniorGroupId": 201 + }, + { + "Id": 2, + "Level": 2, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 2, + "SeniorGroupId": 202 + }, + { + "Id": 3, + "Level": 3, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 3, + "SeniorGroupId": 203 + }, + { + "Id": 4, + "Level": 4, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 4, + "SeniorGroupId": 204 + }, + { + "Id": 5, + "Level": 5, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 5, + "SeniorGroupId": 205 + }, + { + "Id": 6, + "Level": 6, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 6, + "SeniorGroupId": 206 + }, + { + "Id": 7, + "Level": 7, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 7, + "SeniorGroupId": 207 + }, + { + "Id": 8, + "Level": 8, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 8, + "SeniorGroupId": 208 + }, + { + "Id": 9, + "Level": 9, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 9, + "SeniorGroupId": 209 + }, + { + "Id": 10, + "Level": 10, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 10, + "SeniorGroupId": 210 + }, + { + "Id": 11, + "Level": 11, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 11, + "SeniorGroupId": 211 + }, + { + "Id": 12, + "Level": 12, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 12, + "SeniorGroupId": 212 + }, + { + "Id": 13, + "Level": 13, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 13, + "SeniorGroupId": 213 + }, + { + "Id": 14, + "Level": 14, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 14, + "SeniorGroupId": 214 + }, + { + "Id": 15, + "Level": 15, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 15, + "SeniorGroupId": 215 + }, + { + "Id": 16, + "Level": 16, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 16, + "SeniorGroupId": 216 + }, + { + "Id": 17, + "Level": 17, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 17, + "SeniorGroupId": 217 + }, + { + "Id": 18, + "Level": 18, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 18, + "SeniorGroupId": 218 + }, + { + "Id": 19, + "Level": 19, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 19, + "SeniorGroupId": 219 + }, + { + "Id": 20, + "Level": 20, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 20, + "SeniorGroupId": 220 + }, + { + "Id": 21, + "Level": 21, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 21, + "SeniorGroupId": 221 + }, + { + "Id": 22, + "Level": 22, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 22, + "SeniorGroupId": 222 + }, + { + "Id": 23, + "Level": 23, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 23, + "SeniorGroupId": 223 + }, + { + "Id": 24, + "Level": 24, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 24, + "SeniorGroupId": 224 + }, + { + "Id": 25, + "Level": 25, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 25, + "SeniorGroupId": 225 + }, + { + "Id": 26, + "Level": 26, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 26, + "SeniorGroupId": 226 + }, + { + "Id": 27, + "Level": 27, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 27, + "SeniorGroupId": 227 + }, + { + "Id": 28, + "Level": 28, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 28, + "SeniorGroupId": 228 + }, + { + "Id": 29, + "Level": 29, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 29, + "SeniorGroupId": 229 + }, + { + "Id": 30, + "Level": 30, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 30, + "SeniorGroupId": 230 + }, + { + "Id": 31, + "Level": 31, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 31, + "SeniorGroupId": 231 + }, + { + "Id": 32, + "Level": 32, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 32, + "SeniorGroupId": 232 + }, + { + "Id": 33, + "Level": 33, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 33, + "SeniorGroupId": 233 + }, + { + "Id": 34, + "Level": 34, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 34, + "SeniorGroupId": 234 + }, + { + "Id": 35, + "Level": 35, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 35, + "SeniorGroupId": 235 + }, + { + "Id": 36, + "Level": 36, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 36, + "SeniorGroupId": 236 + }, + { + "Id": 37, + "Level": 37, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 37, + "SeniorGroupId": 237 + }, + { + "Id": 38, + "Level": 38, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 38, + "SeniorGroupId": 238 + }, + { + "Id": 39, + "Level": 39, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 39, + "SeniorGroupId": 239 + }, + { + "Id": 40, + "Level": 40, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 40, + "SeniorGroupId": 240 + }, + { + "Id": 41, + "Level": 41, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 41, + "SeniorGroupId": 241 + }, + { + "Id": 42, + "Level": 42, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 42, + "SeniorGroupId": 242 + }, + { + "Id": 43, + "Level": 43, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 43, + "SeniorGroupId": 243 + }, + { + "Id": 44, + "Level": 44, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 44, + "SeniorGroupId": 244 + }, + { + "Id": 45, + "Level": 45, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 45, + "SeniorGroupId": 245 + }, + { + "Id": 46, + "Level": 46, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 46, + "SeniorGroupId": 246 + }, + { + "Id": 47, + "Level": 47, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 47, + "SeniorGroupId": 247 + }, + { + "Id": 48, + "Level": 48, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 48, + "SeniorGroupId": 248 + }, + { + "Id": 49, + "Level": 49, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 49, + "SeniorGroupId": 249 + }, + { + "Id": 50, + "Level": 50, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 50, + "SeniorGroupId": 250 + }, + { + "Id": 51, + "Level": 51, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 51, + "SeniorGroupId": 251 + }, + { + "Id": 52, + "Level": 52, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 52, + "SeniorGroupId": 252 + }, + { + "Id": 53, + "Level": 53, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 53, + "SeniorGroupId": 253 + }, + { + "Id": 54, + "Level": 54, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 54, + "SeniorGroupId": 254 + }, + { + "Id": 55, + "Level": 55, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 55, + "SeniorGroupId": 255 + }, + { + "Id": 56, + "Level": 56, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 56, + "SeniorGroupId": 256 + }, + { + "Id": 57, + "Level": 57, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 57, + "SeniorGroupId": 257 + }, + { + "Id": 58, + "Level": 58, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 58, + "SeniorGroupId": 258 + }, + { + "Id": 59, + "Level": 59, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 59, + "SeniorGroupId": 259 + }, + { + "Id": 60, + "Level": 60, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 60, + "SeniorGroupId": 260 + }, + { + "Id": 61, + "Level": 61, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 61, + "SeniorGroupId": 261 + }, + { + "Id": 62, + "Level": 62, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 62, + "SeniorGroupId": 262 + }, + { + "Id": 63, + "Level": 63, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 63, + "SeniorGroupId": 263 + }, + { + "Id": 64, + "Level": 64, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 64, + "SeniorGroupId": 264 + }, + { + "Id": 65, + "Level": 65, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 65, + "SeniorGroupId": 265 + }, + { + "Id": 66, + "Level": 66, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 66, + "SeniorGroupId": 266 + }, + { + "Id": 67, + "Level": 67, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 67, + "SeniorGroupId": 267 + }, + { + "Id": 68, + "Level": 68, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 68, + "SeniorGroupId": 268 + }, + { + "Id": 69, + "Level": 69, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 69, + "SeniorGroupId": 269 + }, + { + "Id": 70, + "Level": 70, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 70, + "SeniorGroupId": 270 + }, + { + "Id": 71, + "Level": 71, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 71, + "SeniorGroupId": 271 + }, + { + "Id": 72, + "Level": 72, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 72, + "SeniorGroupId": 272 + }, + { + "Id": 73, + "Level": 73, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 73, + "SeniorGroupId": 273 + }, + { + "Id": 74, + "Level": 74, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 74, + "SeniorGroupId": 274 + }, + { + "Id": 75, + "Level": 75, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 75, + "SeniorGroupId": 275 + }, + { + "Id": 76, + "Level": 76, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 76, + "SeniorGroupId": 276 + }, + { + "Id": 77, + "Level": 77, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 77, + "SeniorGroupId": 277 + }, + { + "Id": 78, + "Level": 78, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 78, + "SeniorGroupId": 278 + }, + { + "Id": 79, + "Level": 79, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 79, + "SeniorGroupId": 279 + }, + { + "Id": 80, + "Level": 80, + "LevelExp": 100, + "PeriodId": 1, + "GroupId": 80, + "SeniorGroupId": 280 + }, + { + "Id": 1001, + "Level": 1, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1001, + "SeniorGroupId": 1201 + }, + { + "Id": 1002, + "Level": 2, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1002, + "SeniorGroupId": 1202 + }, + { + "Id": 1003, + "Level": 3, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1003, + "SeniorGroupId": 1203 + }, + { + "Id": 1004, + "Level": 4, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1004, + "SeniorGroupId": 1204 + }, + { + "Id": 1005, + "Level": 5, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1005, + "SeniorGroupId": 1205 + }, + { + "Id": 1006, + "Level": 6, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1006, + "SeniorGroupId": 1206 + }, + { + "Id": 1007, + "Level": 7, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1007, + "SeniorGroupId": 1207 + }, + { + "Id": 1008, + "Level": 8, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1008, + "SeniorGroupId": 1208 + }, + { + "Id": 1009, + "Level": 9, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1009, + "SeniorGroupId": 1209 + }, + { + "Id": 1010, + "Level": 10, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1010, + "SeniorGroupId": 1210 + }, + { + "Id": 1011, + "Level": 11, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1011, + "SeniorGroupId": 1211 + }, + { + "Id": 1012, + "Level": 12, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1012, + "SeniorGroupId": 1212 + }, + { + "Id": 1013, + "Level": 13, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1013, + "SeniorGroupId": 1213 + }, + { + "Id": 1014, + "Level": 14, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1014, + "SeniorGroupId": 1214 + }, + { + "Id": 1015, + "Level": 15, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1015, + "SeniorGroupId": 1215 + }, + { + "Id": 1016, + "Level": 16, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1016, + "SeniorGroupId": 1216 + }, + { + "Id": 1017, + "Level": 17, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1017, + "SeniorGroupId": 1217 + }, + { + "Id": 1018, + "Level": 18, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1018, + "SeniorGroupId": 1218 + }, + { + "Id": 1019, + "Level": 19, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1019, + "SeniorGroupId": 1219 + }, + { + "Id": 1020, + "Level": 20, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1020, + "SeniorGroupId": 1220 + }, + { + "Id": 1021, + "Level": 21, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1021, + "SeniorGroupId": 1221 + }, + { + "Id": 1022, + "Level": 22, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1022, + "SeniorGroupId": 1222 + }, + { + "Id": 1023, + "Level": 23, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1023, + "SeniorGroupId": 1223 + }, + { + "Id": 1024, + "Level": 24, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1024, + "SeniorGroupId": 1224 + }, + { + "Id": 1025, + "Level": 25, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1025, + "SeniorGroupId": 1225 + }, + { + "Id": 1026, + "Level": 26, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1026, + "SeniorGroupId": 1226 + }, + { + "Id": 1027, + "Level": 27, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1027, + "SeniorGroupId": 1227 + }, + { + "Id": 1028, + "Level": 28, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1028, + "SeniorGroupId": 1228 + }, + { + "Id": 1029, + "Level": 29, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1029, + "SeniorGroupId": 1229 + }, + { + "Id": 1030, + "Level": 30, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1030, + "SeniorGroupId": 1230 + }, + { + "Id": 1031, + "Level": 31, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1031, + "SeniorGroupId": 1231 + }, + { + "Id": 1032, + "Level": 32, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1032, + "SeniorGroupId": 1232 + }, + { + "Id": 1033, + "Level": 33, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1033, + "SeniorGroupId": 1233 + }, + { + "Id": 1034, + "Level": 34, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1034, + "SeniorGroupId": 1234 + }, + { + "Id": 1035, + "Level": 35, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1035, + "SeniorGroupId": 1235 + }, + { + "Id": 1036, + "Level": 36, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1036, + "SeniorGroupId": 1236 + }, + { + "Id": 1037, + "Level": 37, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1037, + "SeniorGroupId": 1237 + }, + { + "Id": 1038, + "Level": 38, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1038, + "SeniorGroupId": 1238 + }, + { + "Id": 1039, + "Level": 39, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1039, + "SeniorGroupId": 1239 + }, + { + "Id": 1040, + "Level": 40, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1040, + "SeniorGroupId": 1240 + }, + { + "Id": 1041, + "Level": 41, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1041, + "SeniorGroupId": 1241 + }, + { + "Id": 1042, + "Level": 42, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1042, + "SeniorGroupId": 1242 + }, + { + "Id": 1043, + "Level": 43, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1043, + "SeniorGroupId": 1243 + }, + { + "Id": 1044, + "Level": 44, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1044, + "SeniorGroupId": 1244 + }, + { + "Id": 1045, + "Level": 45, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1045, + "SeniorGroupId": 1245 + }, + { + "Id": 1046, + "Level": 46, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1046, + "SeniorGroupId": 1246 + }, + { + "Id": 1047, + "Level": 47, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1047, + "SeniorGroupId": 1247 + }, + { + "Id": 1048, + "Level": 48, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1048, + "SeniorGroupId": 1248 + }, + { + "Id": 1049, + "Level": 49, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1049, + "SeniorGroupId": 1249 + }, + { + "Id": 1050, + "Level": 50, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1050, + "SeniorGroupId": 1250 + }, + { + "Id": 1051, + "Level": 51, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1051, + "SeniorGroupId": 1251 + }, + { + "Id": 1052, + "Level": 52, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1052, + "SeniorGroupId": 1252 + }, + { + "Id": 1053, + "Level": 53, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1053, + "SeniorGroupId": 1253 + }, + { + "Id": 1054, + "Level": 54, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1054, + "SeniorGroupId": 1254 + }, + { + "Id": 1055, + "Level": 55, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1055, + "SeniorGroupId": 1255 + }, + { + "Id": 1056, + "Level": 56, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1056, + "SeniorGroupId": 1256 + }, + { + "Id": 1057, + "Level": 57, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1057, + "SeniorGroupId": 1257 + }, + { + "Id": 1058, + "Level": 58, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1058, + "SeniorGroupId": 1258 + }, + { + "Id": 1059, + "Level": 59, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1059, + "SeniorGroupId": 1259 + }, + { + "Id": 1060, + "Level": 60, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1060, + "SeniorGroupId": 1260 + }, + { + "Id": 1061, + "Level": 61, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1061, + "SeniorGroupId": 1261 + }, + { + "Id": 1062, + "Level": 62, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1062, + "SeniorGroupId": 1262 + }, + { + "Id": 1063, + "Level": 63, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1063, + "SeniorGroupId": 1263 + }, + { + "Id": 1064, + "Level": 64, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1064, + "SeniorGroupId": 1264 + }, + { + "Id": 1065, + "Level": 65, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1065, + "SeniorGroupId": 1265 + }, + { + "Id": 1066, + "Level": 66, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1066, + "SeniorGroupId": 1266 + }, + { + "Id": 1067, + "Level": 67, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1067, + "SeniorGroupId": 1267 + }, + { + "Id": 1068, + "Level": 68, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1068, + "SeniorGroupId": 1268 + }, + { + "Id": 1069, + "Level": 69, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1069, + "SeniorGroupId": 1269 + }, + { + "Id": 1070, + "Level": 70, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1070, + "SeniorGroupId": 1270 + }, + { + "Id": 1071, + "Level": 71, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1071, + "SeniorGroupId": 1271 + }, + { + "Id": 1072, + "Level": 72, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1072, + "SeniorGroupId": 1272 + }, + { + "Id": 1073, + "Level": 73, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1073, + "SeniorGroupId": 1273 + }, + { + "Id": 1074, + "Level": 74, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1074, + "SeniorGroupId": 1274 + }, + { + "Id": 1075, + "Level": 75, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1075, + "SeniorGroupId": 1275 + }, + { + "Id": 1076, + "Level": 76, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1076, + "SeniorGroupId": 1276 + }, + { + "Id": 1077, + "Level": 77, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1077, + "SeniorGroupId": 1277 + }, + { + "Id": 1078, + "Level": 78, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1078, + "SeniorGroupId": 1278 + }, + { + "Id": 1079, + "Level": 79, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1079, + "SeniorGroupId": 1279 + }, + { + "Id": 1080, + "Level": 80, + "LevelExp": 100, + "PeriodId": 2, + "GroupId": 1080, + "SeniorGroupId": 1280 + }, + { + "Id": 1101, + "Level": 1, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2001, + "SeniorGroupId": 2201 + }, + { + "Id": 1102, + "Level": 2, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2002, + "SeniorGroupId": 2202 + }, + { + "Id": 1103, + "Level": 3, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2003, + "SeniorGroupId": 2203 + }, + { + "Id": 1104, + "Level": 4, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2004, + "SeniorGroupId": 2204 + }, + { + "Id": 1105, + "Level": 5, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2005, + "SeniorGroupId": 2205 + }, + { + "Id": 1106, + "Level": 6, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2006, + "SeniorGroupId": 2206 + }, + { + "Id": 1107, + "Level": 7, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2007, + "SeniorGroupId": 2207 + }, + { + "Id": 1108, + "Level": 8, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2008, + "SeniorGroupId": 2208 + }, + { + "Id": 1109, + "Level": 9, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2009, + "SeniorGroupId": 2209 + }, + { + "Id": 1110, + "Level": 10, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2010, + "SeniorGroupId": 2210 + }, + { + "Id": 1111, + "Level": 11, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2011, + "SeniorGroupId": 2211 + }, + { + "Id": 1112, + "Level": 12, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2012, + "SeniorGroupId": 2212 + }, + { + "Id": 1113, + "Level": 13, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2013, + "SeniorGroupId": 2213 + }, + { + "Id": 1114, + "Level": 14, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2014, + "SeniorGroupId": 2214 + }, + { + "Id": 1115, + "Level": 15, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2015, + "SeniorGroupId": 2215 + }, + { + "Id": 1116, + "Level": 16, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2016, + "SeniorGroupId": 2216 + }, + { + "Id": 1117, + "Level": 17, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2017, + "SeniorGroupId": 2217 + }, + { + "Id": 1118, + "Level": 18, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2018, + "SeniorGroupId": 2218 + }, + { + "Id": 1119, + "Level": 19, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2019, + "SeniorGroupId": 2219 + }, + { + "Id": 1120, + "Level": 20, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2020, + "SeniorGroupId": 2220 + }, + { + "Id": 1121, + "Level": 21, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2021, + "SeniorGroupId": 2221 + }, + { + "Id": 1122, + "Level": 22, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2022, + "SeniorGroupId": 2222 + }, + { + "Id": 1123, + "Level": 23, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2023, + "SeniorGroupId": 2223 + }, + { + "Id": 1124, + "Level": 24, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2024, + "SeniorGroupId": 2224 + }, + { + "Id": 1125, + "Level": 25, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2025, + "SeniorGroupId": 2225 + }, + { + "Id": 1126, + "Level": 26, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2026, + "SeniorGroupId": 2226 + }, + { + "Id": 1127, + "Level": 27, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2027, + "SeniorGroupId": 2227 + }, + { + "Id": 1128, + "Level": 28, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2028, + "SeniorGroupId": 2228 + }, + { + "Id": 1129, + "Level": 29, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2029, + "SeniorGroupId": 2229 + }, + { + "Id": 1130, + "Level": 30, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2030, + "SeniorGroupId": 2230 + }, + { + "Id": 1131, + "Level": 31, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2031, + "SeniorGroupId": 2231 + }, + { + "Id": 1132, + "Level": 32, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2032, + "SeniorGroupId": 2232 + }, + { + "Id": 1133, + "Level": 33, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2033, + "SeniorGroupId": 2233 + }, + { + "Id": 1134, + "Level": 34, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2034, + "SeniorGroupId": 2234 + }, + { + "Id": 1135, + "Level": 35, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2035, + "SeniorGroupId": 2235 + }, + { + "Id": 1136, + "Level": 36, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2036, + "SeniorGroupId": 2236 + }, + { + "Id": 1137, + "Level": 37, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2037, + "SeniorGroupId": 2237 + }, + { + "Id": 1138, + "Level": 38, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2038, + "SeniorGroupId": 2238 + }, + { + "Id": 1139, + "Level": 39, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2039, + "SeniorGroupId": 2239 + }, + { + "Id": 1140, + "Level": 40, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2040, + "SeniorGroupId": 2240 + }, + { + "Id": 1141, + "Level": 41, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2041, + "SeniorGroupId": 2241 + }, + { + "Id": 1142, + "Level": 42, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2042, + "SeniorGroupId": 2242 + }, + { + "Id": 1143, + "Level": 43, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2043, + "SeniorGroupId": 2243 + }, + { + "Id": 1144, + "Level": 44, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2044, + "SeniorGroupId": 2244 + }, + { + "Id": 1145, + "Level": 45, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2045, + "SeniorGroupId": 2245 + }, + { + "Id": 1146, + "Level": 46, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2046, + "SeniorGroupId": 2246 + }, + { + "Id": 1147, + "Level": 47, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2047, + "SeniorGroupId": 2247 + }, + { + "Id": 1148, + "Level": 48, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2048, + "SeniorGroupId": 2248 + }, + { + "Id": 1149, + "Level": 49, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2049, + "SeniorGroupId": 2249 + }, + { + "Id": 1150, + "Level": 50, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2050, + "SeniorGroupId": 2250 + }, + { + "Id": 1151, + "Level": 51, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2051, + "SeniorGroupId": 2251 + }, + { + "Id": 1152, + "Level": 52, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2052, + "SeniorGroupId": 2252 + }, + { + "Id": 1153, + "Level": 53, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2053, + "SeniorGroupId": 2253 + }, + { + "Id": 1154, + "Level": 54, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2054, + "SeniorGroupId": 2254 + }, + { + "Id": 1155, + "Level": 55, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2055, + "SeniorGroupId": 2255 + }, + { + "Id": 1156, + "Level": 56, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2056, + "SeniorGroupId": 2256 + }, + { + "Id": 1157, + "Level": 57, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2057, + "SeniorGroupId": 2257 + }, + { + "Id": 1158, + "Level": 58, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2058, + "SeniorGroupId": 2258 + }, + { + "Id": 1159, + "Level": 59, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2059, + "SeniorGroupId": 2259 + }, + { + "Id": 1160, + "Level": 60, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2060, + "SeniorGroupId": 2260 + }, + { + "Id": 1161, + "Level": 61, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2061, + "SeniorGroupId": 2261 + }, + { + "Id": 1162, + "Level": 62, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2062, + "SeniorGroupId": 2262 + }, + { + "Id": 1163, + "Level": 63, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2063, + "SeniorGroupId": 2263 + }, + { + "Id": 1164, + "Level": 64, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2064, + "SeniorGroupId": 2264 + }, + { + "Id": 1165, + "Level": 65, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2065, + "SeniorGroupId": 2265 + }, + { + "Id": 1166, + "Level": 66, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2066, + "SeniorGroupId": 2266 + }, + { + "Id": 1167, + "Level": 67, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2067, + "SeniorGroupId": 2267 + }, + { + "Id": 1168, + "Level": 68, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2068, + "SeniorGroupId": 2268 + }, + { + "Id": 1169, + "Level": 69, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2069, + "SeniorGroupId": 2269 + }, + { + "Id": 1170, + "Level": 70, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2070, + "SeniorGroupId": 2270 + }, + { + "Id": 1171, + "Level": 71, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2071, + "SeniorGroupId": 2271 + }, + { + "Id": 1172, + "Level": 72, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2072, + "SeniorGroupId": 2272 + }, + { + "Id": 1173, + "Level": 73, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2073, + "SeniorGroupId": 2273 + }, + { + "Id": 1174, + "Level": 74, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2074, + "SeniorGroupId": 2274 + }, + { + "Id": 1175, + "Level": 75, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2075, + "SeniorGroupId": 2275 + }, + { + "Id": 1176, + "Level": 76, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2076, + "SeniorGroupId": 2276 + }, + { + "Id": 1177, + "Level": 77, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2077, + "SeniorGroupId": 2277 + }, + { + "Id": 1178, + "Level": 78, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2078, + "SeniorGroupId": 2278 + }, + { + "Id": 1179, + "Level": 79, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2079, + "SeniorGroupId": 2279 + }, + { + "Id": 1180, + "Level": 80, + "LevelExp": 100, + "PeriodId": 3, + "GroupId": 2080, + "SeniorGroupId": 2280 + } +] \ No newline at end of file diff --git a/src/api/config/BattlePassTaskConfigCategory.json b/src/api/config/BattlePassTaskConfigCategory.json new file mode 100644 index 0000000..b57e1d9 --- /dev/null +++ b/src/api/config/BattlePassTaskConfigCategory.json @@ -0,0 +1,402 @@ +[ + { + "Id": 1, + "PeriodId": 1, + "TaskType": 1, + "TaskName": "温馨的家宴", + "Description": "举办家宴", + "TargetType": 2, + "TargetParameter": 1, + "GetPoint": 20 + }, + { + "Id": 2, + "PeriodId": 1, + "TaskType": 1, + "TaskName": "丰收准备", + "Description": "为农田施肥", + "TargetType": 6, + "TargetParameter": 1, + "GetPoint": 10 + }, + { + "Id": 3, + "PeriodId": 1, + "TaskType": 1, + "TaskName": "不死树", + "Description": "为不死树施肥", + "TargetType": 1, + "TargetParameter": 1, + "GetPoint": 10 + }, + { + "Id": 4, + "PeriodId": 1, + "TaskType": 1, + "TaskName": "谁是英雄", + "Description": "挑战四凶兽", + "TargetType": 4, + "TargetParameter": 1, + "GetPoint": 20 + }, + { + "Id": 5, + "PeriodId": 1, + "TaskType": 1, + "TaskName": "能工巧匠", + "Description": "修缮一次建筑", + "TargetType": 8, + "TargetParameter": 1, + "GetPoint": 10 + }, + { + "Id": 6, + "PeriodId": 1, + "TaskType": 1, + "TaskName": "互通有无", + "Description": "与桃谷商人或者夜市高价回收商人进行交易", + "TargetType": 5, + "TargetParameter": 1, + "GetPoint": 10 + }, + { + "Id": 7, + "PeriodId": 1, + "TaskType": 1, + "TaskName": "神秘商人", + "Description": "刷新神秘商人的货物", + "TargetType": 7, + "TargetParameter": 1, + "GetPoint": 20 + }, + { + "Id": 201, + "PeriodId": 1, + "TaskType": 2, + "TaskName": "桃源相伴", + "Description": "每周登录游戏3次(每天记1次)", + "TargetType": 9, + "TargetParameter": 3, + "GetPoint": 200 + }, + { + "Id": 202, + "PeriodId": 1, + "TaskType": 2, + "TaskName": "消耗铜钱", + "Description": "每周消耗铜钱达到500万", + "TargetType": 3, + "TargetParameter": 5000000, + "GetPoint": 200 + }, + { + "Id": 203, + "PeriodId": 1, + "TaskType": 2, + "TaskName": "扫荡兽潮", + "Description": "每周扫荡兽潮20次", + "TargetType": 10, + "TargetParameter": 20, + "GetPoint": 200 + }, + { + "Id": 204, + "PeriodId": 1, + "TaskType": 2, + "TaskName": "大丰收准备", + "Description": "为农田施肥", + "TargetType": 6, + "TargetParameter": 3, + "GetPoint": 200 + }, + { + "Id": 205, + "PeriodId": 1, + "TaskType": 2, + "TaskName": "不死树", + "Description": "为不死树施肥", + "TargetType": 1, + "TargetParameter": 1, + "GetPoint": 200 + }, + { + "Id": 301, + "PeriodId": 1, + "TaskType": 3, + "TaskName": "陵陵宝藏", + "Description": "参与6轮陵陵宝藏", + "TargetType": 11, + "TargetParameter": 6, + "GetPoint": 600 + }, + { + "Id": 302, + "PeriodId": 1, + "TaskType": 3, + "TaskName": "消耗桃花石", + "Description": "消耗桃花石达到200", + "TargetType": 12, + "TargetParameter": 200, + "GetPoint": 600 + }, + { + "Id": 303, + "PeriodId": 1, + "TaskType": 3, + "TaskName": "丰收年准备", + "Description": "为农田施肥", + "TargetType": 6, + "TargetParameter": 5, + "GetPoint": 600 + }, + { + "Id": 304, + "PeriodId": 1, + "TaskType": 3, + "TaskName": "不死树", + "Description": "为不死树施肥", + "TargetType": 1, + "TargetParameter": 1, + "GetPoint": 600 + }, + { + "Id": 1001, + "PeriodId": 2, + "TaskType": 1, + "TaskName": "温馨的家宴", + "Description": "举办家宴", + "TargetType": 2, + "TargetParameter": 2, + "GetPoint": 20 + }, + { + "Id": 1002, + "PeriodId": 2, + "TaskType": 1, + "TaskName": "丰收准备", + "Description": "为农田施肥", + "TargetType": 6, + "TargetParameter": 2, + "GetPoint": 10 + }, + { + "Id": 1003, + "PeriodId": 2, + "TaskType": 1, + "TaskName": "不死树", + "Description": "为不死树施肥", + "TargetType": 1, + "TargetParameter": 2, + "GetPoint": 10 + }, + { + "Id": 1004, + "PeriodId": 2, + "TaskType": 1, + "TaskName": "谁是英雄", + "Description": "挑战四凶兽", + "TargetType": 4, + "TargetParameter": 2, + "GetPoint": 20 + }, + { + "Id": 1005, + "PeriodId": 2, + "TaskType": 1, + "TaskName": "能工巧匠", + "Description": "修缮两次建筑", + "TargetType": 8, + "TargetParameter": 2, + "GetPoint": 10 + }, + { + "Id": 1006, + "PeriodId": 2, + "TaskType": 1, + "TaskName": "互通有无", + "Description": "与桃谷商人或者夜市高价回收商人进行交易", + "TargetType": 5, + "TargetParameter": 2, + "GetPoint": 10 + }, + { + "Id": 1007, + "PeriodId": 2, + "TaskType": 1, + "TaskName": "神秘商人", + "Description": "刷新神秘商人的货物", + "TargetType": 7, + "TargetParameter": 2, + "GetPoint": 20 + }, + { + "Id": 1201, + "PeriodId": 2, + "TaskType": 2, + "TaskName": "桃源相伴", + "Description": "每周登录游戏1次(每天记1次)", + "TargetType": 9, + "TargetParameter": 1, + "GetPoint": 200 + }, + { + "Id": 1202, + "PeriodId": 2, + "TaskType": 2, + "TaskName": "消耗铜钱", + "Description": "每周消耗铜钱达到100万", + "TargetType": 3, + "TargetParameter": 1000000, + "GetPoint": 200 + }, + { + "Id": 1203, + "PeriodId": 2, + "TaskType": 2, + "TaskName": "扫荡兽潮", + "Description": "每周扫荡兽潮10次", + "TargetType": 10, + "TargetParameter": 10, + "GetPoint": 200 + }, + { + "Id": 1301, + "PeriodId": 2, + "TaskType": 3, + "TaskName": "陵陵宝藏", + "Description": "参与2轮陵陵宝藏", + "TargetType": 11, + "TargetParameter": 2, + "GetPoint": 600 + }, + { + "Id": 1302, + "PeriodId": 2, + "TaskType": 3, + "TaskName": "消耗桃花石", + "Description": "消耗桃花石达到10", + "TargetType": 12, + "TargetParameter": 10, + "GetPoint": 600 + }, + { + "Id": 1501, + "PeriodId": 3, + "TaskType": 1, + "TaskName": "温馨的家宴", + "Description": "举办家宴", + "TargetType": 2, + "TargetParameter": 2, + "GetPoint": 20 + }, + { + "Id": 1502, + "PeriodId": 3, + "TaskType": 1, + "TaskName": "丰收准备", + "Description": "为农田施肥", + "TargetType": 6, + "TargetParameter": 2, + "GetPoint": 10 + }, + { + "Id": 1503, + "PeriodId": 3, + "TaskType": 1, + "TaskName": "不死树", + "Description": "为不死树施肥", + "TargetType": 1, + "TargetParameter": 2, + "GetPoint": 10 + }, + { + "Id": 1504, + "PeriodId": 3, + "TaskType": 1, + "TaskName": "谁是英雄", + "Description": "挑战四凶兽", + "TargetType": 4, + "TargetParameter": 2, + "GetPoint": 20 + }, + { + "Id": 1505, + "PeriodId": 3, + "TaskType": 1, + "TaskName": "能工巧匠", + "Description": "修缮两次建筑", + "TargetType": 8, + "TargetParameter": 2, + "GetPoint": 10 + }, + { + "Id": 1506, + "PeriodId": 3, + "TaskType": 1, + "TaskName": "互通有无", + "Description": "与桃谷商人或者夜市高价回收商人进行交易", + "TargetType": 5, + "TargetParameter": 2, + "GetPoint": 10 + }, + { + "Id": 1507, + "PeriodId": 3, + "TaskType": 1, + "TaskName": "神秘商人", + "Description": "刷新神秘商人的货物", + "TargetType": 7, + "TargetParameter": 2, + "GetPoint": 20 + }, + { + "Id": 1508, + "PeriodId": 3, + "TaskType": 2, + "TaskName": "桃源相伴", + "Description": "每周登录游戏1次(每天记1次)", + "TargetType": 9, + "TargetParameter": 1, + "GetPoint": 200 + }, + { + "Id": 1509, + "PeriodId": 3, + "TaskType": 2, + "TaskName": "消耗铜钱", + "Description": "每周消耗铜钱达到100万", + "TargetType": 3, + "TargetParameter": 1000000, + "GetPoint": 200 + }, + { + "Id": 1510, + "PeriodId": 3, + "TaskType": 2, + "TaskName": "扫荡兽潮", + "Description": "每周扫荡兽潮10次", + "TargetType": 10, + "TargetParameter": 10, + "GetPoint": 200 + }, + { + "Id": 1511, + "PeriodId": 3, + "TaskType": 3, + "TaskName": "陵陵宝藏", + "Description": "参与2轮陵陵宝藏", + "TargetType": 11, + "TargetParameter": 2, + "GetPoint": 600 + }, + { + "Id": 1512, + "PeriodId": 3, + "TaskType": 3, + "TaskName": "消耗桃花石", + "Description": "消耗桃花石达到10", + "TargetType": 12, + "TargetParameter": 10, + "GetPoint": 600 + } +] \ No newline at end of file diff --git a/src/api/config/BusinessManConfigCategory.json b/src/api/config/BusinessManConfigCategory.json index 3d5b04a..4f52ef1 100644 --- a/src/api/config/BusinessManConfigCategory.json +++ b/src/api/config/BusinessManConfigCategory.json @@ -746,5 +746,27 @@ "ResetLimited": 0, "ResetType": 0, "ResetTypeParameter": 0 + }, + { + "Id": 4007, + "Name": "远征商人", + "Type": 4, + "TypeParameter": 0, + "ItemGroup": 205, + "ExtraItemGroup": 0, + "ExtraItemNum": 0, + "DiscountNum": 0, + "CommonRecycleItem": 0, + "RecycleItem": 0, + "RecycleItemNum": 0, + "HighPricedNum": 0, + "SaleRefreshTimes": 0, + "RecycleRefreshTimes": 0, + "ResetItem": 0, + "ResetItemNum": 0, + "Increment": 0, + "ResetLimited": 0, + "ResetType": 2, + "ResetTypeParameter": 500 } ] \ No newline at end of file diff --git a/src/api/config/CommonRankingListConfigCategory.json b/src/api/config/CommonRankingListConfigCategory.json index 9c0bfdf..0381292 100644 --- a/src/api/config/CommonRankingListConfigCategory.json +++ b/src/api/config/CommonRankingListConfigCategory.json @@ -518,5 +518,525 @@ 1000 ], "RewardGroup": 30014 + }, + { + "Id": 5201, + "RankingType": 5, + "SettlementType": 2, + "Ranking": [ + 1 + ], + "RewardGroup": 50001 + }, + { + "Id": 5202, + "RankingType": 5, + "SettlementType": 2, + "Ranking": [ + 2 + ], + "RewardGroup": 50002 + }, + { + "Id": 5203, + "RankingType": 5, + "SettlementType": 2, + "Ranking": [ + 3 + ], + "RewardGroup": 50003 + }, + { + "Id": 5204, + "RankingType": 5, + "SettlementType": 2, + "Ranking": [ + 4 + ], + "RewardGroup": 50004 + }, + { + "Id": 5205, + "RankingType": 5, + "SettlementType": 2, + "Ranking": [ + 5 + ], + "RewardGroup": 50005 + }, + { + "Id": 5206, + "RankingType": 5, + "SettlementType": 2, + "Ranking": [ + 6 + ], + "RewardGroup": 50006 + }, + { + "Id": 5207, + "RankingType": 5, + "SettlementType": 2, + "Ranking": [ + 7 + ], + "RewardGroup": 50007 + }, + { + "Id": 5208, + "RankingType": 5, + "SettlementType": 2, + "Ranking": [ + 8 + ], + "RewardGroup": 50008 + }, + { + "Id": 5209, + "RankingType": 5, + "SettlementType": 2, + "Ranking": [ + 9 + ], + "RewardGroup": 50009 + }, + { + "Id": 5210, + "RankingType": 5, + "SettlementType": 2, + "Ranking": [ + 10 + ], + "RewardGroup": 50010 + }, + { + "Id": 5211, + "RankingType": 5, + "SettlementType": 2, + "Ranking": [ + 11, + 20 + ], + "RewardGroup": 50011 + }, + { + "Id": 5212, + "RankingType": 5, + "SettlementType": 2, + "Ranking": [ + 21, + 50 + ], + "RewardGroup": 50012 + }, + { + "Id": 5213, + "RankingType": 5, + "SettlementType": 2, + "Ranking": [ + 51, + 100 + ], + "RewardGroup": 50013 + }, + { + "Id": 5214, + "RankingType": 5, + "SettlementType": 2, + "Ranking": [ + 101, + 1000 + ], + "RewardGroup": 50014 + }, + { + "Id": 6201, + "RankingType": 6, + "SettlementType": 2, + "Ranking": [ + 1 + ], + "RewardGroup": 51001 + }, + { + "Id": 6202, + "RankingType": 6, + "SettlementType": 2, + "Ranking": [ + 2 + ], + "RewardGroup": 51002 + }, + { + "Id": 6203, + "RankingType": 6, + "SettlementType": 2, + "Ranking": [ + 3 + ], + "RewardGroup": 51003 + }, + { + "Id": 6204, + "RankingType": 6, + "SettlementType": 2, + "Ranking": [ + 4 + ], + "RewardGroup": 51004 + }, + { + "Id": 6205, + "RankingType": 6, + "SettlementType": 2, + "Ranking": [ + 5 + ], + "RewardGroup": 51005 + }, + { + "Id": 6206, + "RankingType": 6, + "SettlementType": 2, + "Ranking": [ + 6 + ], + "RewardGroup": 51006 + }, + { + "Id": 6207, + "RankingType": 6, + "SettlementType": 2, + "Ranking": [ + 7 + ], + "RewardGroup": 51007 + }, + { + "Id": 6208, + "RankingType": 6, + "SettlementType": 2, + "Ranking": [ + 8 + ], + "RewardGroup": 51008 + }, + { + "Id": 6209, + "RankingType": 6, + "SettlementType": 2, + "Ranking": [ + 9 + ], + "RewardGroup": 51009 + }, + { + "Id": 6210, + "RankingType": 6, + "SettlementType": 2, + "Ranking": [ + 10 + ], + "RewardGroup": 51010 + }, + { + "Id": 6211, + "RankingType": 6, + "SettlementType": 2, + "Ranking": [ + 11, + 20 + ], + "RewardGroup": 51011 + }, + { + "Id": 6212, + "RankingType": 6, + "SettlementType": 2, + "Ranking": [ + 21, + 50 + ], + "RewardGroup": 51012 + }, + { + "Id": 6213, + "RankingType": 6, + "SettlementType": 2, + "Ranking": [ + 51, + 100 + ], + "RewardGroup": 51013 + }, + { + "Id": 6214, + "RankingType": 6, + "SettlementType": 2, + "Ranking": [ + 101, + 1000 + ], + "RewardGroup": 51014 + }, + { + "Id": 7201, + "RankingType": 7, + "SettlementType": 2, + "Ranking": [ + 1 + ], + "RewardGroup": 52001 + }, + { + "Id": 7202, + "RankingType": 7, + "SettlementType": 2, + "Ranking": [ + 2 + ], + "RewardGroup": 52002 + }, + { + "Id": 7203, + "RankingType": 7, + "SettlementType": 2, + "Ranking": [ + 3 + ], + "RewardGroup": 52003 + }, + { + "Id": 7204, + "RankingType": 7, + "SettlementType": 2, + "Ranking": [ + 4 + ], + "RewardGroup": 52004 + }, + { + "Id": 7205, + "RankingType": 7, + "SettlementType": 2, + "Ranking": [ + 5 + ], + "RewardGroup": 52005 + }, + { + "Id": 7206, + "RankingType": 7, + "SettlementType": 2, + "Ranking": [ + 6 + ], + "RewardGroup": 52006 + }, + { + "Id": 7207, + "RankingType": 7, + "SettlementType": 2, + "Ranking": [ + 7 + ], + "RewardGroup": 52007 + }, + { + "Id": 7208, + "RankingType": 7, + "SettlementType": 2, + "Ranking": [ + 8 + ], + "RewardGroup": 52008 + }, + { + "Id": 7209, + "RankingType": 7, + "SettlementType": 2, + "Ranking": [ + 9 + ], + "RewardGroup": 52009 + }, + { + "Id": 7210, + "RankingType": 7, + "SettlementType": 2, + "Ranking": [ + 10 + ], + "RewardGroup": 52010 + }, + { + "Id": 7211, + "RankingType": 7, + "SettlementType": 2, + "Ranking": [ + 11, + 20 + ], + "RewardGroup": 52011 + }, + { + "Id": 7212, + "RankingType": 7, + "SettlementType": 2, + "Ranking": [ + 21, + 50 + ], + "RewardGroup": 52012 + }, + { + "Id": 7213, + "RankingType": 7, + "SettlementType": 2, + "Ranking": [ + 51, + 100 + ], + "RewardGroup": 52013 + }, + { + "Id": 7214, + "RankingType": 7, + "SettlementType": 2, + "Ranking": [ + 101, + 1000 + ], + "RewardGroup": 52014 + }, + { + "Id": 8201, + "RankingType": 8, + "SettlementType": 2, + "Ranking": [ + 1 + ], + "RewardGroup": 53001 + }, + { + "Id": 8202, + "RankingType": 8, + "SettlementType": 2, + "Ranking": [ + 2 + ], + "RewardGroup": 53002 + }, + { + "Id": 8203, + "RankingType": 8, + "SettlementType": 2, + "Ranking": [ + 3 + ], + "RewardGroup": 53003 + }, + { + "Id": 8204, + "RankingType": 8, + "SettlementType": 2, + "Ranking": [ + 4 + ], + "RewardGroup": 53004 + }, + { + "Id": 8205, + "RankingType": 8, + "SettlementType": 2, + "Ranking": [ + 5 + ], + "RewardGroup": 53005 + }, + { + "Id": 8206, + "RankingType": 8, + "SettlementType": 2, + "Ranking": [ + 6 + ], + "RewardGroup": 53006 + }, + { + "Id": 8207, + "RankingType": 8, + "SettlementType": 2, + "Ranking": [ + 7 + ], + "RewardGroup": 53007 + }, + { + "Id": 8208, + "RankingType": 8, + "SettlementType": 2, + "Ranking": [ + 8 + ], + "RewardGroup": 53008 + }, + { + "Id": 8209, + "RankingType": 8, + "SettlementType": 2, + "Ranking": [ + 9 + ], + "RewardGroup": 53009 + }, + { + "Id": 8210, + "RankingType": 8, + "SettlementType": 2, + "Ranking": [ + 10 + ], + "RewardGroup": 53010 + }, + { + "Id": 8211, + "RankingType": 8, + "SettlementType": 2, + "Ranking": [ + 11, + 20 + ], + "RewardGroup": 53011 + }, + { + "Id": 8212, + "RankingType": 8, + "SettlementType": 2, + "Ranking": [ + 21, + 50 + ], + "RewardGroup": 53012 + }, + { + "Id": 8213, + "RankingType": 8, + "SettlementType": 2, + "Ranking": [ + 51, + 100 + ], + "RewardGroup": 53013 + }, + { + "Id": 8214, + "RankingType": 8, + "SettlementType": 2, + "Ranking": [ + 101, + 1000 + ], + "RewardGroup": 53014 } ] \ No newline at end of file diff --git a/src/api/config/EquipmentConfigCategory.json b/src/api/config/EquipmentConfigCategory.json index e280d17..cc2b91d 100644 --- a/src/api/config/EquipmentConfigCategory.json +++ b/src/api/config/EquipmentConfigCategory.json @@ -8572,13 +8572,13 @@ "Type": 12, "SubType": 0, "Attribute1": 1403, - "AttributeValue1": 300, + "AttributeValue1": 450, "AttributeOperator1": 1, "Attribute2": 1409, "AttributeValue2": 10, "AttributeOperator2": 1, - "Attribute3": 1403, - "AttributeValue3": 150, + "Attribute3": 1423, + "AttributeValue3": 5, "AttributeOperator3": 1, "GemLvMax": 0, "StructureCondition": [ @@ -8869,7 +8869,7 @@ "AttributeValue1": 120, "AttributeOperator1": 1, "Attribute2": 1437, - "AttributeValue2": 50, + "AttributeValue2": -50, "AttributeOperator2": 1, "Attribute3": 0, "AttributeValue3": 0, @@ -8911,7 +8911,7 @@ "AttributeValue1": 360, "AttributeOperator1": 1, "Attribute2": 1437, - "AttributeValue2": 100, + "AttributeValue2": -100, "AttributeOperator2": 1, "Attribute3": 0, "AttributeValue3": 0, diff --git a/src/api/config/ExpeditionBuffConfigCategory.json b/src/api/config/ExpeditionBuffConfigCategory.json new file mode 100644 index 0000000..260bbcf --- /dev/null +++ b/src/api/config/ExpeditionBuffConfigCategory.json @@ -0,0 +1,62 @@ +[ + { + "Id": 1, + "GroupId": 1001, + "BuffId": 300001, + "Weight": 1 + }, + { + "Id": 2, + "GroupId": 1001, + "BuffId": 300002, + "Weight": 1 + }, + { + "Id": 3, + "GroupId": 1001, + "BuffId": 300003, + "Weight": 1 + }, + { + "Id": 4, + "GroupId": 1001, + "BuffId": 300004, + "Weight": 1 + }, + { + "Id": 5, + "GroupId": 1001, + "BuffId": 300005, + "Weight": 1 + }, + { + "Id": 6, + "GroupId": 1001, + "BuffId": 300006, + "Weight": 1 + }, + { + "Id": 7, + "GroupId": 1001, + "BuffId": 300007, + "Weight": 1 + }, + { + "Id": 8, + "GroupId": 1001, + "BuffId": 300008, + "Weight": 1 + }, + { + "Id": 9, + "GroupId": 1001, + "BuffId": 300009, + "Weight": 1 + }, + { + "Id": 10, + "GroupId": 1001, + "BuffId": 300010, + "Weight": 1 + } +] \ No newline at end of file diff --git a/src/api/config/ExpeditionMapConfigCategory.json b/src/api/config/ExpeditionMapConfigCategory.json new file mode 100644 index 0000000..f248ddd --- /dev/null +++ b/src/api/config/ExpeditionMapConfigCategory.json @@ -0,0 +1,69 @@ +[ + { + "Id": 10011, + "GroupId": 1001, + "Name": "小山道", + "Unlock1": 10012, + "Unlock2": 10013, + "Unlock3": 0, + "MonsterGroup": [ + 33001 + ], + "Integral": 0, + "Icon": "", + "RegionID": 8001, + "Intelligence": "" + }, + { + "Id": 10012, + "GroupId": 1001, + "Name": "试炼", + "Unlock1": 10013, + "Unlock2": 10014, + "Unlock3": 0, + "MonsterGroup": [], + "Integral": 0, + "Icon": "", + "RegionID": 8001, + "Intelligence": "" + }, + { + "Id": 10013, + "GroupId": 1001, + "Name": "大榕树", + "Unlock1": 10014, + "Unlock2": 10015, + "Unlock3": 0, + "MonsterGroup": [], + "Integral": 0, + "Icon": "", + "RegionID": 8001, + "Intelligence": "" + }, + { + "Id": 10014, + "GroupId": 1001, + "Name": "试炼", + "Unlock1": 10013, + "Unlock2": 10015, + "Unlock3": 0, + "MonsterGroup": [], + "Integral": 0, + "Icon": "", + "RegionID": 8001, + "Intelligence": "" + }, + { + "Id": 10015, + "GroupId": 1001, + "Name": "廖山", + "Unlock1": 10013, + "Unlock2": 10014, + "Unlock3": 0, + "MonsterGroup": [], + "Integral": 0, + "Icon": "", + "RegionID": 8001, + "Intelligence": "" + } +] \ No newline at end of file diff --git a/src/api/config/ExpeditionMapGroupConfigCategory.json b/src/api/config/ExpeditionMapGroupConfigCategory.json new file mode 100644 index 0000000..3e1207c --- /dev/null +++ b/src/api/config/ExpeditionMapGroupConfigCategory.json @@ -0,0 +1,38 @@ +[ + { + "Id": 1, + "ChapterId": 1, + "Name": "廖山", + "NextChapterId": 2, + "LevelsGroup": 1001, + "BuffGroup": 1001, + "ChapterMap": "" + }, + { + "Id": 2, + "ChapterId": 2, + "Name": "北山坪", + "NextChapterId": 3, + "LevelsGroup": 1002, + "BuffGroup": 0, + "ChapterMap": "" + }, + { + "Id": 3, + "ChapterId": 3, + "Name": "青云寺", + "NextChapterId": 4, + "LevelsGroup": 1003, + "BuffGroup": 0, + "ChapterMap": "" + }, + { + "Id": 4, + "ChapterId": 4, + "Name": "乌鸦渡", + "NextChapterId": 0, + "LevelsGroup": 1004, + "BuffGroup": 0, + "ChapterMap": "" + } +] \ No newline at end of file diff --git a/src/api/config/ExpeditionMonsterConfigCategory.json b/src/api/config/ExpeditionMonsterConfigCategory.json new file mode 100644 index 0000000..6e7fedf --- /dev/null +++ b/src/api/config/ExpeditionMonsterConfigCategory.json @@ -0,0 +1,8 @@ +[ + { + "Id": 33001, + "MonsterID": 33001, + "StageGroup": 30001, + "Weight": 0 + } +] \ No newline at end of file diff --git a/src/api/config/ExpeditionMonsterStageConfigCategory.json b/src/api/config/ExpeditionMonsterStageConfigCategory.json new file mode 100644 index 0000000..c8f918c --- /dev/null +++ b/src/api/config/ExpeditionMonsterStageConfigCategory.json @@ -0,0 +1,38 @@ +[ + { + "Id": 1, + "GroupID": 33001, + "LifeSection": [ + 100, + 60 + ], + "Weight": [ + 330011 + ] + }, + { + "Id": 2, + "GroupID": 33001, + "LifeSection": [ + 60, + 20 + ], + "Weight": [ + 330012, + 330013, + 330014 + ] + }, + { + "Id": 3, + "GroupID": 33001, + "LifeSection": [ + 20, + 0 + ], + "Weight": [ + 330015, + 330016 + ] + } +] \ No newline at end of file diff --git a/src/api/config/FeastTextConfigCategory.json b/src/api/config/FeastTextConfigCategory.json index b0594e2..62cf0bc 100644 --- a/src/api/config/FeastTextConfigCategory.json +++ b/src/api/config/FeastTextConfigCategory.json @@ -61,7 +61,8 @@ 17, 18, 19, - 20 + 20, + 21 ], "Order": 3, "Text": [ diff --git a/src/api/config/FoodConfigCategory.json b/src/api/config/FoodConfigCategory.json index 32be0c2..d3e27f4 100644 --- a/src/api/config/FoodConfigCategory.json +++ b/src/api/config/FoodConfigCategory.json @@ -431,6 +431,42 @@ "Buff": 0, "Description": "" }, + { + "Id": 55, + "Name": "渔溪蟹丸", + "Type": 0, + "NutritiveValue": 80, + "FoodNum": 60, + "Buff": 0, + "Description": "" + }, + { + "Id": 56, + "Name": "赤丘老窖", + "Type": 0, + "NutritiveValue": 80, + "FoodNum": 60, + "Buff": 0, + "Description": "" + }, + { + "Id": 57, + "Name": "太姥肉羹", + "Type": 0, + "NutritiveValue": 80, + "FoodNum": 60, + "Buff": 0, + "Description": "" + }, + { + "Id": 58, + "Name": "青山肥鹅蒸", + "Type": 0, + "NutritiveValue": 80, + "FoodNum": 60, + "Buff": 0, + "Description": "" + }, { "Id": 203, "Name": "野菜汤", diff --git a/src/api/config/FunctionItemConfigCategory.json b/src/api/config/FunctionItemConfigCategory.json index c9441ac..1819676 100644 --- a/src/api/config/FunctionItemConfigCategory.json +++ b/src/api/config/FunctionItemConfigCategory.json @@ -2055,6 +2055,14 @@ "UseTypeParameter": 60, "UseTypeParameter2": 0 }, + { + "Id": 5003, + "Name": "乐花", + "UseType": 35, + "ScaleCondition": 0, + "UseTypeParameter": 100, + "UseTypeParameter2": 0 + }, { "Id": 5701, "Name": "桃泥", diff --git a/src/api/config/GoodsForSaleConfigCategory.json b/src/api/config/GoodsForSaleConfigCategory.json index 7fff74b..ef87251 100644 --- a/src/api/config/GoodsForSaleConfigCategory.json +++ b/src/api/config/GoodsForSaleConfigCategory.json @@ -3915,6 +3915,28 @@ "Specialty": 0, "RefreshCycle": 0 }, + { + "Id": 6400, + "GroupId": 205, + "Scale": 0, + "ItemId": 8107, + "SaleNum": [ + 1, + 1 + ], + "Weight": 1, + "OverlayWeight": 0, + "SaleCondition": 0, + "SaleConditionParemeter": 0, + "SellingCurrencyType": 10, + "Price": 6000, + "Discount": 100, + "DiscountWeight": 0, + "SaleMax": 1, + "DiscountMark": "", + "Specialty": 0, + "RefreshCycle": 0 + }, { "Id": 7001, "GroupId": 202, @@ -6921,7 +6943,7 @@ "SaleCondition": 0, "SaleConditionParemeter": 0, "SellingCurrencyType": 9, - "Price": 2, + "Price": 1, "Discount": 0, "DiscountWeight": 0, "SaleMax": 1, diff --git a/src/api/config/HelpConfigCategory.json b/src/api/config/HelpConfigCategory.json index da24cf2..cf36ec2 100644 --- a/src/api/config/HelpConfigCategory.json +++ b/src/api/config/HelpConfigCategory.json @@ -440,5 +440,31 @@ "Picture3": "", "Text3": "", "NextPage": 0 + }, + { + "id": 38, + "Group": 33, + "Page": 1, + "Stencil": 3, + "Picture1": "", + "Text1": "演武榜帮助界面", + "Picture2": "", + "Text2": "", + "Picture3": "", + "Text3": "", + "NextPage": 0 + }, + { + "id": 39, + "Group": 34, + "Page": 1, + "Stencil": 3, + "Picture1": "", + "Text1": "1、拓印时只拓印当前屏幕范围内所有物品\n2、点击本地标签中的\"+\"按钮即可保存拓印\n3、点击应用即可使用拓印,且会覆盖当前山谷的布局", + "Picture2": "", + "Text2": "", + "Picture3": "", + "Text3": "", + "NextPage": 0 } ] \ No newline at end of file diff --git a/src/api/config/ImmortalTreeLvConfigCategory.json b/src/api/config/ImmortalTreeLvConfigCategory.json index 93ad935..52bfeac 100644 --- a/src/api/config/ImmortalTreeLvConfigCategory.json +++ b/src/api/config/ImmortalTreeLvConfigCategory.json @@ -1,6 +1,7 @@ [ { "Id": 1, + "Stage": 1, "Lv": 1, "NextExp": 50, "Num": 10, @@ -15,10 +16,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 2, + "Stage": 1, "Lv": 2, "NextExp": 200, "Num": 11, @@ -33,10 +36,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 3, + "Stage": 1, "Lv": 3, "NextExp": 450, "Num": 12, @@ -51,10 +56,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 4, + "Stage": 1, "Lv": 4, "NextExp": 800, "Num": 13, @@ -69,10 +76,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 5, + "Stage": 1, "Lv": 5, "NextExp": 1250, "Num": 14, @@ -87,10 +96,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 6, + "Stage": 1, "Lv": 6, "NextExp": 1800, "Num": 15, @@ -105,10 +116,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 7, + "Stage": 1, "Lv": 7, "NextExp": 2450, "Num": 16, @@ -123,10 +136,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 8, + "Stage": 1, "Lv": 8, "NextExp": 3200, "Num": 17, @@ -141,10 +156,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 9, + "Stage": 1, "Lv": 9, "NextExp": 4050, "Num": 18, @@ -159,10 +176,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 10, + "Stage": 1, "Lv": 10, "NextExp": 5000, "Num": 19, @@ -177,10 +196,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 11, + "Stage": 1, "Lv": 11, "NextExp": 6050, "Num": 20, @@ -195,10 +216,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 12, + "Stage": 1, "Lv": 12, "NextExp": 7200, "Num": 21, @@ -213,10 +236,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 13, + "Stage": 1, "Lv": 13, "NextExp": 8450, "Num": 22, @@ -231,10 +256,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 14, + "Stage": 1, "Lv": 14, "NextExp": 9800, "Num": 23, @@ -249,10 +276,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 15, + "Stage": 1, "Lv": 15, "NextExp": 11250, "Num": 24, @@ -267,10 +296,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 16, + "Stage": 1, "Lv": 16, "NextExp": 12800, "Num": 25, @@ -285,10 +316,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 17, + "Stage": 1, "Lv": 17, "NextExp": 14450, "Num": 26, @@ -303,10 +336,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 18, + "Stage": 1, "Lv": 18, "NextExp": 16200, "Num": 27, @@ -321,10 +356,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 19, + "Stage": 1, "Lv": 19, "NextExp": 18050, "Num": 28, @@ -339,10 +376,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 20, + "Stage": 1, "Lv": 20, "NextExp": 20000, "Num": 29, @@ -357,10 +396,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 21, + "Stage": 1, "Lv": 21, "NextExp": 22050, "Num": 30, @@ -375,10 +416,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 22, + "Stage": 1, "Lv": 22, "NextExp": 24200, "Num": 31, @@ -393,10 +436,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 23, + "Stage": 1, "Lv": 23, "NextExp": 26450, "Num": 32, @@ -411,10 +456,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 24, + "Stage": 1, "Lv": 24, "NextExp": 28800, "Num": 33, @@ -429,10 +476,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 25, + "Stage": 1, "Lv": 25, "NextExp": 31250, "Num": 34, @@ -447,10 +496,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 26, + "Stage": 1, "Lv": 26, "NextExp": 33800, "Num": 35, @@ -465,10 +516,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 27, + "Stage": 1, "Lv": 27, "NextExp": 36450, "Num": 36, @@ -483,10 +536,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 28, + "Stage": 1, "Lv": 28, "NextExp": 39200, "Num": 37, @@ -501,10 +556,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 29, + "Stage": 1, "Lv": 29, "NextExp": 42050, "Num": 38, @@ -519,10 +576,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 30, + "Stage": 1, "Lv": 30, "NextExp": 45000, "Num": 39, @@ -537,10 +596,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 31, + "Stage": 1, "Lv": 31, "NextExp": 48050, "Num": 40, @@ -555,10 +616,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 32, + "Stage": 1, "Lv": 32, "NextExp": 51200, "Num": 41, @@ -573,10 +636,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 33, + "Stage": 1, "Lv": 33, "NextExp": 54450, "Num": 42, @@ -591,10 +656,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 34, + "Stage": 1, "Lv": 34, "NextExp": 57800, "Num": 43, @@ -609,10 +676,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 35, + "Stage": 1, "Lv": 35, "NextExp": 61250, "Num": 44, @@ -627,10 +696,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 36, + "Stage": 1, "Lv": 36, "NextExp": 64800, "Num": 45, @@ -645,10 +716,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 37, + "Stage": 1, "Lv": 37, "NextExp": 68450, "Num": 46, @@ -663,10 +736,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 38, + "Stage": 1, "Lv": 38, "NextExp": 72200, "Num": 47, @@ -681,10 +756,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 39, + "Stage": 1, "Lv": 39, "NextExp": 76050, "Num": 48, @@ -699,10 +776,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 40, + "Stage": 1, "Lv": 40, "NextExp": 80000, "Num": 49, @@ -717,10 +796,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 41, + "Stage": 1, "Lv": 41, "NextExp": 84050, "Num": 50, @@ -735,10 +816,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 42, + "Stage": 1, "Lv": 42, "NextExp": 88200, "Num": 51, @@ -753,10 +836,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 43, + "Stage": 1, "Lv": 43, "NextExp": 92450, "Num": 52, @@ -771,10 +856,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 44, + "Stage": 1, "Lv": 44, "NextExp": 96800, "Num": 53, @@ -789,10 +876,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 45, + "Stage": 1, "Lv": 45, "NextExp": 101250, "Num": 54, @@ -807,10 +896,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 46, + "Stage": 1, "Lv": 46, "NextExp": 105800, "Num": 55, @@ -825,10 +916,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 47, + "Stage": 1, "Lv": 47, "NextExp": 110450, "Num": 56, @@ -843,10 +936,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 48, + "Stage": 1, "Lv": 48, "NextExp": 115200, "Num": 57, @@ -861,10 +956,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 49, + "Stage": 1, "Lv": 49, "NextExp": 120050, "Num": 58, @@ -879,10 +976,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 50, + "Stage": 1, "Lv": 50, "NextExp": 125000, "Num": 59, @@ -897,10 +996,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 51, + "Stage": 1, "Lv": 51, "NextExp": 130050, "Num": 60, @@ -915,10 +1016,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 52, + "Stage": 1, "Lv": 52, "NextExp": 135200, "Num": 60, @@ -933,10 +1036,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 53, + "Stage": 1, "Lv": 53, "NextExp": 140450, "Num": 60, @@ -951,10 +1056,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 54, + "Stage": 1, "Lv": 54, "NextExp": 145800, "Num": 60, @@ -969,10 +1076,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 55, + "Stage": 1, "Lv": 55, "NextExp": 151250, "Num": 60, @@ -987,10 +1096,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 56, + "Stage": 1, "Lv": 56, "NextExp": 156800, "Num": 60, @@ -1005,10 +1116,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 57, + "Stage": 1, "Lv": 57, "NextExp": 162450, "Num": 60, @@ -1023,10 +1136,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 58, + "Stage": 1, "Lv": 58, "NextExp": 168200, "Num": 60, @@ -1041,10 +1156,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 59, + "Stage": 1, "Lv": 59, "NextExp": 174050, "Num": 60, @@ -1059,10 +1176,12 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 }, { "Id": 60, + "Stage": 1, "Lv": 60, "NextExp": 180000, "Num": 60, @@ -1077,6 +1196,207 @@ "ItemId_4": 0, "ItemNum_4": 0, "ItemId_5": 0, - "ItemNum_5": 0 + "ItemNum_5": 0, + "ImmortalityFruit": 0 + }, + { + "Id": 1001, + "Stage": 2, + "Lv": 1, + "NextExp": 100000, + "Num": 60, + "DEF": 0, + "MpMax": 140000, + "ItemId_1": 7303, + "ItemNum_1": 64, + "ItemId_2": 200001, + "ItemNum_2": 1, + "ItemId_3": 0, + "ItemNum_3": 0, + "ItemId_4": 0, + "ItemNum_4": 0, + "ItemId_5": 0, + "ItemNum_5": 0, + "ImmortalityFruit": 2 + }, + { + "Id": 1002, + "Stage": 2, + "Lv": 2, + "NextExp": 100000, + "Num": 60, + "DEF": 0, + "MpMax": 140000, + "ItemId_1": 7303, + "ItemNum_1": 64, + "ItemId_2": 200001, + "ItemNum_2": 1, + "ItemId_3": 0, + "ItemNum_3": 0, + "ItemId_4": 0, + "ItemNum_4": 0, + "ItemId_5": 0, + "ItemNum_5": 0, + "ImmortalityFruit": 4 + }, + { + "Id": 1003, + "Stage": 2, + "Lv": 3, + "NextExp": 100000, + "Num": 60, + "DEF": 0, + "MpMax": 140000, + "ItemId_1": 7303, + "ItemNum_1": 64, + "ItemId_2": 200001, + "ItemNum_2": 1, + "ItemId_3": 0, + "ItemNum_3": 0, + "ItemId_4": 0, + "ItemNum_4": 0, + "ItemId_5": 0, + "ItemNum_5": 0, + "ImmortalityFruit": 6 + }, + { + "Id": 1004, + "Stage": 2, + "Lv": 4, + "NextExp": 100000, + "Num": 60, + "DEF": 0, + "MpMax": 140000, + "ItemId_1": 7303, + "ItemNum_1": 64, + "ItemId_2": 200001, + "ItemNum_2": 1, + "ItemId_3": 0, + "ItemNum_3": 0, + "ItemId_4": 0, + "ItemNum_4": 0, + "ItemId_5": 0, + "ItemNum_5": 0, + "ImmortalityFruit": 8 + }, + { + "Id": 1005, + "Stage": 2, + "Lv": 5, + "NextExp": 100000, + "Num": 60, + "DEF": 0, + "MpMax": 140000, + "ItemId_1": 7303, + "ItemNum_1": 64, + "ItemId_2": 200001, + "ItemNum_2": 1, + "ItemId_3": 0, + "ItemNum_3": 0, + "ItemId_4": 0, + "ItemNum_4": 0, + "ItemId_5": 0, + "ItemNum_5": 0, + "ImmortalityFruit": 10 + }, + { + "Id": 1006, + "Stage": 2, + "Lv": 6, + "NextExp": 100000, + "Num": 60, + "DEF": 0, + "MpMax": 140000, + "ItemId_1": 7303, + "ItemNum_1": 64, + "ItemId_2": 200001, + "ItemNum_2": 1, + "ItemId_3": 0, + "ItemNum_3": 0, + "ItemId_4": 0, + "ItemNum_4": 0, + "ItemId_5": 0, + "ItemNum_5": 0, + "ImmortalityFruit": 12 + }, + { + "Id": 1007, + "Stage": 2, + "Lv": 7, + "NextExp": 100000, + "Num": 60, + "DEF": 0, + "MpMax": 140000, + "ItemId_1": 7303, + "ItemNum_1": 64, + "ItemId_2": 200001, + "ItemNum_2": 1, + "ItemId_3": 0, + "ItemNum_3": 0, + "ItemId_4": 0, + "ItemNum_4": 0, + "ItemId_5": 0, + "ItemNum_5": 0, + "ImmortalityFruit": 14 + }, + { + "Id": 1008, + "Stage": 2, + "Lv": 8, + "NextExp": 100000, + "Num": 60, + "DEF": 0, + "MpMax": 140000, + "ItemId_1": 7303, + "ItemNum_1": 64, + "ItemId_2": 200001, + "ItemNum_2": 1, + "ItemId_3": 0, + "ItemNum_3": 0, + "ItemId_4": 0, + "ItemNum_4": 0, + "ItemId_5": 0, + "ItemNum_5": 0, + "ImmortalityFruit": 16 + }, + { + "Id": 1009, + "Stage": 2, + "Lv": 9, + "NextExp": 100000, + "Num": 60, + "DEF": 0, + "MpMax": 140000, + "ItemId_1": 7303, + "ItemNum_1": 64, + "ItemId_2": 200001, + "ItemNum_2": 1, + "ItemId_3": 0, + "ItemNum_3": 0, + "ItemId_4": 0, + "ItemNum_4": 0, + "ItemId_5": 0, + "ItemNum_5": 0, + "ImmortalityFruit": 18 + }, + { + "Id": 1010, + "Stage": 2, + "Lv": 10, + "NextExp": 100000, + "Num": 60, + "DEF": 0, + "MpMax": 140000, + "ItemId_1": 7303, + "ItemNum_1": 64, + "ItemId_2": 200001, + "ItemNum_2": 1, + "ItemId_3": 0, + "ItemNum_3": 0, + "ItemId_4": 0, + "ItemNum_4": 0, + "ItemId_5": 0, + "ItemNum_5": 0, + "ImmortalityFruit": 20 } ] \ No newline at end of file diff --git a/src/api/config/LanternWordsConfigCategory.json b/src/api/config/LanternWordsConfigCategory.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/src/api/config/LanternWordsConfigCategory.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/src/api/config/MailConfigCategory.json b/src/api/config/MailConfigCategory.json index 4f78cd4..9a44a80 100644 --- a/src/api/config/MailConfigCategory.json +++ b/src/api/config/MailConfigCategory.json @@ -138,5 +138,55 @@ "Sender": "陶先生", "Content": "尊敬的勇士,您上期的兽潮积分排名为{0},以下是您的奖励", "Reward": 0 + }, + { + "ID": 15, + "MailName": "战令奖励", + "Type": 15, + "OverdueType": 2, + "Greetings": "", + "Sender": "陶先生", + "Content": "尊敬的谷主,以下是您上期战令奖励有未领取的部分", + "Reward": 0 + }, + { + "ID": 16, + "MailName": "最幸福桃源总榜奖励", + "Type": 16, + "OverdueType": 2, + "Greetings": "", + "Sender": "陶先生", + "Content": "尊敬的勇士,您本期最幸福桃源总榜排名为{0},以下是您的奖励", + "Reward": 0 + }, + { + "ID": 17, + "MailName": "最幸福桃源锦衣榜奖励", + "Type": 17, + "OverdueType": 2, + "Greetings": "", + "Sender": "陶先生", + "Content": "尊敬的勇士,您本期最幸福桃源锦衣榜排名为{0},以下是您的奖励", + "Reward": 0 + }, + { + "ID": 18, + "MailName": "最幸福桃源玉食榜奖励", + "Type": 18, + "OverdueType": 2, + "Greetings": "", + "Sender": "陶先生", + "Content": "尊敬的勇士,您本期最幸福桃源玉食榜排名为{0},以下是您的奖励", + "Reward": 0 + }, + { + "ID": 19, + "MailName": "最幸福桃源松龄榜奖励", + "Type": 19, + "OverdueType": 2, + "Greetings": "", + "Sender": "陶先生", + "Content": "尊敬的勇士,您本期最幸福桃源松龄榜排名为{0},以下是您的奖励", + "Reward": 0 } ] \ No newline at end of file diff --git a/src/api/config/MainButtonConfigCategory.json b/src/api/config/MainButtonConfigCategory.json index c98d2f6..6e4b808 100644 --- a/src/api/config/MainButtonConfigCategory.json +++ b/src/api/config/MainButtonConfigCategory.json @@ -230,6 +230,17 @@ "FatherButton": 12, "UnlockCondition": "" }, + { + "Id": 1205, + "UIName": "BattlePass", + "New": true, + "DisplayType": 1, + "Parameter": 5, + "Parameter2": 0, + "ShowText": 0, + "FatherButton": 12, + "UnlockCondition": "" + }, { "Id": 1301, "UIName": "ChallengeFightBtn", diff --git a/src/api/config/MartialRankConfigCategory.json b/src/api/config/MartialRankConfigCategory.json index e1bc6e6..2d19cc4 100644 --- a/src/api/config/MartialRankConfigCategory.json +++ b/src/api/config/MartialRankConfigCategory.json @@ -4,62 +4,62 @@ "HighRank": 1, "LowRank": 5, "CoinReward": 50000, - "DailyReward": 10000 + "MinuteReward": 110 }, { "Id": 1020, "HighRank": 6, "LowRank": 10, "CoinReward": 900, - "DailyReward": 5000 + "MinuteReward": 80 }, { "Id": 1030, "HighRank": 11, "LowRank": 50, "CoinReward": 80, - "DailyReward": 4000 + "MinuteReward": 69 }, { "Id": 1040, "HighRank": 51, "LowRank": 100, "CoinReward": 70, - "DailyReward": 3000 + "MinuteReward": 50 }, { "Id": 1050, "HighRank": 101, "LowRank": 200, "CoinReward": 60, - "DailyReward": 2000 + "MinuteReward": 25 }, { "Id": 1060, "HighRank": 201, "LowRank": 300, "CoinReward": 50, - "DailyReward": 1000 + "MinuteReward": 20 }, { "Id": 1070, "HighRank": 301, "LowRank": 400, "CoinReward": 40, - "DailyReward": 500 + "MinuteReward": 15 }, { "Id": 1080, "HighRank": 401, "LowRank": 500, "CoinReward": 6, - "DailyReward": 100 + "MinuteReward": 10 }, { "Id": 1090, "HighRank": 500, "LowRank": 100000, "CoinReward": 0, - "DailyReward": 0 + "MinuteReward": 5 } ] \ No newline at end of file diff --git a/src/api/config/MonsterAiConfigCategory.json b/src/api/config/MonsterAiConfigCategory.json index fba240e..6b1d4f1 100644 --- a/src/api/config/MonsterAiConfigCategory.json +++ b/src/api/config/MonsterAiConfigCategory.json @@ -232,5 +232,32 @@ "Priority": 1, "CastSkill": 11001, "CastFrequency": 1 + }, + { + "Id": 330011, + "GroupId": 33001, + "TriggeringConditions": 3, + "ConditionParameters": 30, + "Priority": 4, + "CastSkill": 20011, + "CastFrequency": -1 + }, + { + "Id": 330012, + "GroupId": 33001, + "TriggeringConditions": 5, + "ConditionParameters": 0, + "Priority": 3, + "CastSkill": 20011, + "CastFrequency": -1 + }, + { + "Id": 330013, + "GroupId": 33001, + "TriggeringConditions": 6, + "ConditionParameters": 0, + "Priority": 2, + "CastSkill": 20031, + "CastFrequency": -1 } ] \ No newline at end of file diff --git a/src/api/config/MonsterConfigCategory.json b/src/api/config/MonsterConfigCategory.json index 07d2166..04aedeb 100644 --- a/src/api/config/MonsterConfigCategory.json +++ b/src/api/config/MonsterConfigCategory.json @@ -103180,5 +103180,269 @@ "HeadImage": "Monster_Lielie", "NameImage": "", "Introduction": "" + }, + { + "Id": 30001, + "Type": 1, + "Name": "狼", + "InitialDisplay": true, + "BodySoulLv": 1, + "Class": 1, + "BeHitPos": { + "x": 0, + "y": 0.9 + }, + "ATK": 8, + "HP": 100, + "DEF": 1, + "AttackSpeed": 100, + "HitRate": 100, + "DodgeRate": 0, + "CritRate": 0, + "MoveSpeed": 20, + "Weapon": 0, + "NormalAttack": 10001, + "BattleCircle": 3, + "ChasingCircle": 7, + "SkillSet": [], + "Ai": 0, + "DisperseYaoyun": 0, + "ClearVillager": false, + "VillageHatred": 0, + "DoorHatred": 0, + "TowerHatred": 0, + "ImmortalTreeHatred": 0, + "StructureHatred": 0, + "WarriorHatred": 0, + "Help": false, + "Copper": [ + 2, + 5 + ], + "DropGroup": 19101, + "Probability": 100, + "ExtraOutProbability2": 40, + "ExtraOutProbability3": 0, + "Scale": 150, + "Offset": { + "x": 1, + "y": 1 + }, + "Prefab": "Monster_Lang_pt", + "HeadImage": "Monster_Lang", + "NameImage": "", + "Introduction": "" + }, + { + "Id": 33001, + "Type": 6, + "Name": "穷奇", + "InitialDisplay": true, + "BodySoulLv": 20, + "Class": 3, + "BeHitPos": { + "x": 0, + "y": 0.9 + }, + "ATK": 20, + "HP": 99999999, + "DEF": 5, + "AttackSpeed": 100, + "HitRate": 100, + "DodgeRate": 0, + "CritRate": 0, + "MoveSpeed": 20, + "Weapon": 0, + "NormalAttack": 20001, + "BattleCircle": 150, + "ChasingCircle": 150, + "SkillSet": [ + 11001, + 20011, + 20021 + ], + "Ai": 33001, + "DisperseYaoyun": 0, + "ClearVillager": false, + "VillageHatred": 70, + "DoorHatred": 0, + "TowerHatred": 0, + "ImmortalTreeHatred": 0, + "StructureHatred": 0, + "WarriorHatred": 100, + "Help": false, + "Copper": [], + "DropGroup": 0, + "Probability": 0, + "ExtraOutProbability2": 0, + "ExtraOutProbability3": 0, + "Scale": 150, + "Offset": { + "x": 1, + "y": 1 + }, + "Prefab": "Monster_Qiongqi", + "HeadImage": "Monster_Qiongqi", + "NameImage": "Qiongqi", + "Introduction": "是中国古代神话传说中的一种凶恶贪食的妖兽,被视为四大凶兽之一。" + }, + { + "Id": 33002, + "Type": 6, + "Name": "饕餮", + "InitialDisplay": true, + "BodySoulLv": 20, + "Class": 3, + "BeHitPos": { + "x": 0, + "y": 0.9 + }, + "ATK": 300, + "HP": 99999999, + "DEF": 25, + "AttackSpeed": 100, + "HitRate": 100, + "DodgeRate": 0, + "CritRate": 0, + "MoveSpeed": 20, + "Weapon": 0, + "NormalAttack": 20111, + "BattleCircle": 150, + "ChasingCircle": 150, + "SkillSet": [ + 11001, + 20121, + 20131 + ], + "Ai": 2, + "DisperseYaoyun": 0, + "ClearVillager": false, + "VillageHatred": 70, + "DoorHatred": 0, + "TowerHatred": 0, + "ImmortalTreeHatred": 0, + "StructureHatred": 0, + "WarriorHatred": 100, + "Help": false, + "Copper": [], + "DropGroup": 0, + "Probability": 0, + "ExtraOutProbability2": 0, + "ExtraOutProbability3": 0, + "Scale": 150, + "Offset": { + "x": 1, + "y": 1 + }, + "Prefab": "Monster_Taotie", + "HeadImage": "Monster_Taotie", + "NameImage": "Taotie", + "Introduction": "是中国古代神话传说中的一种凶恶贪食的妖兽,被视为四大凶兽之一。" + }, + { + "Id": 33003, + "Type": 6, + "Name": "梼杌", + "InitialDisplay": true, + "BodySoulLv": 20, + "Class": 3, + "BeHitPos": { + "x": 0, + "y": 0.9 + }, + "ATK": 600, + "HP": 99999999, + "DEF": 50, + "AttackSpeed": 100, + "HitRate": 100, + "DodgeRate": 0, + "CritRate": 0, + "MoveSpeed": 20, + "Weapon": 0, + "NormalAttack": 20211, + "BattleCircle": 150, + "ChasingCircle": 150, + "SkillSet": [ + 11001, + 20221, + 20231 + ], + "Ai": 3, + "DisperseYaoyun": 0, + "ClearVillager": false, + "VillageHatred": 70, + "DoorHatred": 0, + "TowerHatred": 0, + "ImmortalTreeHatred": 0, + "StructureHatred": 0, + "WarriorHatred": 100, + "Help": false, + "Copper": [], + "DropGroup": 0, + "Probability": 0, + "ExtraOutProbability2": 0, + "ExtraOutProbability3": 0, + "Scale": 150, + "Offset": { + "x": 1, + "y": 1 + }, + "Prefab": "Monster_Taowu", + "HeadImage": "Monster_Taowu", + "NameImage": "Taowu", + "Introduction": "是中国古代神话传说中的一种凶恶贪食的妖兽,被视为四大凶兽之一。" + }, + { + "Id": 33004, + "Type": 6, + "Name": "蠃鱼", + "InitialDisplay": true, + "BodySoulLv": 20, + "Class": 3, + "BeHitPos": { + "x": 0, + "y": 0.9 + }, + "ATK": 900, + "HP": 99999999, + "DEF": 100, + "AttackSpeed": 100, + "HitRate": 100, + "DodgeRate": 0, + "CritRate": 0, + "MoveSpeed": 20, + "Weapon": 0, + "NormalAttack": 20311, + "BattleCircle": 150, + "ChasingCircle": 150, + "SkillSet": [ + 11001, + 20321, + 20331 + ], + "Ai": 4, + "DisperseYaoyun": 0, + "ClearVillager": false, + "VillageHatred": 70, + "DoorHatred": 0, + "TowerHatred": 0, + "ImmortalTreeHatred": 0, + "StructureHatred": 0, + "WarriorHatred": 100, + "Help": false, + "Copper": [], + "DropGroup": 0, + "Probability": 0, + "ExtraOutProbability2": 0, + "ExtraOutProbability3": 0, + "Scale": 150, + "Offset": { + "x": 1, + "y": 1 + }, + "Prefab": "Monster_Luoyu", + "HeadImage": "Monster_Luoyu", + "NameImage": "Luoyu", + "Introduction": "是中国古代神话传说中的一种凶恶贪食的妖兽,被视为四大凶兽之一。" } ] \ No newline at end of file diff --git a/src/api/config/MonsterGroupConfigCategory.json b/src/api/config/MonsterGroupConfigCategory.json index b22a33f..d96e95e 100644 --- a/src/api/config/MonsterGroupConfigCategory.json +++ b/src/api/config/MonsterGroupConfigCategory.json @@ -126,5 +126,26 @@ "x": 0, "y": 0 } + }, + { + "Id": 30001, + "RefreshConditionType": 1, + "RefreshConditionParameter": 1, + "MonsterID": [ + 30001, + 30001, + 30001, + 30001 + ], + "RefreshNum": 4, + "RefreshPeriod": [ + 1, + 1 + ], + "TimeInterval": 1, + "Coordinate": { + "x": 0, + "y": 0 + } } ] \ No newline at end of file diff --git a/src/api/config/OrderConfigCategory.json b/src/api/config/OrderConfigCategory.json index fac961d..961ddc8 100644 --- a/src/api/config/OrderConfigCategory.json +++ b/src/api/config/OrderConfigCategory.json @@ -5,8 +5,8 @@ "Type": 1, "NeedNum": 10000, "MaterialGroup": 1, - "Copper": 500000, - "EngineeringQuantity": 5200000, + "Copper": 350000, + "EngineeringQuantity": 2000000, "OrderDescribe": "七孤城的将士在前线抵御妖兽需要大量的兵器", "NeedDescribe": "制造10000件兵具供给七孤城的将士", "ExpendDescribe": "木材,布料,金属锭" @@ -17,8 +17,8 @@ "Type": 2, "NeedNum": 10000, "MaterialGroup": 2, - "Copper": 500000, - "EngineeringQuantity": 5200000, + "Copper": 350000, + "EngineeringQuantity": 2000000, "OrderDescribe": "七孤城的将士在前线抵御妖兽需要大量军粮", "NeedDescribe": "制造10000件军粮供给七孤城的将士", "ExpendDescribe": "食材" diff --git a/src/api/config/RechargeConfigCategory.json b/src/api/config/RechargeConfigCategory.json index 3c0c0e4..81a427d 100644 --- a/src/api/config/RechargeConfigCategory.json +++ b/src/api/config/RechargeConfigCategory.json @@ -413,6 +413,24 @@ 11 ] }, + { + "Id": 24, + "ShopType": 6, + "Currency": 3, + "RMB_Num": 48, + "ItemId": 0, + "ItenNum": 0, + "Extra": 0, + "RefreshType": 2, + "Double": false, + "Recommend": false, + "Open": true, + "Name": "购买:高级战令", + "ICON": "", + "equal": [ + -1 + ] + }, { "Id": 101, "ShopType": 99, diff --git a/src/api/config/RegionConfigCategory.json b/src/api/config/RegionConfigCategory.json index 3be80bf..710a140 100644 --- a/src/api/config/RegionConfigCategory.json +++ b/src/api/config/RegionConfigCategory.json @@ -441,6 +441,29 @@ "ButtonName": "", "Description": "" }, + { + "Id": 8001, + "Region": "远征-廖山", + "TaskCondition": -1, + "TeleportationPointTips": "", + "Type": 9, + "StoreHouse": false, + "Relationship": 0, + "PrestigeId": 0, + "BuildTask": 0, + "Fog": false, + "Monster": 0, + "Protector": false, + "ResurrectionPoint": { + "x": 0, + "y": 0 + }, + "Image": "", + "Image2": "", + "ArtPrefab": "MapArt_8001", + "ButtonName": "", + "Description": "" + }, { "Id": 9999, "Region": "战斗测试", diff --git a/src/api/config/RegionVillagerGroupConfigCategory.json b/src/api/config/RegionVillagerGroupConfigCategory.json index 1d8741e..7323ed2 100644 --- a/src/api/config/RegionVillagerGroupConfigCategory.json +++ b/src/api/config/RegionVillagerGroupConfigCategory.json @@ -29,11 +29,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -45,8 +45,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 19, + 11, 8, 2, 0 @@ -68,11 +68,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -84,8 +84,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 20, + 12, 8, 2, 0 @@ -107,11 +107,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -123,8 +123,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 21, + 13, 8, 2, 0 @@ -146,11 +146,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -162,8 +162,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 22, + 14, 8, 2, 0 @@ -185,11 +185,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -201,8 +201,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 23, + 15, 8, 2, 0 @@ -224,11 +224,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -240,8 +240,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 24, + 16, 8, 2, 0 @@ -263,11 +263,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -279,8 +279,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 25, + 17, 8, 2, 0 @@ -302,11 +302,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -318,8 +318,8 @@ "AgeStage": [ 1, 1, + 26, 18, - 10, 8, 2, 0 @@ -341,11 +341,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -357,8 +357,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 27, + 19, 8, 2, 0 @@ -380,11 +380,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -396,8 +396,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 28, + 20, 8, 2, 0 @@ -419,11 +419,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -435,8 +435,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 29, + 21, 8, 2, 0 @@ -458,11 +458,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -474,8 +474,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 30, + 22, 8, 2, 0 @@ -497,11 +497,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -513,8 +513,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 31, + 23, 8, 2, 0 @@ -536,11 +536,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -552,8 +552,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 32, + 24, 8, 2, 0 @@ -575,11 +575,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -614,11 +614,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -630,8 +630,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 19, + 11, 8, 2, 0 @@ -653,11 +653,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -669,8 +669,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 20, + 12, 8, 2, 0 @@ -692,11 +692,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -708,8 +708,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 21, + 13, 8, 2, 0 @@ -731,11 +731,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -747,8 +747,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 22, + 14, 8, 2, 0 @@ -770,11 +770,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -786,8 +786,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 23, + 15, 8, 2, 0 @@ -809,11 +809,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -825,8 +825,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 24, + 16, 8, 2, 0 @@ -848,11 +848,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -864,8 +864,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 25, + 17, 8, 2, 0 @@ -887,11 +887,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -903,8 +903,8 @@ "AgeStage": [ 1, 1, + 26, 18, - 10, 8, 2, 0 @@ -926,11 +926,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -942,8 +942,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 27, + 19, 8, 2, 0 @@ -965,11 +965,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -981,8 +981,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 28, + 20, 8, 2, 0 @@ -1004,11 +1004,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -1020,8 +1020,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 29, + 21, 8, 2, 0 @@ -1043,11 +1043,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -1059,8 +1059,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 30, + 22, 8, 2, 0 @@ -1082,11 +1082,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -1098,8 +1098,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 31, + 23, 8, 2, 0 @@ -1121,11 +1121,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -1137,8 +1137,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 32, + 24, 8, 2, 0 @@ -1160,11 +1160,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -1199,11 +1199,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -1215,8 +1215,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 19, + 11, 8, 2, 0 @@ -1238,11 +1238,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -1254,8 +1254,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 20, + 12, 8, 2, 0 @@ -1277,11 +1277,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -1293,8 +1293,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 21, + 13, 8, 2, 0 @@ -1316,11 +1316,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -1332,8 +1332,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 22, + 14, 8, 2, 0 @@ -1355,11 +1355,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -1371,8 +1371,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 23, + 15, 8, 2, 0 @@ -1394,11 +1394,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -1410,8 +1410,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 24, + 16, 8, 2, 0 @@ -1433,11 +1433,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -1449,8 +1449,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 25, + 17, 8, 2, 0 @@ -1472,11 +1472,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -1488,8 +1488,8 @@ "AgeStage": [ 1, 1, + 26, 18, - 10, 8, 2, 0 @@ -1511,11 +1511,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -1527,8 +1527,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 27, + 19, 8, 2, 0 @@ -1550,11 +1550,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -1566,8 +1566,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 28, + 20, 8, 2, 0 @@ -1589,11 +1589,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -1605,8 +1605,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 29, + 21, 8, 2, 0 @@ -1628,11 +1628,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -1644,8 +1644,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 30, + 22, 8, 2, 0 @@ -1667,11 +1667,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -1683,8 +1683,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 31, + 23, 8, 2, 0 @@ -1706,11 +1706,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -1722,8 +1722,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 32, + 24, 8, 2, 0 @@ -1745,11 +1745,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -1784,11 +1784,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -1800,8 +1800,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 19, + 11, 8, 2, 0 @@ -1823,11 +1823,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -1839,8 +1839,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 20, + 12, 8, 2, 0 @@ -1862,11 +1862,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -1878,8 +1878,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 21, + 13, 8, 2, 0 @@ -1901,11 +1901,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -1917,8 +1917,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 22, + 14, 8, 2, 0 @@ -1940,11 +1940,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -1956,8 +1956,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 23, + 15, 8, 2, 0 @@ -1979,11 +1979,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -1995,8 +1995,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 24, + 16, 8, 2, 0 @@ -2018,11 +2018,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -2034,8 +2034,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 25, + 17, 8, 2, 0 @@ -2057,11 +2057,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -2073,8 +2073,8 @@ "AgeStage": [ 1, 1, + 26, 18, - 10, 8, 2, 0 @@ -2096,11 +2096,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -2112,8 +2112,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 27, + 19, 8, 2, 0 @@ -2135,11 +2135,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -2151,8 +2151,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 28, + 20, 8, 2, 0 @@ -2174,11 +2174,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -2190,8 +2190,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 29, + 21, 8, 2, 0 @@ -2213,11 +2213,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -2229,8 +2229,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 30, + 22, 8, 2, 0 @@ -2252,11 +2252,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -2268,8 +2268,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 31, + 23, 8, 2, 0 @@ -2291,11 +2291,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] @@ -2307,8 +2307,8 @@ "AgeStage": [ 1, 1, - 18, - 10, + 32, + 24, 8, 2, 0 @@ -2330,11 +2330,11 @@ 11 ], "SkillWeights": [ - 10, - 10, - 10, - 10, - 10, + 15, + 15, + 15, + 15, + 15, 1, 1 ] diff --git a/src/api/config/ReputationShopItemGroupConfigCategory.json b/src/api/config/ReputationShopItemGroupConfigCategory.json index 9b0cebd..5ddfca4 100644 --- a/src/api/config/ReputationShopItemGroupConfigCategory.json +++ b/src/api/config/ReputationShopItemGroupConfigCategory.json @@ -1394,7 +1394,7 @@ "Price": 2000, "ReputationConditon": 1000, "ScaleCondition": 16, - "RefreshCycle": 3 + "RefreshCycle": 1 }, { "Id": 3002, diff --git a/src/api/config/RewardGroupConfigCategory.json b/src/api/config/RewardGroupConfigCategory.json index 2246392..0042d73 100644 --- a/src/api/config/RewardGroupConfigCategory.json +++ b/src/api/config/RewardGroupConfigCategory.json @@ -3856,11 +3856,13 @@ "ItemId": [ 113, 701, - 2053 + 2053, + 2055 ], "Number": [ 10, 5, + 1, 1 ] }, @@ -3869,11 +3871,13 @@ "ItemId": [ 129, 701, - 2053 + 2053, + 2056 ], "Number": [ 20, 5, + 1, 1 ] }, @@ -3882,11 +3886,13 @@ "ItemId": [ 143, 701, - 2053 + 2053, + 2057 ], "Number": [ 10, 5, + 1, 1 ] }, @@ -3895,11 +3901,13 @@ "ItemId": [ 112, 701, - 2053 + 2053, + 2058 ], "Number": [ 10, 5, + 1, 1 ] }, @@ -4385,6 +4393,286 @@ 75 ] }, + { + "Id": 50001, + "ItemId": [], + "Number": [] + }, + { + "Id": 50002, + "ItemId": [], + "Number": [] + }, + { + "Id": 50003, + "ItemId": [], + "Number": [] + }, + { + "Id": 50004, + "ItemId": [], + "Number": [] + }, + { + "Id": 50005, + "ItemId": [], + "Number": [] + }, + { + "Id": 50006, + "ItemId": [], + "Number": [] + }, + { + "Id": 50007, + "ItemId": [], + "Number": [] + }, + { + "Id": 50008, + "ItemId": [], + "Number": [] + }, + { + "Id": 50009, + "ItemId": [], + "Number": [] + }, + { + "Id": 50010, + "ItemId": [], + "Number": [] + }, + { + "Id": 50011, + "ItemId": [], + "Number": [] + }, + { + "Id": 50012, + "ItemId": [], + "Number": [] + }, + { + "Id": 50013, + "ItemId": [], + "Number": [] + }, + { + "Id": 50014, + "ItemId": [], + "Number": [] + }, + { + "Id": 51001, + "ItemId": [], + "Number": [] + }, + { + "Id": 51002, + "ItemId": [], + "Number": [] + }, + { + "Id": 51003, + "ItemId": [], + "Number": [] + }, + { + "Id": 51004, + "ItemId": [], + "Number": [] + }, + { + "Id": 51005, + "ItemId": [], + "Number": [] + }, + { + "Id": 51006, + "ItemId": [], + "Number": [] + }, + { + "Id": 51007, + "ItemId": [], + "Number": [] + }, + { + "Id": 51008, + "ItemId": [], + "Number": [] + }, + { + "Id": 51009, + "ItemId": [], + "Number": [] + }, + { + "Id": 51010, + "ItemId": [], + "Number": [] + }, + { + "Id": 51011, + "ItemId": [], + "Number": [] + }, + { + "Id": 51012, + "ItemId": [], + "Number": [] + }, + { + "Id": 51013, + "ItemId": [], + "Number": [] + }, + { + "Id": 51014, + "ItemId": [], + "Number": [] + }, + { + "Id": 52001, + "ItemId": [], + "Number": [] + }, + { + "Id": 52002, + "ItemId": [], + "Number": [] + }, + { + "Id": 52003, + "ItemId": [], + "Number": [] + }, + { + "Id": 52004, + "ItemId": [], + "Number": [] + }, + { + "Id": 52005, + "ItemId": [], + "Number": [] + }, + { + "Id": 52006, + "ItemId": [], + "Number": [] + }, + { + "Id": 52007, + "ItemId": [], + "Number": [] + }, + { + "Id": 52008, + "ItemId": [], + "Number": [] + }, + { + "Id": 52009, + "ItemId": [], + "Number": [] + }, + { + "Id": 52010, + "ItemId": [], + "Number": [] + }, + { + "Id": 52011, + "ItemId": [], + "Number": [] + }, + { + "Id": 52012, + "ItemId": [], + "Number": [] + }, + { + "Id": 52013, + "ItemId": [], + "Number": [] + }, + { + "Id": 52014, + "ItemId": [], + "Number": [] + }, + { + "Id": 53001, + "ItemId": [], + "Number": [] + }, + { + "Id": 53002, + "ItemId": [], + "Number": [] + }, + { + "Id": 53003, + "ItemId": [], + "Number": [] + }, + { + "Id": 53004, + "ItemId": [], + "Number": [] + }, + { + "Id": 53005, + "ItemId": [], + "Number": [] + }, + { + "Id": 53006, + "ItemId": [], + "Number": [] + }, + { + "Id": 53007, + "ItemId": [], + "Number": [] + }, + { + "Id": 53008, + "ItemId": [], + "Number": [] + }, + { + "Id": 53009, + "ItemId": [], + "Number": [] + }, + { + "Id": 53010, + "ItemId": [], + "Number": [] + }, + { + "Id": 53011, + "ItemId": [], + "Number": [] + }, + { + "Id": 53012, + "ItemId": [], + "Number": [] + }, + { + "Id": 53013, + "ItemId": [], + "Number": [] + }, + { + "Id": 53014, + "ItemId": [], + "Number": [] + }, { "Id": 99995, "ItemId": [ diff --git a/src/api/config/SkillBuffConfigCategory.json b/src/api/config/SkillBuffConfigCategory.json index 56e52dc..e6dc7d1 100644 --- a/src/api/config/SkillBuffConfigCategory.json +++ b/src/api/config/SkillBuffConfigCategory.json @@ -1874,7 +1874,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1001", "BuffEffectPrefab": "", - "Describe": "生命值+100" + "Describe": "生命值+50" }, { "Id": 1002, @@ -4601,7 +4601,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1161", "BuffEffectPrefab": "", - "Describe": "每杀死一只怪物,攻击力提升1%,持续15秒,最多可叠加3层" + "Describe": "每杀死一只怪物,攻击力提升2%,持续15秒,最多可叠加3层" }, { "Id": 1173, @@ -4628,7 +4628,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1161", "BuffEffectPrefab": "", - "Describe": "每杀死一只怪物,攻击力提升1%,持续15秒,最多可叠加3层" + "Describe": "每杀死一只怪物,攻击力提升3%,持续15秒,最多可叠加3层" }, { "Id": 1174, @@ -4655,7 +4655,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1161", "BuffEffectPrefab": "", - "Describe": "每杀死一只怪物,攻击力提升1%,持续15秒,最多可叠加3层" + "Describe": "每杀死一只怪物,攻击力提升4%,持续15秒,最多可叠加3层" }, { "Id": 1175, @@ -4682,7 +4682,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1161", "BuffEffectPrefab": "", - "Describe": "每杀死一只怪物,攻击力提升1%,持续15秒,最多可叠加3层" + "Describe": "每杀死一只怪物,攻击力提升5%,持续15秒,最多可叠加3层" }, { "Id": 1176, @@ -4709,7 +4709,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1161", "BuffEffectPrefab": "", - "Describe": "每杀死一只怪物,攻击力提升1%,持续15秒,最多可叠加3层" + "Describe": "每杀死一只怪物,攻击力提升6%,持续15秒,最多可叠加3层" }, { "Id": 1177, @@ -4736,7 +4736,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1161", "BuffEffectPrefab": "", - "Describe": "每杀死一只怪物,攻击力提升1%,持续15秒,最多可叠加3层" + "Describe": "每杀死一只怪物,攻击力提升7%,持续15秒,最多可叠加3层" }, { "Id": 1178, @@ -4763,7 +4763,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1161", "BuffEffectPrefab": "", - "Describe": "每杀死一只怪物,攻击力提升1%,持续15秒,最多可叠加3层" + "Describe": "每杀死一只怪物,攻击力提升8%,持续15秒,最多可叠加3层" }, { "Id": 1179, @@ -4790,7 +4790,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1161", "BuffEffectPrefab": "", - "Describe": "每杀死一只怪物,攻击力提升1%,持续15秒,最多可叠加3层" + "Describe": "每杀死一只怪物,攻击力提升9%,持续15秒,最多可叠加3层" }, { "Id": 1180, @@ -4817,7 +4817,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1161", "BuffEffectPrefab": "", - "Describe": "每杀死一只怪物,攻击力提升1%,持续15秒,最多可叠加3层" + "Describe": "每杀死一只怪物,攻击力提升10%,持续15秒,最多可叠加3层" }, { "Id": 1201, @@ -5374,8 +5374,8 @@ ], "ContinuedType": 7, "ContinuedParameter": 1, - "Overlay": true, - "OverlayMax": 5, + "Overlay": false, + "OverlayMax": 0, "SequenceId": 1241, "SequenceLv": 1, "BarShow": false, @@ -5384,7 +5384,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1241", "BuffEffectPrefab": "", - "Describe": "每次攻击或使用技能时,每命中1只怪物则提升自身下一次攻击0.5%的伤害值,最多可叠加5层" + "Describe": "每次攻击或技能时,每命中1只怪物则提升自身下一次攻击1%的伤害值,最多可叠加5层" }, { "Id": 1242, @@ -5401,8 +5401,8 @@ ], "ContinuedType": 7, "ContinuedParameter": 1, - "Overlay": true, - "OverlayMax": 5, + "Overlay": false, + "OverlayMax": 0, "SequenceId": 1241, "SequenceLv": 2, "BarShow": false, @@ -5411,7 +5411,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1241", "BuffEffectPrefab": "", - "Describe": "每次攻击或使用技能时,每命中1只怪物则提升自身下一次攻击1%的伤害值,最多可叠加5层" + "Describe": "每次攻击或技能时,每命中1只怪物则提升自身下一次攻击2%的伤害值,最多可叠加5层" }, { "Id": 1243, @@ -5428,8 +5428,8 @@ ], "ContinuedType": 7, "ContinuedParameter": 1, - "Overlay": true, - "OverlayMax": 5, + "Overlay": false, + "OverlayMax": 0, "SequenceId": 1241, "SequenceLv": 3, "BarShow": false, @@ -5438,7 +5438,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1241", "BuffEffectPrefab": "", - "Describe": "每次攻击或使用技能时,每命中1只怪物则提升自身下一次攻击1.5%的伤害值,最多可叠加5层" + "Describe": "每次攻击或技能时,每命中1只怪物则提升自身下一次攻击3%的伤害值,最多可叠加5层" }, { "Id": 1244, @@ -5455,8 +5455,8 @@ ], "ContinuedType": 7, "ContinuedParameter": 1, - "Overlay": true, - "OverlayMax": 5, + "Overlay": false, + "OverlayMax": 0, "SequenceId": 1241, "SequenceLv": 4, "BarShow": false, @@ -5465,7 +5465,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1241", "BuffEffectPrefab": "", - "Describe": "每次攻击或使用技能时,每命中1只怪物则提升自身下一次攻击2%的伤害值,最多可叠加5层" + "Describe": "每次攻击或技能时,每命中1只怪物则提升自身下一次攻击4%的伤害值,最多可叠加5层" }, { "Id": 1245, @@ -5482,8 +5482,8 @@ ], "ContinuedType": 7, "ContinuedParameter": 1, - "Overlay": true, - "OverlayMax": 5, + "Overlay": false, + "OverlayMax": 0, "SequenceId": 1241, "SequenceLv": 5, "BarShow": false, @@ -5492,7 +5492,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1241", "BuffEffectPrefab": "", - "Describe": "每次攻击或使用技能时,每命中1只怪物则提升自身下一次攻击2.5%的伤害值,最多可叠加5层" + "Describe": "每次攻击或技能时,每命中1只怪物则提升自身下一次攻击5%的伤害值,最多可叠加5层" }, { "Id": 1246, @@ -5509,8 +5509,8 @@ ], "ContinuedType": 7, "ContinuedParameter": 1, - "Overlay": true, - "OverlayMax": 5, + "Overlay": false, + "OverlayMax": 0, "SequenceId": 1241, "SequenceLv": 6, "BarShow": false, @@ -5519,7 +5519,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1241", "BuffEffectPrefab": "", - "Describe": "每次攻击或使用技能时,每命中1只怪物则提升自身下一次攻击3%的伤害值,最多可叠加5层" + "Describe": "每次攻击或技能时,每命中1只怪物则提升自身下一次攻击6%的伤害值,最多可叠加5层" }, { "Id": 1247, @@ -5536,8 +5536,8 @@ ], "ContinuedType": 7, "ContinuedParameter": 1, - "Overlay": true, - "OverlayMax": 5, + "Overlay": false, + "OverlayMax": 0, "SequenceId": 1241, "SequenceLv": 7, "BarShow": false, @@ -5546,7 +5546,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1241", "BuffEffectPrefab": "", - "Describe": "每次攻击或使用技能时,每命中1只怪物则提升自身下一次攻击3.5%的伤害值,最多可叠加5层" + "Describe": "每次攻击或技能时,每命中1只怪物则提升自身下一次攻击7%的伤害值,最多可叠加5层" }, { "Id": 1248, @@ -5563,8 +5563,8 @@ ], "ContinuedType": 7, "ContinuedParameter": 1, - "Overlay": true, - "OverlayMax": 5, + "Overlay": false, + "OverlayMax": 0, "SequenceId": 1241, "SequenceLv": 8, "BarShow": false, @@ -5573,7 +5573,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1241", "BuffEffectPrefab": "", - "Describe": "每次攻击或使用技能时,每命中1只怪物则提升自身下一次攻击4%的伤害值,最多可叠加5层" + "Describe": "每次攻击或技能时,每命中1只怪物则提升自身下一次攻击8%的伤害值,最多可叠加5层" }, { "Id": 1249, @@ -5590,8 +5590,8 @@ ], "ContinuedType": 7, "ContinuedParameter": 1, - "Overlay": true, - "OverlayMax": 5, + "Overlay": false, + "OverlayMax": 0, "SequenceId": 1241, "SequenceLv": 9, "BarShow": false, @@ -5600,7 +5600,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1241", "BuffEffectPrefab": "", - "Describe": "每次攻击或使用技能时,每命中1只怪物则提升自身下一次攻击4.5%的伤害值,最多可叠加5层" + "Describe": "每次攻击或技能时,每命中1只怪物则提升自身下一次攻击9%的伤害值,最多可叠加5层" }, { "Id": 1250, @@ -5617,8 +5617,8 @@ ], "ContinuedType": 7, "ContinuedParameter": 1, - "Overlay": true, - "OverlayMax": 5, + "Overlay": false, + "OverlayMax": 0, "SequenceId": 1241, "SequenceLv": 10, "BarShow": false, @@ -5627,7 +5627,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1241", "BuffEffectPrefab": "", - "Describe": "每次攻击或使用技能时,每命中1只怪物则提升自身下一次攻击5%的伤害值,最多可叠加5层" + "Describe": "每次攻击或技能时,每命中1只怪物则提升自身下一次攻击10%的伤害值,最多可叠加5层" }, { "Id": 1251, @@ -5654,7 +5654,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1241", "BuffEffectPrefab": "", - "Describe": "每命中1只怪物则提升自身下一次攻击0.5%的伤害值,最多可叠加5层" + "Describe": "每次攻击或技能时,每命中1只怪物则提升自身下一次攻击1%的伤害值,最多可叠加5层" }, { "Id": 1252, @@ -5681,7 +5681,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1241", "BuffEffectPrefab": "", - "Describe": "每命中1只怪物则提升自身下一次攻击1%的伤害值,最多可叠加5层" + "Describe": "每次攻击或技能时,每命中1只怪物则提升自身下一次攻击2%的伤害值,最多可叠加5层" }, { "Id": 1253, @@ -5708,7 +5708,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1241", "BuffEffectPrefab": "", - "Describe": "每命中1只怪物则提升自身下一次攻击1.5%的伤害值,最多可叠加5层" + "Describe": "每次攻击或技能时,每命中1只怪物则提升自身下一次攻击3%的伤害值,最多可叠加5层" }, { "Id": 1254, @@ -5735,7 +5735,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1241", "BuffEffectPrefab": "", - "Describe": "每命中1只怪物则提升自身下一次攻击2%的伤害值,最多可叠加5层" + "Describe": "每次攻击或技能时,每命中1只怪物则提升自身下一次攻击4%的伤害值,最多可叠加5层" }, { "Id": 1255, @@ -5762,7 +5762,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1241", "BuffEffectPrefab": "", - "Describe": "每命中1只怪物则提升自身下一次攻击2.5%的伤害值,最多可叠加5层" + "Describe": "每次攻击或技能时,每命中1只怪物则提升自身下一次攻击5%的伤害值,最多可叠加5层" }, { "Id": 1256, @@ -5789,7 +5789,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1241", "BuffEffectPrefab": "", - "Describe": "每命中1只怪物则提升自身下一次攻击3%的伤害值,最多可叠加5层" + "Describe": "每次攻击或技能时,每命中1只怪物则提升自身下一次攻击6%的伤害值,最多可叠加5层" }, { "Id": 1257, @@ -5816,7 +5816,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1241", "BuffEffectPrefab": "", - "Describe": "每命中1只怪物则提升自身下一次攻击3.5%的伤害值,最多可叠加5层" + "Describe": "每次攻击或技能时,每命中1只怪物则提升自身下一次攻击7%的伤害值,最多可叠加5层" }, { "Id": 1258, @@ -5843,7 +5843,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1241", "BuffEffectPrefab": "", - "Describe": "每命中1只怪物则提升自身下一次攻击4%的伤害值,最多可叠加5层" + "Describe": "每次攻击或技能时,每命中1只怪物则提升自身下一次攻击8%的伤害值,最多可叠加5层" }, { "Id": 1259, @@ -5870,7 +5870,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1241", "BuffEffectPrefab": "", - "Describe": "每命中1只怪物则提升自身下一次攻击4.5%的伤害值,最多可叠加5层" + "Describe": "每次攻击或技能时,每命中1只怪物则提升自身下一次攻击9%的伤害值,最多可叠加5层" }, { "Id": 1260, @@ -5897,7 +5897,7 @@ "DisplayLocation": 0, "Icon": "Skill_Icon_1241", "BuffEffectPrefab": "", - "Describe": "每命中1只怪物则提升自身下一次攻击5%的伤害值,最多可叠加5层" + "Describe": "每次攻击或技能时,每命中1只怪物则提升自身下一次攻击10%的伤害值,最多可叠加5层" }, { "Id": 1261, @@ -21898,7 +21898,7 @@ 4061, 4062 ], - "ContinuedType": 14, + "ContinuedType": 3, "ContinuedParameter": 0, "Overlay": false, "OverlayMax": 0, @@ -28837,7 +28837,7 @@ "Gain": 1, "Immunity": false, "Disperse": false, - "CanBringInBoss": false, + "CanBringInBoss": true, "BuffProbability": 100, "LinkEffect": [ 150010 @@ -28864,7 +28864,7 @@ "Gain": 1, "Immunity": false, "Disperse": false, - "CanBringInBoss": false, + "CanBringInBoss": true, "BuffProbability": 100, "LinkEffect": [ 150011 @@ -28891,7 +28891,7 @@ "Gain": 1, "Immunity": false, "Disperse": false, - "CanBringInBoss": false, + "CanBringInBoss": true, "BuffProbability": 100, "LinkEffect": [ 150012 @@ -28909,5 +28909,466 @@ "Icon": "Buff_Icon_150012", "BuffEffectPrefab": "", "Describe": "勇士生命提升15%" + }, + { + "Id": 300001, + "Name": "暴击率+10%", + "TriggerTime": 1, + "TriggerParameter": 0, + "Gain": 1, + "Immunity": false, + "Disperse": false, + "CanBringInBoss": false, + "BuffProbability": 100, + "LinkEffect": [ + 300001 + ], + "ContinuedType": 13, + "ContinuedParameter": 0, + "Overlay": true, + "OverlayMax": 10, + "SequenceId": 300001, + "SequenceLv": 1, + "BarShow": false, + "BattleShow": false, + "SpecialStatus": 0, + "DisplayLocation": 0, + "Icon": "Buff_Icon_300001", + "BuffEffectPrefab": "", + "Describe": "" + }, + { + "Id": 300002, + "Name": "免伤+10%", + "TriggerTime": 1, + "TriggerParameter": 0, + "Gain": 1, + "Immunity": false, + "Disperse": false, + "CanBringInBoss": false, + "BuffProbability": 100, + "LinkEffect": [ + 300002 + ], + "ContinuedType": 13, + "ContinuedParameter": 0, + "Overlay": true, + "OverlayMax": 10, + "SequenceId": 300002, + "SequenceLv": 1, + "BarShow": false, + "BattleShow": false, + "SpecialStatus": 0, + "DisplayLocation": 0, + "Icon": "Buff_Icon_300002", + "BuffEffectPrefab": "", + "Describe": "" + }, + { + "Id": 300003, + "Name": "生命值全恢复", + "TriggerTime": 1, + "TriggerParameter": 0, + "Gain": 1, + "Immunity": false, + "Disperse": false, + "CanBringInBoss": false, + "BuffProbability": 100, + "LinkEffect": [ + 300003 + ], + "ContinuedType": 13, + "ContinuedParameter": 0, + "Overlay": true, + "OverlayMax": 10, + "SequenceId": 300003, + "SequenceLv": 1, + "BarShow": false, + "BattleShow": false, + "SpecialStatus": 0, + "DisplayLocation": 0, + "Icon": "Buff_Icon_300003", + "BuffEffectPrefab": "", + "Describe": "" + }, + { + "Id": 300004, + "Name": "暴击伤害+50%", + "TriggerTime": 1, + "TriggerParameter": 0, + "Gain": 1, + "Immunity": false, + "Disperse": false, + "CanBringInBoss": false, + "BuffProbability": 100, + "LinkEffect": [ + 300004 + ], + "ContinuedType": 13, + "ContinuedParameter": 0, + "Overlay": true, + "OverlayMax": 10, + "SequenceId": 300004, + "SequenceLv": 1, + "BarShow": false, + "BattleShow": false, + "SpecialStatus": 0, + "DisplayLocation": 0, + "Icon": "Buff_Icon_300004", + "BuffEffectPrefab": "", + "Describe": "" + }, + { + "Id": 300005, + "Name": "命中率+10%", + "TriggerTime": 1, + "TriggerParameter": 0, + "Gain": 1, + "Immunity": false, + "Disperse": false, + "CanBringInBoss": false, + "BuffProbability": 100, + "LinkEffect": [ + 300005 + ], + "ContinuedType": 13, + "ContinuedParameter": 0, + "Overlay": true, + "OverlayMax": 10, + "SequenceId": 300005, + "SequenceLv": 1, + "BarShow": false, + "BattleShow": false, + "SpecialStatus": 0, + "DisplayLocation": 0, + "Icon": "Buff_Icon_300005", + "BuffEffectPrefab": "", + "Describe": "" + }, + { + "Id": 300006, + "Name": "攻击速度+20%", + "TriggerTime": 1, + "TriggerParameter": 0, + "Gain": 1, + "Immunity": false, + "Disperse": false, + "CanBringInBoss": false, + "BuffProbability": 100, + "LinkEffect": [ + 300006 + ], + "ContinuedType": 13, + "ContinuedParameter": 0, + "Overlay": true, + "OverlayMax": 10, + "SequenceId": 300006, + "SequenceLv": 1, + "BarShow": false, + "BattleShow": false, + "SpecialStatus": 0, + "DisplayLocation": 0, + "Icon": "Buff_Icon_300006", + "BuffEffectPrefab": "", + "Describe": "" + }, + { + "Id": 300007, + "Name": "远程伤害+30%", + "TriggerTime": 1, + "TriggerParameter": 0, + "Gain": 1, + "Immunity": false, + "Disperse": false, + "CanBringInBoss": false, + "BuffProbability": 100, + "LinkEffect": [ + 300007 + ], + "ContinuedType": 13, + "ContinuedParameter": 0, + "Overlay": true, + "OverlayMax": 10, + "SequenceId": 300007, + "SequenceLv": 1, + "BarShow": false, + "BattleShow": false, + "SpecialStatus": 0, + "DisplayLocation": 0, + "Icon": "Buff_Icon_300007", + "BuffEffectPrefab": "", + "Describe": "" + }, + { + "Id": 300008, + "Name": "近战伤害+30%", + "TriggerTime": 1, + "TriggerParameter": 0, + "Gain": 1, + "Immunity": false, + "Disperse": false, + "CanBringInBoss": false, + "BuffProbability": 100, + "LinkEffect": [ + 300008 + ], + "ContinuedType": 13, + "ContinuedParameter": 0, + "Overlay": true, + "OverlayMax": 10, + "SequenceId": 300008, + "SequenceLv": 1, + "BarShow": false, + "BattleShow": false, + "SpecialStatus": 0, + "DisplayLocation": 0, + "Icon": "Buff_Icon_300008", + "BuffEffectPrefab": "", + "Describe": "" + }, + { + "Id": 300009, + "Name": "生命值+20%", + "TriggerTime": 1, + "TriggerParameter": 0, + "Gain": 1, + "Immunity": false, + "Disperse": false, + "CanBringInBoss": false, + "BuffProbability": 100, + "LinkEffect": [ + 300009 + ], + "ContinuedType": 13, + "ContinuedParameter": 0, + "Overlay": true, + "OverlayMax": 10, + "SequenceId": 300009, + "SequenceLv": 1, + "BarShow": false, + "BattleShow": false, + "SpecialStatus": 0, + "DisplayLocation": 0, + "Icon": "Buff_Icon_300009", + "BuffEffectPrefab": "", + "Describe": "" + }, + { + "Id": 300010, + "Name": "能量回满", + "TriggerTime": 1, + "TriggerParameter": 0, + "Gain": 1, + "Immunity": false, + "Disperse": false, + "CanBringInBoss": false, + "BuffProbability": 100, + "LinkEffect": [ + 300010 + ], + "ContinuedType": 13, + "ContinuedParameter": 0, + "Overlay": true, + "OverlayMax": 10, + "SequenceId": 300010, + "SequenceLv": 1, + "BarShow": false, + "BattleShow": false, + "SpecialStatus": 0, + "DisplayLocation": 0, + "Icon": "Buff_Icon_300010", + "BuffEffectPrefab": "", + "Describe": "" + }, + { + "Id": 330011, + "Name": "闪避提升、受到的暴击伤害提升", + "TriggerTime": 1, + "TriggerParameter": 0, + "Gain": 1, + "Immunity": false, + "Disperse": false, + "CanBringInBoss": true, + "BuffProbability": 100, + "LinkEffect": [ + 330011, + 330012 + ], + "ContinuedType": 12, + "ContinuedParameter": 0, + "Overlay": false, + "OverlayMax": 0, + "SequenceId": 330011, + "SequenceLv": 1, + "BarShow": false, + "BattleShow": false, + "SpecialStatus": 0, + "DisplayLocation": 0, + "Icon": "Buff_Icon_330011", + "BuffEffectPrefab": "", + "Describe": "" + }, + { + "Id": 330012, + "Name": "免疫远程伤害,受到近战伤害增加,一定时间狂暴一次", + "TriggerTime": 1, + "TriggerParameter": 0, + "Gain": 1, + "Immunity": false, + "Disperse": false, + "CanBringInBoss": true, + "BuffProbability": 100, + "LinkEffect": [ + 330013, + 330014 + ], + "ContinuedType": 12, + "ContinuedParameter": 0, + "Overlay": false, + "OverlayMax": 0, + "SequenceId": 330012, + "SequenceLv": 1, + "BarShow": false, + "BattleShow": false, + "SpecialStatus": 0, + "DisplayLocation": 0, + "Icon": "Buff_Icon_330012", + "BuffEffectPrefab": "", + "Describe": "" + }, + { + "Id": 330013, + "Name": "每2分钟触发一次狂暴", + "TriggerTime": 3, + "TriggerParameter": 120, + "Gain": 1, + "Immunity": false, + "Disperse": false, + "CanBringInBoss": true, + "BuffProbability": 100, + "LinkEffect": [ + 330015 + ], + "ContinuedType": 12, + "ContinuedParameter": 0, + "Overlay": false, + "OverlayMax": 0, + "SequenceId": 330013, + "SequenceLv": 1, + "BarShow": false, + "BattleShow": false, + "SpecialStatus": 0, + "DisplayLocation": 0, + "Icon": "Buff_Icon_330013", + "BuffEffectPrefab": "", + "Describe": "" + }, + { + "Id": 330014, + "Name": "攻击力提升100%,持续30秒", + "TriggerTime": 1, + "TriggerParameter": 0, + "Gain": 1, + "Immunity": false, + "Disperse": false, + "CanBringInBoss": true, + "BuffProbability": 100, + "LinkEffect": [ + 330016 + ], + "ContinuedType": 2, + "ContinuedParameter": 30, + "Overlay": false, + "OverlayMax": 0, + "SequenceId": 330014, + "SequenceLv": 1, + "BarShow": false, + "BattleShow": false, + "SpecialStatus": 0, + "DisplayLocation": 0, + "Icon": "Buff_Icon_330014", + "BuffEffectPrefab": "", + "Describe": "" + }, + { + "Id": 330015, + "Name": "受到远程伤害提升100%", + "TriggerTime": 1, + "TriggerParameter": 0, + "Gain": 1, + "Immunity": false, + "Disperse": false, + "CanBringInBoss": true, + "BuffProbability": 100, + "LinkEffect": [ + 330017 + ], + "ContinuedType": 12, + "ContinuedParameter": 0, + "Overlay": false, + "OverlayMax": 0, + "SequenceId": 330015, + "SequenceLv": 1, + "BarShow": false, + "BattleShow": false, + "SpecialStatus": 0, + "DisplayLocation": 0, + "Icon": "Buff_Icon_330015", + "BuffEffectPrefab": "", + "Describe": "" + }, + { + "Id": 330016, + "Name": "受到远程伤害提升100%", + "TriggerTime": 1, + "TriggerParameter": 0, + "Gain": 1, + "Immunity": false, + "Disperse": false, + "CanBringInBoss": true, + "BuffProbability": 100, + "LinkEffect": [ + 330018 + ], + "ContinuedType": 12, + "ContinuedParameter": 0, + "Overlay": false, + "OverlayMax": 0, + "SequenceId": 330016, + "SequenceLv": 1, + "BarShow": false, + "BattleShow": false, + "SpecialStatus": 0, + "DisplayLocation": 0, + "Icon": "Buff_Icon_330016", + "BuffEffectPrefab": "", + "Describe": "" + }, + { + "Id": 330017, + "Name": "", + "TriggerTime": 33, + "TriggerParameter": 0, + "Gain": 1, + "Immunity": false, + "Disperse": false, + "CanBringInBoss": true, + "BuffProbability": 100, + "LinkEffect": [ + 330019 + ], + "ContinuedType": 12, + "ContinuedParameter": 0, + "Overlay": true, + "OverlayMax": 10, + "SequenceId": 330017, + "SequenceLv": 1, + "BarShow": false, + "BattleShow": false, + "SpecialStatus": 0, + "DisplayLocation": 0, + "Icon": "Buff_Icon_330017", + "BuffEffectPrefab": "", + "Describe": "" } ] \ No newline at end of file diff --git a/src/api/config/SkillBulletConfigCategory.json b/src/api/config/SkillBulletConfigCategory.json index 5ee38ef..37ea812 100644 --- a/src/api/config/SkillBulletConfigCategory.json +++ b/src/api/config/SkillBulletConfigCategory.json @@ -2,6 +2,7 @@ { "Id": 1, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -24,6 +25,7 @@ { "Id": 11, "Direction": 2, + "BulletRangeType": 2, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -46,6 +48,7 @@ { "Id": 12, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -71,6 +74,7 @@ { "Id": 21, "Direction": 2, + "BulletRangeType": 2, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -93,6 +97,7 @@ { "Id": 31, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -115,6 +120,7 @@ { "Id": 41, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -137,6 +143,7 @@ { "Id": 42, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -159,6 +166,7 @@ { "Id": 51, "Direction": 2, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -184,6 +192,7 @@ { "Id": 52, "Direction": 2, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -209,6 +218,7 @@ { "Id": 61, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -231,6 +241,7 @@ { "Id": 71, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -253,6 +264,7 @@ { "Id": 72, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -275,6 +287,7 @@ { "Id": 73, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -297,6 +310,7 @@ { "Id": 81, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -319,6 +333,7 @@ { "Id": 2011, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -344,6 +359,7 @@ { "Id": 2012, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -369,6 +385,7 @@ { "Id": 2013, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -394,6 +411,7 @@ { "Id": 2014, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -419,6 +437,7 @@ { "Id": 2015, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -444,6 +463,7 @@ { "Id": 2021, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -469,6 +489,7 @@ { "Id": 2022, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -494,6 +515,7 @@ { "Id": 2023, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -519,6 +541,7 @@ { "Id": 2024, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -544,6 +567,7 @@ { "Id": 2025, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -569,6 +593,7 @@ { "Id": 2031, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -594,6 +619,7 @@ { "Id": 2032, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -619,6 +645,7 @@ { "Id": 2033, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -644,6 +671,7 @@ { "Id": 2034, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -669,6 +697,7 @@ { "Id": 2035, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -694,6 +723,7 @@ { "Id": 2041, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -719,6 +749,7 @@ { "Id": 2042, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -744,6 +775,7 @@ { "Id": 2043, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -769,6 +801,7 @@ { "Id": 2044, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -794,6 +827,7 @@ { "Id": 2045, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -819,6 +853,7 @@ { "Id": 2051, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -844,6 +879,7 @@ { "Id": 2052, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -869,6 +905,7 @@ { "Id": 2053, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -894,6 +931,7 @@ { "Id": 2054, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -919,6 +957,7 @@ { "Id": 2055, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -944,6 +983,7 @@ { "Id": 2061, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -969,6 +1009,7 @@ { "Id": 2062, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -994,6 +1035,7 @@ { "Id": 2063, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -1019,6 +1061,7 @@ { "Id": 2064, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -1044,6 +1087,7 @@ { "Id": 2065, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -1070,6 +1114,7 @@ { "Id": 2071, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -1095,6 +1140,7 @@ { "Id": 2072, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -1120,6 +1166,7 @@ { "Id": 2073, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -1145,6 +1192,7 @@ { "Id": 2074, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -1170,6 +1218,7 @@ { "Id": 2075, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -1196,6 +1245,7 @@ { "Id": 2081, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -1221,6 +1271,7 @@ { "Id": 2082, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -1246,6 +1297,7 @@ { "Id": 2083, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -1271,6 +1323,7 @@ { "Id": 2084, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -1296,6 +1349,7 @@ { "Id": 2085, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -1322,6 +1376,7 @@ { "Id": 2091, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -1347,6 +1402,7 @@ { "Id": 2092, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -1372,6 +1428,7 @@ { "Id": 2093, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -1397,6 +1454,7 @@ { "Id": 2094, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -1422,6 +1480,7 @@ { "Id": 2095, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -1448,6 +1507,7 @@ { "Id": 2101, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -1473,6 +1533,7 @@ { "Id": 2102, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -1498,6 +1559,7 @@ { "Id": 2103, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -1523,6 +1585,7 @@ { "Id": 2104, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -1548,6 +1611,7 @@ { "Id": 2105, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -1574,6 +1638,7 @@ { "Id": 2211, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -1599,6 +1664,7 @@ { "Id": 2212, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -1624,6 +1690,7 @@ { "Id": 2213, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -1649,6 +1716,7 @@ { "Id": 2221, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -1674,6 +1742,7 @@ { "Id": 2222, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -1699,6 +1768,7 @@ { "Id": 2223, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -1724,6 +1794,7 @@ { "Id": 2231, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -1749,6 +1820,7 @@ { "Id": 2232, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -1774,6 +1846,7 @@ { "Id": 2233, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -1799,6 +1872,7 @@ { "Id": 2241, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -1824,6 +1898,7 @@ { "Id": 2242, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -1849,6 +1924,7 @@ { "Id": 2243, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -1874,6 +1950,7 @@ { "Id": 2251, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -1899,6 +1976,7 @@ { "Id": 2252, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -1924,6 +2002,7 @@ { "Id": 2253, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -1949,6 +2028,7 @@ { "Id": 2261, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -1974,6 +2054,7 @@ { "Id": 2262, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -1999,6 +2080,7 @@ { "Id": 2263, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2025,6 +2107,7 @@ { "Id": 2271, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2050,6 +2133,7 @@ { "Id": 2272, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2075,6 +2159,7 @@ { "Id": 2273, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2101,6 +2186,7 @@ { "Id": 2281, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2126,6 +2212,7 @@ { "Id": 2282, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2151,6 +2238,7 @@ { "Id": 2283, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2177,6 +2265,7 @@ { "Id": 2291, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2202,6 +2291,7 @@ { "Id": 2292, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2227,6 +2317,7 @@ { "Id": 2293, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2253,6 +2344,7 @@ { "Id": 2301, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2278,6 +2370,7 @@ { "Id": 2302, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2303,6 +2396,7 @@ { "Id": 2303, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2329,6 +2423,7 @@ { "Id": 2411, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2354,6 +2449,7 @@ { "Id": 2412, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2379,6 +2475,7 @@ { "Id": 2413, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2404,6 +2501,7 @@ { "Id": 2421, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2429,6 +2527,7 @@ { "Id": 2422, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2454,6 +2553,7 @@ { "Id": 2423, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2479,6 +2579,7 @@ { "Id": 2431, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2504,6 +2605,7 @@ { "Id": 2432, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2529,6 +2631,7 @@ { "Id": 2433, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2554,6 +2657,7 @@ { "Id": 2441, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2579,6 +2683,7 @@ { "Id": 2442, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2604,6 +2709,7 @@ { "Id": 2443, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2629,6 +2735,7 @@ { "Id": 2451, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2654,6 +2761,7 @@ { "Id": 2452, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2679,6 +2787,7 @@ { "Id": 2453, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2704,6 +2813,7 @@ { "Id": 2461, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2729,6 +2839,7 @@ { "Id": 2462, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2754,6 +2865,7 @@ { "Id": 2463, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2779,6 +2891,7 @@ { "Id": 2471, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2804,6 +2917,7 @@ { "Id": 2472, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2829,6 +2943,7 @@ { "Id": 2473, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2854,6 +2969,7 @@ { "Id": 2481, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2879,6 +2995,7 @@ { "Id": 2482, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2904,6 +3021,7 @@ { "Id": 2483, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2929,6 +3047,7 @@ { "Id": 2491, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2954,6 +3073,7 @@ { "Id": 2492, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -2979,6 +3099,7 @@ { "Id": 2493, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -3004,6 +3125,7 @@ { "Id": 2501, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -3029,6 +3151,7 @@ { "Id": 2502, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -3054,6 +3177,7 @@ { "Id": 2503, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -3079,6 +3203,7 @@ { "Id": 2611, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3105,6 +3230,7 @@ { "Id": 2612, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3130,6 +3256,7 @@ { "Id": 2613, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3155,6 +3282,7 @@ { "Id": 2614, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3180,6 +3308,7 @@ { "Id": 2615, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3205,6 +3334,7 @@ { "Id": 2616, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3230,6 +3360,7 @@ { "Id": 2617, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3255,6 +3386,7 @@ { "Id": 2618, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3280,6 +3412,7 @@ { "Id": 2619, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3305,6 +3438,7 @@ { "Id": 2621, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3331,6 +3465,7 @@ { "Id": 2622, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3356,6 +3491,7 @@ { "Id": 2623, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3381,6 +3517,7 @@ { "Id": 2624, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3406,6 +3543,7 @@ { "Id": 2625, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3431,6 +3569,7 @@ { "Id": 2626, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3456,6 +3595,7 @@ { "Id": 2627, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3481,6 +3621,7 @@ { "Id": 2628, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3506,6 +3647,7 @@ { "Id": 2629, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3531,6 +3673,7 @@ { "Id": 2631, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3557,6 +3700,7 @@ { "Id": 2632, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3582,6 +3726,7 @@ { "Id": 2633, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3607,6 +3752,7 @@ { "Id": 2634, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3632,6 +3778,7 @@ { "Id": 2635, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3657,6 +3804,7 @@ { "Id": 2636, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3682,6 +3830,7 @@ { "Id": 2637, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3707,6 +3856,7 @@ { "Id": 2638, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3732,6 +3882,7 @@ { "Id": 2639, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3757,6 +3908,7 @@ { "Id": 2641, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3783,6 +3935,7 @@ { "Id": 2642, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3808,6 +3961,7 @@ { "Id": 2643, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3833,6 +3987,7 @@ { "Id": 2644, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3858,6 +4013,7 @@ { "Id": 2645, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3883,6 +4039,7 @@ { "Id": 2646, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3908,6 +4065,7 @@ { "Id": 2647, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3933,6 +4091,7 @@ { "Id": 2648, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3958,6 +4117,7 @@ { "Id": 2649, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -3983,6 +4143,7 @@ { "Id": 2651, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4009,6 +4170,7 @@ { "Id": 2652, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4034,6 +4196,7 @@ { "Id": 2653, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4059,6 +4222,7 @@ { "Id": 2654, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4084,6 +4248,7 @@ { "Id": 2655, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4109,6 +4274,7 @@ { "Id": 2656, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4134,6 +4300,7 @@ { "Id": 2657, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4159,6 +4326,7 @@ { "Id": 2658, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4184,6 +4352,7 @@ { "Id": 2659, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4209,6 +4378,7 @@ { "Id": 2661, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4235,6 +4405,7 @@ { "Id": 2662, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4260,6 +4431,7 @@ { "Id": 2663, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4285,6 +4457,7 @@ { "Id": 2664, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4310,6 +4483,7 @@ { "Id": 2665, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4335,6 +4509,7 @@ { "Id": 2666, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4360,6 +4535,7 @@ { "Id": 2667, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4385,6 +4561,7 @@ { "Id": 2668, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4410,6 +4587,7 @@ { "Id": 2669, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4435,6 +4613,7 @@ { "Id": 2671, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4461,6 +4640,7 @@ { "Id": 2672, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4486,6 +4666,7 @@ { "Id": 2673, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4511,6 +4692,7 @@ { "Id": 2674, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4536,6 +4718,7 @@ { "Id": 2675, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4561,6 +4744,7 @@ { "Id": 2676, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4586,6 +4770,7 @@ { "Id": 2677, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4611,6 +4796,7 @@ { "Id": 2678, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4636,6 +4822,7 @@ { "Id": 2679, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4661,6 +4848,7 @@ { "Id": 2681, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4687,6 +4875,7 @@ { "Id": 2682, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4712,6 +4901,7 @@ { "Id": 2683, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4737,6 +4927,7 @@ { "Id": 2684, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4762,6 +4953,7 @@ { "Id": 2685, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4787,6 +4979,7 @@ { "Id": 2686, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4812,6 +5005,7 @@ { "Id": 2687, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4837,6 +5031,7 @@ { "Id": 2688, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4862,6 +5057,7 @@ { "Id": 2689, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4887,6 +5083,7 @@ { "Id": 2691, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4913,6 +5110,7 @@ { "Id": 2692, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4938,6 +5136,7 @@ { "Id": 2693, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4963,6 +5162,7 @@ { "Id": 2694, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -4988,6 +5188,7 @@ { "Id": 2695, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5013,6 +5214,7 @@ { "Id": 2696, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5038,6 +5240,7 @@ { "Id": 2697, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5063,6 +5266,7 @@ { "Id": 2698, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5088,6 +5292,7 @@ { "Id": 2699, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5113,6 +5318,7 @@ { "Id": 2701, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5139,6 +5345,7 @@ { "Id": 2702, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5164,6 +5371,7 @@ { "Id": 2703, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5189,6 +5397,7 @@ { "Id": 2704, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5214,6 +5423,7 @@ { "Id": 2705, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5239,6 +5449,7 @@ { "Id": 2706, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5264,6 +5475,7 @@ { "Id": 2707, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5289,6 +5501,7 @@ { "Id": 2708, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5314,6 +5527,7 @@ { "Id": 2709, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5339,6 +5553,7 @@ { "Id": 2811, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5364,6 +5579,7 @@ { "Id": 2812, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5389,6 +5605,7 @@ { "Id": 2813, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5414,6 +5631,7 @@ { "Id": 2814, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5439,6 +5657,7 @@ { "Id": 2815, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5465,6 +5684,7 @@ { "Id": 2821, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5490,6 +5710,7 @@ { "Id": 2822, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5515,6 +5736,7 @@ { "Id": 2823, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5540,6 +5762,7 @@ { "Id": 2824, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5565,6 +5788,7 @@ { "Id": 2825, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5591,6 +5815,7 @@ { "Id": 2831, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5616,6 +5841,7 @@ { "Id": 2832, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5641,6 +5867,7 @@ { "Id": 2833, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5666,6 +5893,7 @@ { "Id": 2834, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5691,6 +5919,7 @@ { "Id": 2835, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5717,6 +5946,7 @@ { "Id": 2841, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5742,6 +5972,7 @@ { "Id": 2842, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5767,6 +5998,7 @@ { "Id": 2843, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5792,6 +6024,7 @@ { "Id": 2844, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5817,6 +6050,7 @@ { "Id": 2845, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5843,6 +6077,7 @@ { "Id": 2851, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5868,6 +6103,7 @@ { "Id": 2852, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5893,6 +6129,7 @@ { "Id": 2853, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5918,6 +6155,7 @@ { "Id": 2854, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5943,6 +6181,7 @@ { "Id": 2855, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5969,6 +6208,7 @@ { "Id": 2861, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -5994,6 +6234,7 @@ { "Id": 2862, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -6019,6 +6260,7 @@ { "Id": 2863, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -6044,6 +6286,7 @@ { "Id": 2864, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -6069,6 +6312,7 @@ { "Id": 2865, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -6095,6 +6339,7 @@ { "Id": 2871, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -6120,6 +6365,7 @@ { "Id": 2872, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -6145,6 +6391,7 @@ { "Id": 2873, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -6170,6 +6417,7 @@ { "Id": 2874, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -6195,6 +6443,7 @@ { "Id": 2875, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -6221,6 +6470,7 @@ { "Id": 2881, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -6246,6 +6496,7 @@ { "Id": 2882, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -6271,6 +6522,7 @@ { "Id": 2883, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -6296,6 +6548,7 @@ { "Id": 2884, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -6321,6 +6574,7 @@ { "Id": 2885, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -6347,6 +6601,7 @@ { "Id": 2891, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -6372,6 +6627,7 @@ { "Id": 2892, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -6397,6 +6653,7 @@ { "Id": 2893, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -6422,6 +6679,7 @@ { "Id": 2894, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -6447,6 +6705,7 @@ { "Id": 2895, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -6473,6 +6732,7 @@ { "Id": 2901, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -6498,6 +6758,7 @@ { "Id": 2902, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -6523,6 +6784,7 @@ { "Id": 2903, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -6548,6 +6810,7 @@ { "Id": 2904, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -6573,6 +6836,7 @@ { "Id": 2905, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -6599,6 +6863,7 @@ { "Id": 3411, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 180, @@ -6624,6 +6889,7 @@ { "Id": 3412, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 180, @@ -6649,6 +6915,7 @@ { "Id": 3413, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 180, @@ -6674,6 +6941,7 @@ { "Id": 3414, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 180, @@ -6699,6 +6967,7 @@ { "Id": 3415, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 180, @@ -6724,6 +6993,7 @@ { "Id": 3416, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 180, @@ -6749,6 +7019,7 @@ { "Id": 3417, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 180, @@ -6774,6 +7045,7 @@ { "Id": 3418, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 180, @@ -6799,6 +7071,7 @@ { "Id": 3419, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 180, @@ -6824,6 +7097,7 @@ { "Id": 3420, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 180, @@ -6849,6 +7123,7 @@ { "Id": 3611, "Direction": 1, + "BulletRangeType": 3, "Scope": 2, "ScopeParameter": [ 360, @@ -6862,7 +7137,7 @@ "Disappear": 2, "DisappearParameter": 10000, "DetectTime": 3, - "TestParameters": 1, + "TestParameters": 10, "NumberOfTargets": 0, "Buff": [ 3611, @@ -6875,6 +7150,7 @@ { "Id": 3621, "Direction": 1, + "BulletRangeType": 3, "Scope": 2, "ScopeParameter": [ 360, @@ -6888,7 +7164,7 @@ "Disappear": 2, "DisappearParameter": 10000, "DetectTime": 3, - "TestParameters": 1, + "TestParameters": 10, "NumberOfTargets": 0, "Buff": [ 3612, @@ -6901,6 +7177,7 @@ { "Id": 3631, "Direction": 1, + "BulletRangeType": 3, "Scope": 2, "ScopeParameter": [ 360, @@ -6914,7 +7191,7 @@ "Disappear": 2, "DisappearParameter": 10000, "DetectTime": 3, - "TestParameters": 1, + "TestParameters": 10, "NumberOfTargets": 0, "Buff": [ 3613, @@ -6927,6 +7204,7 @@ { "Id": 3641, "Direction": 1, + "BulletRangeType": 3, "Scope": 2, "ScopeParameter": [ 360, @@ -6940,7 +7218,7 @@ "Disappear": 2, "DisappearParameter": 10000, "DetectTime": 3, - "TestParameters": 1, + "TestParameters": 10, "NumberOfTargets": 0, "Buff": [ 3614, @@ -6953,6 +7231,7 @@ { "Id": 3651, "Direction": 1, + "BulletRangeType": 3, "Scope": 2, "ScopeParameter": [ 360, @@ -6966,7 +7245,7 @@ "Disappear": 2, "DisappearParameter": 10000, "DetectTime": 3, - "TestParameters": 1, + "TestParameters": 10, "NumberOfTargets": 0, "Buff": [ 3615, @@ -6979,6 +7258,7 @@ { "Id": 3661, "Direction": 1, + "BulletRangeType": 3, "Scope": 2, "ScopeParameter": [ 360, @@ -6992,7 +7272,7 @@ "Disappear": 2, "DisappearParameter": 10000, "DetectTime": 3, - "TestParameters": 1, + "TestParameters": 10, "NumberOfTargets": 0, "Buff": [ 3616, @@ -7005,6 +7285,7 @@ { "Id": 3671, "Direction": 1, + "BulletRangeType": 3, "Scope": 2, "ScopeParameter": [ 360, @@ -7018,7 +7299,7 @@ "Disappear": 2, "DisappearParameter": 10000, "DetectTime": 3, - "TestParameters": 1, + "TestParameters": 10, "NumberOfTargets": 0, "Buff": [ 3617, @@ -7031,6 +7312,7 @@ { "Id": 3681, "Direction": 1, + "BulletRangeType": 3, "Scope": 2, "ScopeParameter": [ 360, @@ -7044,7 +7326,7 @@ "Disappear": 2, "DisappearParameter": 10000, "DetectTime": 3, - "TestParameters": 1, + "TestParameters": 10, "NumberOfTargets": 0, "Buff": [ 3618, @@ -7057,6 +7339,7 @@ { "Id": 3691, "Direction": 1, + "BulletRangeType": 3, "Scope": 2, "ScopeParameter": [ 360, @@ -7070,7 +7353,7 @@ "Disappear": 2, "DisappearParameter": 10000, "DetectTime": 3, - "TestParameters": 1, + "TestParameters": 10, "NumberOfTargets": 0, "Buff": [ 3619, @@ -7083,6 +7366,7 @@ { "Id": 3701, "Direction": 1, + "BulletRangeType": 3, "Scope": 2, "ScopeParameter": [ 360, @@ -7096,7 +7380,7 @@ "Disappear": 2, "DisappearParameter": 10000, "DetectTime": 3, - "TestParameters": 1, + "TestParameters": 10, "NumberOfTargets": 0, "Buff": [ 3620, @@ -7109,6 +7393,7 @@ { "Id": 9001, "Direction": 2, + "BulletRangeType": 2, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7131,6 +7416,7 @@ { "Id": 9002, "Direction": 2, + "BulletRangeType": 3, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7153,6 +7439,7 @@ { "Id": 10001, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7175,6 +7462,7 @@ { "Id": 10002, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7197,6 +7485,7 @@ { "Id": 10003, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7219,6 +7508,7 @@ { "Id": 10010, "Direction": 2, + "BulletRangeType": 2, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7241,6 +7531,7 @@ { "Id": 10020, "Direction": 2, + "BulletRangeType": 2, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7263,6 +7554,7 @@ { "Id": 10021, "Direction": 2, + "BulletRangeType": 2, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7285,6 +7577,7 @@ { "Id": 10030, "Direction": 2, + "BulletRangeType": 2, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7307,6 +7600,7 @@ { "Id": 10031, "Direction": 2, + "BulletRangeType": 2, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7329,6 +7623,7 @@ { "Id": 10032, "Direction": 2, + "BulletRangeType": 2, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7351,6 +7646,7 @@ { "Id": 10040, "Direction": 2, + "BulletRangeType": 2, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7373,6 +7669,7 @@ { "Id": 10041, "Direction": 2, + "BulletRangeType": 2, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7395,6 +7692,7 @@ { "Id": 10042, "Direction": 2, + "BulletRangeType": 2, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7417,6 +7715,7 @@ { "Id": 10043, "Direction": 2, + "BulletRangeType": 2, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7439,6 +7738,7 @@ { "Id": 10044, "Direction": 2, + "BulletRangeType": 2, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7461,6 +7761,7 @@ { "Id": 10050, "Direction": 2, + "BulletRangeType": 2, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7483,6 +7784,7 @@ { "Id": 10051, "Direction": 2, + "BulletRangeType": 2, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7505,6 +7807,7 @@ { "Id": 10052, "Direction": 2, + "BulletRangeType": 2, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7527,6 +7830,7 @@ { "Id": 10060, "Direction": 1, + "BulletRangeType": 2, "Scope": 2, "ScopeParameter": [ 180, @@ -7552,6 +7856,7 @@ { "Id": 10061, "Direction": 1, + "BulletRangeType": 2, "Scope": 2, "ScopeParameter": [ 180, @@ -7577,6 +7882,7 @@ { "Id": 10062, "Direction": 1, + "BulletRangeType": 2, "Scope": 2, "ScopeParameter": [ 180, @@ -7602,6 +7908,7 @@ { "Id": 10063, "Direction": 1, + "BulletRangeType": 2, "Scope": 2, "ScopeParameter": [ 180, @@ -7627,6 +7934,7 @@ { "Id": 10070, "Direction": 1, + "BulletRangeType": 2, "Scope": 2, "ScopeParameter": [ 5, @@ -7652,6 +7960,7 @@ { "Id": 10071, "Direction": 1, + "BulletRangeType": 2, "Scope": 2, "ScopeParameter": [ 5, @@ -7677,6 +7986,7 @@ { "Id": 10072, "Direction": 1, + "BulletRangeType": 2, "Scope": 2, "ScopeParameter": [ 5, @@ -7702,6 +8012,7 @@ { "Id": 10073, "Direction": 1, + "BulletRangeType": 2, "Scope": 2, "ScopeParameter": [ 5, @@ -7727,6 +8038,7 @@ { "Id": 10100, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7749,6 +8061,7 @@ { "Id": 10110, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7771,6 +8084,7 @@ { "Id": 10120, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7793,6 +8107,7 @@ { "Id": 10121, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7815,6 +8130,7 @@ { "Id": 10122, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7837,6 +8153,7 @@ { "Id": 10123, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -7863,6 +8180,7 @@ { "Id": 10130, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7885,6 +8203,7 @@ { "Id": 10140, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7907,6 +8226,7 @@ { "Id": 10150, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7929,6 +8249,7 @@ { "Id": 10151, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7951,6 +8272,7 @@ { "Id": 10152, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -7973,6 +8295,7 @@ { "Id": 10153, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -7999,6 +8322,7 @@ { "Id": 10160, "Direction": 1, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [ 180, @@ -8024,6 +8348,7 @@ { "Id": 10161, "Direction": 1, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [ 180, @@ -8049,6 +8374,7 @@ { "Id": 10170, "Direction": 1, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [ 180, @@ -8074,6 +8400,7 @@ { "Id": 10171, "Direction": 1, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [ 180, @@ -8099,6 +8426,7 @@ { "Id": 10172, "Direction": 1, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [ 180, @@ -8124,6 +8452,7 @@ { "Id": 10173, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -8150,6 +8479,7 @@ { "Id": 10200, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -8172,6 +8502,7 @@ { "Id": 10210, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -8194,6 +8525,7 @@ { "Id": 10220, "Direction": 1, + "BulletRangeType": 2, "Scope": 2, "ScopeParameter": [ 360, @@ -8219,6 +8551,7 @@ { "Id": 10221, "Direction": 1, + "BulletRangeType": 2, "Scope": 2, "ScopeParameter": [ 360, @@ -8244,6 +8577,7 @@ { "Id": 10230, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -8266,6 +8600,7 @@ { "Id": 10240, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 5, @@ -8291,6 +8626,7 @@ { "Id": 10241, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 5, @@ -8316,6 +8652,7 @@ { "Id": 10242, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 5, @@ -8341,6 +8678,7 @@ { "Id": 10243, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 5, @@ -8366,6 +8704,7 @@ { "Id": 10250, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -8388,6 +8727,7 @@ { "Id": 10251, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -8410,6 +8750,7 @@ { "Id": 11001, "Direction": 2, + "BulletRangeType": 3, "Scope": 2, "ScopeParameter": [ 360, @@ -8435,6 +8776,7 @@ { "Id": 20001, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -8457,6 +8799,7 @@ { "Id": 20011, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 4, @@ -8482,6 +8825,7 @@ { "Id": 20012, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 4, @@ -8507,6 +8851,7 @@ { "Id": 20013, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 4, @@ -8532,6 +8877,7 @@ { "Id": 20014, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 4, @@ -8557,6 +8903,7 @@ { "Id": 20015, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 4, @@ -8582,6 +8929,7 @@ { "Id": 20021, "Direction": 1, + "BulletRangeType": 2, "Scope": 2, "ScopeParameter": [ 360, @@ -8608,6 +8956,7 @@ { "Id": 20031, "Direction": 1, + "BulletRangeType": 3, "Scope": 1, "ScopeParameter": [ 4, @@ -8633,6 +8982,7 @@ { "Id": 20032, "Direction": 1, + "BulletRangeType": 3, "Scope": 1, "ScopeParameter": [ 4, @@ -8658,6 +9008,7 @@ { "Id": 20033, "Direction": 1, + "BulletRangeType": 3, "Scope": 1, "ScopeParameter": [ 4, @@ -8683,6 +9034,7 @@ { "Id": 20034, "Direction": 1, + "BulletRangeType": 3, "Scope": 1, "ScopeParameter": [ 4, @@ -8708,6 +9060,7 @@ { "Id": 20035, "Direction": 1, + "BulletRangeType": 3, "Scope": 1, "ScopeParameter": [ 4, @@ -8733,6 +9086,7 @@ { "Id": 20111, "Direction": 2, + "BulletRangeType": 1, "Scope": 1, "ScopeParameter": [ 1, @@ -8758,6 +9112,7 @@ { "Id": 20112, "Direction": 2, + "BulletRangeType": 1, "Scope": 1, "ScopeParameter": [ 1, @@ -8783,6 +9138,7 @@ { "Id": 20121, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 180, @@ -8808,6 +9164,7 @@ { "Id": 20122, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 180, @@ -8833,6 +9190,7 @@ { "Id": 20123, "Direction": 1, + "BulletRangeType": 1, "Scope": 2, "ScopeParameter": [ 360, @@ -8859,6 +9217,7 @@ { "Id": 20131, "Direction": 1, + "BulletRangeType": 2, "Scope": 2, "ScopeParameter": [ 360, @@ -8884,6 +9243,7 @@ { "Id": 20132, "Direction": 1, + "BulletRangeType": 2, "Scope": 2, "ScopeParameter": [ 360, @@ -8909,6 +9269,7 @@ { "Id": 20133, "Direction": 1, + "BulletRangeType": 2, "Scope": 2, "ScopeParameter": [ 360, @@ -8934,6 +9295,7 @@ { "Id": 20134, "Direction": 1, + "BulletRangeType": 2, "Scope": 2, "ScopeParameter": [ 360, @@ -8959,6 +9321,7 @@ { "Id": 20135, "Direction": 1, + "BulletRangeType": 2, "Scope": 2, "ScopeParameter": [ 360, @@ -8985,6 +9348,7 @@ { "Id": 20141, "Direction": 1, + "BulletRangeType": 3, "Scope": 2, "ScopeParameter": [ 360, @@ -9010,6 +9374,7 @@ { "Id": 20142, "Direction": 1, + "BulletRangeType": 3, "Scope": 2, "ScopeParameter": [ 360, @@ -9035,6 +9400,7 @@ { "Id": 20143, "Direction": 1, + "BulletRangeType": 3, "Scope": 2, "ScopeParameter": [ 360, @@ -9060,6 +9426,7 @@ { "Id": 20144, "Direction": 1, + "BulletRangeType": 3, "Scope": 2, "ScopeParameter": [ 360, @@ -9085,6 +9452,7 @@ { "Id": 20145, "Direction": 1, + "BulletRangeType": 3, "Scope": 2, "ScopeParameter": [ 360, @@ -9111,6 +9479,7 @@ { "Id": 20211, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -9133,6 +9502,7 @@ { "Id": 20221, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -9155,6 +9525,7 @@ { "Id": 20222, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -9177,6 +9548,7 @@ { "Id": 20223, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -9199,6 +9571,7 @@ { "Id": 20224, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -9221,6 +9594,7 @@ { "Id": 20225, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -9243,6 +9617,7 @@ { "Id": 20231, "Direction": 1, + "BulletRangeType": 3, "Scope": 2, "ScopeParameter": [ 360, @@ -9269,6 +9644,7 @@ { "Id": 20241, "Direction": 2, + "BulletRangeType": 3, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -9291,6 +9667,7 @@ { "Id": 20242, "Direction": 2, + "BulletRangeType": 3, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -9313,6 +9690,7 @@ { "Id": 20243, "Direction": 2, + "BulletRangeType": 3, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -9335,6 +9713,7 @@ { "Id": 20244, "Direction": 2, + "BulletRangeType": 3, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -9357,6 +9736,7 @@ { "Id": 20245, "Direction": 2, + "BulletRangeType": 3, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -9379,6 +9759,7 @@ { "Id": 20311, "Direction": 2, + "BulletRangeType": 1, "Scope": 4, "ScopeParameter": [], "IsDirectional": false, @@ -9401,6 +9782,7 @@ { "Id": 20321, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -9426,6 +9808,7 @@ { "Id": 20322, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -9452,6 +9835,7 @@ { "Id": 20331, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -9477,6 +9861,7 @@ { "Id": 20332, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -9502,6 +9887,7 @@ { "Id": 20333, "Direction": 1, + "BulletRangeType": 2, "Scope": 1, "ScopeParameter": [ 2, @@ -9527,6 +9913,7 @@ { "Id": 20341, "Direction": 1, + "BulletRangeType": 3, "Scope": 1, "ScopeParameter": [ 2, @@ -9552,6 +9939,7 @@ { "Id": 20342, "Direction": 1, + "BulletRangeType": 3, "Scope": 1, "ScopeParameter": [ 2, @@ -9577,6 +9965,7 @@ { "Id": 20343, "Direction": 1, + "BulletRangeType": 3, "Scope": 1, "ScopeParameter": [ 2, diff --git a/src/api/config/SkillConfigCategory.json b/src/api/config/SkillConfigCategory.json index bd1bdfb..7dfc5d7 100644 --- a/src/api/config/SkillConfigCategory.json +++ b/src/api/config/SkillConfigCategory.json @@ -1054,7 +1054,7 @@ "VisualEffectPrefab": "FX_Skill_Lead_M", "Icon": "Skill_Icon_201", "Sound": "Sound_QiaoHe_Skill", - "Describe": "大力挥舞大剑,对周围敌人造5段、每段2.1倍攻击力的伤害,并有100%的概率降低目标40点攻击,持续0秒", + "Describe": "大力挥舞大剑,对周围敌人造5段、每段2.1倍攻击力的伤害,并有30%的概率降低目标40点攻击,持续5秒", "Introduction": "" }, { @@ -1103,7 +1103,7 @@ "VisualEffectPrefab": "FX_Skill_Lead_M", "Icon": "Skill_Icon_201", "Sound": "Sound_QiaoHe_Skill", - "Describe": "大力挥舞大剑,对周围敌人造5段、每段2.1倍攻击力的伤害,并有100%的概率降低目标55点攻击,持续0秒", + "Describe": "大力挥舞大剑,对周围敌人造5段、每段2.1倍攻击力的伤害,并有30%的概率降低目标55点攻击,持续5秒", "Introduction": "" }, { @@ -1152,7 +1152,7 @@ "VisualEffectPrefab": "FX_Skill_Lead_M", "Icon": "Skill_Icon_201", "Sound": "Sound_QiaoHe_Skill", - "Describe": "大力挥舞大剑,对周围敌人造5段、每段2.1倍攻击力的伤害,并有100%的概率降低目标70点攻击,持续0秒", + "Describe": "大力挥舞大剑,对周围敌人造5段、每段2.1倍攻击力的伤害,并有30%的概率降低目标70点攻击,持续5秒", "Introduction": "" }, { @@ -1201,7 +1201,7 @@ "VisualEffectPrefab": "FX_Skill_Lead_M", "Icon": "Skill_Icon_201", "Sound": "Sound_QiaoHe_Skill", - "Describe": "大力挥舞大剑,对周围敌人造5段、每段2.1倍攻击力的伤害,并有100%的概率降低目标85点攻击,持续0秒", + "Describe": "大力挥舞大剑,对周围敌人造5段、每段2.1倍攻击力的伤害,并有30%的概率降低目标85点攻击,持续5秒", "Introduction": "" }, { @@ -1250,7 +1250,7 @@ "VisualEffectPrefab": "FX_Skill_Lead_M", "Icon": "Skill_Icon_201", "Sound": "Sound_QiaoHe_Skill", - "Describe": "大力挥舞大剑,对周围敌人造5段、每段2.1倍攻击力的伤害,并有100%的概率降低目标100点攻击,持续0秒", + "Describe": "大力挥舞大剑,对周围敌人造5段、每段2.1倍攻击力的伤害,并有30%的概率降低目标100点攻击,持续5秒", "Introduction": "" }, { @@ -1598,7 +1598,7 @@ "VisualEffectPrefab": "FX_Skill_Lead_F", "Icon": "Skill_Icon_221", "Sound": "Sound_TaoXiaoqing_Skill", - "Describe": "向前方射出三道暗器,造成3段、平均每段2.6倍攻击力的伤害,并降低目标10%的命中率,持续0秒", + "Describe": "向前方射出三道暗器,造成3段、平均每段2.6倍攻击力的伤害,并降低目标10%的命中率,持续5秒", "Introduction": "" }, { @@ -1656,7 +1656,7 @@ "VisualEffectPrefab": "FX_Skill_Lead_F", "Icon": "Skill_Icon_221", "Sound": "Sound_TaoXiaoqing_Skill", - "Describe": "向前方射出三道暗器,造成3段、平均每段3倍攻击力的伤害,并降低目标15%的命中率,持续0秒", + "Describe": "向前方射出三道暗器,造成3段、平均每段3倍攻击力的伤害,并降低目标15%的命中率,持续5秒", "Introduction": "" }, { @@ -1714,7 +1714,7 @@ "VisualEffectPrefab": "FX_Skill_Lead_F", "Icon": "Skill_Icon_221", "Sound": "Sound_TaoXiaoqing_Skill", - "Describe": "向前方射出三道暗器,造成3段、平均每段3.4倍攻击力的伤害,并降低目标20%的命中率,持续0秒", + "Describe": "向前方射出三道暗器,造成3段、平均每段3.4倍攻击力的伤害,并降低目标20%的命中率,持续5秒", "Introduction": "" }, { @@ -1772,7 +1772,7 @@ "VisualEffectPrefab": "FX_Skill_Lead_F", "Icon": "Skill_Icon_221", "Sound": "Sound_TaoXiaoqing_Skill", - "Describe": "向前方射出三道暗器,造成3段、平均每段3.9倍攻击力的伤害,并降低目标25%的命中率,持续0秒", + "Describe": "向前方射出三道暗器,造成3段、平均每段3.9倍攻击力的伤害,并降低目标25%的命中率,持续5秒", "Introduction": "" }, { @@ -1830,7 +1830,7 @@ "VisualEffectPrefab": "FX_Skill_Lead_F", "Icon": "Skill_Icon_221", "Sound": "Sound_TaoXiaoqing_Skill", - "Describe": "向前方射出三道暗器,造成3段、平均每段4.5倍攻击力的伤害,并降低目标30%的命中率,持续0秒", + "Describe": "向前方射出三道暗器,造成3段、平均每段4.5倍攻击力的伤害,并降低目标30%的命中率,持续5秒", "Introduction": "" }, { @@ -1890,7 +1890,7 @@ "VisualEffectPrefab": "FX_Skill_Li", "Icon": "Skill_Icon_241", "Sound": "Sound_LiLinger_Skill", - "Describe": "凌空飞起,向前方一片敌人射出箭雨,造成平均每段1.5倍攻击力的伤害,并增加自身3%的攻击速度,持续0秒", + "Describe": "凌空飞起,向前方一片敌人射出箭雨,造成平均每段1.5倍攻击力的伤害,并增加自身3%的攻击速度,持续10秒", "Introduction": "" }, { @@ -1950,7 +1950,7 @@ "VisualEffectPrefab": "FX_Skill_Li", "Icon": "Skill_Icon_241", "Sound": "Sound_LiLinger_Skill", - "Describe": "凌空飞起,向前方一片敌人射出箭雨,造成平均每段2倍攻击力的伤害,并增加自身6%的攻击速度,持续0秒", + "Describe": "凌空飞起,向前方一片敌人射出箭雨,造成平均每段2倍攻击力的伤害,并增加自身6%的攻击速度,持续10秒", "Introduction": "" }, { @@ -2010,7 +2010,7 @@ "VisualEffectPrefab": "FX_Skill_Li", "Icon": "Skill_Icon_241", "Sound": "Sound_LiLinger_Skill", - "Describe": "凌空飞起,向前方一片敌人射出箭雨,造成平均每段2.5倍攻击力的伤害,并增加自身9%的攻击速度,持续0秒", + "Describe": "凌空飞起,向前方一片敌人射出箭雨,造成平均每段2.5倍攻击力的伤害,并增加自身9%的攻击速度,持续10秒", "Introduction": "" }, { @@ -2070,7 +2070,7 @@ "VisualEffectPrefab": "FX_Skill_Li", "Icon": "Skill_Icon_241", "Sound": "Sound_LiLinger_Skill", - "Describe": "凌空飞起,向前方一片敌人射出箭雨,造成平均每段3倍攻击力的伤害,并增加自身12%的攻击速度,持续0秒", + "Describe": "凌空飞起,向前方一片敌人射出箭雨,造成平均每段3倍攻击力的伤害,并增加自身12%的攻击速度,持续10秒", "Introduction": "" }, { @@ -2130,7 +2130,7 @@ "VisualEffectPrefab": "FX_Skill_Li", "Icon": "Skill_Icon_241", "Sound": "Sound_LiLinger_Skill", - "Describe": "凌空飞起,向前方一片敌人射出箭雨,造成平均每段3.5倍攻击力的伤害,并增加自身15%的攻击速度,持续0秒", + "Describe": "凌空飞起,向前方一片敌人射出箭雨,造成平均每段3.5倍攻击力的伤害,并增加自身15%的攻击速度,持续10秒", "Introduction": "" }, { @@ -2190,7 +2190,7 @@ "VisualEffectPrefab": "FX_Skill_Li", "Icon": "Skill_Icon_241", "Sound": "Sound_LiLinger_Skill", - "Describe": "凌空飞起,向前方一片敌人射出箭雨,造成平均每段4倍攻击力的伤害,并增加自身18%的攻击速度,持续0秒", + "Describe": "凌空飞起,向前方一片敌人射出箭雨,造成平均每段4倍攻击力的伤害,并增加自身18%的攻击速度,持续10秒", "Introduction": "" }, { @@ -2250,7 +2250,7 @@ "VisualEffectPrefab": "FX_Skill_Li", "Icon": "Skill_Icon_241", "Sound": "Sound_LiLinger_Skill", - "Describe": "凌空飞起,向前方一片敌人射出箭雨,造成平均每段4.5倍攻击力的伤害,并增加自身21%的攻击速度,持续0秒", + "Describe": "凌空飞起,向前方一片敌人射出箭雨,造成平均每段4.5倍攻击力的伤害,并增加自身21%的攻击速度,持续10秒", "Introduction": "" }, { @@ -2310,7 +2310,7 @@ "VisualEffectPrefab": "FX_Skill_Li", "Icon": "Skill_Icon_241", "Sound": "Sound_LiLinger_Skill", - "Describe": "凌空飞起,向前方一片敌人射出箭雨,造成平均每段5倍攻击力的伤害,并增加自身24%的攻击速度,持续0秒", + "Describe": "凌空飞起,向前方一片敌人射出箭雨,造成平均每段5倍攻击力的伤害,并增加自身24%的攻击速度,持续10秒", "Introduction": "" }, { @@ -2370,7 +2370,7 @@ "VisualEffectPrefab": "FX_Skill_Li", "Icon": "Skill_Icon_241", "Sound": "Sound_LiLinger_Skill", - "Describe": "凌空飞起,向前方一片敌人射出箭雨,造成平均每段5.5倍攻击力的伤害,并增加自身27%的攻击速度,持续0秒", + "Describe": "凌空飞起,向前方一片敌人射出箭雨,造成平均每段5.5倍攻击力的伤害,并增加自身27%的攻击速度,持续10秒", "Introduction": "" }, { @@ -2430,7 +2430,7 @@ "VisualEffectPrefab": "FX_Skill_Li", "Icon": "Skill_Icon_241", "Sound": "Sound_LiLinger_Skill", - "Describe": "凌空飞起,向前方一片敌人射出箭雨,造成平均每段6倍攻击力的伤害,并增加自身30%的攻击速度,持续0秒", + "Describe": "凌空飞起,向前方一片敌人射出箭雨,造成平均每段6倍攻击力的伤害,并增加自身30%的攻击速度,持续10秒", "Introduction": "" }, { @@ -2487,7 +2487,7 @@ "VisualEffectPrefab": "FX_Skill_MengHe", "Icon": "Skill_Icon_261", "Sound": "Sound_MengHe_Skill", - "Describe": "高速旋转手中的大锤,对周围的敌人共造成5段、每段1倍攻击力伤害,并降低目标5%的移动速度和攻击速度,持续0秒", + "Describe": "高速旋转手中的大锤,对周围的敌人共造成5段、每段1倍攻击力伤害,并降低目标5%的移动速度和攻击速度,持续5秒", "Introduction": "" }, { @@ -3049,7 +3049,7 @@ "VisualEffectPrefab": "FX_Skill_HanFei", "Icon": "Skill_Icon_281", "Sound": "Sound_HanFei_Skill", - "Describe": "以迅雷不及掩耳之势,向敌人快速挥舞棍子,造成5段、每段1倍攻击力的伤害,并降低目标3%的防御,持续0秒", + "Describe": "以迅雷不及掩耳之势,向敌人快速挥舞棍子,造成5段、每段1倍攻击力的伤害,并降低目标3%的防御,持续5秒", "Introduction": "" }, { @@ -3729,7 +3729,7 @@ "VisualEffectPrefab": "FX_Skill_MuRongWan", "Icon": "Skill_Icon_301", "Sound": "Sound_MurongWan_Skill", - "Describe": "治疗全队1300生命值,并增加每0秒恢复其60点生命值的效果,持续0秒", + "Describe": "治疗全队1300生命值,并增加每3秒恢复其60点生命值的效果,持续30秒", "Introduction": "" }, { @@ -4326,7 +4326,7 @@ "VisualEffectPrefab": "FX_Skill_JiuJiu", "Icon": "Skill_Icon_341", "Sound": "", - "Describe": "对前方造成3段、每段1.8倍攻击力的伤害,并获得10%的吸血,持续0秒", + "Describe": "对前方造成3段、每段1.8倍攻击力的伤害,并获得10%的吸血,持续10秒", "Introduction": "" }, { @@ -20190,7 +20190,7 @@ 74, 140, 184, - 327 + 300 ], "BulletPos": [], "Bullet": [ @@ -20319,7 +20319,7 @@ 74, 140, 184, - 327 + 300 ], "BulletPos": [], "Bullet": [ diff --git a/src/api/config/SkillEffectConfigCategory.json b/src/api/config/SkillEffectConfigCategory.json index bbb2de9..f5cf0d7 100644 --- a/src/api/config/SkillEffectConfigCategory.json +++ b/src/api/config/SkillEffectConfigCategory.json @@ -7796,5 +7796,138 @@ "EffectField": 2, "NumericExpression": "15", "WhetherCrit": false + }, + { + "Id": 300001, + "EffectType": 1411, + "EffectField": 1, + "NumericExpression": "10", + "WhetherCrit": false + }, + { + "Id": 300002, + "EffectType": 1433, + "EffectField": 1, + "NumericExpression": "10", + "WhetherCrit": false + }, + { + "Id": 300003, + "EffectType": 1401, + "EffectField": 1, + "NumericExpression": "HpMax", + "WhetherCrit": false + }, + { + "Id": 300004, + "EffectType": 1410, + "EffectField": 1, + "NumericExpression": "50", + "WhetherCrit": false + }, + { + "Id": 300005, + "EffectType": 1429, + "EffectField": 1, + "NumericExpression": "10", + "WhetherCrit": false + }, + { + "Id": 300006, + "EffectType": 1409, + "EffectField": 1, + "NumericExpression": "20", + "WhetherCrit": false + }, + { + "Id": 300007, + "EffectType": 30001, + "EffectField": 2, + "NumericExpression": "30", + "WhetherCrit": false + }, + { + "Id": 300008, + "EffectType": 30002, + "EffectField": 2, + "NumericExpression": "30", + "WhetherCrit": false + }, + { + "Id": 300009, + "EffectType": 1402, + "EffectField": 2, + "NumericExpression": "20", + "WhetherCrit": false + }, + { + "Id": 300010, + "EffectType": 1405, + "EffectField": 1, + "NumericExpression": "10000", + "WhetherCrit": false + }, + { + "Id": 330011, + "EffectType": 1430, + "EffectField": 1, + "NumericExpression": "20", + "WhetherCrit": false + }, + { + "Id": 330012, + "EffectType": 30001, + "EffectField": 2, + "NumericExpression": "50", + "WhetherCrit": false + }, + { + "Id": 330013, + "EffectType": 33002, + "EffectField": 2, + "NumericExpression": "-100", + "WhetherCrit": false + }, + { + "Id": 330014, + "EffectType": 33003, + "EffectField": 2, + "NumericExpression": "50", + "WhetherCrit": false + }, + { + "Id": 330015, + "EffectType": 9998, + "EffectField": 5, + "NumericExpression": "330014", + "WhetherCrit": false + }, + { + "Id": 330016, + "EffectType": 1403, + "EffectField": 2, + "NumericExpression": "100", + "WhetherCrit": false + }, + { + "Id": 330017, + "EffectType": 33002, + "EffectField": 2, + "NumericExpression": "100", + "WhetherCrit": false + }, + { + "Id": 330018, + "EffectType": 33004, + "EffectField": 5, + "NumericExpression": "30001", + "WhetherCrit": false + }, + { + "Id": 330019, + "EffectType": 1432, + "EffectField": 1, + "NumericExpression": "20", + "WhetherCrit": false } ] \ No newline at end of file diff --git a/src/api/config/StructureConfigCategory.json b/src/api/config/StructureConfigCategory.json index 771e686..8aa5480 100644 --- a/src/api/config/StructureConfigCategory.json +++ b/src/api/config/StructureConfigCategory.json @@ -980,6 +980,8 @@ "Durable": 900, "NunLimit": 1, "ShapeId": 85, + "Comfortable": 80, + "DiseaseDeduction": 80, "Special": 0, "BuildFunctionId": 85, "Boom": 1000, diff --git a/src/api/config/StructureStrengthenConfigCategory.json b/src/api/config/StructureStrengthenConfigCategory.json index b88f4df..cd6304b 100644 --- a/src/api/config/StructureStrengthenConfigCategory.json +++ b/src/api/config/StructureStrengthenConfigCategory.json @@ -5975,9 +5975,9 @@ "Strengthen3Item1Num": 300, "Strengthen3Item2": 805, "Strengthen3Item2Num": 400, - "StrengthenDurable1": 1500, - "StrengthenDurable2": 2100, - "StrengthenDurable3": 1700, + "StrengthenDurable1": -1, + "StrengthenDurable2": -1, + "StrengthenDurable3": -1, "Integral": 250, "StrengIntegral1": 50, "StrengIntegral2": 90, diff --git a/src/api/config/SynthesisConfigCategory.json b/src/api/config/SynthesisConfigCategory.json index c93e1b4..c960d64 100644 --- a/src/api/config/SynthesisConfigCategory.json +++ b/src/api/config/SynthesisConfigCategory.json @@ -5343,9 +5343,9 @@ "SingleMaxNumber": -1, "ItemId1": 800, "ItemNum1": 20, - "ItemId2": 803, + "ItemId2": 802, "ItemNum2": 20, - "ItemId3": 838, + "ItemId3": 837, "ItemNum3": 20, "ItemId4": 0, "ItemNum4": 0, diff --git a/src/api/config/TextConfigCategory.json b/src/api/config/TextConfigCategory.json index 252576b..95b2b87 100644 --- a/src/api/config/TextConfigCategory.json +++ b/src/api/config/TextConfigCategory.json @@ -1111,7 +1111,7 @@ }, { "Id": 1223, - "Text": "只能选择3名勇士", + "Text": "需要选择至少一名勇士才可以出战", "Value": "" }, { @@ -1249,6 +1249,21 @@ "Text": "今日已开宴,请明日再来修改菜品", "Value": "" }, + { + "Id": 1251, + "Text": "太久远了,族谱上关于该村民的记载已经看不清了", + "Value": "" + }, + { + "Id": 1252, + "Text": "应用时只应用拓印时屏幕内的所有物品,且会覆盖当前山谷的布局,请谷主记得及时在本地拓印自己的山谷~", + "Value": "" + }, + { + "Id": 1253, + "Text": "拓印时只拓印当前屏幕范围内内所有物品", + "Value": "" + }, { "Id": 2001, "Text": "抵达中", @@ -4089,6 +4104,31 @@ "Text": "取出铜钱后聚宝盆不产生收益,您确定要取出吗?", "Value": "" }, + { + "Id": 3058, + "Text": "对手被人抢先一步挑战啦,本次不消耗挑战次数", + "Value": "" + }, + { + "Id": 3059, + "Text": "服务器开启后第30天之后的第一个1号开启第一赛季
每月1号开启新赛季,赛季持续10天
第10天的24:00结算排行榜,次日5:00通过邮箱发送奖励
总榜,为以下三个榜单的总评分之和
锦衣榜:统计赛季期间穿的最好的20个村民,也就是四季衣服寿命值经验增加之和最高的村民
玉食榜:统计赛季期间谷主体质经验最高的10次家宴/喜宴
松龄榜: 统计谷主账号历史年龄最高的前20个村民
排行榜前3名的谷主可在赛季结束前更换排行榜上的角色形象,结束后形象不可变更", + "Value": "" + }, + { + "Id": 3060, + "Text": "服务器开启后第30天之后的第一个1号开启第一赛季
每月1号开启新赛季,赛季持续10天
第10天的24:00结算排行榜,次日5:00通过邮箱发送奖励
锦衣榜:统计赛季期间穿的最好的20个村民,也就是四季衣服寿命值经验增加之和最高的村民
排行榜前3名的谷主可在赛季结束前更换排行榜上的角色形象,结束后形象不可变更", + "Value": "" + }, + { + "Id": 3061, + "Text": "服务器开启后第30天之后的第一个1号开启第一赛季
每月1号开启新赛季,赛季持续10天
第10天的24:00结算排行榜,次日5:00通过邮箱发送奖励
玉食榜:统计赛季期间谷主体质经验最高的10次家宴/喜宴
最多只统计10次,不足10次则按具体次数计算
排行榜前3名的谷主可在赛季结束前更换排行榜上的角色形象,结束后形象不可变更", + "Value": "" + }, + { + "Id": 3062, + "Text": "服务器开启后第30天之后的第一个1号开启第一赛季
每月1号开启新赛季,赛季持续10天
第10天的24:00结算排行榜,次日5:00通过邮箱发送奖励
松龄榜: 统计谷主账号历史年龄最高的前20个村民
排行榜前3名的谷主可在赛季结束前更换排行榜上的角色形象,结束后形象不可变更", + "Value": "" + }, { "Id": 4001, "Text": "你的鱼饵用完了", diff --git a/src/api/config/TitleConfigCategory.json b/src/api/config/TitleConfigCategory.json index f3423be..21aac04 100644 --- a/src/api/config/TitleConfigCategory.json +++ b/src/api/config/TitleConfigCategory.json @@ -185,6 +185,48 @@ 7002 ] }, + { + "Id": 404, + "Name": "霓裳君", + "Requirement": "锦衣榜第一名", + "RequirementTpye": 30, + "IdAndType": [ + 6, + 1 + ], + "Time": true, + "Level": 4, + "Skin": "Tiltle_Pictrue_404", + "ValleyEffect": [] + }, + { + "Id": 405, + "Name": "鼎中君", + "Requirement": "玉食榜第一名", + "RequirementTpye": 30, + "IdAndType": [ + 7, + 1 + ], + "Time": true, + "Level": 4, + "Skin": "Tiltle_Pictrue_405", + "ValleyEffect": [] + }, + { + "Id": 406, + "Name": "青松君", + "Requirement": "松龄榜第一名", + "RequirementTpye": 30, + "IdAndType": [ + 8, + 1 + ], + "Time": true, + "Level": 4, + "Skin": "Tiltle_Pictrue_406", + "ValleyEffect": [] + }, { "Id": 501, "Name": "桃谷天尊", @@ -200,5 +242,19 @@ "ValleyEffect": [ 7003 ] + }, + { + "Id": 502, + "Name": "乐土圣君", + "Requirement": "总榜第一名", + "RequirementTpye": 30, + "IdAndType": [ + 5, + 1 + ], + "Time": true, + "Level": 5, + "Skin": "Tiltle_Pictrue_502", + "ValleyEffect": [] } ] \ No newline at end of file diff --git a/src/api/config/WorldParametersConfigCategory.json b/src/api/config/WorldParametersConfigCategory.json index 786166c..f15dcb0 100644 --- a/src/api/config/WorldParametersConfigCategory.json +++ b/src/api/config/WorldParametersConfigCategory.json @@ -385,6 +385,8 @@ "ResourcesNumMax": 1500, "MartialRankRefreshTime": 5, "MartialRankChallengeTime": 10, + "MartialRankChallengeBuyCost": 5, + "MartialRankChallengeBuyTime": 10, "IngotsRefreshCost": 10, "IngotsRefreshGuarantee": 100, "ExpeditionNum": 3, @@ -427,6 +429,10 @@ "FeatherAdd": 666, "FireworksNumbers": 10, "VillageFeastGiveCopperNumber": 3, - "EachVillageRaiseFeastNumber": 10 + "EachVillageRaiseFeastNumber": 10, + "FamilyTreeGeneration": 105, + "FamilyTreeInitialGeneration": 5, + "FamilyTreeLatestGeneration": 100, + "OrderVillagerVale": 5000 } ] \ No newline at end of file diff --git a/src/views/gameRole/online/index.vue b/src/views/gameRole/online/index.vue index fc5426c..480fb48 100644 --- a/src/views/gameRole/online/index.vue +++ b/src/views/gameRole/online/index.vue @@ -30,14 +30,14 @@