From d30f382d40410eeb589ed652b10a8c4112db8d3f Mon Sep 17 00:00:00 2001 From: Fang Date: Tue, 1 Aug 2023 10:28:22 +0800 Subject: [PATCH 01/44] =?UTF-8?q?=E9=81=93=E5=85=B7=E8=8E=B7=E5=8F=96?= =?UTF-8?q?=E7=9A=84=E5=A4=B4=E5=83=8F=E5=93=81=E8=B4=A8=E9=A2=9C=E8=89=B2?= =?UTF-8?q?=E9=94=99=E8=AF=AFfix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/ui/common/cell/player_head_cell.lua | 9 +++------ lua/app/ui/player_info/avatar_cell.lua | 9 +++------ lua/app/ui/player_info/player_info_ui.lua | 9 +++------ lua/app/userdata/player/player_data.lua | 15 +++++++++++---- 4 files changed, 20 insertions(+), 22 deletions(-) diff --git a/lua/app/ui/common/cell/player_head_cell.lua b/lua/app/ui/common/cell/player_head_cell.lua index 19f3648b..557088dd 100644 --- a/lua/app/ui/common/cell/player_head_cell.lua +++ b/lua/app/ui/common/cell/player_head_cell.lua @@ -16,12 +16,9 @@ function PlayerHeadCell:refresh(avatarId, frameId, showRp) end -- 背景颜色 - local heroId = DataManager.PlayerData:getAvatarHeroId(avatarId) - if heroId then - local smallFrame = ModuleManager.HeroManager:getHeroSmallFrame(heroId) - if smallFrame then - self.baseObject:setSprite(GConst.ATLAS_PATH.ICON_HERO, smallFrame) - end + local smallFrame = DataManager.PlayerData:getAvatarBg(avatarId) + if smallFrame then + self.baseObject:setSprite(GConst.ATLAS_PATH.ICON_HERO, smallFrame) end -- 头像 diff --git a/lua/app/ui/player_info/avatar_cell.lua b/lua/app/ui/player_info/avatar_cell.lua index 2333e65d..0ea61ce0 100644 --- a/lua/app/ui/player_info/avatar_cell.lua +++ b/lua/app/ui/player_info/avatar_cell.lua @@ -27,12 +27,9 @@ function AvatarCell:refresh(id, isSelect) end -- 背景 - local heroId = DataManager.PlayerData:getAvatarHeroId(self.id) - if heroId then - local smallFrame = ModuleManager.HeroManager:getHeroSmallFrame(heroId) - if smallFrame then - self.baseObject:setSprite(GConst.ATLAS_PATH.ICON_HERO, smallFrame) - end + local smallFrame = DataManager.PlayerData:getAvatarBg(self.id) + if smallFrame then + self.baseObject:setSprite(GConst.ATLAS_PATH.ICON_HERO, smallFrame) end self.select:setActive(isSelect) diff --git a/lua/app/ui/player_info/player_info_ui.lua b/lua/app/ui/player_info/player_info_ui.lua index 3500c313..c68b8757 100644 --- a/lua/app/ui/player_info/player_info_ui.lua +++ b/lua/app/ui/player_info/player_info_ui.lua @@ -202,12 +202,9 @@ end -- 刷新头像和头像框 function PlayerInfoUI:refreshAvatarAndFrame() - local heroId = DataManager.PlayerData:getAvatarHeroId(self.selectAvatarId) - if heroId then - local smallFrame = ModuleManager.HeroManager:getHeroSmallFrame(heroId) - if smallFrame then - self.bgAvatar:setSprite(GConst.ATLAS_PATH.ICON_HERO, smallFrame) - end + local smallFrame = DataManager.PlayerData:getAvatarBg(self.selectAvatarId) + if smallFrame then + self.bgAvatar:setSprite(GConst.ATLAS_PATH.ICON_HERO, smallFrame) end local avatarName = DataManager.PlayerData:getAvatarIconId(self.selectAvatarId) if avatarName then diff --git a/lua/app/userdata/player/player_data.lua b/lua/app/userdata/player/player_data.lua index b6bc9827..083754da 100644 --- a/lua/app/userdata/player/player_data.lua +++ b/lua/app/userdata/player/player_data.lua @@ -403,12 +403,19 @@ function PlayerData:getCanUnlockAvatarIds(checkData) return ids end --- 获取头像对应的英雄id -function PlayerData:getAvatarHeroId(id) +-- 获取头像背景 +function PlayerData:getAvatarBg(id) local cfg = ConfigManager:getConfig("avatar")[id] - if cfg then - return cfg.hero + if cfg.hero then + -- hero来源 + local hero = ConfigManager:getConfig("hero")[cfg.hero] + return hero and GConst.HERO_SMALL_FRAME_QLT[hero.qlt] + elseif cfg.item then + -- item来源 + local item = ConfigManager:getConfig("item")[cfg.item] + return item and GConst.HERO_SMALL_FRAME_QLT[item.qlt] end + return nil end -- 头像框----------------------------------------------------------------------------------- From 678a8fbd4c360ecad6be7a8bed0a8618cc77be5f Mon Sep 17 00:00:00 2001 From: Fang Date: Tue, 1 Aug 2023 11:10:51 +0800 Subject: [PATCH 02/44] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E9=9F=B3=E6=95=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/common/audio_manager.lua | 4 ++++ lua/app/module/common/common_manager.lua | 1 + lua/app/ui/collection/cell/collection_hero_cell.lua | 1 + lua/app/ui/hero/armor_info_comp.lua | 1 + lua/app/ui/hero/weapon_info_comp.lua | 4 ++++ 5 files changed, 11 insertions(+) diff --git a/lua/app/common/audio_manager.lua b/lua/app/common/audio_manager.lua index c3945c3e..11d78b31 100644 --- a/lua/app/common/audio_manager.lua +++ b/lua/app/common/audio_manager.lua @@ -37,6 +37,10 @@ AudioManager.EFFECT_ID = { LINK_CANCEL = "assets/arts/sounds/sfx/battle/link_cancel.wav", FUNC_OPEN = "assets/arts/sounds/sfx/ui/func_open.wav", BATTLE_BOX_OPEN = "assets/arts/sounds/sfx/ui/ui_battle_open_box.wav", + EQUIP_WEAPON_UP = "assets/arts/sounds/sfx/ui/equip_up.wav", + EQUIP_ARMOR_UP = "assets/arts/sounds/sfx/ui/armor_up.wav", + DUNGEON_SMASH = "assets/arts/sounds/sfx/ui/smash.wav", + STAR_GET = "assets/arts/sounds/sfx/ui/star_get.wav", } AudioManager.BO_EFFECT_ID = { diff --git a/lua/app/module/common/common_manager.lua b/lua/app/module/common/common_manager.lua index 81a19d06..674bcbb9 100644 --- a/lua/app/module/common/common_manager.lua +++ b/lua/app/module/common/common_manager.lua @@ -10,6 +10,7 @@ function CommonManager:showMopUpUI(rewards, remainCount, callback, customtitleTx ---- 有目标的扫荡 可为nil target = target, } + AudioManager:playEffect(AudioManager.EFFECT_ID.DUNGEON_SMASH) UIManager:showUI("app/ui/common/mop_up_ui", params) end diff --git a/lua/app/ui/collection/cell/collection_hero_cell.lua b/lua/app/ui/collection/cell/collection_hero_cell.lua index 77654a3f..b4c2871b 100644 --- a/lua/app/ui/collection/cell/collection_hero_cell.lua +++ b/lua/app/ui/collection/cell/collection_hero_cell.lua @@ -14,6 +14,7 @@ function CollectionHeroCell:init() self.btnCollect:addClickListener(function() if DataManager.CollectionData:getCanCollectPoint(GConst.CollectionConst.TYPE.HERO, self.heroData.id) > 0 then + AudioManager:playEffect(AudioManager.EFFECT_ID.STAR_GET) ModuleManager.CollectionManager:reqHeroPoint(self.heroData.id) EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.COLLECTION_CLICK_GET_POINT, self.imgIcon:getPosition()) else diff --git a/lua/app/ui/hero/armor_info_comp.lua b/lua/app/ui/hero/armor_info_comp.lua index 18d46be3..66a02b14 100644 --- a/lua/app/ui/hero/armor_info_comp.lua +++ b/lua/app/ui/hero/armor_info_comp.lua @@ -272,6 +272,7 @@ end -- 播放升级动效 function ArmorInfoComp:playUpgradeEffect(part) + AudioManager:playEffect(AudioManager.EFFECT_ID.EQUIP_ARMOR_UP) self:playPartUpgradeEffect(part) self.rootCurEffect:removeAllChildren() local stage = DataManager.EquipData:getEquip(self.heroEntity:getCfgId(), part):getStage() + 1 diff --git a/lua/app/ui/hero/weapon_info_comp.lua b/lua/app/ui/hero/weapon_info_comp.lua index da352930..a4840a3e 100644 --- a/lua/app/ui/hero/weapon_info_comp.lua +++ b/lua/app/ui/hero/weapon_info_comp.lua @@ -179,6 +179,10 @@ end -- 播放动效 function WeaponInfoComp:playEffect(isUpgrade, isUpSection) self.rootEffect:removeAllChildren() + + if isUpgrade or isUpSection then + AudioManager:playEffect(AudioManager.EFFECT_ID.EQUIP_WEAPON_UP) + end -- 升级 if isUpgrade then EffectManager:loadUIEffectAsync(EFFECT_UP_GRADE, self.uiRoot, self.rootEffect, GConst.UI_EFFECT_ORDER.LEVEL5, function(obj) From 4bc9f441a57ee3f2b40e06cb6763da431e1317bd Mon Sep 17 00:00:00 2001 From: Fang Date: Tue, 1 Aug 2023 14:45:49 +0800 Subject: [PATCH 03/44] =?UTF-8?q?=E9=98=B2=E5=85=B7=E5=8D=87=E7=BA=A7?= =?UTF-8?q?=E5=88=B7=E6=96=B0=E4=B8=8D=E5=8F=8A=E6=97=B6fix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/ui/hero/armor_info_comp.lua | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lua/app/ui/hero/armor_info_comp.lua b/lua/app/ui/hero/armor_info_comp.lua index 66a02b14..56afb3c9 100644 --- a/lua/app/ui/hero/armor_info_comp.lua +++ b/lua/app/ui/hero/armor_info_comp.lua @@ -68,9 +68,6 @@ end function ArmorInfoComp:setHeroData(heroEntity) self.heroEntity = heroEntity self.selectPart = self.selectPart or GConst.EquipConst.PART_TYPE.HAT - self:bind(DataManager.EquipData:getEquip(self.heroEntity:getCfgId(), self.selectPart), "isDirty", function() - self:refresh() - end) end function ArmorInfoComp:refresh() @@ -79,6 +76,10 @@ end function ArmorInfoComp:onSelectIdx(index) self.selectPart = ARMOR_PART_INDEX[index] + self:bind(DataManager.EquipData:getEquip(self.heroEntity:getCfgId(), self.selectPart), "isDirty", function() + self:refresh() + end) + self:refreshSelectArmor() for index, value in ipairs(self.armor) do From d79e24d01f61c94e760d3d58bab00f3309bbd131 Mon Sep 17 00:00:00 2001 From: Fang Date: Tue, 1 Aug 2023 16:43:48 +0800 Subject: [PATCH 04/44] =?UTF-8?q?=E8=A3=85=E5=A4=87=E5=89=AF=E6=9C=AC?= =?UTF-8?q?=E6=9D=90=E6=96=99=E8=8E=B7=E5=8F=96=E7=95=8C=E9=9D=A2=E6=8E=92?= =?UTF-8?q?=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ui/dungeon/cell/dungeon_target_cell.lua | 7 -- lua/app/ui/dungeon/item_get_ui.lua | 87 +++++++++---------- 2 files changed, 43 insertions(+), 51 deletions(-) diff --git a/lua/app/ui/dungeon/cell/dungeon_target_cell.lua b/lua/app/ui/dungeon/cell/dungeon_target_cell.lua index 7f47a1e7..c05c95e6 100644 --- a/lua/app/ui/dungeon/cell/dungeon_target_cell.lua +++ b/lua/app/ui/dungeon/cell/dungeon_target_cell.lua @@ -12,13 +12,6 @@ function DungeonTargetCell:init() self.powerObj = uiMap["dungeon_target_cell.right.power"] self.imgPowerIcon = uiMap["dungeon_target_cell.right.power.img_icon"] self.txPowerNum = uiMap["dungeon_target_cell.right.power.tx_num"] - - self:bind(DataManager.DungeonData:getDungeonDataByType(ModuleManager.MODULE_KEY.DUNGEON_WEAPON), "isDirty", function() - self:refresh() - end) - self:bind(DataManager.DungeonData:getDungeonDataByType(ModuleManager.MODULE_KEY.DUNGEON_ARMOR), "isDirty", function() - self:refresh() - end) end function DungeonTargetCell:refresh(target, getWay, id) diff --git a/lua/app/ui/dungeon/item_get_ui.lua b/lua/app/ui/dungeon/item_get_ui.lua index ddffc570..160a817d 100644 --- a/lua/app/ui/dungeon/item_get_ui.lua +++ b/lua/app/ui/dungeon/item_get_ui.lua @@ -29,50 +29,6 @@ function ItemGetUI:onLoadRootComplete() self.txGet = uiMap["item_get_ui.content.tx_get"] self.scrollRectComp = uiMap["item_get_ui.content.scroll_view"]:addLuaComponent(GConst.TYPEOF_LUA_CLASS.SCROLL_RECT_BASE) - self.txTitle:setText(I18N:getText("item", self.target.id, "name")) - self.txDesc:setText(I18N:getText("item", self.target.id, "desc")) - self.txGet:setText(I18N:getGlobalText(I18N.GlobalConst.EQUIP_DESC_23)) - self.rewardCell:refreshItemById(self.target.id) - - local itemCfg = ConfigManager:getConfig("item")[self.target.id] - if itemCfg == nil or itemCfg.get_way_type == nil or itemCfg.get_way == nil or #itemCfg.get_way == 0 then - self:closeUI() - return - end - - self.wayType = itemCfg.get_way_type - self.wayList = {} - - if self.wayType == GConst.DungeonConst.TYPE.WEAPON then - local weaponData = DataManager.DungeonData:getDungeonDataByType(ModuleManager.MODULE_KEY.DUNGEON_WEAPON) - local unlock = {} - local lock = {} - for index, id in ipairs(itemCfg.get_way) do - if weaponData:canFightChapter(id) then - table.insert(unlock, id) - else - table.insert(lock, id) - end - end - table.sort(unlock, function(a, b) return a > b end) - table.sort(lock, function(a, b) return a > b end) - self.wayList = table.addArray(unlock, lock) - elseif self.wayType == GConst.DungeonConst.TYPE.ARMOR then - local weaponData = DataManager.DungeonData:getDungeonDataByType(ModuleManager.MODULE_KEY.DUNGEON_ARMOR) - local unlock = {} - local lock = {} - for index, id in ipairs(itemCfg.get_way) do - if weaponData:canFightChapter(id) then - table.insert(unlock, id) - else - table.insert(lock, id) - end - end - table.sort(unlock, function(a, b) return a > b end) - table.sort(lock, function(a, b) return a > b end) - self.wayList = table.addArray(unlock, lock) - end - self.scrollRectComp:addInitCallback(function() return "app/ui/dungeon/cell/dungeon_target_cell" end) @@ -86,9 +42,52 @@ function ItemGetUI:onLoadRootComplete() self:addEventListener(EventManager.CUSTOM_EVENT.GO_DUNGEON_UI, function() self:closeUI() end) + self:bind(DataManager.DungeonData:getDungeonDataByType(ModuleManager.MODULE_KEY.DUNGEON_WEAPON), "isDirty", function() + self:onRefresh() + end) + self:bind(DataManager.DungeonData:getDungeonDataByType(ModuleManager.MODULE_KEY.DUNGEON_ARMOR), "isDirty", function() + self:onRefresh() + end) end function ItemGetUI:onRefresh() + self.txTitle:setText(I18N:getText("item", self.target.id, "name")) + self.txDesc:setText(I18N:getText("item", self.target.id, "desc")) + self.txGet:setText(I18N:getGlobalText(I18N.GlobalConst.EQUIP_DESC_23)) + self.rewardCell:refreshItemById(self.target.id) + + local itemCfg = ConfigManager:getConfig("item")[self.target.id] + if itemCfg == nil or itemCfg.get_way_type == nil or itemCfg.get_way == nil or #itemCfg.get_way == 0 then + self:closeUI() + return + end + + self.wayType = itemCfg.get_way_type + + local weaponData + if self.wayType == GConst.DungeonConst.TYPE.WEAPON then + weaponData = DataManager.DungeonData:getDungeonDataByType(ModuleManager.MODULE_KEY.DUNGEON_WEAPON) + elseif self.wayType == GConst.DungeonConst.TYPE.ARMOR then + weaponData = DataManager.DungeonData:getDungeonDataByType(ModuleManager.MODULE_KEY.DUNGEON_ARMOR) + end + local farm = {} + local unlock = {} + local lock = {} + for index, id in ipairs(itemCfg.get_way) do + if weaponData:canFarmChapter(id) and weaponData:getRemianFarmCount(id) > 0 then + table.insert(farm, id) + elseif weaponData:canFightChapter(id) then + table.insert(unlock, id) + else + table.insert(lock, id) + end + end + table.sort(farm, function(a, b) return a > b end) + table.sort(unlock, function(a, b) return a > b end) + table.sort(lock, function(a, b) return a > b end) + unlock = table.addArray(farm, unlock) + self.wayList = table.addArray(unlock, lock) + self.scrollRectComp:clearCells() self.scrollRectComp:refillCells(#self.wayList) end From 536cc1dfc38eac63fb8ec498f85a128e9f3e5fd5 Mon Sep 17 00:00:00 2001 From: Fang Date: Tue, 1 Aug 2023 10:28:22 +0800 Subject: [PATCH 05/44] =?UTF-8?q?=E9=81=93=E5=85=B7=E8=8E=B7=E5=8F=96?= =?UTF-8?q?=E7=9A=84=E5=A4=B4=E5=83=8F=E5=93=81=E8=B4=A8=E9=A2=9C=E8=89=B2?= =?UTF-8?q?=E9=94=99=E8=AF=AFfix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/ui/common/cell/player_head_cell.lua | 9 +++------ lua/app/ui/player_info/avatar_cell.lua | 9 +++------ lua/app/ui/player_info/player_info_ui.lua | 9 +++------ lua/app/userdata/player/player_data.lua | 15 +++++++++++---- 4 files changed, 20 insertions(+), 22 deletions(-) diff --git a/lua/app/ui/common/cell/player_head_cell.lua b/lua/app/ui/common/cell/player_head_cell.lua index 19f3648b..557088dd 100644 --- a/lua/app/ui/common/cell/player_head_cell.lua +++ b/lua/app/ui/common/cell/player_head_cell.lua @@ -16,12 +16,9 @@ function PlayerHeadCell:refresh(avatarId, frameId, showRp) end -- 背景颜色 - local heroId = DataManager.PlayerData:getAvatarHeroId(avatarId) - if heroId then - local smallFrame = ModuleManager.HeroManager:getHeroSmallFrame(heroId) - if smallFrame then - self.baseObject:setSprite(GConst.ATLAS_PATH.ICON_HERO, smallFrame) - end + local smallFrame = DataManager.PlayerData:getAvatarBg(avatarId) + if smallFrame then + self.baseObject:setSprite(GConst.ATLAS_PATH.ICON_HERO, smallFrame) end -- 头像 diff --git a/lua/app/ui/player_info/avatar_cell.lua b/lua/app/ui/player_info/avatar_cell.lua index 2333e65d..0ea61ce0 100644 --- a/lua/app/ui/player_info/avatar_cell.lua +++ b/lua/app/ui/player_info/avatar_cell.lua @@ -27,12 +27,9 @@ function AvatarCell:refresh(id, isSelect) end -- 背景 - local heroId = DataManager.PlayerData:getAvatarHeroId(self.id) - if heroId then - local smallFrame = ModuleManager.HeroManager:getHeroSmallFrame(heroId) - if smallFrame then - self.baseObject:setSprite(GConst.ATLAS_PATH.ICON_HERO, smallFrame) - end + local smallFrame = DataManager.PlayerData:getAvatarBg(self.id) + if smallFrame then + self.baseObject:setSprite(GConst.ATLAS_PATH.ICON_HERO, smallFrame) end self.select:setActive(isSelect) diff --git a/lua/app/ui/player_info/player_info_ui.lua b/lua/app/ui/player_info/player_info_ui.lua index 3500c313..c68b8757 100644 --- a/lua/app/ui/player_info/player_info_ui.lua +++ b/lua/app/ui/player_info/player_info_ui.lua @@ -202,12 +202,9 @@ end -- 刷新头像和头像框 function PlayerInfoUI:refreshAvatarAndFrame() - local heroId = DataManager.PlayerData:getAvatarHeroId(self.selectAvatarId) - if heroId then - local smallFrame = ModuleManager.HeroManager:getHeroSmallFrame(heroId) - if smallFrame then - self.bgAvatar:setSprite(GConst.ATLAS_PATH.ICON_HERO, smallFrame) - end + local smallFrame = DataManager.PlayerData:getAvatarBg(self.selectAvatarId) + if smallFrame then + self.bgAvatar:setSprite(GConst.ATLAS_PATH.ICON_HERO, smallFrame) end local avatarName = DataManager.PlayerData:getAvatarIconId(self.selectAvatarId) if avatarName then diff --git a/lua/app/userdata/player/player_data.lua b/lua/app/userdata/player/player_data.lua index b6bc9827..083754da 100644 --- a/lua/app/userdata/player/player_data.lua +++ b/lua/app/userdata/player/player_data.lua @@ -403,12 +403,19 @@ function PlayerData:getCanUnlockAvatarIds(checkData) return ids end --- 获取头像对应的英雄id -function PlayerData:getAvatarHeroId(id) +-- 获取头像背景 +function PlayerData:getAvatarBg(id) local cfg = ConfigManager:getConfig("avatar")[id] - if cfg then - return cfg.hero + if cfg.hero then + -- hero来源 + local hero = ConfigManager:getConfig("hero")[cfg.hero] + return hero and GConst.HERO_SMALL_FRAME_QLT[hero.qlt] + elseif cfg.item then + -- item来源 + local item = ConfigManager:getConfig("item")[cfg.item] + return item and GConst.HERO_SMALL_FRAME_QLT[item.qlt] end + return nil end -- 头像框----------------------------------------------------------------------------------- From 2d139dd23fa8edd54ea838ff37e86d37b97c89c9 Mon Sep 17 00:00:00 2001 From: Fang Date: Tue, 1 Aug 2023 14:45:49 +0800 Subject: [PATCH 06/44] =?UTF-8?q?=E9=98=B2=E5=85=B7=E5=8D=87=E7=BA=A7?= =?UTF-8?q?=E5=88=B7=E6=96=B0=E4=B8=8D=E5=8F=8A=E6=97=B6fix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/ui/hero/armor_info_comp.lua | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lua/app/ui/hero/armor_info_comp.lua b/lua/app/ui/hero/armor_info_comp.lua index 18d46be3..70392281 100644 --- a/lua/app/ui/hero/armor_info_comp.lua +++ b/lua/app/ui/hero/armor_info_comp.lua @@ -68,9 +68,6 @@ end function ArmorInfoComp:setHeroData(heroEntity) self.heroEntity = heroEntity self.selectPart = self.selectPart or GConst.EquipConst.PART_TYPE.HAT - self:bind(DataManager.EquipData:getEquip(self.heroEntity:getCfgId(), self.selectPart), "isDirty", function() - self:refresh() - end) end function ArmorInfoComp:refresh() @@ -79,6 +76,10 @@ end function ArmorInfoComp:onSelectIdx(index) self.selectPart = ARMOR_PART_INDEX[index] + self:bind(DataManager.EquipData:getEquip(self.heroEntity:getCfgId(), self.selectPart), "isDirty", function() + self:refresh() + end) + self:refreshSelectArmor() for index, value in ipairs(self.armor) do From e954484a13f03b9906f77e07ae30f703e1870095 Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Tue, 1 Aug 2023 17:35:58 +0800 Subject: [PATCH 07/44] =?UTF-8?q?=E6=8A=80=E8=83=BD=E6=9C=BA=E5=88=B6?= =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../battle/component/battle_unit_comp.lua | 4 +++ .../controller/battle_base_controller.lua | 28 +++++++++++++++---- .../skill/battle_board_skill_handle.lua | 2 +- lua/app/ui/main_city/main_city_ui.lua | 15 +++++----- 4 files changed, 36 insertions(+), 13 deletions(-) diff --git a/lua/app/module/battle/component/battle_unit_comp.lua b/lua/app/module/battle/component/battle_unit_comp.lua index 25981664..da811716 100644 --- a/lua/app/module/battle/component/battle_unit_comp.lua +++ b/lua/app/module/battle/component/battle_unit_comp.lua @@ -124,6 +124,10 @@ function BattleUnitComp:initWithEntity(modelId, entity, battleController, target self:initHitAniInfo() end +function BattleUnitComp:getSide() + return self.side +end + function BattleUnitComp:initHitAniInfo() self.hurtAniNameList = {} self.hurtAniNameCount = 0 diff --git a/lua/app/module/battle/controller/battle_base_controller.lua b/lua/app/module/battle/controller/battle_base_controller.lua index aa69430b..e11bd70d 100644 --- a/lua/app/module/battle/controller/battle_base_controller.lua +++ b/lua/app/module/battle/controller/battle_base_controller.lua @@ -724,8 +724,9 @@ function BattleBaseController:getCurActionUnitComp() return self:getCurActionTeam():getMainUnit() end -function BattleBaseController:getCurActionBoardRowRange() - local isAtkAction = self.curActionSide == SIDE_ATK +function BattleBaseController:getCurActionBoardRowRange(side) + side = side or self.curActionSide + local isAtkAction = side == SIDE_ATK if isAtkAction then return self:getAtkMinRow() + 1, self:getRowCount() else @@ -743,6 +744,16 @@ function BattleBaseController:getPosIdInCurActionBoardRowRange(posId) return true end +function BattleBaseController:getPosIdInActionBoardRowRange(side, posId) + local min, max = self:getCurActionBoardRowRange(side) + local r = ModuleManager.BattleManager:getPosRC(posId).r + if r < min or r > max then + return false + end + + return true +end + function BattleBaseController:onLoadComplete() UIManager:closeLoading() self:handleBuffs() @@ -2151,14 +2162,21 @@ function BattleBaseController:selectSKillNextToStep() end -function BattleBaseController:changeElementType(count, elementType) +function BattleBaseController:changeElementType(count, elementType, side) self.changeElementTypeMap = table.clearOrCreate(self.changeElementTypeMap) self.changeElementTypeList = table.clearOrCreate(self.changeElementTypeList) local listCount = 0 for _, entity in pairs(self.battleData:getGridEnties()) do if entity:canChangeInfo() and entity:getElementType() ~= elementType then - table.insert(self.changeElementTypeList, entity) - listCount = listCount + 1 + if side then + if self:getPosIdInActionBoardRowRange(side, entity:getPosId()) then + table.insert(self.changeElementTypeList, entity) + listCount = listCount + 1 + end + else + table.insert(self.changeElementTypeList, entity) + listCount = listCount + 1 + end end end diff --git a/lua/app/module/battle/skill/battle_board_skill_handle.lua b/lua/app/module/battle/skill/battle_board_skill_handle.lua index e35908db..40c6171c 100644 --- a/lua/app/module/battle/skill/battle_board_skill_handle.lua +++ b/lua/app/module/battle/skill/battle_board_skill_handle.lua @@ -449,7 +449,7 @@ local function _takeChangeElementType(atkUnitComp, skillEntity, battleController local elementType = params[1] local changeCount = params[2] - battleController:changeElementType(changeCount, elementType) + battleController:changeElementType(changeCount, elementType, atkUnitComp and atkUnitComp:getSide()) end diff --git a/lua/app/ui/main_city/main_city_ui.lua b/lua/app/ui/main_city/main_city_ui.lua index 1c9e8000..a15d2c29 100644 --- a/lua/app/ui/main_city/main_city_ui.lua +++ b/lua/app/ui/main_city/main_city_ui.lua @@ -957,13 +957,6 @@ end -- 弹窗优先级: 升级>功能弹窗>英雄解锁弹窗>礼包弹窗>引导 function MainCityUI:checkMainPop() - if self.selectedIndex ~= GConst.MainCityConst.BOTTOM_PAGE.MAIN then - return - end - if ModuleManager.MaincityManager:getCurModule() ~= GConst.MainCityConst.MAIN_MODULE.CHAPTER then -- 当前不是关卡界面不触发 - return - end - -- 续关 if self.isFirstEnter then local battleSnapshot = LocalData:getBattleSnapshot() @@ -986,6 +979,14 @@ function MainCityUI:checkMainPop() end end + if self.selectedIndex ~= GConst.MainCityConst.BOTTOM_PAGE.MAIN then + return + end + + if ModuleManager.MaincityManager:getCurModule() ~= GConst.MainCityConst.MAIN_MODULE.CHAPTER then -- 当前不是关卡界面不触发 + return + end + -- 检查是否升级 if DataManager.PlayerData:getIfCanLevelUp() then ModuleManager.PlayerManager:levelUp() From c21607c52e6e33a96c9da078a99c65607cc7f597 Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Tue, 1 Aug 2023 17:38:53 +0800 Subject: [PATCH 08/44] =?UTF-8?q?=E5=9B=9E=E5=90=88=E6=95=B0=E4=BC=98?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/ui/battle/cell/tiny_buff_cell.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/app/ui/battle/cell/tiny_buff_cell.lua b/lua/app/ui/battle/cell/tiny_buff_cell.lua index 93ec90a8..d5202b10 100644 --- a/lua/app/ui/battle/cell/tiny_buff_cell.lua +++ b/lua/app/ui/battle/cell/tiny_buff_cell.lua @@ -1,7 +1,7 @@ local TinyBuffCell = class("TinyBuffCell", BaseCell) function TinyBuffCell:refresh(buffName, round, num, result) - if round <= 1 or round > 9 then + if round <= 0 or round > 9 then round = GConst.EMPTY_STRING else round = tostring(round) From a94b0b1a2341d8133727dc6e0cbe096728551f4b Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Tue, 1 Aug 2023 18:02:57 +0800 Subject: [PATCH 09/44] =?UTF-8?q?=E7=BB=AD=E5=85=B3=E8=AE=B0=E5=BD=95?= =?UTF-8?q?=E8=83=BD=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../battle/helper/battle_snapshot_helper.lua | 20 +++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/lua/app/module/battle/helper/battle_snapshot_helper.lua b/lua/app/module/battle/helper/battle_snapshot_helper.lua index df996bc4..3d86918e 100644 --- a/lua/app/module/battle/helper/battle_snapshot_helper.lua +++ b/lua/app/module/battle/helper/battle_snapshot_helper.lua @@ -74,6 +74,11 @@ function BattleSnapshotHelper:snapshotBattleInfo(battleBaseController) battleBaseController.snapShotInfo.atkSkillMap[tostring(skillId)] = info end + battleBaseController.snapShotInfo.atkSkillEnergy = table.clearOrCreate(battleBaseController.snapShotInfo.atkSkillEnergy) + for elementType, skillEntity in pairs(battleBaseController.battleData:getSkillEntities(SIDE_ATK)) do + battleBaseController.snapShotInfo.atkSkillEnergy[tostring(elementType)] = skillEntity:getEnergy() + end + -- BattleBaseData battleBaseController.snapShotInfo.battledataShopInfo = battleBaseController.battleData:getSnapshoptInfo() @@ -213,12 +218,23 @@ function BattleSnapshotHelper:dealSnapshotBattleExtraInfo(battleBaseController, end end end + end - if battleBaseController.battleUI then - battleBaseController.battleUI:refreshSkill(nil, nil, SIDE_ATK) + local atkSkillEnergy = snapshot.atkSkillEnergy + if atkSkillEnergy then + local skillMap = battleBaseController.battleData:getSkillEntities(SIDE_ATK) + for matchTypeStr, count in pairs(atkSkillEnergy) do + local matchType = tonumber(matchTypeStr) + if matchType and skillMap[matchType] then + skillMap[matchType]:addEnergy(count) + end end end + if battleBaseController.battleUI then + battleBaseController.battleUI:refreshSkill(nil, nil, SIDE_ATK) + end + -- buff local atkBuff = snapshot.atkBuff if atkBuff then From 591aee945bfcb6b849d2685719c47aae49488ff0 Mon Sep 17 00:00:00 2001 From: Fang Date: Tue, 1 Aug 2023 18:19:29 +0800 Subject: [PATCH 10/44] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=BC=98=E6=83=A0?= =?UTF-8?q?=E5=85=A5=E5=8F=A3=E7=BA=A2=E7=82=B9=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/ui/main_city/cell/side_bar_discount_cell.lua | 3 ++- lua/app/userdata/shop/shop_data.lua | 8 ++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/lua/app/ui/main_city/cell/side_bar_discount_cell.lua b/lua/app/ui/main_city/cell/side_bar_discount_cell.lua index e3c086d9..a0ea6393 100644 --- a/lua/app/ui/main_city/cell/side_bar_discount_cell.lua +++ b/lua/app/ui/main_city/cell/side_bar_discount_cell.lua @@ -53,11 +53,12 @@ function SideBarDiscountCell:getSpineName() end function SideBarDiscountCell:onClick() + DataManager.ShopData:markEntranceDiscountRedPoint() EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.GO_SHOP, {page = GConst.ShopConst.PAGE_TYPE.DISCOUNT}) end function SideBarDiscountCell:getIsShowRedPoint() - return false + return DataManager.ShopData:getEntranceDiscountRedPoint() end return SideBarDiscountCell \ No newline at end of file diff --git a/lua/app/userdata/shop/shop_data.lua b/lua/app/userdata/shop/shop_data.lua index f58bc69e..ec839f36 100644 --- a/lua/app/userdata/shop/shop_data.lua +++ b/lua/app/userdata/shop/shop_data.lua @@ -980,6 +980,14 @@ function ShopData:markShopDiscountRedPoint() LocalData:setShopDiscountRedPointTime(today) end +function ShopData:getEntranceDiscountRedPoint() + return not self.isClickedDiscount +end + +function ShopData:markEntranceDiscountRedPoint() + self.isClickedDiscount = true +end + function ShopData:checkLoginPopInfo() -- 初始化礼包弹出逻辑 local actPopUpGifts = self:getPopUpGiftByType(PayManager.PURCHARSE_TYPE.ACT_GIFT) From a90f0f45831687ca36d3920e99fd1cc6529b5165 Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Tue, 1 Aug 2023 18:20:35 +0800 Subject: [PATCH 11/44] =?UTF-8?q?bug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/common/local_data.lua | 4 ++-- lua/app/ui/ui_manager.lua | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lua/app/common/local_data.lua b/lua/app/common/local_data.lua index 2d6fcb89..7b6da257 100644 --- a/lua/app/common/local_data.lua +++ b/lua/app/common/local_data.lua @@ -432,16 +432,16 @@ function LocalData:GetMarktrailHero() end function LocalData:saveBattleSnapshot(snapshot) - self:setString(LocalData:getRoleKey(LOCAL_DATA_KEY.BATTLE_SNAPSHOT), json.encode(snapshot)) if EDITOR_MODE then Logger.logHighlight(json.encode(snapshot)) end + self:setString(LocalData:getRoleKey(LOCAL_DATA_KEY.BATTLE_SNAPSHOT), json.encode(snapshot)) end function LocalData:getBattleSnapshot() local dealedSnapshot = self:getString(LocalData:getRoleKey(LOCAL_DATA_KEY.BATTLE_SNAPSHOT), "{}") if EDITOR_MODE then - Logger.logHighlight(json.decode(dealedSnapshot)) + Logger.logHighlight(dealedSnapshot) end return json.decode(dealedSnapshot) end diff --git a/lua/app/ui/ui_manager.lua b/lua/app/ui/ui_manager.lua index 25ab8567..89e80b14 100644 --- a/lua/app/ui/ui_manager.lua +++ b/lua/app/ui/ui_manager.lua @@ -983,6 +983,7 @@ function UIManager:backToLogin() end function UIManager:backToLoginWithoutLogout() + self:hideMessageBox() self:stopCurrentBGM() ModuleManager.TutorialManager:stopTutorial() From e56eca32420893173acacdca8d0007e613b699ef Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Tue, 1 Aug 2023 18:34:38 +0800 Subject: [PATCH 12/44] =?UTF-8?q?=E5=8F=8D=E5=87=BB=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/module/battle/team/battle_team.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/app/module/battle/team/battle_team.lua b/lua/app/module/battle/team/battle_team.lua index 03aa3023..e84a217b 100644 --- a/lua/app/module/battle/team/battle_team.lua +++ b/lua/app/module/battle/team/battle_team.lua @@ -660,6 +660,7 @@ function BattleTeam:onActionOver() skillMatch = self:getMainUnit().unitEntity:getMatchType() else self.battleController.roundStep = BattleConst.BATTLE_ROUND_STEP.ON_DEF_STEP + skillMatch = self:getMainUnit().unitEntity:getMatchType() end self:useNormalSkill(skillMatch, counterAttackCount, true, BattleConst.EFFECT_TYPE.DIRECT, BattleConst.ATTACK_ACTION_STATE.COUNTERATTACK, function() From 397724e8eb563470e7598990ac29b1bbcae3171b Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Wed, 2 Aug 2023 16:13:23 +0800 Subject: [PATCH 13/44] =?UTF-8?q?=E6=9C=A8=E5=85=B0=E8=AF=95=E7=8E=A9?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E8=87=B35=E7=AB=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/module/hero/hero_const.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/app/module/hero/hero_const.lua b/lua/app/module/hero/hero_const.lua index a56e096a..5005327c 100644 --- a/lua/app/module/hero/hero_const.lua +++ b/lua/app/module/hero/hero_const.lua @@ -67,6 +67,6 @@ HeroConst.SHOW_NODE = HeroConst.TRIAL_HERO_ID = 34001 -- 花木兰 HeroConst.TRIAL_HERO_MIN_CHAPTER = 2 -HeroConst.TRIAL_HERO_MAX_CHAPTER = 4 +HeroConst.TRIAL_HERO_MAX_CHAPTER = 5 return HeroConst \ No newline at end of file From 041d222d5392368da29ac4348e44d12ec9e68fd1 Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Wed, 2 Aug 2023 18:30:43 +0800 Subject: [PATCH 14/44] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/config/act_chapter_store.lua | 52 +- lua/app/config/act_gift.lua | 40 +- lua/app/config/act_growup_gift_new.lua | 24 +- lua/app/config/chapter_board.lua | 152 ++--- .../config/chapter_board_daily_challenge.lua | 532 +++++++++--------- lua/app/config/item.lua | 81 ++- lua/app/config/monster_chapter.lua | 100 ++-- lua/app/config/strings/cn/item.lua | 6 +- lua/app/config/strings/de/item.lua | 5 +- lua/app/config/strings/en/item.lua | 5 +- lua/app/config/strings/es/item.lua | 5 +- lua/app/config/strings/fr/item.lua | 5 +- lua/app/config/strings/id/item.lua | 5 +- lua/app/config/strings/ja/item.lua | 5 +- lua/app/config/strings/ko/item.lua | 5 +- lua/app/config/strings/pt/item.lua | 5 +- lua/app/config/strings/ru/item.lua | 5 +- lua/app/config/strings/th/item.lua | 5 +- lua/app/config/strings/vi/item.lua | 5 +- lua/app/config/strings/zh/item.lua | 5 +- lua/app/config/summon.lua | 510 +++++++++++++---- lua/app/config/tutorial.lua | 25 +- 22 files changed, 997 insertions(+), 585 deletions(-) diff --git a/lua/app/config/act_chapter_store.lua b/lua/app/config/act_chapter_store.lua index 05f2fbd7..e9aefd97 100644 --- a/lua/app/config/act_chapter_store.lua +++ b/lua/app/config/act_chapter_store.lua @@ -141,8 +141,8 @@ local act_chapter_store = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=1, ["num_for_nothing"]="Vw==" } @@ -181,8 +181,8 @@ local act_chapter_store = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=1, ["num_for_nothing"]="Vw==" } @@ -221,8 +221,8 @@ local act_chapter_store = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=3, ["num_for_nothing"]="VQ==" } @@ -261,8 +261,8 @@ local act_chapter_store = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=3, ["num_for_nothing"]="VQ==" } @@ -301,8 +301,8 @@ local act_chapter_store = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=6, ["num_for_nothing"]="UA==" } @@ -341,8 +341,8 @@ local act_chapter_store = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=6, ["num_for_nothing"]="UA==" } @@ -381,8 +381,8 @@ local act_chapter_store = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=8, ["num_for_nothing"]="Xg==" } @@ -421,8 +421,8 @@ local act_chapter_store = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=8, ["num_for_nothing"]="Xg==" } @@ -461,8 +461,8 @@ local act_chapter_store = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=8, ["num_for_nothing"]="Xg==" } @@ -501,8 +501,8 @@ local act_chapter_store = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=20, ["num_for_nothing"]="VAg=" } @@ -541,8 +541,8 @@ local act_chapter_store = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=20, ["num_for_nothing"]="VAg=" } @@ -581,8 +581,8 @@ local act_chapter_store = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=20, ["num_for_nothing"]="VAg=" } @@ -621,8 +621,8 @@ local act_chapter_store = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=20, ["num_for_nothing"]="VAg=" } diff --git a/lua/app/config/act_gift.lua b/lua/app/config/act_gift.lua index 367126eb..60349080 100644 --- a/lua/app/config/act_gift.lua +++ b/lua/app/config/act_gift.lua @@ -206,8 +206,8 @@ local act_gift = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=3, ["num_for_nothing"]="VQ==" } @@ -244,8 +244,8 @@ local act_gift = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=5, ["num_for_nothing"]="Uw==" } @@ -282,8 +282,8 @@ local act_gift = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=8, ["num_for_nothing"]="Xg==" } @@ -320,8 +320,8 @@ local act_gift = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=5, ["num_for_nothing"]="Uw==" } @@ -358,8 +358,8 @@ local act_gift = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=18, ["num_for_nothing"]="VwA=" } @@ -396,8 +396,8 @@ local act_gift = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=24, ["num_for_nothing"]="VAw=" } @@ -577,8 +577,8 @@ local act_gift = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=6, ["num_for_nothing"]="UA==" } @@ -619,8 +619,8 @@ local act_gift = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=6, ["num_for_nothing"]="UA==" } @@ -661,8 +661,8 @@ local act_gift = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=6, ["num_for_nothing"]="UA==" } @@ -703,8 +703,8 @@ local act_gift = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=6, ["num_for_nothing"]="UA==" } diff --git a/lua/app/config/act_growup_gift_new.lua b/lua/app/config/act_growup_gift_new.lua index 23b3397d..219e832e 100644 --- a/lua/app/config/act_growup_gift_new.lua +++ b/lua/app/config/act_growup_gift_new.lua @@ -23,8 +23,8 @@ local act_growup_gift_new = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=8, ["num_for_nothing"]="Xg==" } @@ -57,8 +57,8 @@ local act_growup_gift_new = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=12, ["num_for_nothing"]="Vwo=" } @@ -91,8 +91,8 @@ local act_growup_gift_new = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=24, ["num_for_nothing"]="VAw=" } @@ -125,8 +125,8 @@ local act_growup_gift_new = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=36, ["num_for_nothing"]="VQ4=" } @@ -159,8 +159,8 @@ local act_growup_gift_new = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=96, ["num_for_nothing"]="Xw4=" } @@ -193,8 +193,8 @@ local act_growup_gift_new = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=138, ["num_for_nothing"]="VwtU" } diff --git a/lua/app/config/chapter_board.lua b/lua/app/config/chapter_board.lua index 40f383f6..ae11b825 100644 --- a/lua/app/config/chapter_board.lua +++ b/lua/app/config/chapter_board.lua @@ -9749,11 +9749,11 @@ local chapter_board = { 0 }, { - 1, + 3, 0 }, { - 1, + 3, 0 }, { @@ -9773,11 +9773,11 @@ local chapter_board = { 0 }, { - 1, + 3, 0 }, { - 1, + 3, 0 }, { @@ -9947,11 +9947,11 @@ local chapter_board = { 0 }, { - 1, + 3, 0 }, { - 1, + 3, 0 }, { @@ -9971,11 +9971,11 @@ local chapter_board = { 0 }, { - 1, + 3, 0 }, { - 1, + 3, 0 }, { @@ -10023,7 +10023,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -10039,7 +10039,7 @@ local chapter_board = { 4 }, { - 3, + 2, 0 }, { @@ -10079,7 +10079,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -10087,7 +10087,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -10095,7 +10095,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -10111,7 +10111,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -10119,7 +10119,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -10195,7 +10195,7 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { @@ -10211,7 +10211,7 @@ local chapter_board = { 3 }, { - 1, + 2, 0 }, { @@ -10231,7 +10231,7 @@ local chapter_board = { 5 }, { - 5, + 0, 5 }, { @@ -10255,7 +10255,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -10263,7 +10263,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -10283,15 +10283,15 @@ local chapter_board = { 1 }, { - 3, + 0, 0 }, { - 3, + 2, 0 }, { - 3, + 0, 0 }, { @@ -10311,7 +10311,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -10319,7 +10319,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -10339,15 +10339,15 @@ local chapter_board = { 3 }, { - 3, + 0, 0 }, { - 3, + 2, 0 }, { - 3, + 0, 0 }, { @@ -10363,11 +10363,11 @@ local chapter_board = { 0 }, { - 1, + 3, 0 }, { - 3, + 2, 0 }, { @@ -10375,11 +10375,11 @@ local chapter_board = { 2 }, { - 3, + 2, 0 }, { - 1, + 3, 0 }, { @@ -10391,11 +10391,11 @@ local chapter_board = { [38]={ ["board"]={ { - 1, + 7, 0 }, { - 1, + 2, 0 }, { @@ -10408,18 +10408,18 @@ local chapter_board = { }, { 0, - 4 + 2 }, { - 1, + 2, 0 }, { - 1, + 7, 0 }, { - 1, + 7, 0 }, { @@ -10443,11 +10443,11 @@ local chapter_board = { 3 }, { - 1, + 7, 0 }, { - 1, + 7, 0 }, { @@ -10464,18 +10464,18 @@ local chapter_board = { }, { 0, - 5 + 1 }, { 2, 0 }, { - 1, + 7, 0 }, { - 1, + 7, 0 }, { @@ -10499,11 +10499,11 @@ local chapter_board = { 2 }, { - 1, + 7, 0 }, { - 1, + 7, 0 }, { @@ -10527,11 +10527,11 @@ local chapter_board = { 0 }, { - 1, + 7, 0 }, { - 1, + 7, 0 }, { @@ -10539,7 +10539,7 @@ local chapter_board = { 3 }, { - 3, + 2, 0 }, { @@ -10547,7 +10547,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -10555,15 +10555,15 @@ local chapter_board = { 5 }, { - 1, + 7, 0 }, { - 1, + 7, 0 }, { - 1, + 2, 0 }, { @@ -10579,21 +10579,21 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, + 7, 0 } }, ["mystery_box_board"]={ { - 1, + 7, 0 }, { - 1, + 2, 0 }, { @@ -10606,18 +10606,18 @@ local chapter_board = { }, { 0, - 4 + 2 }, { - 1, + 2, 0 }, { - 1, + 7, 0 }, { - 1, + 7, 0 }, { @@ -10641,11 +10641,11 @@ local chapter_board = { 3 }, { - 1, + 7, 0 }, { - 1, + 7, 0 }, { @@ -10662,18 +10662,18 @@ local chapter_board = { }, { 0, - 5 + 1 }, { 2, 0 }, { - 1, + 7, 0 }, { - 1, + 7, 0 }, { @@ -10697,11 +10697,11 @@ local chapter_board = { 2 }, { - 1, + 7, 0 }, { - 1, + 7, 0 }, { @@ -10725,11 +10725,11 @@ local chapter_board = { 0 }, { - 1, + 7, 0 }, { - 1, + 7, 0 }, { @@ -10737,7 +10737,7 @@ local chapter_board = { 3 }, { - 3, + 2, 0 }, { @@ -10745,7 +10745,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -10753,15 +10753,15 @@ local chapter_board = { 5 }, { - 1, + 7, 0 }, { - 1, + 7, 0 }, { - 1, + 2, 0 }, { @@ -10777,11 +10777,11 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, + 7, 0 } } diff --git a/lua/app/config/chapter_board_daily_challenge.lua b/lua/app/config/chapter_board_daily_challenge.lua index 2bbc37e7..b6666eb8 100644 --- a/lua/app/config/chapter_board_daily_challenge.lua +++ b/lua/app/config/chapter_board_daily_challenge.lua @@ -2407,39 +2407,7 @@ local chapter_board_daily_challenge = { }, { 0, - 4 - }, - { - 0, - 4 - }, - { - 0, - 2 - }, - { - 0, - 1 - }, - { - 0, - 3 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 4 + 5 }, { 0, @@ -2451,60 +2419,8 @@ local chapter_board_daily_challenge = { }, { 0, - 3 - }, - { - 1, - 0 - }, - { - 23, - 2 - }, - { - 23, - 2 - }, - { - 27, 1 }, - { - 27, - 2 - }, - { - 27, - 3 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 23, - 2 - }, - { - 23, - 2 - }, - { - 27, - 4 - }, - { - 26, - 0 - }, - { - 27, - 4 - }, { 0, 5 @@ -2513,13 +2429,97 @@ local chapter_board_daily_challenge = { 1, 0 }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 5 + }, + { + 27, + 1 + }, + { + 27, + 2 + }, + { + 27, + 1 + }, + { + 0, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 27, + 4 + }, { 14, 0 }, { - 23, - 3 + 27, + 4 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 4 }, { 27, @@ -2547,32 +2547,12 @@ local chapter_board_daily_challenge = { }, { 23, - 3 + 4 }, { 23, 5 }, - { - 23, - 5 - }, - { - 23, - 1 - }, - { - 23, - 1 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, { 23, 3 @@ -2581,17 +2561,37 @@ local chapter_board_daily_challenge = { 23, 5 }, + { + 23, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 23, + 4 + }, { 23, 5 }, { 23, - 1 + 3 }, { 23, - 1 + 5 + }, + { + 23, + 4 }, { 1, @@ -2619,7 +2619,7 @@ local chapter_board_daily_challenge = { }, { 0, - 3 + 1 }, { 1, @@ -2651,7 +2651,7 @@ local chapter_board_daily_challenge = { }, { 0, - 3 + 1 }, { 1, @@ -2675,7 +2675,7 @@ local chapter_board_daily_challenge = { }, { 27, - 3 + 1 }, { 0, @@ -2703,7 +2703,7 @@ local chapter_board_daily_challenge = { }, { 27, - 4 + 5 }, { 25, @@ -2731,7 +2731,7 @@ local chapter_board_daily_challenge = { }, { 27, - 5 + 4 }, { 0, @@ -2751,7 +2751,7 @@ local chapter_board_daily_challenge = { }, { 23, - 2 + 4 }, { 23, @@ -2763,7 +2763,7 @@ local chapter_board_daily_challenge = { }, { 23, - 5 + 1 }, { 1, @@ -2779,7 +2779,7 @@ local chapter_board_daily_challenge = { }, { 23, - 1 + 4 }, { 14, @@ -2787,7 +2787,7 @@ local chapter_board_daily_challenge = { }, { 23, - 3 + 4 }, { 1, @@ -2866,16 +2866,16 @@ local chapter_board_daily_challenge = { 5 }, { - 23, + 0, 3 }, { - 23, + 0, 2 }, { - 23, - 1 + 0, + 3 }, { 0, @@ -2890,24 +2890,24 @@ local chapter_board_daily_challenge = { 0 }, { - 0, - 5 - }, - { - 23, - 4 - }, - { - 26, + 25, 0 }, { - 23, - 2 + 25, + 0 }, { - 0, - 5 + 25, + 0 + }, + { + 25, + 0 + }, + { + 25, + 0 }, { 1, @@ -2919,15 +2919,7 @@ local chapter_board_daily_challenge = { }, { 23, - 4 - }, - { - 23, - 5 - }, - { - 23, - 4 + 3 }, { 23, @@ -2935,51 +2927,59 @@ local chapter_board_daily_challenge = { }, { 23, - 2 + 3 + }, + { + 23, + 3 + }, + { + 23, + 3 + }, + { + 23, + 3 }, { 23, 1 }, + { + 26, + 0 + }, { 23, - 2 + 1 }, { 26, 0 }, + { + 23, + 1 + }, + { + 26, + 0 + }, + { + 23, + 1 + }, { 23, 4 }, { - 26, - 0 + 23, + 4 }, { 23, - 2 - }, - { - 26, - 0 - }, - { - 23, - 2 - }, - { - 23, - 1 - }, - { - 23, - 2 - }, - { - 23, - 3 + 4 }, { 14, @@ -2987,7 +2987,7 @@ local chapter_board_daily_challenge = { }, { 23, - 1 + 4 }, { 23, @@ -2995,16 +2995,12 @@ local chapter_board_daily_challenge = { }, { 23, - 3 + 4 } } }, [16]={ ["board_daily_challenge"]={ - { - 1, - 0 - }, { 1, 0 @@ -3013,33 +3009,9 @@ local chapter_board_daily_challenge = { 0, 3 }, - { - 24, - 0 - }, - { - 24, - 0 - }, { 0, - 2 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 + 5 }, { 0, @@ -3069,6 +3041,30 @@ local chapter_board_daily_challenge = { 0, 4 }, + { + 0, + 5 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 3 + }, { 0, 4 @@ -3079,14 +3075,18 @@ local chapter_board_daily_challenge = { }, { 0, - 5 + 4 }, { 0, - 5 + 1 }, { - 23, + 1, + 0 + }, + { + 0, 1 }, { @@ -3094,7 +3094,7 @@ local chapter_board_daily_challenge = { 0 }, { - 23, + 0, 3 }, { @@ -3102,15 +3102,15 @@ local chapter_board_daily_challenge = { 4 }, { - 23, - 5 + 0, + 1 }, { 24, 0 }, { - 23, + 0, 3 }, { @@ -3194,8 +3194,8 @@ local chapter_board_daily_challenge = { 0 }, { - 23, - 3 + 1, + 0 } } }, @@ -3223,7 +3223,7 @@ local chapter_board_daily_challenge = { }, { 0, - 4 + 1 }, { 1, @@ -3279,7 +3279,7 @@ local chapter_board_daily_challenge = { }, { 0, - 5 + 2 }, { 32, @@ -3303,11 +3303,11 @@ local chapter_board_daily_challenge = { }, { 4, - 4 + 2 }, { 4, - 5 + 1 }, { 1, @@ -3395,7 +3395,7 @@ local chapter_board_daily_challenge = { }, { 1, - 0 + 1 } } }, @@ -4122,15 +4122,15 @@ local chapter_board_daily_challenge = { 2 }, { - 1, + 31, 0 }, { - 1, + 31, 0 }, { - 1, + 31, 0 }, { @@ -4146,23 +4146,23 @@ local chapter_board_daily_challenge = { 1 }, { - 1, + 31, 0 }, { - 1, + 31, 0 }, { - 1, + 31, 0 }, { - 1, + 31, 0 }, { - 1, + 31, 0 }, { @@ -4170,31 +4170,31 @@ local chapter_board_daily_challenge = { 3 }, { - 1, + 31, 0 }, { - 1, + 31, 0 }, { - 1, + 31, 0 }, { - 1, + 31, 0 }, { - 1, + 31, 0 }, { - 1, + 31, 0 }, { - 1, + 31, 0 } } @@ -4317,6 +4317,34 @@ local chapter_board_daily_challenge = { 1, 0 }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 34, + 3 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, { 34, 1 @@ -4325,45 +4353,17 @@ local chapter_board_daily_challenge = { 34, 2 }, - { - 34, - 3 - }, - { - 34, - 4 - }, - { - 34, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, { 14, 0 }, { - 1, + 34, 0 }, { - 1, - 0 + 34, + 5 }, { 1, @@ -4499,7 +4499,7 @@ local chapter_board_daily_challenge = { }, { 0, - 2 + 3 }, { 32, @@ -4522,12 +4522,12 @@ local chapter_board_daily_challenge = { 0 }, { - 0, - 2 + 32, + 0 }, { - 0, - 2 + 32, + 0 }, { 32, diff --git a/lua/app/config/item.lua b/lua/app/config/item.lua index b7d696f3..ce0eaff4 100644 --- a/lua/app/config/item.lua +++ b/lua/app/config/item.lua @@ -267,8 +267,8 @@ local item = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=1, ["num_for_nothing"]="Vw==" }, @@ -356,8 +356,8 @@ local item = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=2, ["num_for_nothing"]="VA==" }, @@ -395,7 +395,7 @@ local item = { }, { ["type"]=1, - ["id"]=6, + ["id"]=47, ["num"]=1, ["weight"]=60 } @@ -445,7 +445,7 @@ local item = { }, { ["type"]=1, - ["id"]=6, + ["id"]=47, ["num"]=1, ["weight"]=60 } @@ -1423,6 +1423,73 @@ local item = { ["qlt"]=5, ["icon"]="46" }, + [47]={ + ["type"]=11, + ["qlt"]=5, + ["icon"]="47", + ["hero_drop"]={ + { + ["type"]=1, + ["id"]=14001, + ["num"]=1, + ["weight"]=100 + }, + { + ["type"]=1, + ["id"]=24001, + ["num"]=1, + ["weight"]=100 + }, + { + ["type"]=1, + ["id"]=34001, + ["num"]=1, + ["weight"]=100 + }, + { + ["type"]=1, + ["id"]=44001, + ["num"]=1, + ["weight"]=100 + }, + { + ["type"]=1, + ["id"]=54001, + ["num"]=1, + ["weight"]=100 + }, + { + ["type"]=1, + ["id"]=14002, + ["num"]=1, + ["weight"]=100 + }, + { + ["type"]=1, + ["id"]=24002, + ["num"]=1, + ["weight"]=100 + }, + { + ["type"]=1, + ["id"]=34002, + ["num"]=1, + ["weight"]=100 + }, + { + ["type"]=1, + ["id"]=44002, + ["num"]=1, + ["weight"]=100 + }, + { + ["type"]=1, + ["id"]=54002, + ["num"]=1, + ["weight"]=100 + } + } + }, [1001]={ ["type"]=2, ["qlt"]=1, @@ -2188,6 +2255,6 @@ local item = { } } local config = { -data=item,count=101 +data=item,count=102 } return config \ No newline at end of file diff --git a/lua/app/config/monster_chapter.lua b/lua/app/config/monster_chapter.lua index 204ff255..473c3cc6 100644 --- a/lua/app/config/monster_chapter.lua +++ b/lua/app/config/monster_chapter.lua @@ -2243,22 +2243,10 @@ local monster_chapter = { ["monster_exp"]=22000 }, [17101]={ - ["monster_base"]=10010, + ["monster_base"]=10038, ["hp"]=50510000, ["atk"]=2400000, ["atk_times"]=3, - ["hurt_skill"]={ - 20028, - 20029, - 20030 - }, - ["monster_exp"]=11000 - }, - [17201]={ - ["monster_base"]=10038, - ["hp"]=70380000, - ["atk"]=2530000, - ["atk_times"]=3, ["hurt_skill"]={ 20109, 20110, @@ -2266,46 +2254,55 @@ local monster_chapter = { }, ["monster_exp"]=11000 }, + [17201]={ + ["monster_base"]=10040, + ["hp"]=70380000, + ["atk"]=2530000, + ["atk_times"]=3, + ["hurt_skill"]={ + 20115, + 20116, + 20117 + }, + ["monster_exp"]=11000 + }, [17301]={ - ["monster_base"]=10033, + ["monster_base"]=10010, ["hp"]=79490000, ["atk"]=2640000, ["atk_times"]=3, ["hurt_skill"]={ - 20094, - 20095, - 20096 + 20028, + 20029, + 20030 }, ["monster_exp"]=17000 }, [17401]={ - ["monster_base"]=10031, + ["monster_base"]=10039, ["hp"]=105710000, ["atk"]=2740000, ["atk_times"]=3, ["hurt_skill"]={ - 20088, - 20089, - 20090 + 20112, + 20113, + 20114 }, ["monster_exp"]=19000 }, [17501]={ - ["monster_base"]=20005, + ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=146830000, ["atk"]=2920000, ["atk_times"]=4, ["hurt_skill"]={ - 30013, - 30014, - 30015 + 30034, + 30035, + 30036 }, ["skill"]={ - 10024 - }, - ["passive_skill"]={ - 10012 + 10017 }, ["monster_exp"]=18000 }, @@ -2374,66 +2371,69 @@ local monster_chapter = { ["monster_exp"]=12000 }, [18101]={ - ["monster_base"]=10038, + ["monster_base"]=10013, ["hp"]=159800000, ["atk"]=3110000, ["atk_times"]=3, ["hurt_skill"]={ - 20109, - 20110, - 20111 + 20034, + 20035, + 20036 }, ["monster_exp"]=16000 }, [18201]={ - ["monster_base"]=10040, + ["monster_base"]=10016, ["hp"]=181060000, ["atk"]=3210000, ["atk_times"]=3, ["hurt_skill"]={ - 20115, - 20116, - 20117 + 20043, + 20044, + 20045 }, ["monster_exp"]=18000 }, [18301]={ - ["monster_base"]=10010, + ["monster_base"]=10015, ["hp"]=192100000, ["atk"]=3310000, ["atk_times"]=3, ["hurt_skill"]={ - 20028, - 20029, - 20030 + 20040, + 20041, + 20042 }, ["monster_exp"]=21000 }, [18401]={ - ["monster_base"]=10039, + ["monster_base"]=10017, ["hp"]=208100000, ["atk"]=3420000, ["atk_times"]=3, ["hurt_skill"]={ - 20112, - 20113, - 20114 + 20046, + 20047, + 20048 }, ["monster_exp"]=22000 }, [18501]={ - ["monster_base"]=20012, + ["monster_base"]=20007, ["is_boss"]=1, ["hp"]=377020000, ["atk"]=3290000, ["atk_times"]=4, ["hurt_skill"]={ - 30034, - 30035, - 30036 + 30019, + 30020, + 30021 }, ["skill"]={ - 10017 + 10060 + }, + ["passive_skill"]={ + 10061 }, ["monster_exp"]=24000 }, diff --git a/lua/app/config/strings/cn/item.lua b/lua/app/config/strings/cn/item.lua index eacb9a3f..4d4469d9 100644 --- a/lua/app/config/strings/cn/item.lua +++ b/lua/app/config/strings/cn/item.lua @@ -183,6 +183,10 @@ local item = { ["name"]="S2赛季黄金头像框", ["desc"]="S2竞技场黄金头像框,英雄的光辉。" }, + [47]={ + ["name"]="随机史诗英雄碎片", + ["desc"]="所有碎片只随机出现以下英雄中的一名。" + }, [1001]={ ["name"]="暗淡陨铁", ["desc"]="一块暗淡的陨铁,蕴含着神秘的能量。" @@ -405,6 +409,6 @@ local item = { } } local config = { -data=item,count=101 +data=item,count=102 } return config \ No newline at end of file diff --git a/lua/app/config/strings/de/item.lua b/lua/app/config/strings/de/item.lua index 83d2f4dd..a59119ca 100644 --- a/lua/app/config/strings/de/item.lua +++ b/lua/app/config/strings/de/item.lua @@ -136,6 +136,9 @@ local item = { }, [46]={ + }, + [47]={ + }, [1001]={ @@ -304,6 +307,6 @@ local item = { } } local config = { -data=item,count=101 +data=item,count=102 } return config \ No newline at end of file diff --git a/lua/app/config/strings/en/item.lua b/lua/app/config/strings/en/item.lua index 30527633..78c36733 100644 --- a/lua/app/config/strings/en/item.lua +++ b/lua/app/config/strings/en/item.lua @@ -179,6 +179,9 @@ local item = { }, [46]={ + }, + [47]={ + }, [1001]={ ["name"]="Dim Meteorite", @@ -402,6 +405,6 @@ local item = { } } local config = { -data=item,count=101 +data=item,count=102 } return config \ No newline at end of file diff --git a/lua/app/config/strings/es/item.lua b/lua/app/config/strings/es/item.lua index 45a71008..a68aaf5d 100644 --- a/lua/app/config/strings/es/item.lua +++ b/lua/app/config/strings/es/item.lua @@ -179,6 +179,9 @@ local item = { }, [46]={ + }, + [47]={ + }, [1001]={ ["name"]="Meteorito Opaco", @@ -402,6 +405,6 @@ local item = { } } local config = { -data=item,count=101 +data=item,count=102 } return config \ No newline at end of file diff --git a/lua/app/config/strings/fr/item.lua b/lua/app/config/strings/fr/item.lua index 83d2f4dd..a59119ca 100644 --- a/lua/app/config/strings/fr/item.lua +++ b/lua/app/config/strings/fr/item.lua @@ -136,6 +136,9 @@ local item = { }, [46]={ + }, + [47]={ + }, [1001]={ @@ -304,6 +307,6 @@ local item = { } } local config = { -data=item,count=101 +data=item,count=102 } return config \ No newline at end of file diff --git a/lua/app/config/strings/id/item.lua b/lua/app/config/strings/id/item.lua index 76f487bf..e00a26fc 100644 --- a/lua/app/config/strings/id/item.lua +++ b/lua/app/config/strings/id/item.lua @@ -179,6 +179,9 @@ local item = { }, [46]={ + }, + [47]={ + }, [1001]={ ["name"]="Chondrite", @@ -402,6 +405,6 @@ local item = { } } local config = { -data=item,count=101 +data=item,count=102 } return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/item.lua b/lua/app/config/strings/ja/item.lua index 82fba14e..5ab34438 100644 --- a/lua/app/config/strings/ja/item.lua +++ b/lua/app/config/strings/ja/item.lua @@ -179,6 +179,9 @@ local item = { }, [46]={ + }, + [47]={ + }, [1001]={ ["name"]="薄暗い隕石", @@ -402,6 +405,6 @@ local item = { } } local config = { -data=item,count=101 +data=item,count=102 } return config \ No newline at end of file diff --git a/lua/app/config/strings/ko/item.lua b/lua/app/config/strings/ko/item.lua index e51b7cd4..3990267a 100644 --- a/lua/app/config/strings/ko/item.lua +++ b/lua/app/config/strings/ko/item.lua @@ -179,6 +179,9 @@ local item = { }, [46]={ + }, + [47]={ + }, [1001]={ ["name"]="알렌데 운석", @@ -402,6 +405,6 @@ local item = { } } local config = { -data=item,count=101 +data=item,count=102 } return config \ No newline at end of file diff --git a/lua/app/config/strings/pt/item.lua b/lua/app/config/strings/pt/item.lua index 4278fd13..6af1901e 100644 --- a/lua/app/config/strings/pt/item.lua +++ b/lua/app/config/strings/pt/item.lua @@ -179,6 +179,9 @@ local item = { }, [46]={ + }, + [47]={ + }, [1001]={ ["name"]="Ferro Meteórico Opaco", @@ -402,6 +405,6 @@ local item = { } } local config = { -data=item,count=101 +data=item,count=102 } return config \ No newline at end of file diff --git a/lua/app/config/strings/ru/item.lua b/lua/app/config/strings/ru/item.lua index 83d2f4dd..a59119ca 100644 --- a/lua/app/config/strings/ru/item.lua +++ b/lua/app/config/strings/ru/item.lua @@ -136,6 +136,9 @@ local item = { }, [46]={ + }, + [47]={ + }, [1001]={ @@ -304,6 +307,6 @@ local item = { } } local config = { -data=item,count=101 +data=item,count=102 } return config \ No newline at end of file diff --git a/lua/app/config/strings/th/item.lua b/lua/app/config/strings/th/item.lua index 525998fe..b2eb2878 100644 --- a/lua/app/config/strings/th/item.lua +++ b/lua/app/config/strings/th/item.lua @@ -179,6 +179,9 @@ local item = { }, [46]={ + }, + [47]={ + }, [1001]={ ["name"]="อุกกาบาตทื่อ", @@ -402,6 +405,6 @@ local item = { } } local config = { -data=item,count=101 +data=item,count=102 } return config \ No newline at end of file diff --git a/lua/app/config/strings/vi/item.lua b/lua/app/config/strings/vi/item.lua index 37a3cb6e..9f056fbd 100644 --- a/lua/app/config/strings/vi/item.lua +++ b/lua/app/config/strings/vi/item.lua @@ -179,6 +179,9 @@ local item = { }, [46]={ + }, + [47]={ + }, [1001]={ ["name"]="Thiên Thạch Ảm Đạm", @@ -402,6 +405,6 @@ local item = { } } local config = { -data=item,count=101 +data=item,count=102 } return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/item.lua b/lua/app/config/strings/zh/item.lua index 034d5292..d5c2a6ef 100644 --- a/lua/app/config/strings/zh/item.lua +++ b/lua/app/config/strings/zh/item.lua @@ -179,6 +179,9 @@ local item = { }, [46]={ + }, + [47]={ + }, [1001]={ ["name"]="暗淡隕鐵", @@ -402,6 +405,6 @@ local item = { } } local config = { -data=item,count=101 +data=item,count=102 } return config \ No newline at end of file diff --git a/lua/app/config/summon.lua b/lua/app/config/summon.lua index f3328c99..67e310a6 100644 --- a/lua/app/config/summon.lua +++ b/lua/app/config/summon.lua @@ -33,8 +33,8 @@ local summon = { ["type_for_nothing"]="Vw==", ["id"]=4, ["id_for_nothing"]="Ug==", - ["num"]=4, - ["num_for_nothing"]="Ug==" + ["num"]=16, + ["num_for_nothing"]="Vw4=" } }, ["box_lv_3"]={ @@ -51,8 +51,8 @@ local summon = { ["type_for_nothing"]="Vw==", ["id"]=4, ["id_for_nothing"]="Ug==", - ["num"]=8, - ["num_for_nothing"]="Xg==" + ["num"]=20, + ["num_for_nothing"]="VAg=" } }, ["box_lv_4"]={ @@ -69,8 +69,8 @@ local summon = { ["type_for_nothing"]="Vw==", ["id"]=4, ["id_for_nothing"]="Ug==", - ["num"]=12, - ["num_for_nothing"]="Vwo=" + ["num"]=24, + ["num_for_nothing"]="VAw=" } }, ["box_lv_5"]={ @@ -87,8 +87,8 @@ local summon = { ["type_for_nothing"]="Vw==", ["id"]=4, ["id_for_nothing"]="Ug==", - ["num"]=16, - ["num_for_nothing"]="Vw4=" + ["num"]=28, + ["num_for_nothing"]="VAA=" } }, ["box_lv_6"]={ @@ -105,8 +105,8 @@ local summon = { ["type_for_nothing"]="Vw==", ["id"]=4, ["id_for_nothing"]="Ug==", - ["num"]=20, - ["num_for_nothing"]="VAg=" + ["num"]=32, + ["num_for_nothing"]="VQo=" } }, ["box_lv_7"]={ @@ -123,8 +123,8 @@ local summon = { ["type_for_nothing"]="Vw==", ["id"]=4, ["id_for_nothing"]="Ug==", - ["num"]=24, - ["num_for_nothing"]="VAw=" + ["num"]=36, + ["num_for_nothing"]="VQ4=" } }, ["box_lv_8"]={ @@ -141,8 +141,8 @@ local summon = { ["type_for_nothing"]="Vw==", ["id"]=4, ["id_for_nothing"]="Ug==", - ["num"]=28, - ["num_for_nothing"]="VAA=" + ["num"]=40, + ["num_for_nothing"]="Ugg=" } }, ["box_lv_9"]={ @@ -159,8 +159,8 @@ local summon = { ["type_for_nothing"]="Vw==", ["id"]=4, ["id_for_nothing"]="Ug==", - ["num"]=32, - ["num_for_nothing"]="VQo=" + ["num"]=44, + ["num_for_nothing"]="Ugw=" } }, ["box_lv_10"]={ @@ -177,8 +177,8 @@ local summon = { ["type_for_nothing"]="Vw==", ["id"]=4, ["id_for_nothing"]="Ug==", - ["num"]=36, - ["num_for_nothing"]="VQ4=" + ["num"]=48, + ["num_for_nothing"]="UgA=" } } }, @@ -227,51 +227,123 @@ local summon = { } }, ["box_lv_2"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=1000, + ["num_for_nothing"]="VwhcAw==" + }, { ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=5, ["id_for_nothing"]="Uw==", - ["num"]=10, - ["num_for_nothing"]="Vwg=" + ["num"]=15, + ["num_for_nothing"]="Vw0=" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=4, + ["id_for_nothing"]="Ug==", + ["num"]=180, + ["num_for_nothing"]="VwBc" } }, ["box_lv_3"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=1000, + ["num_for_nothing"]="VwhcAw==" + }, { ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=5, ["id_for_nothing"]="Uw==", - ["num"]=20, - ["num_for_nothing"]="VAg=" + ["num"]=25, + ["num_for_nothing"]="VA0=" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=4, + ["id_for_nothing"]="Ug==", + ["num"]=180, + ["num_for_nothing"]="VwBc" } }, ["box_lv_4"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=1000, + ["num_for_nothing"]="VwhcAw==" + }, { ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=5, ["id_for_nothing"]="Uw==", - ["num"]=35, - ["num_for_nothing"]="VQ0=" + ["num"]=40, + ["num_for_nothing"]="Ugg=" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=4, + ["id_for_nothing"]="Ug==", + ["num"]=180, + ["num_for_nothing"]="VwBc" } }, ["box_lv_5"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=1000, + ["num_for_nothing"]="VwhcAw==" + }, { ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=5, ["id_for_nothing"]="Uw==", - ["num"]=50, - ["num_for_nothing"]="Uwg=" + ["num"]=55, + ["num_for_nothing"]="Uw0=" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=4, + ["id_for_nothing"]="Ug==", + ["num"]=180, + ["num_for_nothing"]="VwBc" } }, ["box_lv_6"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=1000, + ["num_for_nothing"]="VwhcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=1, ["num_for_nothing"]="Vw==" }, @@ -280,16 +352,32 @@ local summon = { ["type_for_nothing"]="Vw==", ["id"]=5, ["id_for_nothing"]="Uw==", - ["num"]=65, - ["num_for_nothing"]="UA0=" + ["num"]=70, + ["num_for_nothing"]="UQg=" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=4, + ["id_for_nothing"]="Ug==", + ["num"]=180, + ["num_for_nothing"]="VwBc" } }, ["box_lv_7"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=1000, + ["num_for_nothing"]="VwhcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=2, ["num_for_nothing"]="VA==" }, @@ -298,16 +386,32 @@ local summon = { ["type_for_nothing"]="Vw==", ["id"]=5, ["id_for_nothing"]="Uw==", - ["num"]=80, - ["num_for_nothing"]="Xgg=" + ["num"]=85, + ["num_for_nothing"]="Xg0=" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=4, + ["id_for_nothing"]="Ug==", + ["num"]=180, + ["num_for_nothing"]="VwBc" } }, ["box_lv_8"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=1000, + ["num_for_nothing"]="VwhcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=3, ["num_for_nothing"]="VQ==" }, @@ -316,16 +420,32 @@ local summon = { ["type_for_nothing"]="Vw==", ["id"]=5, ["id_for_nothing"]="Uw==", - ["num"]=95, - ["num_for_nothing"]="Xw0=" + ["num"]=100, + ["num_for_nothing"]="Vwhc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=4, + ["id_for_nothing"]="Ug==", + ["num"]=180, + ["num_for_nothing"]="VwBc" } }, ["box_lv_9"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=1000, + ["num_for_nothing"]="VwhcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=4, ["num_for_nothing"]="Ug==" }, @@ -334,16 +454,32 @@ local summon = { ["type_for_nothing"]="Vw==", ["id"]=5, ["id_for_nothing"]="Uw==", - ["num"]=110, - ["num_for_nothing"]="Vwlc" + ["num"]=115, + ["num_for_nothing"]="VwlZ" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=4, + ["id_for_nothing"]="Ug==", + ["num"]=180, + ["num_for_nothing"]="VwBc" } }, ["box_lv_10"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=1000, + ["num_for_nothing"]="VwhcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=5, ["num_for_nothing"]="Uw==" }, @@ -352,8 +488,16 @@ local summon = { ["type_for_nothing"]="Vw==", ["id"]=5, ["id_for_nothing"]="Uw==", - ["num"]=125, - ["num_for_nothing"]="VwpZ" + ["num"]=130, + ["num_for_nothing"]="Vwtc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=4, + ["id_for_nothing"]="Ug==", + ["num"]=180, + ["num_for_nothing"]="VwBc" } } }, @@ -387,8 +531,8 @@ local summon = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=1, ["num_for_nothing"]="Vw==" }, @@ -413,26 +557,16 @@ local summon = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", - ["num"]=1, - ["num_for_nothing"]="Vw==" + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=2000, + ["num_for_nothing"]="VAhcAw==" }, { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=5, - ["id_for_nothing"]="Uw==", - ["num"]=5, - ["num_for_nothing"]="Uw==" - } - }, - ["box_lv_3"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=2, ["num_for_nothing"]="VA==" }, @@ -441,16 +575,32 @@ local summon = { ["type_for_nothing"]="Vw==", ["id"]=5, ["id_for_nothing"]="Uw==", - ["num"]=35, - ["num_for_nothing"]="VQ0=" - } - }, - ["box_lv_4"]={ + ["num"]=10, + ["num_for_nothing"]="Vwg=" + }, { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=4, + ["id_for_nothing"]="Ug==", + ["num"]=480, + ["num_for_nothing"]="UgBc" + } + }, + ["box_lv_3"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=2000, + ["num_for_nothing"]="VAhcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=3, ["num_for_nothing"]="VQ==" }, @@ -459,16 +609,32 @@ local summon = { ["type_for_nothing"]="Vw==", ["id"]=5, ["id_for_nothing"]="Uw==", - ["num"]=75, - ["num_for_nothing"]="UQ0=" - } - }, - ["box_lv_5"]={ + ["num"]=40, + ["num_for_nothing"]="Ugg=" + }, { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=4, + ["id_for_nothing"]="Ug==", + ["num"]=480, + ["num_for_nothing"]="UgBc" + } + }, + ["box_lv_4"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=2000, + ["num_for_nothing"]="VAhcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=4, ["num_for_nothing"]="Ug==" }, @@ -477,16 +643,32 @@ local summon = { ["type_for_nothing"]="Vw==", ["id"]=5, ["id_for_nothing"]="Uw==", - ["num"]=115, - ["num_for_nothing"]="VwlZ" - } - }, - ["box_lv_6"]={ + ["num"]=80, + ["num_for_nothing"]="Xgg=" + }, { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=4, + ["id_for_nothing"]="Ug==", + ["num"]=480, + ["num_for_nothing"]="UgBc" + } + }, + ["box_lv_5"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=2000, + ["num_for_nothing"]="VAhcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=5, ["num_for_nothing"]="Uw==" }, @@ -495,80 +677,186 @@ local summon = { ["type_for_nothing"]="Vw==", ["id"]=5, ["id_for_nothing"]="Uw==", - ["num"]=155, - ["num_for_nothing"]="Vw1Z" + ["num"]=120, + ["num_for_nothing"]="Vwpc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=4, + ["id_for_nothing"]="Ug==", + ["num"]=480, + ["num_for_nothing"]="UgBc" + } + }, + ["box_lv_6"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=2000, + ["num_for_nothing"]="VAhcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", + ["num"]=6, + ["num_for_nothing"]="UA==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=5, + ["id_for_nothing"]="Uw==", + ["num"]=160, + ["num_for_nothing"]="Vw5c" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=4, + ["id_for_nothing"]="Ug==", + ["num"]=480, + ["num_for_nothing"]="UgBc" } }, ["box_lv_7"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", - ["num"]=7, - ["num_for_nothing"]="UQ==" + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=2000, + ["num_for_nothing"]="VAhcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", + ["num"]=8, + ["num_for_nothing"]="Xg==" }, { ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=5, ["id_for_nothing"]="Uw==", - ["num"]=195, - ["num_for_nothing"]="VwFZ" + ["num"]=200, + ["num_for_nothing"]="VAhc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=4, + ["id_for_nothing"]="Ug==", + ["num"]=480, + ["num_for_nothing"]="UgBc" } }, ["box_lv_8"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", - ["num"]=9, - ["num_for_nothing"]="Xw==" + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=2000, + ["num_for_nothing"]="VAhcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", + ["num"]=10, + ["num_for_nothing"]="Vwg=" }, { ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=5, ["id_for_nothing"]="Uw==", - ["num"]=235, - ["num_for_nothing"]="VAtZ" + ["num"]=240, + ["num_for_nothing"]="VAxc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=4, + ["id_for_nothing"]="Ug==", + ["num"]=480, + ["num_for_nothing"]="UgBc" } }, ["box_lv_9"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", - ["num"]=11, - ["num_for_nothing"]="Vwk=" + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=2000, + ["num_for_nothing"]="VAhcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", + ["num"]=12, + ["num_for_nothing"]="Vwo=" }, { ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=5, ["id_for_nothing"]="Uw==", - ["num"]=275, - ["num_for_nothing"]="VA9Z" + ["num"]=280, + ["num_for_nothing"]="VABc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=4, + ["id_for_nothing"]="Ug==", + ["num"]=480, + ["num_for_nothing"]="UgBc" } }, ["box_lv_10"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", - ["num"]=13, - ["num_for_nothing"]="Vws=" + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=2000, + ["num_for_nothing"]="VAhcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", + ["num"]=14, + ["num_for_nothing"]="Vww=" }, { ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=5, ["id_for_nothing"]="Uw==", - ["num"]=315, - ["num_for_nothing"]="VQlZ" + ["num"]=320, + ["num_for_nothing"]="VQpc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=4, + ["id_for_nothing"]="Ug==", + ["num"]=480, + ["num_for_nothing"]="UgBc" } } } diff --git a/lua/app/config/tutorial.lua b/lua/app/config/tutorial.lua index 350de8d7..d05e0d87 100644 --- a/lua/app/config/tutorial.lua +++ b/lua/app/config/tutorial.lua @@ -619,6 +619,7 @@ local tutorial = { ["next_id"]=80010, ["type"]=2, ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_2", + ["func_id"]="dungeon_weapon_open", ["arrow_direction"]=2, ["arrow_offset"]={ 0, @@ -639,6 +640,7 @@ local tutorial = { ["delay"]=0.5, ["type"]=2, ["target_name"]="main_ui(Clone)/sub_ui_node/hero_ui/formation/hero_3", + ["func_id"]="dungeon_weapon_open", ["arrow_direction"]=2, ["arrow_offset"]={ 0, @@ -650,6 +652,7 @@ local tutorial = { ["next_id"]=80030, ["type"]=2, ["target_name"]="hero_detail_ui(Clone)/common/btns/btn_weapon", + ["func_id"]="dungeon_weapon_open", ["arrow_direction"]=1, ["arrow_offset"]={ 0, @@ -663,7 +666,8 @@ local tutorial = { ["txt_offset"]={ 0, 200 - } + }, + ["func_id"]="dungeon_weapon_open" }, [80040]={ ["next_id"]=80050, @@ -674,6 +678,7 @@ local tutorial = { 200 }, ["target_name"]="hero_detail_ui(Clone)/common/btn_close", + ["func_id"]="dungeon_weapon_open", ["arrow_direction"]=1, ["arrow_offset"]={ 0, @@ -684,6 +689,7 @@ local tutorial = { ["next_id"]=80060, ["type"]=2, ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_1", + ["func_id"]="dungeon_weapon_open", ["arrow_direction"]=1, ["arrow_offset"]={ 0, @@ -703,6 +709,7 @@ local tutorial = { ["next_id"]=80070, ["type"]=2, ["target_name"]="main_ui(Clone)/sub_ui_node/main_comp/right/dungeon", + ["func_id"]="dungeon_weapon_open", ["arrow_direction"]=1, ["arrow_offset"]={ 0, @@ -717,7 +724,8 @@ local tutorial = { }, [80070]={ ["type"]=2, - ["target_name"]="main_ui(Clone)/sub_ui_node/main_comp/dungeon_comp/scrollrect/viewport/content/scroll_cell_2/btn_start", + ["target_name"]="main_ui(Clone)/sub_ui_node/main_comp/dungeon_comp/scrollrect/viewport/content/dungeon_weapon_open/btn_start", + ["func_id"]="dungeon_weapon_open", ["arrow_direction"]=2, ["arrow_offset"]={ 0, @@ -728,6 +736,7 @@ local tutorial = { ["next_id"]=90010, ["type"]=2, ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_2", + ["func_id"]="dungeon_armor_open", ["arrow_direction"]=2, ["arrow_offset"]={ 0, @@ -748,6 +757,7 @@ local tutorial = { ["delay"]=0.5, ["type"]=2, ["target_name"]="main_ui(Clone)/sub_ui_node/hero_ui/formation/hero_3", + ["func_id"]="dungeon_armor_open", ["arrow_direction"]=2, ["arrow_offset"]={ 0, @@ -759,6 +769,7 @@ local tutorial = { ["next_id"]=90030, ["type"]=2, ["target_name"]="hero_detail_ui(Clone)/common/btns/btn_armor", + ["func_id"]="dungeon_armor_open", ["arrow_direction"]=1, ["arrow_offset"]={ 0, @@ -772,7 +783,8 @@ local tutorial = { ["txt_offset"]={ 0, 200 - } + }, + ["func_id"]="dungeon_armor_open" }, [90040]={ ["next_id"]=90050, @@ -783,6 +795,7 @@ local tutorial = { 200 }, ["target_name"]="hero_detail_ui(Clone)/common/btn_close", + ["func_id"]="dungeon_armor_open", ["arrow_direction"]=1, ["arrow_offset"]={ 0, @@ -793,6 +806,7 @@ local tutorial = { ["next_id"]=90060, ["type"]=2, ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_1", + ["func_id"]="dungeon_armor_open", ["arrow_direction"]=1, ["arrow_offset"]={ 0, @@ -812,6 +826,7 @@ local tutorial = { ["next_id"]=90070, ["type"]=2, ["target_name"]="main_ui(Clone)/sub_ui_node/main_comp/right/dungeon", + ["func_id"]="dungeon_armor_open", ["arrow_direction"]=1, ["arrow_offset"]={ 0, @@ -827,7 +842,8 @@ local tutorial = { [90070]={ ["next_id"]=90080, ["type"]=2, - ["target_name"]="main_ui(Clone)/sub_ui_node/main_comp/dungeon_comp/scrollrect/viewport/content/scroll_cell_3/btn_start", + ["target_name"]="main_ui(Clone)/sub_ui_node/main_comp/dungeon_comp/scrollrect/viewport/content/dungeon_armor_open/btn_start", + ["func_id"]="dungeon_armor_open", ["arrow_direction"]=2, ["arrow_offset"]={ 0, @@ -837,6 +853,7 @@ local tutorial = { [90080]={ ["type"]=2, ["target_name"]="dungeon_armor_main_ui(Clone)/scrollrect/viewport/content/scroll_cell_1/touch_node", + ["func_id"]="dungeon_armor_open", ["arrow_direction"]=4, ["arrow_offset"]={ 20, From c6127ec0ae6c9c9745fcd4491191e76a8e31d205 Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Wed, 2 Aug 2023 18:47:25 +0800 Subject: [PATCH 15/44] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/userdata/summon/summon_data.lua | 29 ++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/lua/app/userdata/summon/summon_data.lua b/lua/app/userdata/summon/summon_data.lua index ec8a02ef..8fbb5091 100644 --- a/lua/app/userdata/summon/summon_data.lua +++ b/lua/app/userdata/summon/summon_data.lua @@ -74,7 +74,34 @@ function SummonData:getSummonRewardByLv(summonType, level) if level == 1 then return cfgInfo.box_lv_base else - return cfgInfo["box_lv_" .. tostring(level)] + if not self.cacheSummonRewardByLv then + self.cacheSummonRewardByLv = {} + end + self.cacheSummonRewardByLv[level] = {} + local rewards = cfgInfo["box_lv_" .. tostring(level)] + for _, reward in ipairs(rewards) do + local find = false + for index, rewardBase in ipairs(cfgInfo.box_lv_base) do + if reward.type == rewardBase.type and reward.id == rewardBase.id and reward.num > rewardBase.num then + local num = reward.num - rewardBase.num + table.insert(self.cacheSummonRewardByLv[level], { + id = reward.id, + type = reward.type, + num = num + }) + find = true + break + end + end + if not find then + table.insert(self.cacheSummonRewardByLv[level], { + id = reward.id, + type = reward.type, + num = reward.num + }) + end + end + return self.cacheSummonRewardByLv[level] end end From 2018d556bbec2bdfa377de34c6198bcf2a27d651 Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Wed, 2 Aug 2023 18:56:28 +0800 Subject: [PATCH 16/44] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/module/item/item_const.lua | 1 + lua/app/module/tips/tips_manager.lua | 6 ++++-- lua/app/ui/tips/hero_fragment_tips.lua | 4 ++++ 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/lua/app/module/item/item_const.lua b/lua/app/module/item/item_const.lua index 52244e97..200a9db8 100644 --- a/lua/app/module/item/item_const.lua +++ b/lua/app/module/item/item_const.lua @@ -26,6 +26,7 @@ ItemConst.ITEM_TYPE = { WEIGHT_FRAGMENT = 6, RANDOM_BOX_ITEM = 7, FIXED_BOX_ITEM = 8, + EPIC_HERO_FRAMENT = 11, } return ItemConst \ No newline at end of file diff --git a/lua/app/module/tips/tips_manager.lua b/lua/app/module/tips/tips_manager.lua index 3bcf4a81..4bf06d67 100644 --- a/lua/app/module/tips/tips_manager.lua +++ b/lua/app/module/tips/tips_manager.lua @@ -32,8 +32,10 @@ function TipsManager:showRewardTips(rewardId, rewardType, tarPrefabObj, alignTyp if rewardType == GConst.REWARD_TYPE.ITEM then local info = ConfigManager:getConfig("item")[rewardId] if info then - if info.type == GConst.ItemConst.ITEM_TYPE.RANDOM_FRAGMENT or info.type == GConst.ItemConst.ITEM_TYPE.WEIGHT_FRAGMENT then - -- 随机碎片 or 权重随机碎片 + if info.type == GConst.ItemConst.ITEM_TYPE.RANDOM_FRAGMENT + or info.type == GConst.ItemConst.ITEM_TYPE.WEIGHT_FRAGMENT + or info.type == GConst.ItemConst.ITEM_TYPE.EPIC_HERO_FRAMENT then + -- 随机碎片 or 权重随机碎片 or 史诗英雄碎片 self:showHeroFragmentTips(rewardId) return elseif info.type == GConst.ItemConst.ITEM_TYPE.BOX then diff --git a/lua/app/ui/tips/hero_fragment_tips.lua b/lua/app/ui/tips/hero_fragment_tips.lua index 29103355..49e5d054 100644 --- a/lua/app/ui/tips/hero_fragment_tips.lua +++ b/lua/app/ui/tips/hero_fragment_tips.lua @@ -74,6 +74,10 @@ function HeroFragmentTips:onLoadRootComplete() self:closeUI() end) + if cfg.type == GConst.ItemConst.ITEM_TYPE.EPIC_HERO_FRAMENT then + uiMap["hero_fragment_tips.title_bg_img.desc"]:setText(I18N:getText("item", self.itemId, "desc")) + end + self:initScrollRect() end From cd63f0a97717492909e44318a7a37db738c75202 Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Wed, 2 Aug 2023 19:55:24 +0800 Subject: [PATCH 17/44] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/config/chapter.lua | 140 +- lua/app/config/chapter_board.lua | 2110 ++++++++--------- .../config/chapter_board_daily_challenge.lua | 532 ++--- lua/app/config/chapter_daily_challenge.lua | 56 + lua/app/config/mall_daily.lua | 516 +++- lua/app/config/monster_chapter.lua | 1711 +++++++------ lua/app/config/monster_daily_challenge.lua | 504 ++-- lua/app/config/monster_dungeon_armor.lua | 1200 +++++----- lua/app/config/monster_dungeon_equip.lua | 200 +- lua/app/config/task_daily_challenge.lua | 2 +- 10 files changed, 3764 insertions(+), 3207 deletions(-) diff --git a/lua/app/config/chapter.lua b/lua/app/config/chapter.lua index 18ac9f66..78680970 100644 --- a/lua/app/config/chapter.lua +++ b/lua/app/config/chapter.lua @@ -127,8 +127,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 100, - 100 + 1, + 1 } }, [2]={ @@ -278,8 +278,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 100, - 100 + 1, + 1 } }, [3]={ @@ -424,8 +424,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 100, - 100 + 1, + 1 } }, [4]={ @@ -621,8 +621,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 230, - 44 + 1, + 1 } }, [5]={ @@ -824,8 +824,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 1785, - 4062 + 1425, + 3528 } }, [6]={ @@ -1027,8 +1027,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 2511, - 5397 + 1976, + 5486 } }, [7]={ @@ -1246,8 +1246,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 4456, - 7506 + 3300, + 7539 } }, [8]={ @@ -1465,8 +1465,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 6127, - 10184 + 4837, + 9756 } }, [9]={ @@ -1684,8 +1684,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 7787, - 12470 + 6364, + 12027 } }, [10]={ @@ -1903,8 +1903,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 10159, - 15963 + 8546, + 14328 } }, [11]={ @@ -2122,8 +2122,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 12466, - 18556 + 10668, + 15012 } }, [12]={ @@ -2341,8 +2341,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 14126, - 21487 + 12196, + 16024 } }, [13]={ @@ -2560,8 +2560,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 15225, - 23424 + 13207, + 17506 } }, [14]={ @@ -2779,8 +2779,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 17392, - 26737 + 15201, + 18468 } }, [15]={ @@ -2998,8 +2998,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 18125, - 28176 + 15875, + 19426 } }, [16]={ @@ -3217,8 +3217,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 19440, - 30378 + 17085, + 21047 } }, [17]={ @@ -3436,8 +3436,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 20691, - 32484 + 18235, + 22088 } }, [18]={ @@ -3655,8 +3655,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 22146, - 34908 + 19574, + 23715 } }, [19]={ @@ -3874,8 +3874,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 23030, - 36601 + 20388, + 25138 } }, [20]={ @@ -4093,8 +4093,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 24712, - 39364 + 21935, + 26412 } }, [21]={ @@ -4312,8 +4312,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 26059, - 41629 + 23174, + 27434 } }, [22]={ @@ -4531,8 +4531,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 26965, - 43375 + 24007, + 28639 } }, [23]={ @@ -4750,8 +4750,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 27859, - 45058 + 24831, + 29814 } }, [24]={ @@ -4969,8 +4969,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 29509, - 47863 + 26348, + 31029 } }, [25]={ @@ -5188,8 +5188,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 29800, - 48678 + 26616, + 32214 } }, [26]={ @@ -5407,8 +5407,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 30716, - 50392 + 27459, + 33533 } }, [27]={ @@ -5626,8 +5626,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 32506, - 53451 + 29105, + 34852 } }, [28]={ @@ -5845,8 +5845,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 33303, - 55081 + 29839, + 36176 } }, [29]={ @@ -6064,8 +6064,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 34166, - 56796 + 30632, + 37485 } }, [30]={ @@ -6283,8 +6283,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 35718, - 60278 + 32061, + 38809 } }, [31]={ @@ -6502,8 +6502,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 37410, - 63294 + 33618, + 40252 } }, [32]={ @@ -6721,8 +6721,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 38984, - 66067 + 35066, + 43069 } }, [33]={ @@ -6940,8 +6940,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 41000, - 69592 + 36920, + 45891 } }, [34]={ @@ -7159,8 +7159,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 42574, - 72471 + 38368, + 49054 } }, [35]={ @@ -7377,8 +7377,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 46207, - 78535 + 41710, + 53745 } } } diff --git a/lua/app/config/chapter_board.lua b/lua/app/config/chapter_board.lua index 40f383f6..5d8fc7b3 100644 --- a/lua/app/config/chapter_board.lua +++ b/lua/app/config/chapter_board.lua @@ -1622,10 +1622,42 @@ local chapter_board = { 1, 0 }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, { 1, 0 }, + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, { 0, 3 @@ -1646,41 +1678,13 @@ local chapter_board = { 1, 0 }, - { - 1, - 0 - }, - { - 1, - 0 - }, { 0, - 3 - }, - { - 0, - 3 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 + 2 + }, + { + 0, + 2 }, { 0, @@ -1702,6 +1706,26 @@ local chapter_board = { 1, 0 }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, { 1, 0 @@ -1711,31 +1735,7 @@ local chapter_board = { 0 }, { - 7, - 0 - }, - { - 7, - 0 - }, - { - 7, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, + 0, 0 }, { @@ -1751,7 +1751,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -1763,7 +1763,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -1779,7 +1779,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -2677,7 +2677,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -2693,7 +2693,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -2705,7 +2705,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -2721,7 +2721,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -2733,7 +2733,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -2749,7 +2749,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -2761,23 +2761,23 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { - 1, + 2, 0 }, { - 1, + 0, 0 }, { - 1, + 2, 0 }, { - 1, + 0, 0 }, { @@ -2875,7 +2875,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -2891,7 +2891,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -2903,7 +2903,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -2919,7 +2919,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -2931,7 +2931,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -2947,7 +2947,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -2959,23 +2959,23 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { - 1, + 2, 0 }, { - 1, + 0, 0 }, { - 1, + 2, 0 }, { - 1, + 0, 0 }, { @@ -3079,15 +3079,15 @@ local chapter_board = { 1 }, { - 3, + 2, 2 }, { - 3, + 2, 3 }, { - 3, + 2, 4 }, { @@ -3163,7 +3163,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -3171,7 +3171,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -3187,7 +3187,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -3203,7 +3203,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -3277,15 +3277,15 @@ local chapter_board = { 1 }, { - 3, + 2, 2 }, { - 3, + 2, 3 }, { - 3, + 2, 4 }, { @@ -3361,7 +3361,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -3369,7 +3369,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -3385,7 +3385,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -3401,7 +3401,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -3417,7 +3417,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -3426,14 +3426,14 @@ local chapter_board = { }, { 0, - 3 + 2 }, { 0, - 3 + 1 }, { - 3, + 2, 0 }, { @@ -3462,7 +3462,7 @@ local chapter_board = { }, { 4, - 3 + 1 }, { 1, @@ -3474,7 +3474,7 @@ local chapter_board = { }, { 4, - 3 + 2 }, { 4, @@ -3486,7 +3486,7 @@ local chapter_board = { }, { 4, - 1 + 3 }, { 4, @@ -3525,7 +3525,7 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { @@ -3533,15 +3533,7 @@ local chapter_board = { 0 }, { - 3, - 0 - }, - { - 1, - 0 - }, - { - 3, + 2, 0 }, { @@ -3549,63 +3541,71 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 3, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 3, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, 0 } } @@ -4015,8 +4015,8 @@ local chapter_board = { 0 }, { - 1, - 0 + 0, + 3 }, { 0, @@ -4028,11 +4028,11 @@ local chapter_board = { }, { 0, - 2 + 3 }, { - 1, - 0 + 0, + 3 }, { 1, @@ -4056,7 +4056,7 @@ local chapter_board = { }, { 0, - 3 + 2 }, { 0, @@ -4072,11 +4072,7 @@ local chapter_board = { }, { 4, - 4 - }, - { - 4, - 2 + 3 }, { 4, @@ -4084,11 +4080,15 @@ local chapter_board = { }, { 4, - 2 + 4 }, { 4, - 2 + 4 + }, + { + 4, + 3 }, { 1, @@ -4136,15 +4136,15 @@ local chapter_board = { }, { 5, - 3 + 2 }, { 5, - 3 + 4 }, { 5, - 3 + 2 }, { 2, @@ -4218,21 +4218,21 @@ local chapter_board = { 0, 3 }, + { + 0, + 3 + }, + { + 0, + 3 + }, { 0, 1 }, { 0, - 3 - }, - { - 0, - 3 - }, - { - 0, - 3 + 1 }, { 0, @@ -4254,14 +4254,6 @@ local chapter_board = { 0, 1 }, - { - 5, - 1 - }, - { - 5, - 1 - }, { 5, 3 @@ -4276,7 +4268,15 @@ local chapter_board = { }, { 5, - 1 + 5 + }, + { + 5, + 5 + }, + { + 5, + 5 }, { 2, @@ -4284,7 +4284,7 @@ local chapter_board = { }, { 5, - 2 + 3 }, { 3, @@ -4304,7 +4304,7 @@ local chapter_board = { }, { 5, - 1 + 5 }, { 2, @@ -4312,7 +4312,7 @@ local chapter_board = { }, { 5, - 2 + 3 }, { 5, @@ -4332,7 +4332,7 @@ local chapter_board = { }, { 5, - 1 + 5 }, { 5, @@ -4351,15 +4351,15 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { @@ -4379,15 +4379,15 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { @@ -4416,21 +4416,21 @@ local chapter_board = { 0, 3 }, + { + 0, + 3 + }, + { + 0, + 3 + }, { 0, 1 }, { 0, - 3 - }, - { - 0, - 3 - }, - { - 0, - 3 + 1 }, { 0, @@ -4452,14 +4452,6 @@ local chapter_board = { 0, 1 }, - { - 5, - 1 - }, - { - 5, - 1 - }, { 5, 3 @@ -4474,7 +4466,15 @@ local chapter_board = { }, { 5, - 1 + 5 + }, + { + 5, + 5 + }, + { + 5, + 5 }, { 2, @@ -4482,7 +4482,7 @@ local chapter_board = { }, { 5, - 2 + 3 }, { 3, @@ -4502,7 +4502,7 @@ local chapter_board = { }, { 5, - 1 + 5 }, { 2, @@ -4510,7 +4510,7 @@ local chapter_board = { }, { 5, - 2 + 3 }, { 5, @@ -4530,7 +4530,7 @@ local chapter_board = { }, { 5, - 1 + 5 }, { 5, @@ -4549,15 +4549,15 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { @@ -4577,15 +4577,15 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { @@ -4613,7 +4613,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -4629,7 +4629,7 @@ local chapter_board = { 4 }, { - 3, + 2, 0 }, { @@ -4641,7 +4641,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -4657,7 +4657,7 @@ local chapter_board = { 3 }, { - 3, + 2, 0 }, { @@ -4669,11 +4669,11 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { - 3, + 2, 0 }, { @@ -4681,11 +4681,11 @@ local chapter_board = { 2 }, { - 3, + 2, 0 }, { - 3, + 2, 0 }, { @@ -4781,24 +4781,24 @@ local chapter_board = { 0 }, { - 1, - 0 + 5, + 2 }, { - 1, - 0 + 5, + 2 }, { - 1, - 0 + 5, + 1 }, { - 1, - 0 + 5, + 3 }, { - 1, - 0 + 5, + 3 }, { 1, @@ -4826,7 +4826,7 @@ local chapter_board = { }, { 0, - 3 + 1 }, { 0, @@ -5412,7 +5412,7 @@ local chapter_board = { }, { 0, - 4 + 3 }, { 0, @@ -5440,7 +5440,7 @@ local chapter_board = { }, { 0, - 4 + 3 }, { 0, @@ -5452,11 +5452,11 @@ local chapter_board = { }, { 0, - 3 + 4 }, { 0, - 3 + 4 }, { 1, @@ -5474,18 +5474,18 @@ local chapter_board = { 0, 5 }, + { + 0, + 5 + }, + { + 0, + 5 + }, { 0, 4 }, - { - 0, - 2 - }, - { - 0, - 1 - }, { 1, 0 @@ -5503,7 +5503,7 @@ local chapter_board = { 0 }, { - 1, + 3, 0 }, { @@ -5632,7 +5632,7 @@ local chapter_board = { }, { 0, - 1 + 4 }, { 1, @@ -5640,11 +5640,11 @@ local chapter_board = { }, { 5, - 1 + 2 }, { - 2, - 0 + 0, + 3 }, { 0, @@ -5659,19 +5659,11 @@ local chapter_board = { 3 }, { - 0, - 1 - }, - { - 3, + 1, 0 }, { - 5, - 1 - }, - { - 2, + 3, 0 }, { @@ -5683,7 +5675,15 @@ local chapter_board = { 0 }, { - 3, + 5, + 1 + }, + { + 2, + 0 + }, + { + 2, 0 }, { @@ -5694,14 +5694,6 @@ local chapter_board = { 3, 0 }, - { - 5, - 1 - }, - { - 2, - 0 - }, { 5, 2 @@ -5710,29 +5702,9 @@ local chapter_board = { 2, 0 }, - { - 2, - 0 - }, - { - 1, - 0 - }, - { - 3, - 0 - }, { 5, - 4 - }, - { - 2, - 0 - }, - { - 5, - 5 + 1 }, { 2, @@ -5752,7 +5724,35 @@ local chapter_board = { }, { 5, - 4 + 2 + }, + { + 2, + 0 + }, + { + 5, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 5, + 2 }, { 14, @@ -5760,14 +5760,14 @@ local chapter_board = { }, { 5, - 5 + 1 }, { 2, 0 }, { - 3, + 2, 0 }, { @@ -5779,8 +5779,8 @@ local chapter_board = { 0 }, { - 1, - 0 + 5, + 2 }, { 3, @@ -5795,7 +5795,7 @@ local chapter_board = { 0 }, { - 1, + 3, 0 }, { @@ -5830,7 +5830,7 @@ local chapter_board = { }, { 0, - 1 + 4 }, { 1, @@ -5838,11 +5838,11 @@ local chapter_board = { }, { 5, - 1 + 2 }, { - 2, - 0 + 0, + 3 }, { 0, @@ -5857,19 +5857,11 @@ local chapter_board = { 3 }, { - 0, - 1 - }, - { - 3, + 1, 0 }, { - 5, - 1 - }, - { - 2, + 3, 0 }, { @@ -5881,7 +5873,15 @@ local chapter_board = { 0 }, { - 3, + 5, + 1 + }, + { + 2, + 0 + }, + { + 2, 0 }, { @@ -5892,14 +5892,6 @@ local chapter_board = { 3, 0 }, - { - 5, - 1 - }, - { - 2, - 0 - }, { 5, 2 @@ -5908,29 +5900,9 @@ local chapter_board = { 2, 0 }, - { - 2, - 0 - }, - { - 1, - 0 - }, - { - 3, - 0 - }, { 5, - 4 - }, - { - 2, - 0 - }, - { - 5, - 5 + 1 }, { 2, @@ -5950,7 +5922,35 @@ local chapter_board = { }, { 5, - 4 + 2 + }, + { + 2, + 0 + }, + { + 5, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 5, + 2 }, { 17, @@ -5958,14 +5958,14 @@ local chapter_board = { }, { 5, - 5 + 1 }, { 2, 0 }, { - 3, + 2, 0 }, { @@ -5977,8 +5977,8 @@ local chapter_board = { 0 }, { - 1, - 0 + 5, + 2 }, { 3, @@ -5993,7 +5993,7 @@ local chapter_board = { 0 }, { - 1, + 3, 0 }, { @@ -6210,11 +6210,11 @@ local chapter_board = { }, { 0, - 3 + 4 }, { 0, - 4 + 3 }, { 0, @@ -6254,7 +6254,7 @@ local chapter_board = { }, { 0, - 3 + 2 }, { 1, @@ -6292,18 +6292,6 @@ local chapter_board = { 2, 0 }, - { - 4, - 3 - }, - { - 4, - 2 - }, - { - 4, - 1 - }, { 4, 1 @@ -6317,27 +6305,15 @@ local chapter_board = { 0 }, { - 0, - 0 + 4, + 5 }, { - 3, - 0 + 4, + 5 }, { - 3, - 0 - }, - { - 3, - 0 - }, - { - 3, - 0 - }, - { - 3, + 2, 0 }, { @@ -6349,7 +6325,35 @@ local chapter_board = { 0 }, { - 3, + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 2, 0 }, { @@ -6357,15 +6361,11 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { - 3, - 0 - }, - { - 3, + 2, 0 }, { @@ -6408,11 +6408,11 @@ local chapter_board = { }, { 0, - 3 + 4 }, { 0, - 4 + 3 }, { 0, @@ -6452,7 +6452,7 @@ local chapter_board = { }, { 0, - 3 + 2 }, { 1, @@ -6490,18 +6490,6 @@ local chapter_board = { 2, 0 }, - { - 4, - 3 - }, - { - 4, - 2 - }, - { - 4, - 1 - }, { 4, 1 @@ -6515,27 +6503,15 @@ local chapter_board = { 0 }, { - 0, - 0 + 4, + 5 }, { - 3, - 0 + 4, + 5 }, { - 3, - 0 - }, - { - 3, - 0 - }, - { - 3, - 0 - }, - { - 3, + 2, 0 }, { @@ -6547,7 +6523,35 @@ local chapter_board = { 0 }, { - 3, + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 2, 0 }, { @@ -6555,15 +6559,11 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { - 3, - 0 - }, - { - 3, + 2, 0 }, { @@ -6623,7 +6623,7 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { @@ -6651,7 +6651,7 @@ local chapter_board = { 0 }, { - 1, + 3, 0 }, { @@ -6691,7 +6691,11 @@ local chapter_board = { 0 }, { - 1, + 3, + 0 + }, + { + 2, 0 }, { @@ -6699,11 +6703,7 @@ local chapter_board = { 0 }, { - 3, - 0 - }, - { - 3, + 2, 0 }, { @@ -6719,7 +6719,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -6727,7 +6727,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -6751,7 +6751,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -6759,7 +6759,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -6783,7 +6783,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -6821,7 +6821,7 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { @@ -6849,7 +6849,7 @@ local chapter_board = { 0 }, { - 1, + 3, 0 }, { @@ -6889,7 +6889,11 @@ local chapter_board = { 0 }, { - 1, + 3, + 0 + }, + { + 2, 0 }, { @@ -6897,11 +6901,7 @@ local chapter_board = { 0 }, { - 3, - 0 - }, - { - 3, + 2, 0 }, { @@ -6917,7 +6917,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -6925,7 +6925,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -6949,7 +6949,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -6957,7 +6957,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -6981,7 +6981,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -7006,11 +7006,11 @@ local chapter_board = { }, { 0, - 1 + 5 }, { 0, - 1 + 5 }, { 0, @@ -7018,7 +7018,7 @@ local chapter_board = { }, { 0, - 3 + 5 }, { 0, @@ -7034,19 +7034,19 @@ local chapter_board = { }, { 0, - 1 + 5 }, { 0, 2 }, { - 3, + 2, 0 }, { 0, - 3 + 2 }, { 0, @@ -7057,7 +7057,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -7065,7 +7065,7 @@ local chapter_board = { 2 }, { - 3, + 2, 0 }, { @@ -7073,23 +7073,23 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { 0, - 5 + 2 }, { - 3, + 2, 0 }, { - 3, + 2, 0 }, { - 3, + 2, 0 }, { @@ -7105,11 +7105,11 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { - 3, + 2, 0 }, { @@ -7153,7 +7153,7 @@ local chapter_board = { 4 }, { - 3, + 2, 0 }, { @@ -7181,7 +7181,7 @@ local chapter_board = { 3 }, { - 3, + 2, 0 }, { @@ -7206,7 +7206,7 @@ local chapter_board = { }, { 0, - 2 + 3 }, { 0, @@ -7405,7 +7405,7 @@ local chapter_board = { 0 }, { - 4, + 0, 2 }, { @@ -7421,7 +7421,7 @@ local chapter_board = { 4 }, { - 4, + 0, 2 }, { @@ -7470,7 +7470,7 @@ local chapter_board = { }, { 0, - 2 + 1 }, { 3, @@ -7502,7 +7502,7 @@ local chapter_board = { }, { 0, - 5 + 1 }, { 3, @@ -7522,20 +7522,20 @@ local chapter_board = { }, { 4, - 2 - }, - { - 4, - 3 - }, - { - 4, - 4 + 5 }, { 4, 5 }, + { + 4, + 5 + }, + { + 4, + 1 + }, { 3, 0 @@ -7603,7 +7603,7 @@ local chapter_board = { 0 }, { - 4, + 0, 2 }, { @@ -7619,7 +7619,7 @@ local chapter_board = { 4 }, { - 4, + 0, 2 }, { @@ -7668,7 +7668,7 @@ local chapter_board = { }, { 0, - 2 + 1 }, { 3, @@ -7700,7 +7700,7 @@ local chapter_board = { }, { 0, - 5 + 1 }, { 3, @@ -7720,20 +7720,20 @@ local chapter_board = { }, { 4, - 2 - }, - { - 4, - 3 - }, - { - 4, - 4 + 5 }, { 4, 5 }, + { + 4, + 5 + }, + { + 4, + 1 + }, { 3, 0 @@ -7804,7 +7804,7 @@ local chapter_board = { }, { 0, - 4 + 2 }, { 0, @@ -7820,7 +7820,7 @@ local chapter_board = { }, { 0, - 2 + 4 }, { 1, @@ -7860,7 +7860,7 @@ local chapter_board = { }, { 0, - 4 + 2 }, { 4, @@ -7876,14 +7876,14 @@ local chapter_board = { }, { 0, - 2 + 4 }, { 1, 0 }, { - 3, + 2, 0 }, { @@ -7896,7 +7896,7 @@ local chapter_board = { }, { 4, - 1 + 3 }, { 3, @@ -7907,7 +7907,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -7967,15 +7967,11 @@ local chapter_board = { 0 }, { - 1, + 3, 0 }, { - 1, - 0 - }, - { - 1, + 2, 0 }, { @@ -7983,15 +7979,19 @@ local chapter_board = { 0 }, { - 1, + 3, 0 }, { - 1, + 3, 0 }, { - 1, + 2, + 0 + }, + { + 3, 0 } } @@ -8004,11 +8004,11 @@ local chapter_board = { }, { 0, - 5 + 1 }, { 0, - 4 + 2 }, { 0, @@ -8016,11 +8016,11 @@ local chapter_board = { }, { 0, - 1 + 4 }, { 0, - 1 + 5 }, { 1, @@ -8119,7 +8119,7 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { @@ -8127,7 +8127,7 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { @@ -8175,15 +8175,15 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, + 3, 0 }, { - 1, + 2, 0 }, { @@ -8202,11 +8202,11 @@ local chapter_board = { }, { 0, - 5 + 1 }, { 0, - 4 + 2 }, { 0, @@ -8214,11 +8214,11 @@ local chapter_board = { }, { 0, - 1 + 4 }, { 0, - 1 + 5 }, { 1, @@ -8317,7 +8317,7 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { @@ -8325,7 +8325,7 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { @@ -8373,15 +8373,15 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, + 3, 0 }, { - 1, + 2, 0 }, { @@ -8406,7 +8406,7 @@ local chapter_board = { }, { 0, - 3 + 4 }, { 0, @@ -8414,7 +8414,7 @@ local chapter_board = { }, { 0, - 2 + 4 }, { 1, @@ -8442,7 +8442,7 @@ local chapter_board = { }, { 0, - 4 + 3 }, { 4, @@ -8470,7 +8470,7 @@ local chapter_board = { }, { 4, - 4 + 2 }, { 3, @@ -8604,7 +8604,7 @@ local chapter_board = { }, { 0, - 3 + 4 }, { 0, @@ -8612,7 +8612,7 @@ local chapter_board = { }, { 0, - 2 + 4 }, { 1, @@ -8640,7 +8640,7 @@ local chapter_board = { }, { 0, - 4 + 3 }, { 4, @@ -8668,7 +8668,7 @@ local chapter_board = { }, { 4, - 4 + 2 }, { 3, @@ -8808,7 +8808,7 @@ local chapter_board = { }, { 0, - 2 + 3 }, { 4, @@ -8840,7 +8840,7 @@ local chapter_board = { }, { 4, - 4 + 2 }, { 9, @@ -8860,7 +8860,7 @@ local chapter_board = { }, { 4, - 2 + 1 }, { 0, @@ -8868,7 +8868,7 @@ local chapter_board = { }, { 4, - 4 + 2 }, { 7, @@ -8888,7 +8888,7 @@ local chapter_board = { }, { 4, - 2 + 1 }, { 4, @@ -8971,15 +8971,15 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { - 1, + 0, 0 }, { - 1, + 0, 0 }, { @@ -9012,15 +9012,15 @@ local chapter_board = { }, { 0, - 2 + 1 }, { 0, - 2 + 1 }, { 0, - 2 + 1 }, { 1, @@ -9210,15 +9210,15 @@ local chapter_board = { }, { 0, - 2 + 1 }, { 0, - 2 + 1 }, { 0, - 2 + 1 }, { 1, @@ -9392,42 +9392,6 @@ local chapter_board = { }, [34]={ ["board"]={ - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 3, - 0 - }, { 3, 0 @@ -9437,8 +9401,8 @@ local chapter_board = { 1 }, { - 3, - 0 + 0, + 1 }, { 3, @@ -9457,19 +9421,27 @@ local chapter_board = { 0 }, { - 3, + 0, + 1 + }, + { + 2, 0 }, { - 7, + 2, 0 }, { - 3, + 0, + 1 + }, + { + 2, 0 }, { - 3, + 2, 0 }, { @@ -9481,11 +9453,39 @@ local chapter_board = { 1 }, { - 3, + 2, 0 }, { - 7, + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 2, 0 }, { @@ -9493,7 +9493,47 @@ local chapter_board = { 0 }, { - 7, + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 1, 0 }, { @@ -9505,7 +9545,7 @@ local chapter_board = { 1 }, { - 1, + 2, 0 }, { @@ -9517,7 +9557,15 @@ local chapter_board = { 0 }, { - 7, + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, 0 }, { @@ -9528,60 +9576,12 @@ local chapter_board = { 0, 1 }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, { 3, 0 }, { - 0, - 1 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 1, - 0 - }, - { - 1, + 3, 0 }, { @@ -9749,11 +9749,11 @@ local chapter_board = { 0 }, { - 1, + 3, 0 }, { - 1, + 3, 0 }, { @@ -9773,11 +9773,11 @@ local chapter_board = { 0 }, { - 1, + 3, 0 }, { - 1, + 3, 0 }, { @@ -9947,11 +9947,11 @@ local chapter_board = { 0 }, { - 1, + 3, 0 }, { - 1, + 3, 0 }, { @@ -9971,11 +9971,11 @@ local chapter_board = { 0 }, { - 1, + 3, 0 }, { - 1, + 3, 0 }, { @@ -10023,7 +10023,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -10031,15 +10031,15 @@ local chapter_board = { 4 }, { - 0, - 4 + 2, + 0 }, { 0, 4 }, { - 3, + 2, 0 }, { @@ -10056,7 +10056,7 @@ local chapter_board = { }, { 0, - 3 + 4 }, { 0, @@ -10079,7 +10079,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -10087,7 +10087,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -10095,7 +10095,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -10111,7 +10111,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -10119,7 +10119,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -10195,7 +10195,7 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { @@ -10211,7 +10211,7 @@ local chapter_board = { 3 }, { - 1, + 2, 0 }, { @@ -10231,7 +10231,7 @@ local chapter_board = { 5 }, { - 5, + 0, 5 }, { @@ -10255,7 +10255,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -10263,7 +10263,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -10283,15 +10283,15 @@ local chapter_board = { 1 }, { - 3, + 0, 0 }, { - 3, + 2, 0 }, { - 3, + 0, 0 }, { @@ -10311,7 +10311,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -10319,7 +10319,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -10339,15 +10339,15 @@ local chapter_board = { 3 }, { - 3, + 0, 0 }, { - 3, + 2, 0 }, { - 3, + 0, 0 }, { @@ -10363,11 +10363,11 @@ local chapter_board = { 0 }, { - 1, + 3, 0 }, { - 3, + 2, 0 }, { @@ -10375,11 +10375,11 @@ local chapter_board = { 2 }, { - 3, + 2, 0 }, { - 1, + 3, 0 }, { @@ -10391,11 +10391,11 @@ local chapter_board = { [38]={ ["board"]={ { - 1, + 7, 0 }, { - 1, + 2, 0 }, { @@ -10408,18 +10408,18 @@ local chapter_board = { }, { 0, - 4 + 2 }, { - 1, + 2, 0 }, { - 1, + 7, 0 }, { - 1, + 7, 0 }, { @@ -10443,11 +10443,11 @@ local chapter_board = { 3 }, { - 1, + 7, 0 }, { - 1, + 7, 0 }, { @@ -10464,18 +10464,18 @@ local chapter_board = { }, { 0, - 5 + 1 }, { 2, 0 }, { - 1, + 7, 0 }, { - 1, + 7, 0 }, { @@ -10499,11 +10499,11 @@ local chapter_board = { 2 }, { - 1, + 7, 0 }, { - 1, + 7, 0 }, { @@ -10527,11 +10527,11 @@ local chapter_board = { 0 }, { - 1, + 7, 0 }, { - 1, + 7, 0 }, { @@ -10539,7 +10539,7 @@ local chapter_board = { 3 }, { - 3, + 2, 0 }, { @@ -10547,7 +10547,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -10555,15 +10555,15 @@ local chapter_board = { 5 }, { - 1, + 7, 0 }, { - 1, + 7, 0 }, { - 1, + 2, 0 }, { @@ -10579,21 +10579,21 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, + 7, 0 } }, ["mystery_box_board"]={ { - 1, + 7, 0 }, { - 1, + 2, 0 }, { @@ -10606,18 +10606,18 @@ local chapter_board = { }, { 0, - 4 + 2 }, { - 1, + 2, 0 }, { - 1, + 7, 0 }, { - 1, + 7, 0 }, { @@ -10641,11 +10641,11 @@ local chapter_board = { 3 }, { - 1, + 7, 0 }, { - 1, + 7, 0 }, { @@ -10662,18 +10662,18 @@ local chapter_board = { }, { 0, - 5 + 1 }, { 2, 0 }, { - 1, + 7, 0 }, { - 1, + 7, 0 }, { @@ -10697,11 +10697,11 @@ local chapter_board = { 2 }, { - 1, + 7, 0 }, { - 1, + 7, 0 }, { @@ -10725,11 +10725,11 @@ local chapter_board = { 0 }, { - 1, + 7, 0 }, { - 1, + 7, 0 }, { @@ -10737,7 +10737,7 @@ local chapter_board = { 3 }, { - 3, + 2, 0 }, { @@ -10745,7 +10745,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -10753,15 +10753,15 @@ local chapter_board = { 5 }, { - 1, + 7, 0 }, { - 1, + 7, 0 }, { - 1, + 2, 0 }, { @@ -10777,11 +10777,11 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, + 7, 0 } } @@ -10849,8 +10849,8 @@ local chapter_board = { 0 }, { - 13, - 1 + 2, + 0 }, { 2, @@ -10877,8 +10877,8 @@ local chapter_board = { 0 }, { - 13, - 2 + 2, + 0 }, { 2, @@ -10890,23 +10890,23 @@ local chapter_board = { }, { 0, - 1 + 3 }, { 0, - 1 + 3 }, { 0, - 1 + 3 }, { 14, 0 }, { - 13, - 3 + 2, + 0 }, { 2, @@ -10933,8 +10933,8 @@ local chapter_board = { 0 }, { - 13, - 4 + 2, + 0 }, { 2, @@ -10988,74 +10988,74 @@ local chapter_board = { }, [40]={ ["board"]={ - { - 0, - 3 - }, - { - 0, - 4 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 - }, - { - 3, - 0 - }, - { - 1, - 0 - }, { 0, 5 }, - { - 0, - 3 - }, - { - 0, - 4 - }, - { - 0, - 1 - }, - { - 0, - 3 - }, - { - 3, - 0 - }, - { - 3, - 0 - }, { 0, 2 }, { 0, - 5 + 1 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 3, + 0 + }, + { + 3, + 0 }, { 0, 5 }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 0, + 5 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, { 0, 4 @@ -11074,7 +11074,7 @@ local chapter_board = { }, { 0, - 2 + 5 }, { 0, @@ -11082,11 +11082,11 @@ local chapter_board = { }, { 0, - 2 + 1 }, { - 1, - 0 + 0, + 4 }, { 0, @@ -11100,10 +11100,6 @@ local chapter_board = { 3, 0 }, - { - 3, - 0 - }, { 2, 0 @@ -11121,7 +11117,11 @@ local chapter_board = { 0 }, { - 3, + 2, + 0 + }, + { + 2, 0 }, { @@ -11132,38 +11132,14 @@ local chapter_board = { 1, 0 }, + { + 13, + 2 + }, { 13, 1 }, - { - 13, - 2 - }, - { - 13, - 3 - }, - { - 13, - 4 - }, - { - 13, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 13, - 5 - }, { 13, 4 @@ -11172,6 +11148,18 @@ local chapter_board = { 13, 3 }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, { 13, 2 @@ -11180,79 +11168,35 @@ local chapter_board = { 13, 1 }, + { + 13, + 4 + }, + { + 13, + 3 + }, + { + 2, + 0 + }, { 1, 0 } }, ["mystery_box_board"]={ - { - 0, - 3 - }, - { - 0, - 4 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 - }, - { - 3, - 0 - }, - { - 1, - 0 - }, { 0, 5 }, - { - 0, - 3 - }, - { - 0, - 4 - }, - { - 0, - 1 - }, - { - 0, - 3 - }, - { - 3, - 0 - }, - { - 3, - 0 - }, { 0, 2 }, { 0, - 5 - }, - { - 0, - 5 + 1 }, { 0, @@ -11267,12 +11211,12 @@ local chapter_board = { 0 }, { - 14, + 3, 0 }, { 0, - 2 + 5 }, { 0, @@ -11280,11 +11224,11 @@ local chapter_board = { }, { 0, - 2 + 1 }, { - 1, - 0 + 0, + 4 }, { 0, @@ -11299,28 +11243,24 @@ local chapter_board = { 0 }, { - 3, - 0 + 0, + 5 }, { - 2, - 0 + 0, + 2 }, { - 2, - 0 + 0, + 1 }, { - 2, - 0 + 0, + 4 }, { - 2, - 0 - }, - { - 3, - 0 + 0, + 3 }, { 3, @@ -11331,16 +11271,72 @@ local chapter_board = { 0 }, { - 13, + 0, + 5 + }, + { + 0, + 2 + }, + { + 0, 1 }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, { 13, 2 }, { 13, - 3 + 1 }, { 13, @@ -11348,7 +11344,11 @@ local chapter_board = { }, { 13, - 5 + 3 + }, + { + 2, + 0 }, { 1, @@ -11360,7 +11360,11 @@ local chapter_board = { }, { 13, - 5 + 2 + }, + { + 13, + 1 }, { 13, @@ -11371,12 +11375,8 @@ local chapter_board = { 3 }, { - 13, - 2 - }, - { - 13, - 1 + 2, + 0 }, { 1, @@ -11392,7 +11392,7 @@ local chapter_board = { }, { 0, - 4 + 1 }, { 0, @@ -11400,16 +11400,16 @@ local chapter_board = { }, { 0, - 4 - }, - { - 0, - 4 + 1 }, { 0, 3 }, + { + 0, + 1 + }, { 1, 0 @@ -11428,7 +11428,7 @@ local chapter_board = { }, { 0, - 1 + 3 }, { 0, @@ -11478,70 +11478,6 @@ local chapter_board = { 2, 0 }, - { - 13, - 1 - }, - { - 2, - 0 - }, - { - 13, - 2 - }, - { - 2, - 0 - }, - { - 2, - 0 - }, - { - 2, - 0 - }, - { - 13, - 3 - }, - { - 2, - 0 - }, - { - 2, - 0 - }, - { - 2, - 0 - }, - { - 13, - 3 - }, - { - 2, - 0 - }, - { - 13, - 2 - }, - { - 2, - 0 - }, - { - 13, - 4 - }, - { - 2, - 0 - }, { 13, 5 @@ -11552,7 +11488,71 @@ local chapter_board = { }, { 13, - 4 + 5 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 13, + 5 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 13, + 5 + }, + { + 2, + 0 + }, + { + 13, + 2 + }, + { + 2, + 0 + }, + { + 13, + 2 + }, + { + 2, + 0 + }, + { + 13, + 2 + }, + { + 2, + 0 + }, + { + 13, + 2 }, { 1, @@ -11590,7 +11590,7 @@ local chapter_board = { }, { 0, - 4 + 1 }, { 0, @@ -11598,16 +11598,16 @@ local chapter_board = { }, { 0, - 4 - }, - { - 0, - 4 + 1 }, { 0, 3 }, + { + 0, + 1 + }, { 1, 0 @@ -11626,7 +11626,7 @@ local chapter_board = { }, { 0, - 1 + 3 }, { 0, @@ -11676,70 +11676,6 @@ local chapter_board = { 2, 0 }, - { - 13, - 1 - }, - { - 2, - 0 - }, - { - 13, - 2 - }, - { - 2, - 0 - }, - { - 2, - 0 - }, - { - 2, - 0 - }, - { - 13, - 3 - }, - { - 2, - 0 - }, - { - 2, - 0 - }, - { - 2, - 0 - }, - { - 13, - 3 - }, - { - 2, - 0 - }, - { - 13, - 2 - }, - { - 2, - 0 - }, - { - 13, - 4 - }, - { - 2, - 0 - }, { 13, 5 @@ -11750,14 +11686,78 @@ local chapter_board = { }, { 13, - 4 + 5 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 13, + 5 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 13, + 5 + }, + { + 2, + 0 + }, + { + 13, + 2 + }, + { + 2, + 0 + }, + { + 13, + 2 + }, + { + 2, + 0 + }, + { + 13, + 2 + }, + { + 2, + 0 + }, + { + 13, + 2 }, { 1, 0 }, { - 14, + 2, 0 }, { @@ -11773,7 +11773,7 @@ local chapter_board = { 0 }, { - 14, + 2, 0 }, { @@ -11845,23 +11845,23 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { - 3, + 2, 0 }, { - 3, + 2, 0 }, { - 3, + 2, 0 }, { - 3, + 2, 0 }, { @@ -11957,23 +11957,23 @@ local chapter_board = { 0 }, { - 1, + 3, 0 }, { - 1, + 3, 0 }, { - 1, + 3, 0 }, { - 1, + 3, 0 }, { - 1, + 3, 0 }, { diff --git a/lua/app/config/chapter_board_daily_challenge.lua b/lua/app/config/chapter_board_daily_challenge.lua index 2bbc37e7..b6666eb8 100644 --- a/lua/app/config/chapter_board_daily_challenge.lua +++ b/lua/app/config/chapter_board_daily_challenge.lua @@ -2407,39 +2407,7 @@ local chapter_board_daily_challenge = { }, { 0, - 4 - }, - { - 0, - 4 - }, - { - 0, - 2 - }, - { - 0, - 1 - }, - { - 0, - 3 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 4 + 5 }, { 0, @@ -2451,60 +2419,8 @@ local chapter_board_daily_challenge = { }, { 0, - 3 - }, - { - 1, - 0 - }, - { - 23, - 2 - }, - { - 23, - 2 - }, - { - 27, 1 }, - { - 27, - 2 - }, - { - 27, - 3 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 23, - 2 - }, - { - 23, - 2 - }, - { - 27, - 4 - }, - { - 26, - 0 - }, - { - 27, - 4 - }, { 0, 5 @@ -2513,13 +2429,97 @@ local chapter_board_daily_challenge = { 1, 0 }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 5 + }, + { + 27, + 1 + }, + { + 27, + 2 + }, + { + 27, + 1 + }, + { + 0, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 27, + 4 + }, { 14, 0 }, { - 23, - 3 + 27, + 4 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 4 }, { 27, @@ -2547,32 +2547,12 @@ local chapter_board_daily_challenge = { }, { 23, - 3 + 4 }, { 23, 5 }, - { - 23, - 5 - }, - { - 23, - 1 - }, - { - 23, - 1 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, { 23, 3 @@ -2581,17 +2561,37 @@ local chapter_board_daily_challenge = { 23, 5 }, + { + 23, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 23, + 4 + }, { 23, 5 }, { 23, - 1 + 3 }, { 23, - 1 + 5 + }, + { + 23, + 4 }, { 1, @@ -2619,7 +2619,7 @@ local chapter_board_daily_challenge = { }, { 0, - 3 + 1 }, { 1, @@ -2651,7 +2651,7 @@ local chapter_board_daily_challenge = { }, { 0, - 3 + 1 }, { 1, @@ -2675,7 +2675,7 @@ local chapter_board_daily_challenge = { }, { 27, - 3 + 1 }, { 0, @@ -2703,7 +2703,7 @@ local chapter_board_daily_challenge = { }, { 27, - 4 + 5 }, { 25, @@ -2731,7 +2731,7 @@ local chapter_board_daily_challenge = { }, { 27, - 5 + 4 }, { 0, @@ -2751,7 +2751,7 @@ local chapter_board_daily_challenge = { }, { 23, - 2 + 4 }, { 23, @@ -2763,7 +2763,7 @@ local chapter_board_daily_challenge = { }, { 23, - 5 + 1 }, { 1, @@ -2779,7 +2779,7 @@ local chapter_board_daily_challenge = { }, { 23, - 1 + 4 }, { 14, @@ -2787,7 +2787,7 @@ local chapter_board_daily_challenge = { }, { 23, - 3 + 4 }, { 1, @@ -2866,16 +2866,16 @@ local chapter_board_daily_challenge = { 5 }, { - 23, + 0, 3 }, { - 23, + 0, 2 }, { - 23, - 1 + 0, + 3 }, { 0, @@ -2890,24 +2890,24 @@ local chapter_board_daily_challenge = { 0 }, { - 0, - 5 - }, - { - 23, - 4 - }, - { - 26, + 25, 0 }, { - 23, - 2 + 25, + 0 }, { - 0, - 5 + 25, + 0 + }, + { + 25, + 0 + }, + { + 25, + 0 }, { 1, @@ -2919,15 +2919,7 @@ local chapter_board_daily_challenge = { }, { 23, - 4 - }, - { - 23, - 5 - }, - { - 23, - 4 + 3 }, { 23, @@ -2935,51 +2927,59 @@ local chapter_board_daily_challenge = { }, { 23, - 2 + 3 + }, + { + 23, + 3 + }, + { + 23, + 3 + }, + { + 23, + 3 }, { 23, 1 }, + { + 26, + 0 + }, { 23, - 2 + 1 }, { 26, 0 }, + { + 23, + 1 + }, + { + 26, + 0 + }, + { + 23, + 1 + }, { 23, 4 }, { - 26, - 0 + 23, + 4 }, { 23, - 2 - }, - { - 26, - 0 - }, - { - 23, - 2 - }, - { - 23, - 1 - }, - { - 23, - 2 - }, - { - 23, - 3 + 4 }, { 14, @@ -2987,7 +2987,7 @@ local chapter_board_daily_challenge = { }, { 23, - 1 + 4 }, { 23, @@ -2995,16 +2995,12 @@ local chapter_board_daily_challenge = { }, { 23, - 3 + 4 } } }, [16]={ ["board_daily_challenge"]={ - { - 1, - 0 - }, { 1, 0 @@ -3013,33 +3009,9 @@ local chapter_board_daily_challenge = { 0, 3 }, - { - 24, - 0 - }, - { - 24, - 0 - }, { 0, - 2 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 + 5 }, { 0, @@ -3069,6 +3041,30 @@ local chapter_board_daily_challenge = { 0, 4 }, + { + 0, + 5 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 3 + }, { 0, 4 @@ -3079,14 +3075,18 @@ local chapter_board_daily_challenge = { }, { 0, - 5 + 4 }, { 0, - 5 + 1 }, { - 23, + 1, + 0 + }, + { + 0, 1 }, { @@ -3094,7 +3094,7 @@ local chapter_board_daily_challenge = { 0 }, { - 23, + 0, 3 }, { @@ -3102,15 +3102,15 @@ local chapter_board_daily_challenge = { 4 }, { - 23, - 5 + 0, + 1 }, { 24, 0 }, { - 23, + 0, 3 }, { @@ -3194,8 +3194,8 @@ local chapter_board_daily_challenge = { 0 }, { - 23, - 3 + 1, + 0 } } }, @@ -3223,7 +3223,7 @@ local chapter_board_daily_challenge = { }, { 0, - 4 + 1 }, { 1, @@ -3279,7 +3279,7 @@ local chapter_board_daily_challenge = { }, { 0, - 5 + 2 }, { 32, @@ -3303,11 +3303,11 @@ local chapter_board_daily_challenge = { }, { 4, - 4 + 2 }, { 4, - 5 + 1 }, { 1, @@ -3395,7 +3395,7 @@ local chapter_board_daily_challenge = { }, { 1, - 0 + 1 } } }, @@ -4122,15 +4122,15 @@ local chapter_board_daily_challenge = { 2 }, { - 1, + 31, 0 }, { - 1, + 31, 0 }, { - 1, + 31, 0 }, { @@ -4146,23 +4146,23 @@ local chapter_board_daily_challenge = { 1 }, { - 1, + 31, 0 }, { - 1, + 31, 0 }, { - 1, + 31, 0 }, { - 1, + 31, 0 }, { - 1, + 31, 0 }, { @@ -4170,31 +4170,31 @@ local chapter_board_daily_challenge = { 3 }, { - 1, + 31, 0 }, { - 1, + 31, 0 }, { - 1, + 31, 0 }, { - 1, + 31, 0 }, { - 1, + 31, 0 }, { - 1, + 31, 0 }, { - 1, + 31, 0 } } @@ -4317,6 +4317,34 @@ local chapter_board_daily_challenge = { 1, 0 }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 34, + 3 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, { 34, 1 @@ -4325,45 +4353,17 @@ local chapter_board_daily_challenge = { 34, 2 }, - { - 34, - 3 - }, - { - 34, - 4 - }, - { - 34, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, { 14, 0 }, { - 1, + 34, 0 }, { - 1, - 0 + 34, + 5 }, { 1, @@ -4499,7 +4499,7 @@ local chapter_board_daily_challenge = { }, { 0, - 2 + 3 }, { 32, @@ -4522,12 +4522,12 @@ local chapter_board_daily_challenge = { 0 }, { - 0, - 2 + 32, + 0 }, { - 0, - 2 + 32, + 0 }, { 32, diff --git a/lua/app/config/chapter_daily_challenge.lua b/lua/app/config/chapter_daily_challenge.lua index 8d1b14a4..62f228b6 100644 --- a/lua/app/config/chapter_daily_challenge.lua +++ b/lua/app/config/chapter_daily_challenge.lua @@ -55,6 +55,14 @@ local chapter_daily_challenge = { ["id_for_nothing"]="Ug==", ["num"]=1, ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=10, + ["num_for_nothing"]="Vwg=" } }, ["begin_buff_id"]={ @@ -276,6 +284,14 @@ local chapter_daily_challenge = { ["id_for_nothing"]="Ug==", ["num"]=1, ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=10, + ["num_for_nothing"]="Vwg=" } }, ["begin_buff_id"]={ @@ -497,6 +513,14 @@ local chapter_daily_challenge = { ["id_for_nothing"]="Ug==", ["num"]=1, ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=10, + ["num_for_nothing"]="Vwg=" } }, ["begin_buff_id"]={ @@ -718,6 +742,14 @@ local chapter_daily_challenge = { ["id_for_nothing"]="Ug==", ["num"]=1, ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=10, + ["num_for_nothing"]="Vwg=" } }, ["begin_buff_id"]={ @@ -939,6 +971,14 @@ local chapter_daily_challenge = { ["id_for_nothing"]="Ug==", ["num"]=1, ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=10, + ["num_for_nothing"]="Vwg=" } }, ["begin_buff_id"]={ @@ -1160,6 +1200,14 @@ local chapter_daily_challenge = { ["id_for_nothing"]="Ug==", ["num"]=1, ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=10, + ["num_for_nothing"]="Vwg=" } }, ["begin_buff_id"]={ @@ -1381,6 +1429,14 @@ local chapter_daily_challenge = { ["id_for_nothing"]="Ug==", ["num"]=1, ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=10, + ["num_for_nothing"]="Vwg=" } }, ["begin_buff_id"]={ diff --git a/lua/app/config/mall_daily.lua b/lua/app/config/mall_daily.lua index 15eba596..06037913 100644 --- a/lua/app/config/mall_daily.lua +++ b/lua/app/config/mall_daily.lua @@ -1420,6 +1420,86 @@ local mall_daily = { ["id_for_nothing"]="UwtcA2c=", ["num"]=6, ["num_for_nothing"]="UA==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=14001, + ["id_for_nothing"]="VwxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=14002, + ["id_for_nothing"]="VwxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=24001, + ["id_for_nothing"]="VAxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=24002, + ["id_for_nothing"]="VAxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=34001, + ["id_for_nothing"]="VQxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=34002, + ["id_for_nothing"]="VQxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=44001, + ["id_for_nothing"]="UgxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=44002, + ["id_for_nothing"]="UgxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=54001, + ["id_for_nothing"]="UwxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=54002, + ["id_for_nothing"]="UwxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" } }, ["weight"]={ @@ -1467,7 +1547,17 @@ local mall_daily = { 5, 5, 5, - 5 + 5, + 32, + 32, + 32, + 32, + 32, + 32, + 32, + 32, + 32, + 32 }, ["cost"]={ { @@ -1829,6 +1919,86 @@ local mall_daily = { ["id_for_nothing"]="VA==", ["num"]=30, ["num_for_nothing"]="VQg=" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" } } }, @@ -2193,6 +2363,86 @@ local mall_daily = { ["id_for_nothing"]="UwtcA2c=", ["num"]=6, ["num_for_nothing"]="UA==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=14001, + ["id_for_nothing"]="VwxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=14002, + ["id_for_nothing"]="VwxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=24001, + ["id_for_nothing"]="VAxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=24002, + ["id_for_nothing"]="VAxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=34001, + ["id_for_nothing"]="VQxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=34002, + ["id_for_nothing"]="VQxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=44001, + ["id_for_nothing"]="UgxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=44002, + ["id_for_nothing"]="UgxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=54001, + ["id_for_nothing"]="UwxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=54002, + ["id_for_nothing"]="UwxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" } }, ["weight"]={ @@ -2240,7 +2490,17 @@ local mall_daily = { 5, 5, 5, - 5 + 5, + 32, + 32, + 32, + 32, + 32, + 32, + 32, + 32, + 32, + 32 }, ["cost"]={ { @@ -2602,6 +2862,86 @@ local mall_daily = { ["id_for_nothing"]="VA==", ["num"]=30, ["num_for_nothing"]="VQg=" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" } } }, @@ -2966,6 +3306,86 @@ local mall_daily = { ["id_for_nothing"]="UwtcA2c=", ["num"]=6, ["num_for_nothing"]="UA==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=14001, + ["id_for_nothing"]="VwxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=14002, + ["id_for_nothing"]="VwxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=24001, + ["id_for_nothing"]="VAxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=24002, + ["id_for_nothing"]="VAxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=34001, + ["id_for_nothing"]="VQxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=34002, + ["id_for_nothing"]="VQxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=44001, + ["id_for_nothing"]="UgxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=44002, + ["id_for_nothing"]="UgxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=54001, + ["id_for_nothing"]="UwxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=54002, + ["id_for_nothing"]="UwxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" } }, ["weight"]={ @@ -3013,7 +3433,17 @@ local mall_daily = { 5, 5, 5, - 5 + 5, + 32, + 32, + 32, + 32, + 32, + 32, + 32, + 32, + 32, + 32 }, ["cost"]={ { @@ -3375,6 +3805,86 @@ local mall_daily = { ["id_for_nothing"]="VA==", ["num"]=30, ["num_for_nothing"]="VQg=" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" } } } diff --git a/lua/app/config/monster_chapter.lua b/lua/app/config/monster_chapter.lua index 204ff255..3db99c9b 100644 --- a/lua/app/config/monster_chapter.lua +++ b/lua/app/config/monster_chapter.lua @@ -25,7 +25,7 @@ local monster_chapter = { }, [301]={ ["monster_base"]=10003, - ["hp"]=36000000, + ["hp"]=33000000, ["atk"]=600000, ["atk_times"]=2, ["hurt_skill"]={ @@ -66,7 +66,7 @@ local monster_chapter = { [601]={ ["monster_base"]=10008, ["hp"]=24000000, - ["atk"]=750000, + ["atk"]=600000, ["atk_times"]=2, ["hurt_skill"]={ 20022, @@ -78,7 +78,7 @@ local monster_chapter = { [701]={ ["monster_base"]=10004, ["hp"]=24000000, - ["atk"]=750000, + ["atk"]=600000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -90,7 +90,7 @@ local monster_chapter = { [801]={ ["monster_base"]=10001, ["hp"]=30000000, - ["atk"]=750000, + ["atk"]=600000, ["atk_times"]=2, ["hurt_skill"]={ 20001, @@ -102,7 +102,7 @@ local monster_chapter = { [901]={ ["monster_base"]=10007, ["hp"]=36000000, - ["atk"]=840000, + ["atk"]=670000, ["atk_times"]=2, ["hurt_skill"]={ 20019, @@ -115,7 +115,7 @@ local monster_chapter = { ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=60000000, - ["atk"]=1020000, + ["atk"]=820000, ["atk_times"]=3, ["hurt_skill"]={ 30040, @@ -130,7 +130,7 @@ local monster_chapter = { [1101]={ ["monster_base"]=10006, ["hp"]=45000000, - ["atk"]=900000, + ["atk"]=720000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -142,7 +142,7 @@ local monster_chapter = { [1201]={ ["monster_base"]=10007, ["hp"]=51000000, - ["atk"]=930000, + ["atk"]=740000, ["atk_times"]=2, ["hurt_skill"]={ 20019, @@ -154,7 +154,7 @@ local monster_chapter = { [1301]={ ["monster_base"]=10002, ["hp"]=60000000, - ["atk"]=960000, + ["atk"]=770000, ["atk_times"]=2, ["hurt_skill"]={ 20004, @@ -166,7 +166,7 @@ local monster_chapter = { [1401]={ ["monster_base"]=10005, ["hp"]=66000000, - ["atk"]=990000, + ["atk"]=790000, ["atk_times"]=2, ["hurt_skill"]={ 20013, @@ -179,7 +179,7 @@ local monster_chapter = { ["monster_base"]=20015, ["is_boss"]=2, ["hp"]=108000000, - ["atk"]=1140000, + ["atk"]=910000, ["atk_times"]=3, ["hurt_skill"]={ 30043, @@ -197,7 +197,7 @@ local monster_chapter = { [1601]={ ["monster_base"]=10009, ["hp"]=18000000, - ["atk"]=750000, + ["atk"]=630000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -209,7 +209,7 @@ local monster_chapter = { [1701]={ ["monster_base"]=10001, ["hp"]=24000000, - ["atk"]=750000, + ["atk"]=630000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -221,7 +221,7 @@ local monster_chapter = { [1801]={ ["monster_base"]=10038, ["hp"]=33000000, - ["atk"]=750000, + ["atk"]=630000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -233,7 +233,7 @@ local monster_chapter = { [1901]={ ["monster_base"]=10007, ["hp"]=42000000, - ["atk"]=840000, + ["atk"]=710000, ["atk_times"]=3, ["hurt_skill"]={ 20019, @@ -246,7 +246,7 @@ local monster_chapter = { ["monster_base"]=20004, ["is_boss"]=1, ["hp"]=60000000, - ["atk"]=1020000, + ["atk"]=860000, ["atk_times"]=4, ["hurt_skill"]={ 30010, @@ -261,7 +261,7 @@ local monster_chapter = { [2101]={ ["monster_base"]=10038, ["hp"]=45000000, - ["atk"]=900000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -273,7 +273,7 @@ local monster_chapter = { [2201]={ ["monster_base"]=10007, ["hp"]=54000000, - ["atk"]=930000, + ["atk"]=780000, ["atk_times"]=3, ["hurt_skill"]={ 20019, @@ -285,7 +285,7 @@ local monster_chapter = { [2301]={ ["monster_base"]=10010, ["hp"]=60000000, - ["atk"]=960000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -297,7 +297,7 @@ local monster_chapter = { [2401]={ ["monster_base"]=10001, ["hp"]=66000000, - ["atk"]=1020000, + ["atk"]=860000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -310,7 +310,7 @@ local monster_chapter = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=117000000, - ["atk"]=1170000, + ["atk"]=980000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -328,7 +328,7 @@ local monster_chapter = { [2601]={ ["monster_base"]=10039, ["hp"]=60000000, - ["atk"]=990000, + ["atk"]=830000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -340,7 +340,7 @@ local monster_chapter = { [2701]={ ["monster_base"]=10002, ["hp"]=72000000, - ["atk"]=1020000, + ["atk"]=860000, ["atk_times"]=3, ["hurt_skill"]={ 20004, @@ -352,7 +352,7 @@ local monster_chapter = { [2801]={ ["monster_base"]=10001, ["hp"]=81000000, - ["atk"]=1050000, + ["atk"]=880000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -364,7 +364,7 @@ local monster_chapter = { [2901]={ ["monster_base"]=10009, ["hp"]=90000000, - ["atk"]=1080000, + ["atk"]=910000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -377,7 +377,7 @@ local monster_chapter = { ["monster_base"]=20012, ["is_boss"]=2, ["hp"]=138000000, - ["atk"]=1260000, + ["atk"]=1060000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -392,7 +392,7 @@ local monster_chapter = { [3101]={ ["monster_base"]=10010, ["hp"]=24000000, - ["atk"]=750000, + ["atk"]=660000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -404,7 +404,7 @@ local monster_chapter = { [3201]={ ["monster_base"]=10039, ["hp"]=33000000, - ["atk"]=810000, + ["atk"]=710000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -416,7 +416,7 @@ local monster_chapter = { [3301]={ ["monster_base"]=10040, ["hp"]=36000000, - ["atk"]=870000, + ["atk"]=770000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -428,7 +428,7 @@ local monster_chapter = { [3401]={ ["monster_base"]=10038, ["hp"]=45000000, - ["atk"]=930000, + ["atk"]=820000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -441,7 +441,7 @@ local monster_chapter = { ["monster_base"]=20011, ["is_boss"]=1, ["hp"]=69000000, - ["atk"]=1110000, + ["atk"]=980000, ["atk_times"]=4, ["hurt_skill"]={ 30031, @@ -456,7 +456,7 @@ local monster_chapter = { [3601]={ ["monster_base"]=10009, ["hp"]=45000000, - ["atk"]=930000, + ["atk"]=820000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -468,7 +468,7 @@ local monster_chapter = { [3701]={ ["monster_base"]=10010, ["hp"]=51000000, - ["atk"]=990000, + ["atk"]=870000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -480,7 +480,7 @@ local monster_chapter = { [3801]={ ["monster_base"]=10038, ["hp"]=60000000, - ["atk"]=990000, + ["atk"]=870000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -492,7 +492,7 @@ local monster_chapter = { [3901]={ ["monster_base"]=10040, ["hp"]=66000000, - ["atk"]=1050000, + ["atk"]=920000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -505,7 +505,7 @@ local monster_chapter = { ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=126000000, - ["atk"]=1200000, + ["atk"]=1060000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -520,7 +520,7 @@ local monster_chapter = { [4101]={ ["monster_base"]=10039, ["hp"]=69000000, - ["atk"]=1050000, + ["atk"]=920000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -532,7 +532,7 @@ local monster_chapter = { [4201]={ ["monster_base"]=10040, ["hp"]=84000000, - ["atk"]=1110000, + ["atk"]=980000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -544,7 +544,7 @@ local monster_chapter = { [4301]={ ["monster_base"]=10038, ["hp"]=93000000, - ["atk"]=1170000, + ["atk"]=1030000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -556,7 +556,7 @@ local monster_chapter = { [4401]={ ["monster_base"]=10009, ["hp"]=105000000, - ["atk"]=1230000, + ["atk"]=1080000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -569,7 +569,7 @@ local monster_chapter = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=156000000, - ["atk"]=1320000, + ["atk"]=1160000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -587,7 +587,7 @@ local monster_chapter = { [4601]={ ["monster_base"]=10040, ["hp"]=120000000, - ["atk"]=1290000, + ["atk"]=1140000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -599,7 +599,7 @@ local monster_chapter = { [4701]={ ["monster_base"]=10009, ["hp"]=132000000, - ["atk"]=1350000, + ["atk"]=1190000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -611,7 +611,7 @@ local monster_chapter = { [4801]={ ["monster_base"]=10038, ["hp"]=150000000, - ["atk"]=1410000, + ["atk"]=1240000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -623,7 +623,7 @@ local monster_chapter = { [4901]={ ["monster_base"]=10039, ["hp"]=162000000, - ["atk"]=1470000, + ["atk"]=1290000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -636,7 +636,7 @@ local monster_chapter = { ["monster_base"]=20029, ["is_boss"]=2, ["hp"]=270000000, - ["atk"]=2010000, + ["atk"]=1770000, ["atk_times"]=4, ["hurt_skill"]={ 30085, @@ -651,7 +651,7 @@ local monster_chapter = { [5101]={ ["monster_base"]=10016, ["hp"]=25500000, - ["atk"]=1050000, + ["atk"]=900000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -663,7 +663,7 @@ local monster_chapter = { [5201]={ ["monster_base"]=10002, ["hp"]=36000000, - ["atk"]=1110000, + ["atk"]=950000, ["atk_times"]=3, ["hurt_skill"]={ 20004, @@ -675,7 +675,7 @@ local monster_chapter = { [5301]={ ["monster_base"]=10003, ["hp"]=40500000, - ["atk"]=1170000, + ["atk"]=1000000, ["atk_times"]=3, ["hurt_skill"]={ 20007, @@ -687,7 +687,7 @@ local monster_chapter = { [5401]={ ["monster_base"]=10019, ["hp"]=54000000, - ["atk"]=1230000, + ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -700,7 +700,7 @@ local monster_chapter = { ["monster_base"]=20002, ["is_boss"]=1, ["hp"]=75000000, - ["atk"]=1410000, + ["atk"]=1210000, ["atk_times"]=4, ["hurt_skill"]={ 30004, @@ -715,7 +715,7 @@ local monster_chapter = { [5601]={ ["monster_base"]=10007, ["hp"]=51000000, - ["atk"]=1290000, + ["atk"]=1110000, ["atk_times"]=3, ["hurt_skill"]={ 20019, @@ -727,7 +727,7 @@ local monster_chapter = { [5701]={ ["monster_base"]=10017, ["hp"]=57000000, - ["atk"]=1470000, + ["atk"]=1260000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -739,7 +739,7 @@ local monster_chapter = { [5801]={ ["monster_base"]=10004, ["hp"]=66000000, - ["atk"]=1350000, + ["atk"]=1160000, ["atk_times"]=3, ["hurt_skill"]={ 20010, @@ -751,7 +751,7 @@ local monster_chapter = { [5901]={ ["monster_base"]=10018, ["hp"]=75000000, - ["atk"]=1530000, + ["atk"]=1310000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -764,7 +764,7 @@ local monster_chapter = { ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=156000000, - ["atk"]=1710000, + ["atk"]=1470000, ["atk_times"]=4, ["hurt_skill"]={ 30040, @@ -782,7 +782,7 @@ local monster_chapter = { [6101]={ ["monster_base"]=10019, ["hp"]=90000000, - ["atk"]=1590000, + ["atk"]=1360000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -794,7 +794,7 @@ local monster_chapter = { [6201]={ ["monster_base"]=10008, ["hp"]=102000000, - ["atk"]=1650000, + ["atk"]=1410000, ["atk_times"]=3, ["hurt_skill"]={ 20022, @@ -806,7 +806,7 @@ local monster_chapter = { [6301]={ ["monster_base"]=10016, ["hp"]=108000000, - ["atk"]=1710000, + ["atk"]=1470000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -818,7 +818,7 @@ local monster_chapter = { [6401]={ ["monster_base"]=10003, ["hp"]=117000000, - ["atk"]=1770000, + ["atk"]=1520000, ["atk_times"]=3, ["hurt_skill"]={ 20007, @@ -831,7 +831,7 @@ local monster_chapter = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=213000000, - ["atk"]=1770000, + ["atk"]=1520000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -849,7 +849,7 @@ local monster_chapter = { [6601]={ ["monster_base"]=10018, ["hp"]=141000000, - ["atk"]=1830000, + ["atk"]=1570000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -861,7 +861,7 @@ local monster_chapter = { [6701]={ ["monster_base"]=10004, ["hp"]=150000000, - ["atk"]=1890000, + ["atk"]=1620000, ["atk_times"]=3, ["hurt_skill"]={ 20010, @@ -873,7 +873,7 @@ local monster_chapter = { [6801]={ ["monster_base"]=10007, ["hp"]=165000000, - ["atk"]=1950000, + ["atk"]=1670000, ["atk_times"]=3, ["hurt_skill"]={ 20019, @@ -885,7 +885,7 @@ local monster_chapter = { [6901]={ ["monster_base"]=10017, ["hp"]=180000000, - ["atk"]=2010000, + ["atk"]=1720000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -898,7 +898,7 @@ local monster_chapter = { ["monster_base"]=20001, ["is_boss"]=2, ["hp"]=285000000, - ["atk"]=2760000, + ["atk"]=2370000, ["atk_times"]=4, ["hurt_skill"]={ 30001, @@ -913,7 +913,7 @@ local monster_chapter = { [7101]={ ["monster_base"]=10042, ["hp"]=25250000, - ["atk"]=1090000, + ["atk"]=1030000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -925,7 +925,7 @@ local monster_chapter = { [7201]={ ["monster_base"]=10041, ["hp"]=35640000, - ["atk"]=1150000, + ["atk"]=1090000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -937,7 +937,7 @@ local monster_chapter = { [7301]={ ["monster_base"]=10013, ["hp"]=40100000, - ["atk"]=1210000, + ["atk"]=1150000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -949,7 +949,7 @@ local monster_chapter = { [7401]={ ["monster_base"]=10019, ["hp"]=53460000, - ["atk"]=1260000, + ["atk"]=1200000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -962,7 +962,7 @@ local monster_chapter = { ["monster_base"]=20022, ["is_boss"]=1, ["hp"]=74250000, - ["atk"]=1410000, + ["atk"]=1390000, ["atk_times"]=4, ["hurt_skill"]={ 30064, @@ -980,7 +980,7 @@ local monster_chapter = { [7601]={ ["monster_base"]=10001, ["hp"]=55540000, - ["atk"]=1440000, + ["atk"]=1270000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -992,7 +992,7 @@ local monster_chapter = { [7701]={ ["monster_base"]=10005, ["hp"]=62070000, - ["atk"]=1650000, + ["atk"]=1440000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -1004,7 +1004,7 @@ local monster_chapter = { [7801]={ ["monster_base"]=10041, ["hp"]=71870000, - ["atk"]=1500000, + ["atk"]=1330000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -1016,7 +1016,7 @@ local monster_chapter = { [7901]={ ["monster_base"]=10013, ["hp"]=81680000, - ["atk"]=1710000, + ["atk"]=1500000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -1026,10 +1026,74 @@ local monster_chapter = { ["monster_exp"]=12000 }, [8001]={ - ["monster_base"]=20023, + ["monster_base"]=20002, ["is_boss"]=1, ["hp"]=158600000, - ["atk"]=1760000, + ["atk"]=1680000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30004, + 30005, + 30006 + }, + ["skill"]={ + 10019 + }, + ["monster_exp"]=12000 + }, + [8101]={ + ["monster_base"]=10042, + ["hp"]=91480000, + ["atk"]=1560000, + ["atk_times"]=3, + ["hurt_skill"]={ + 20121, + 20122, + 20123 + }, + ["monster_exp"]=16000 + }, + [8201]={ + ["monster_base"]=10001, + ["hp"]=103650000, + ["atk"]=1610000, + ["atk_times"]=3, + ["hurt_skill"]={ + 20001, + 20002, + 20003 + }, + ["monster_exp"]=18000 + }, + [8301]={ + ["monster_base"]=10013, + ["hp"]=109890000, + ["atk"]=1680000, + ["atk_times"]=3, + ["hurt_skill"]={ + 20034, + 20035, + 20036 + }, + ["monster_exp"]=21000 + }, + [8401]={ + ["monster_base"]=10044, + ["hp"]=119100000, + ["atk"]=1740000, + ["atk_times"]=3, + ["hurt_skill"]={ + 20127, + 20128, + 20129 + }, + ["monster_exp"]=22000 + }, + [8501]={ + ["monster_base"]=20023, + ["is_boss"]=1, + ["hp"]=216510000, + ["atk"]=1740000, ["atk_times"]=4, ["hurt_skill"]={ 30067, @@ -1042,79 +1106,12 @@ local monster_chapter = { ["passive_skill"]={ 10013 }, - ["monster_exp"]=12000 - }, - [8101]={ - ["monster_base"]=10042, - ["hp"]=91480000, - ["atk"]=1650000, - ["atk_times"]=3, - ["hurt_skill"]={ - 20121, - 20122, - 20123 - }, - ["monster_exp"]=16000 - }, - [8201]={ - ["monster_base"]=10001, - ["hp"]=103650000, - ["atk"]=1710000, - ["atk_times"]=3, - ["hurt_skill"]={ - 20001, - 20002, - 20003 - }, - ["monster_exp"]=18000 - }, - [8301]={ - ["monster_base"]=10013, - ["hp"]=109890000, - ["atk"]=1760000, - ["atk_times"]=3, - ["hurt_skill"]={ - 20034, - 20035, - 20036 - }, - ["monster_exp"]=21000 - }, - [8401]={ - ["monster_base"]=10044, - ["hp"]=119100000, - ["atk"]=1820000, - ["atk_times"]=3, - ["hurt_skill"]={ - 20127, - 20128, - 20129 - }, - ["monster_exp"]=22000 - }, - [8501]={ - ["monster_base"]=20022, - ["is_boss"]=1, - ["hp"]=216510000, - ["atk"]=1820000, - ["atk_times"]=4, - ["hurt_skill"]={ - 30064, - 30065, - 30066 - }, - ["skill"]={ - 10023 - }, - ["passive_skill"]={ - 10013 - }, ["monster_exp"]=24000 }, [8601]={ ["monster_base"]=10041, ["hp"]=156820000, - ["atk"]=2060000, + ["atk"]=1800000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -1126,7 +1123,7 @@ local monster_chapter = { [8701]={ ["monster_base"]=10001, ["hp"]=166910000, - ["atk"]=2150000, + ["atk"]=1850000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -1138,7 +1135,7 @@ local monster_chapter = { [8801]={ ["monster_base"]=10042, ["hp"]=183550000, - ["atk"]=2210000, + ["atk"]=1910000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -1150,7 +1147,7 @@ local monster_chapter = { [8901]={ ["monster_base"]=10044, ["hp"]=200480000, - ["atk"]=2260000, + ["atk"]=1970000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -1163,7 +1160,7 @@ local monster_chapter = { ["monster_base"]=30019, ["is_boss"]=2, ["hp"]=324920000, - ["atk"]=3150000, + ["atk"]=2710000, ["atk_times"]=4, ["hurt_skill"]={ 40029, @@ -1183,7 +1180,7 @@ local monster_chapter = { [9101]={ ["monster_base"]=10041, ["hp"]=31430000, - ["atk"]=1380000, + ["atk"]=1170000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -1195,7 +1192,7 @@ local monster_chapter = { [9201]={ ["monster_base"]=10001, ["hp"]=44230000, - ["atk"]=1440000, + ["atk"]=1240000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -1207,7 +1204,7 @@ local monster_chapter = { [9301]={ ["monster_base"]=10013, ["hp"]=49760000, - ["atk"]=1520000, + ["atk"]=1300000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -1219,7 +1216,7 @@ local monster_chapter = { [9401]={ ["monster_base"]=10044, ["hp"]=66350000, - ["atk"]=1580000, + ["atk"]=1360000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -1232,7 +1229,7 @@ local monster_chapter = { ["monster_base"]=20026, ["is_boss"]=1, ["hp"]=92250000, - ["atk"]=1780000, + ["atk"]=1570000, ["atk_times"]=4, ["hurt_skill"]={ 30076, @@ -1250,7 +1247,7 @@ local monster_chapter = { [9601]={ ["monster_base"]=10001, ["hp"]=62860000, - ["atk"]=1660000, + ["atk"]=1440000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -1262,7 +1259,7 @@ local monster_chapter = { [9701]={ ["monster_base"]=10042, ["hp"]=70130000, - ["atk"]=1860000, + ["atk"]=1630000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -1274,7 +1271,7 @@ local monster_chapter = { [9801]={ ["monster_base"]=10005, ["hp"]=81190000, - ["atk"]=1720000, + ["atk"]=1510000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -1286,7 +1283,7 @@ local monster_chapter = { [9901]={ ["monster_base"]=10013, ["hp"]=92250000, - ["atk"]=1950000, + ["atk"]=1700000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -1299,7 +1296,7 @@ local monster_chapter = { ["monster_base"]=20022, ["is_boss"]=1, ["hp"]=174600000, - ["atk"]=1950000, + ["atk"]=1900000, ["atk_times"]=4, ["hurt_skill"]={ 30064, @@ -1317,7 +1314,7 @@ local monster_chapter = { [10101]={ ["monster_base"]=10001, ["hp"]=100690000, - ["atk"]=1830000, + ["atk"]=1770000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -1329,7 +1326,7 @@ local monster_chapter = { [10201]={ ["monster_base"]=10042, ["hp"]=114070000, - ["atk"]=1920000, + ["atk"]=1820000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -1341,7 +1338,7 @@ local monster_chapter = { [10301]={ ["monster_base"]=10013, ["hp"]=121060000, - ["atk"]=1970000, + ["atk"]=1900000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -1353,7 +1350,7 @@ local monster_chapter = { [10401]={ ["monster_base"]=10001, ["hp"]=130950000, - ["atk"]=2030000, + ["atk"]=1970000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -1363,28 +1360,28 @@ local monster_chapter = { ["monster_exp"]=22000 }, [10501]={ - ["monster_base"]=20023, + ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=238040000, - ["atk"]=2000000, + ["atk"]=1970000, ["atk_times"]=4, ["hurt_skill"]={ - 30067, - 30068, - 30069 + 30040, + 30041, + 30042 }, ["skill"]={ - 10063 + 10016 }, ["passive_skill"]={ - 10013 + 10010 }, ["monster_exp"]=24000 }, [10601]={ ["monster_base"]=10042, ["hp"]=161510000, - ["atk"]=2140000, + ["atk"]=2040000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -1396,7 +1393,7 @@ local monster_chapter = { [10701]={ ["monster_base"]=10044, ["hp"]=171980000, - ["atk"]=2230000, + ["atk"]=2090000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -1408,7 +1405,7 @@ local monster_chapter = { [10801]={ ["monster_base"]=10013, ["hp"]=189150000, - ["atk"]=2280000, + ["atk"]=2160000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -1420,7 +1417,7 @@ local monster_chapter = { [10901]={ ["monster_base"]=10041, ["hp"]=206610000, - ["atk"]=2340000, + ["atk"]=2230000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -1433,7 +1430,7 @@ local monster_chapter = { ["monster_base"]=20025, ["is_boss"]=2, ["hp"]=355890000, - ["atk"]=3410000, + ["atk"]=3060000, ["atk_times"]=4, ["hurt_skill"]={ 30073, @@ -1451,7 +1448,7 @@ local monster_chapter = { [11101]={ ["monster_base"]=10010, ["hp"]=34970000, - ["atk"]=1600000, + ["atk"]=1320000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -1463,7 +1460,7 @@ local monster_chapter = { [11201]={ ["monster_base"]=10009, ["hp"]=49070000, - ["atk"]=1680000, + ["atk"]=1400000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -1475,7 +1472,7 @@ local monster_chapter = { [11301]={ ["monster_base"]=10038, ["hp"]=55270000, - ["atk"]=1770000, + ["atk"]=1470000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -1487,7 +1484,7 @@ local monster_chapter = { [11401]={ ["monster_base"]=10039, ["hp"]=73600000, - ["atk"]=1850000, + ["atk"]=1530000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -1500,7 +1497,7 @@ local monster_chapter = { ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=102370000, - ["atk"]=2010000, + ["atk"]=1770000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -1515,7 +1512,7 @@ local monster_chapter = { [11601]={ ["monster_base"]=10013, ["hp"]=69650000, - ["atk"]=1900000, + ["atk"]=1620000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -1527,7 +1524,7 @@ local monster_chapter = { [11701]={ ["monster_base"]=10016, ["hp"]=77830000, - ["atk"]=2150000, + ["atk"]=1840000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -1539,7 +1536,7 @@ local monster_chapter = { [11801]={ ["monster_base"]=10015, ["hp"]=89960000, - ["atk"]=1990000, + ["atk"]=1700000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -1551,7 +1548,7 @@ local monster_chapter = { [11901]={ ["monster_base"]=10017, ["hp"]=102370000, - ["atk"]=2240000, + ["atk"]=1910000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -1564,7 +1561,7 @@ local monster_chapter = { ["monster_base"]=20007, ["is_boss"]=1, ["hp"]=193450000, - ["atk"]=2210000, + ["atk"]=2140000, ["atk_times"]=4, ["hurt_skill"]={ 30019, @@ -1582,7 +1579,7 @@ local monster_chapter = { [12101]={ ["monster_base"]=10018, ["hp"]=111670000, - ["atk"]=2130000, + ["atk"]=1990000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -1594,7 +1591,7 @@ local monster_chapter = { [12201]={ ["monster_base"]=10003, ["hp"]=126340000, - ["atk"]=2180000, + ["atk"]=2050000, ["atk_times"]=3, ["hurt_skill"]={ 20007, @@ -1606,7 +1603,7 @@ local monster_chapter = { [12301]={ ["monster_base"]=10006, ["hp"]=134230000, - ["atk"]=2260000, + ["atk"]=2140000, ["atk_times"]=3, ["hurt_skill"]={ 20016, @@ -1618,7 +1615,7 @@ local monster_chapter = { [12401]={ ["monster_base"]=10014, ["hp"]=145230000, - ["atk"]=2320000, + ["atk"]=2220000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -1628,28 +1625,25 @@ local monster_chapter = { ["monster_exp"]=22000 }, [12501]={ - ["monster_base"]=20025, + ["monster_base"]=20001, ["is_boss"]=1, ["hp"]=276360000, - ["atk"]=2400000, + ["atk"]=2220000, ["atk_times"]=4, ["hurt_skill"]={ - 30073, - 30074, - 30075 + 30001, + 30002, + 30003 }, ["skill"]={ - 10062 - }, - ["passive_skill"]={ - 10013 + 10020 }, ["monster_exp"]=24000 }, [12601]={ ["monster_base"]=10030, ["hp"]=183020000, - ["atk"]=2510000, + ["atk"]=2300000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -1661,7 +1655,7 @@ local monster_chapter = { [12701]={ ["monster_base"]=10032, ["hp"]=194860000, - ["atk"]=2590000, + ["atk"]=2350000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -1673,7 +1667,7 @@ local monster_chapter = { [12801]={ ["monster_base"]=10031, ["hp"]=214320000, - ["atk"]=2680000, + ["atk"]=2430000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -1685,7 +1679,7 @@ local monster_chapter = { [12901]={ ["monster_base"]=10033, ["hp"]=234060000, - ["atk"]=2730000, + ["atk"]=2510000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -1698,7 +1692,7 @@ local monster_chapter = { ["monster_base"]=20005, ["is_boss"]=2, ["hp"]=369980000, - ["atk"]=3640000, + ["atk"]=3440000, ["atk_times"]=4, ["hurt_skill"]={ 30013, @@ -1716,7 +1710,7 @@ local monster_chapter = { [13101]={ ["monster_base"]=10030, ["hp"]=38780000, - ["atk"]=1810000, + ["atk"]=1470000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -1728,7 +1722,7 @@ local monster_chapter = { [13201]={ ["monster_base"]=10033, ["hp"]=54130000, - ["atk"]=1890000, + ["atk"]=1560000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -1740,7 +1734,7 @@ local monster_chapter = { [13301]={ ["monster_base"]=10019, ["hp"]=61100000, - ["atk"]=1970000, + ["atk"]=1640000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -1752,7 +1746,7 @@ local monster_chapter = { [13401]={ ["monster_base"]=10012, ["hp"]=76450000, - ["atk"]=1940000, + ["atk"]=1710000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -1765,7 +1759,7 @@ local monster_chapter = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=113000000, - ["atk"]=2240000, + ["atk"]=1970000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -1783,7 +1777,7 @@ local monster_chapter = { [13601]={ ["monster_base"]=10017, ["hp"]=77000000, - ["atk"]=2160000, + ["atk"]=1810000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -1795,7 +1789,7 @@ local monster_chapter = { [13701]={ ["monster_base"]=10013, ["hp"]=85930000, - ["atk"]=2400000, + ["atk"]=2050000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -1807,7 +1801,7 @@ local monster_chapter = { [13801]={ ["monster_base"]=10032, ["hp"]=99320000, - ["atk"]=2240000, + ["atk"]=1900000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -1819,7 +1813,7 @@ local monster_chapter = { [13901]={ ["monster_base"]=10033, ["hp"]=113000000, - ["atk"]=2510000, + ["atk"]=2130000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -1829,77 +1823,10 @@ local monster_chapter = { ["monster_exp"]=12000 }, [14001]={ - ["monster_base"]=20005, - ["is_boss"]=1, - ["hp"]=213440000, - ["atk"]=2460000, - ["atk_times"]=4, - ["hurt_skill"]={ - 30013, - 30014, - 30015 - }, - ["skill"]={ - 10024 - }, - ["passive_skill"]={ - 10012 - }, - ["monster_exp"]=12000 - }, - [14101]={ - ["monster_base"]=10031, - ["hp"]=123320000, - ["atk"]=2380000, - ["atk_times"]=3, - ["hurt_skill"]={ - 20088, - 20089, - 20090 - }, - ["monster_exp"]=16000 - }, - [14201]={ - ["monster_base"]=10034, - ["hp"]=139500000, - ["atk"]=2460000, - ["atk_times"]=3, - ["hurt_skill"]={ - 20097, - 20098, - 20099 - }, - ["monster_exp"]=18000 - }, - [14301]={ - ["monster_base"]=10003, - ["hp"]=148150000, - ["atk"]=2540000, - ["atk_times"]=3, - ["hurt_skill"]={ - 20007, - 20008, - 20009 - }, - ["monster_exp"]=21000 - }, - [14401]={ - ["monster_base"]=10014, - ["hp"]=160430000, - ["atk"]=2590000, - ["atk_times"]=3, - ["hurt_skill"]={ - 20037, - 20038, - 20039 - }, - ["monster_exp"]=22000 - }, - [14501]={ ["monster_base"]=20026, ["is_boss"]=1, - ["hp"]=304390000, - ["atk"]=2650000, + ["hp"]=213440000, + ["atk"]=2380000, ["atk_times"]=4, ["hurt_skill"]={ 30076, @@ -1912,12 +1839,76 @@ local monster_chapter = { ["passive_skill"]={ 10013 }, + ["monster_exp"]=12000 + }, + [14101]={ + ["monster_base"]=10031, + ["hp"]=123320000, + ["atk"]=2220000, + ["atk_times"]=3, + ["hurt_skill"]={ + 20088, + 20089, + 20090 + }, + ["monster_exp"]=16000 + }, + [14201]={ + ["monster_base"]=10034, + ["hp"]=139500000, + ["atk"]=2280000, + ["atk_times"]=3, + ["hurt_skill"]={ + 20097, + 20098, + 20099 + }, + ["monster_exp"]=18000 + }, + [14301]={ + ["monster_base"]=10003, + ["hp"]=148150000, + ["atk"]=2380000, + ["atk_times"]=3, + ["hurt_skill"]={ + 20007, + 20008, + 20009 + }, + ["monster_exp"]=21000 + }, + [14401]={ + ["monster_base"]=10014, + ["hp"]=160430000, + ["atk"]=2470000, + ["atk_times"]=3, + ["hurt_skill"]={ + 20037, + 20038, + 20039 + }, + ["monster_exp"]=22000 + }, + [14501]={ + ["monster_base"]=20004, + ["is_boss"]=1, + ["hp"]=304390000, + ["atk"]=2470000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30010, + 30011, + 30012 + }, + ["skill"]={ + 10015 + }, ["monster_exp"]=24000 }, [14601]={ ["monster_base"]=10015, ["hp"]=201720000, - ["atk"]=2780000, + ["atk"]=2560000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -1929,7 +1920,7 @@ local monster_chapter = { [14701]={ ["monster_base"]=10016, ["hp"]=214830000, - ["atk"]=2890000, + ["atk"]=2620000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -1941,7 +1932,7 @@ local monster_chapter = { [14801]={ ["monster_base"]=10030, ["hp"]=236030000, - ["atk"]=2970000, + ["atk"]=2710000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -1953,7 +1944,7 @@ local monster_chapter = { [14901]={ ["monster_base"]=10035, ["hp"]=257800000, - ["atk"]=3020000, + ["atk"]=2800000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -1966,7 +1957,7 @@ local monster_chapter = { ["monster_base"]=30012, ["is_boss"]=2, ["hp"]=407620000, - ["atk"]=4000000, + ["atk"]=3830000, ["atk_times"]=4, ["hurt_skill"]={ 40005, @@ -1983,7 +1974,7 @@ local monster_chapter = { [15101]={ ["monster_base"]=10034, ["hp"]=42410000, - ["atk"]=2000000, + ["atk"]=1600000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -1995,7 +1986,7 @@ local monster_chapter = { [15201]={ ["monster_base"]=10032, ["hp"]=59150000, - ["atk"]=2110000, + ["atk"]=1700000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -2007,7 +1998,7 @@ local monster_chapter = { [15301]={ ["monster_base"]=10002, ["hp"]=66960000, - ["atk"]=2190000, + ["atk"]=1790000, ["atk_times"]=3, ["hurt_skill"]={ 20004, @@ -2019,7 +2010,7 @@ local monster_chapter = { [15401]={ ["monster_base"]=10005, ["hp"]=89000000, - ["atk"]=2300000, + ["atk"]=1860000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -2032,7 +2023,7 @@ local monster_chapter = { ["monster_base"]=20007, ["is_boss"]=1, ["hp"]=123600000, - ["atk"]=2460000, + ["atk"]=2140000, ["atk_times"]=4, ["hurt_skill"]={ 30019, @@ -2050,7 +2041,7 @@ local monster_chapter = { [15601]={ ["monster_base"]=10001, ["hp"]=84260000, - ["atk"]=2380000, + ["atk"]=1970000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -2062,7 +2053,7 @@ local monster_chapter = { [15701]={ ["monster_base"]=10007, ["hp"]=94020000, - ["atk"]=2670000, + ["atk"]=2230000, ["atk_times"]=3, ["hurt_skill"]={ 20019, @@ -2074,7 +2065,7 @@ local monster_chapter = { [15801]={ ["monster_base"]=10040, ["hp"]=108530000, - ["atk"]=2480000, + ["atk"]=2070000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -2086,7 +2077,7 @@ local monster_chapter = { [15901]={ ["monster_base"]=10039, ["hp"]=123600000, - ["atk"]=2750000, + ["atk"]=2320000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -2099,7 +2090,7 @@ local monster_chapter = { ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=242450000, - ["atk"]=2800000, + ["atk"]=2590000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -2114,7 +2105,7 @@ local monster_chapter = { [16101]={ ["monster_base"]=10039, ["hp"]=140060000, - ["atk"]=2720000, + ["atk"]=2420000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -2126,7 +2117,7 @@ local monster_chapter = { [16201]={ ["monster_base"]=10038, ["hp"]=158470000, - ["atk"]=2800000, + ["atk"]=2480000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -2138,7 +2129,7 @@ local monster_chapter = { [16301]={ ["monster_base"]=10014, ["hp"]=168240000, - ["atk"]=2910000, + ["atk"]=2590000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -2150,7 +2141,7 @@ local monster_chapter = { [16401]={ ["monster_base"]=10019, ["hp"]=182190000, - ["atk"]=2990000, + ["atk"]=2690000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -2163,7 +2154,7 @@ local monster_chapter = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=353210000, - ["atk"]=3100000, + ["atk"]=2690000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -2181,7 +2172,7 @@ local monster_chapter = { [16601]={ ["monster_base"]=10016, ["hp"]=243290000, - ["atk"]=3390000, + ["atk"]=2780000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -2193,7 +2184,7 @@ local monster_chapter = { [16701]={ ["monster_base"]=10005, ["hp"]=259190000, - ["atk"]=3500000, + ["atk"]=2850000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -2205,7 +2196,7 @@ local monster_chapter = { [16801]={ ["monster_base"]=10040, ["hp"]=284580000, - ["atk"]=3580000, + ["atk"]=2950000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -2217,7 +2208,7 @@ local monster_chapter = { [16901]={ ["monster_base"]=10039, ["hp"]=310810000, - ["atk"]=3680000, + ["atk"]=3050000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -2230,7 +2221,7 @@ local monster_chapter = { ["monster_base"]=20017, ["is_boss"]=2, ["hp"]=545450000, - ["atk"]=5340000, + ["atk"]=4160000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -2243,21 +2234,9 @@ local monster_chapter = { ["monster_exp"]=22000 }, [17101]={ - ["monster_base"]=10010, - ["hp"]=50510000, - ["atk"]=2400000, - ["atk_times"]=3, - ["hurt_skill"]={ - 20028, - 20029, - 20030 - }, - ["monster_exp"]=11000 - }, - [17201]={ ["monster_base"]=10038, - ["hp"]=70380000, - ["atk"]=2530000, + ["hp"]=50510000, + ["atk"]=1670000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -2266,53 +2245,62 @@ local monster_chapter = { }, ["monster_exp"]=11000 }, - [17301]={ - ["monster_base"]=10033, - ["hp"]=79490000, - ["atk"]=2640000, + [17201]={ + ["monster_base"]=10040, + ["hp"]=70380000, + ["atk"]=1780000, ["atk_times"]=3, ["hurt_skill"]={ - 20094, - 20095, - 20096 + 20115, + 20116, + 20117 + }, + ["monster_exp"]=11000 + }, + [17301]={ + ["monster_base"]=10010, + ["hp"]=79490000, + ["atk"]=1870000, + ["atk_times"]=3, + ["hurt_skill"]={ + 20028, + 20029, + 20030 }, ["monster_exp"]=17000 }, [17401]={ - ["monster_base"]=10031, + ["monster_base"]=10039, ["hp"]=105710000, - ["atk"]=2740000, + ["atk"]=1940000, ["atk_times"]=3, ["hurt_skill"]={ - 20088, - 20089, - 20090 + 20112, + 20113, + 20114 }, ["monster_exp"]=19000 }, [17501]={ - ["monster_base"]=20005, + ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=146830000, - ["atk"]=2920000, + ["atk"]=2230000, ["atk_times"]=4, ["hurt_skill"]={ - 30013, - 30014, - 30015 + 30034, + 30035, + 30036 }, ["skill"]={ - 10024 - }, - ["passive_skill"]={ - 10012 + 10017 }, ["monster_exp"]=18000 }, [17601]={ ["monster_base"]=10030, ["hp"]=100190000, - ["atk"]=2840000, + ["atk"]=2060000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -2324,7 +2312,7 @@ local monster_chapter = { [17701]={ ["monster_base"]=10035, ["hp"]=111500000, - ["atk"]=3180000, + ["atk"]=2330000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -2336,7 +2324,7 @@ local monster_chapter = { [17801]={ ["monster_base"]=10039, ["hp"]=128890000, - ["atk"]=2950000, + ["atk"]=2160000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -2348,7 +2336,7 @@ local monster_chapter = { [17901]={ ["monster_base"]=10010, ["hp"]=146830000, - ["atk"]=3290000, + ["atk"]=2420000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -2361,7 +2349,7 @@ local monster_chapter = { ["monster_base"]=20017, ["is_boss"]=1, ["hp"]=276830000, - ["atk"]=3210000, + ["atk"]=2700000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -2374,73 +2362,76 @@ local monster_chapter = { ["monster_exp"]=12000 }, [18101]={ - ["monster_base"]=10038, + ["monster_base"]=10013, ["hp"]=159800000, - ["atk"]=3110000, + ["atk"]=2530000, ["atk_times"]=3, ["hurt_skill"]={ - 20109, - 20110, - 20111 + 20034, + 20035, + 20036 }, ["monster_exp"]=16000 }, [18201]={ - ["monster_base"]=10040, + ["monster_base"]=10016, ["hp"]=181060000, - ["atk"]=3210000, + ["atk"]=2590000, ["atk_times"]=3, ["hurt_skill"]={ - 20115, - 20116, - 20117 + 20043, + 20044, + 20045 }, ["monster_exp"]=18000 }, [18301]={ - ["monster_base"]=10010, + ["monster_base"]=10015, ["hp"]=192100000, - ["atk"]=3310000, + ["atk"]=2700000, ["atk_times"]=3, ["hurt_skill"]={ - 20028, - 20029, - 20030 + 20040, + 20041, + 20042 }, ["monster_exp"]=21000 }, [18401]={ - ["monster_base"]=10039, + ["monster_base"]=10017, ["hp"]=208100000, - ["atk"]=3420000, + ["atk"]=2810000, ["atk_times"]=3, ["hurt_skill"]={ - 20112, - 20113, - 20114 + 20046, + 20047, + 20048 }, ["monster_exp"]=22000 }, [18501]={ - ["monster_base"]=20012, + ["monster_base"]=20007, ["is_boss"]=1, ["hp"]=377020000, - ["atk"]=3290000, + ["atk"]=2810000, ["atk_times"]=4, ["hurt_skill"]={ - 30034, - 30035, - 30036 + 30019, + 30020, + 30021 }, ["skill"]={ - 10017 + 10060 + }, + ["passive_skill"]={ + 10061 }, ["monster_exp"]=24000 }, [18601]={ ["monster_base"]=10032, ["hp"]=249780000, - ["atk"]=3500000, + ["atk"]=2900000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -2452,7 +2443,7 @@ local monster_chapter = { [18701]={ ["monster_base"]=10034, ["hp"]=266340000, - ["atk"]=3600000, + ["atk"]=2970000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -2464,7 +2455,7 @@ local monster_chapter = { [18801]={ ["monster_base"]=10035, ["hp"]=292280000, - ["atk"]=3710000, + ["atk"]=3080000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -2476,7 +2467,7 @@ local monster_chapter = { [18901]={ ["monster_base"]=10033, ["hp"]=319330000, - ["atk"]=3780000, + ["atk"]=3180000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -2489,7 +2480,7 @@ local monster_chapter = { ["monster_base"]=20003, ["is_boss"]=2, ["hp"]=504800000, - ["atk"]=4930000, + ["atk"]=4340000, ["atk_times"]=4, ["hurt_skill"]={ 30007, @@ -2509,7 +2500,7 @@ local monster_chapter = { [19101]={ ["monster_base"]=10020, ["hp"]=54410000, - ["atk"]=2670000, + ["atk"]=1740000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -2521,7 +2512,7 @@ local monster_chapter = { [19201]={ ["monster_base"]=10038, ["hp"]=75610000, - ["atk"]=2800000, + ["atk"]=1850000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -2533,7 +2524,7 @@ local monster_chapter = { [19301]={ ["monster_base"]=10021, ["hp"]=85370000, - ["atk"]=2910000, + ["atk"]=1950000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -2545,7 +2536,7 @@ local monster_chapter = { [19401]={ ["monster_base"]=10040, ["hp"]=113550000, - ["atk"]=3040000, + ["atk"]=2020000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -2558,7 +2549,7 @@ local monster_chapter = { ["monster_base"]=20017, ["is_boss"]=1, ["hp"]=157640000, - ["atk"]=3230000, + ["atk"]=2320000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -2573,7 +2564,7 @@ local monster_chapter = { [19601]={ ["monster_base"]=10022, ["hp"]=107690000, - ["atk"]=3150000, + ["atk"]=2140000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -2585,7 +2576,7 @@ local monster_chapter = { [19701]={ ["monster_base"]=10004, ["hp"]=119690000, - ["atk"]=3500000, + ["atk"]=2420000, ["atk_times"]=3, ["hurt_skill"]={ 20010, @@ -2597,7 +2588,7 @@ local monster_chapter = { [19801]={ ["monster_base"]=10023, ["hp"]=138380000, - ["atk"]=3280000, + ["atk"]=2250000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -2609,7 +2600,7 @@ local monster_chapter = { [19901]={ ["monster_base"]=10007, ["hp"]=157640000, - ["atk"]=3630000, + ["atk"]=2520000, ["atk_times"]=3, ["hurt_skill"]={ 20019, @@ -2622,7 +2613,7 @@ local monster_chapter = { ["monster_base"]=20007, ["is_boss"]=1, ["hp"]=297140000, - ["atk"]=3520000, + ["atk"]=2810000, ["atk_times"]=4, ["hurt_skill"]={ 30019, @@ -2640,7 +2631,7 @@ local monster_chapter = { [20101]={ ["monster_base"]=10048, ["hp"]=171590000, - ["atk"]=3440000, + ["atk"]=2630000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -2652,7 +2643,7 @@ local monster_chapter = { [20201]={ ["monster_base"]=10023, ["hp"]=194460000, - ["atk"]=3550000, + ["atk"]=2690000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -2664,7 +2655,7 @@ local monster_chapter = { [20301]={ ["monster_base"]=10006, ["hp"]=206180000, - ["atk"]=3660000, + ["atk"]=2810000, ["atk_times"]=3, ["hurt_skill"]={ 20016, @@ -2676,7 +2667,7 @@ local monster_chapter = { [20401]={ ["monster_base"]=10047, ["hp"]=223480000, - ["atk"]=3760000, + ["atk"]=2920000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -2689,7 +2680,7 @@ local monster_chapter = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=404830000, - ["atk"]=3630000, + ["atk"]=2920000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -2707,7 +2698,7 @@ local monster_chapter = { [20601]={ ["monster_base"]=10021, ["hp"]=268120000, - ["atk"]=3840000, + ["atk"]=3020000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -2719,7 +2710,7 @@ local monster_chapter = { [20701]={ ["monster_base"]=10006, ["hp"]=285980000, - ["atk"]=3950000, + ["atk"]=3090000, ["atk_times"]=3, ["hurt_skill"]={ 20016, @@ -2731,7 +2722,7 @@ local monster_chapter = { [20801]={ ["monster_base"]=10048, ["hp"]=313880000, - ["atk"]=4090000, + ["atk"]=3200000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -2743,7 +2734,7 @@ local monster_chapter = { [20901]={ ["monster_base"]=10023, ["hp"]=342890000, - ["atk"]=4170000, + ["atk"]=3310000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -2756,7 +2747,7 @@ local monster_chapter = { ["monster_base"]=30014, ["is_boss"]=2, ["hp"]=541820000, - ["atk"]=5390000, + ["atk"]=4510000, ["atk_times"]=4, ["hurt_skill"]={ 40009, @@ -2772,7 +2763,7 @@ local monster_chapter = { [21101]={ ["monster_base"]=10024, ["hp"]=57200000, - ["atk"]=2860000, + ["atk"]=1840000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -2784,7 +2775,7 @@ local monster_chapter = { [21201]={ ["monster_base"]=10006, ["hp"]=79240000, - ["atk"]=2990000, + ["atk"]=1960000, ["atk_times"]=3, ["hurt_skill"]={ 20016, @@ -2796,7 +2787,7 @@ local monster_chapter = { [21301]={ ["monster_base"]=10007, ["hp"]=89560000, - ["atk"]=3120000, + ["atk"]=2060000, ["atk_times"]=3, ["hurt_skill"]={ 20019, @@ -2808,7 +2799,7 @@ local monster_chapter = { [21401]={ ["monster_base"]=10023, ["hp"]=118850000, - ["atk"]=3230000, + ["atk"]=2140000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -2821,7 +2812,7 @@ local monster_chapter = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=165170000, - ["atk"]=3420000, + ["atk"]=2450000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -2839,7 +2830,7 @@ local monster_chapter = { [21601]={ ["monster_base"]=10048, ["hp"]=112720000, - ["atk"]=3360000, + ["atk"]=2260000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -2851,7 +2842,7 @@ local monster_chapter = { [21701]={ ["monster_base"]=10025, ["hp"]=125270000, - ["atk"]=3740000, + ["atk"]=2560000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -2863,7 +2854,7 @@ local monster_chapter = { [21801]={ ["monster_base"]=10004, ["hp"]=144800000, - ["atk"]=3470000, + ["atk"]=2380000, ["atk_times"]=3, ["hurt_skill"]={ 20010, @@ -2875,7 +2866,7 @@ local monster_chapter = { [21901]={ ["monster_base"]=10022, ["hp"]=165170000, - ["atk"]=3840000, + ["atk"]=2660000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -2888,7 +2879,7 @@ local monster_chapter = { ["monster_base"]=20005, ["is_boss"]=1, ["hp"]=311090000, - ["atk"]=3740000, + ["atk"]=2970000, ["atk_times"]=4, ["hurt_skill"]={ 30013, @@ -2906,7 +2897,7 @@ local monster_chapter = { [22101]={ ["monster_base"]=10047, ["hp"]=179680000, - ["atk"]=3660000, + ["atk"]=2780000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -2918,7 +2909,7 @@ local monster_chapter = { [22201]={ ["monster_base"]=10026, ["hp"]=203670000, - ["atk"]=3790000, + ["atk"]=2840000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -2930,7 +2921,7 @@ local monster_chapter = { [22301]={ ["monster_base"]=10006, ["hp"]=215950000, - ["atk"]=3900000, + ["atk"]=2970000, ["atk_times"]=3, ["hurt_skill"]={ 20016, @@ -2942,7 +2933,7 @@ local monster_chapter = { [22401]={ ["monster_base"]=10040, ["hp"]=234080000, - ["atk"]=4010000, + ["atk"]=3090000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -2955,7 +2946,7 @@ local monster_chapter = { ["monster_base"]=20017, ["is_boss"]=1, ["hp"]=423800000, - ["atk"]=3840000, + ["atk"]=3090000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -2970,7 +2961,7 @@ local monster_chapter = { [22601]={ ["monster_base"]=10020, ["hp"]=280670000, - ["atk"]=4090000, + ["atk"]=3190000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -2982,7 +2973,7 @@ local monster_chapter = { [22701]={ ["monster_base"]=10010, ["hp"]=299370000, - ["atk"]=4190000, + ["atk"]=3270000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -2994,7 +2985,7 @@ local monster_chapter = { [22801]={ ["monster_base"]=10038, ["hp"]=328380000, - ["atk"]=4330000, + ["atk"]=3380000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -3006,7 +2997,7 @@ local monster_chapter = { [22901]={ ["monster_base"]=10027, ["hp"]=358790000, - ["atk"]=4430000, + ["atk"]=3500000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -3019,7 +3010,7 @@ local monster_chapter = { ["monster_base"]=20008, ["is_boss"]=2, ["hp"]=566930000, - ["atk"]=5690000, + ["atk"]=4760000, ["atk_times"]=4, ["hurt_skill"]={ 30022, @@ -3037,7 +3028,7 @@ local monster_chapter = { [23101]={ ["monster_base"]=10005, ["hp"]=62220000, - ["atk"]=3150000, + ["atk"]=1910000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -3049,7 +3040,7 @@ local monster_chapter = { [23201]={ ["monster_base"]=10022, ["hp"]=86210000, - ["atk"]=3310000, + ["atk"]=2030000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -3061,7 +3052,7 @@ local monster_chapter = { [23301]={ ["monster_base"]=10005, ["hp"]=97370000, - ["atk"]=3440000, + ["atk"]=2130000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -3073,7 +3064,7 @@ local monster_chapter = { [23401]={ ["monster_base"]=10026, ["hp"]=129180000, - ["atk"]=3550000, + ["atk"]=2220000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -3086,7 +3077,7 @@ local monster_chapter = { ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=179400000, - ["atk"]=3760000, + ["atk"]=2540000, ["atk_times"]=4, ["hurt_skill"]={ 30040, @@ -3104,7 +3095,7 @@ local monster_chapter = { [23601]={ ["monster_base"]=10022, ["hp"]=122480000, - ["atk"]=3710000, + ["atk"]=2340000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -3116,7 +3107,7 @@ local monster_chapter = { [23701]={ ["monster_base"]=10026, ["hp"]=135870000, - ["atk"]=4110000, + ["atk"]=2650000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -3128,7 +3119,7 @@ local monster_chapter = { [23801]={ ["monster_base"]=10032, ["hp"]=157080000, - ["atk"]=3840000, + ["atk"]=2460000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -3140,7 +3131,7 @@ local monster_chapter = { [23901]={ ["monster_base"]=10044, ["hp"]=179400000, - ["atk"]=4250000, + ["atk"]=2750000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -3153,7 +3144,7 @@ local monster_chapter = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=337590000, - ["atk"]=4110000, + ["atk"]=3070000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -3171,7 +3162,7 @@ local monster_chapter = { [24101]={ ["monster_base"]=10001, ["hp"]=195020000, - ["atk"]=4030000, + ["atk"]=2880000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -3183,7 +3174,7 @@ local monster_chapter = { [24201]={ ["monster_base"]=10022, ["hp"]=220970000, - ["atk"]=4170000, + ["atk"]=2940000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -3195,7 +3186,7 @@ local monster_chapter = { [24301]={ ["monster_base"]=10044, ["hp"]=234360000, - ["atk"]=4270000, + ["atk"]=3070000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -3207,7 +3198,7 @@ local monster_chapter = { [24401]={ ["monster_base"]=10019, ["hp"]=253890000, - ["atk"]=4410000, + ["atk"]=3200000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -3220,7 +3211,7 @@ local monster_chapter = { ["monster_base"]=20001, ["is_boss"]=1, ["hp"]=459790000, - ["atk"]=4220000, + ["atk"]=3200000, ["atk_times"]=4, ["hurt_skill"]={ 30001, @@ -3235,7 +3226,7 @@ local monster_chapter = { [24601]={ ["monster_base"]=10013, ["hp"]=304670000, - ["atk"]=4490000, + ["atk"]=3300000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -3247,7 +3238,7 @@ local monster_chapter = { [24701]={ ["monster_base"]=10005, ["hp"]=324760000, - ["atk"]=4620000, + ["atk"]=3380000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -3259,7 +3250,7 @@ local monster_chapter = { [24801]={ ["monster_base"]=10026, ["hp"]=356280000, - ["atk"]=4750000, + ["atk"]=3500000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -3271,7 +3262,7 @@ local monster_chapter = { [24901]={ ["monster_base"]=10032, ["hp"]=389210000, - ["atk"]=4860000, + ["atk"]=3620000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -3284,7 +3275,7 @@ local monster_chapter = { ["monster_base"]=20006, ["is_boss"]=2, ["hp"]=614920000, - ["atk"]=6220000, + ["atk"]=4920000, ["atk_times"]=4, ["hurt_skill"]={ 30016, @@ -3302,7 +3293,7 @@ local monster_chapter = { [25101]={ ["monster_base"]=10044, ["hp"]=63890000, - ["atk"]=3280000, + ["atk"]=1980000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -3314,7 +3305,7 @@ local monster_chapter = { [25201]={ ["monster_base"]=10013, ["hp"]=88720000, - ["atk"]=3440000, + ["atk"]=2100000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -3326,7 +3317,7 @@ local monster_chapter = { [25301]={ ["monster_base"]=10001, ["hp"]=100160000, - ["atk"]=3580000, + ["atk"]=2200000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -3338,7 +3329,7 @@ local monster_chapter = { [25401]={ ["monster_base"]=10026, ["hp"]=132800000, - ["atk"]=3710000, + ["atk"]=2300000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -3351,7 +3342,7 @@ local monster_chapter = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=184420000, - ["atk"]=3900000, + ["atk"]=2630000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -3369,7 +3360,7 @@ local monster_chapter = { [25601]={ ["monster_base"]=10022, ["hp"]=125830000, - ["atk"]=3870000, + ["atk"]=2420000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -3381,7 +3372,7 @@ local monster_chapter = { [25701]={ ["monster_base"]=10044, ["hp"]=139500000, - ["atk"]=4270000, + ["atk"]=2740000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -3393,7 +3384,7 @@ local monster_chapter = { [25801]={ ["monster_base"]=10032, ["hp"]=161540000, - ["atk"]=4010000, + ["atk"]=2540000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -3405,7 +3396,7 @@ local monster_chapter = { [25901]={ ["monster_base"]=10019, ["hp"]=184420000, - ["atk"]=4410000, + ["atk"]=2840000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -3418,7 +3409,7 @@ local monster_chapter = { ["monster_base"]=20008, ["is_boss"]=1, ["hp"]=346800000, - ["atk"]=4250000, + ["atk"]=3170000, ["atk_times"]=4, ["hurt_skill"]={ 30022, @@ -3436,7 +3427,7 @@ local monster_chapter = { [26101]={ ["monster_base"]=10026, ["hp"]=200320000, - ["atk"]=4190000, + ["atk"]=2980000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -3448,7 +3439,7 @@ local monster_chapter = { [26201]={ ["monster_base"]=10001, ["hp"]=227110000, - ["atk"]=4330000, + ["atk"]=3040000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -3460,7 +3451,7 @@ local monster_chapter = { [26301]={ ["monster_base"]=10044, ["hp"]=240780000, - ["atk"]=4460000, + ["atk"]=3170000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -3472,7 +3463,7 @@ local monster_chapter = { [26401]={ ["monster_base"]=10013, ["hp"]=260870000, - ["atk"]=4590000, + ["atk"]=3310000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -3485,7 +3476,7 @@ local monster_chapter = { ["monster_base"]=20002, ["is_boss"]=1, ["hp"]=472070000, - ["atk"]=4380000, + ["atk"]=3310000, ["atk_times"]=4, ["hurt_skill"]={ 30004, @@ -3500,7 +3491,7 @@ local monster_chapter = { [26601]={ ["monster_base"]=10001, ["hp"]=313040000, - ["atk"]=4670000, + ["atk"]=3410000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -3512,7 +3503,7 @@ local monster_chapter = { [26701]={ ["monster_base"]=10032, ["hp"]=333680000, - ["atk"]=4810000, + ["atk"]=3490000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -3524,7 +3515,7 @@ local monster_chapter = { [26801]={ ["monster_base"]=10022, ["hp"]=366050000, - ["atk"]=4940000, + ["atk"]=3620000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -3536,7 +3527,7 @@ local monster_chapter = { [26901]={ ["monster_base"]=10005, ["hp"]=399810000, - ["atk"]=5050000, + ["atk"]=3740000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -3549,7 +3540,7 @@ local monster_chapter = { ["monster_base"]=20021, ["is_boss"]=2, ["hp"]=631380000, - ["atk"]=6430000, + ["atk"]=5080000, ["atk_times"]=4, ["hurt_skill"]={ 30061, @@ -3568,7 +3559,7 @@ local monster_chapter = { [27101]={ ["monster_base"]=10022, ["hp"]=67070000, - ["atk"]=3510000, + ["atk"]=2090000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -3580,7 +3571,7 @@ local monster_chapter = { [27201]={ ["monster_base"]=10044, ["hp"]=93010000, - ["atk"]=3670000, + ["atk"]=2220000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -3592,7 +3583,7 @@ local monster_chapter = { [27301]={ ["monster_base"]=10032, ["hp"]=104880000, - ["atk"]=3800000, + ["atk"]=2320000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -3604,7 +3595,7 @@ local monster_chapter = { [27401]={ ["monster_base"]=10019, ["hp"]=139100000, - ["atk"]=3930000, + ["atk"]=2430000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -3617,7 +3608,7 @@ local monster_chapter = { ["monster_base"]=20008, ["is_boss"]=1, ["hp"]=192920000, - ["atk"]=4120000, + ["atk"]=2780000, ["atk_times"]=4, ["hurt_skill"]={ 30022, @@ -3635,7 +3626,7 @@ local monster_chapter = { [27601]={ ["monster_base"]=10005, ["hp"]=131650000, - ["atk"]=4090000, + ["atk"]=2550000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -3647,7 +3638,7 @@ local monster_chapter = { [27701]={ ["monster_base"]=10022, ["hp"]=146000000, - ["atk"]=4510000, + ["atk"]=2890000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -3659,7 +3650,7 @@ local monster_chapter = { [27801]={ ["monster_base"]=10005, ["hp"]=169190000, - ["atk"]=4220000, + ["atk"]=2680000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -3671,7 +3662,7 @@ local monster_chapter = { [27901]={ ["monster_base"]=10026, ["hp"]=192920000, - ["atk"]=4670000, + ["atk"]=3000000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -3684,7 +3675,7 @@ local monster_chapter = { ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=362940000, - ["atk"]=4490000, + ["atk"]=3340000, ["atk_times"]=4, ["hurt_skill"]={ 30040, @@ -3702,7 +3693,7 @@ local monster_chapter = { [28101]={ ["monster_base"]=10013, ["hp"]=209760000, - ["atk"]=4460000, + ["atk"]=3140000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -3714,7 +3705,7 @@ local monster_chapter = { [28201]={ ["monster_base"]=10005, ["hp"]=237640000, - ["atk"]=4590000, + ["atk"]=3210000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -3726,7 +3717,7 @@ local monster_chapter = { [28301]={ ["monster_base"]=10026, ["hp"]=251990000, - ["atk"]=4700000, + ["atk"]=3340000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -3738,7 +3729,7 @@ local monster_chapter = { [28401]={ ["monster_base"]=10032, ["hp"]=272960000, - ["atk"]=4860000, + ["atk"]=3490000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -3751,7 +3742,7 @@ local monster_chapter = { ["monster_base"]=20006, ["is_boss"]=1, ["hp"]=494040000, - ["atk"]=4620000, + ["atk"]=3490000, ["atk_times"]=4, ["hurt_skill"]={ 30016, @@ -3769,7 +3760,7 @@ local monster_chapter = { [28601]={ ["monster_base"]=10013, ["hp"]=327610000, - ["atk"]=4940000, + ["atk"]=3600000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -3781,7 +3772,7 @@ local monster_chapter = { [28701]={ ["monster_base"]=10005, ["hp"]=349140000, - ["atk"]=5070000, + ["atk"]=3680000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -3793,7 +3784,7 @@ local monster_chapter = { [28801]={ ["monster_base"]=10026, ["hp"]=383090000, - ["atk"]=5230000, + ["atk"]=3820000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -3805,7 +3796,7 @@ local monster_chapter = { [28901]={ ["monster_base"]=10001, ["hp"]=418420000, - ["atk"]=5330000, + ["atk"]=3940000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -3818,7 +3809,7 @@ local monster_chapter = { ["monster_base"]=30010, ["is_boss"]=2, ["hp"]=660740000, - ["atk"]=6760000, + ["atk"]=5360000, ["atk_times"]=4, ["hurt_skill"]={ 40013, @@ -3834,7 +3825,7 @@ local monster_chapter = { [29101]={ ["monster_base"]=10013, ["hp"]=70100000, - ["atk"]=3700000, + ["atk"]=2160000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -3846,7 +3837,7 @@ local monster_chapter = { [29201]={ ["monster_base"]=10005, ["hp"]=97150000, - ["atk"]=3880000, + ["atk"]=2300000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -3858,7 +3849,7 @@ local monster_chapter = { [29301]={ ["monster_base"]=10026, ["hp"]=109300000, - ["atk"]=4040000, + ["atk"]=2400000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -3870,7 +3861,7 @@ local monster_chapter = { [29401]={ ["monster_base"]=10032, ["hp"]=145180000, - ["atk"]=4170000, + ["atk"]=2510000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -3883,7 +3874,7 @@ local monster_chapter = { ["monster_base"]=20006, ["is_boss"]=1, ["hp"]=201200000, - ["atk"]=4330000, + ["atk"]=2870000, ["atk_times"]=4, ["hurt_skill"]={ 30016, @@ -3901,7 +3892,7 @@ local monster_chapter = { [29601]={ ["monster_base"]=10001, ["hp"]=137450000, - ["atk"]=4330000, + ["atk"]=2640000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -3913,7 +3904,7 @@ local monster_chapter = { [29701]={ ["monster_base"]=10032, ["hp"]=152350000, - ["atk"]=4780000, + ["atk"]=2990000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -3925,7 +3916,7 @@ local monster_chapter = { [29801]={ ["monster_base"]=10022, ["hp"]=176360000, - ["atk"]=4460000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -3937,7 +3928,7 @@ local monster_chapter = { [29901]={ ["monster_base"]=10005, ["hp"]=201200000, - ["atk"]=4910000, + ["atk"]=3100000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -3950,7 +3941,7 @@ local monster_chapter = { ["monster_base"]=20021, ["is_boss"]=1, ["hp"]=378400000, - ["atk"]=4730000, + ["atk"]=3450000, ["atk_times"]=4, ["hurt_skill"]={ 30061, @@ -3969,7 +3960,7 @@ local monster_chapter = { [30101]={ ["monster_base"]=10022, ["hp"]=218590000, - ["atk"]=4700000, + ["atk"]=3240000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -3981,7 +3972,7 @@ local monster_chapter = { [30201]={ ["monster_base"]=10004, ["hp"]=247850000, - ["atk"]=4830000, + ["atk"]=3320000, ["atk_times"]=3, ["hurt_skill"]={ 20010, @@ -3993,7 +3984,7 @@ local monster_chapter = { [30301]={ ["monster_base"]=10023, ["hp"]=262750000, - ["atk"]=4960000, + ["atk"]=3450000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -4005,7 +3996,7 @@ local monster_chapter = { [30401]={ ["monster_base"]=10007, ["hp"]=284560000, - ["atk"]=5120000, + ["atk"]=3610000, ["atk_times"]=3, ["hurt_skill"]={ 20019, @@ -4018,7 +4009,7 @@ local monster_chapter = { ["monster_base"]=20007, ["is_boss"]=1, ["hp"]=515020000, - ["atk"]=4860000, + ["atk"]=3610000, ["atk_times"]=4, ["hurt_skill"]={ 30019, @@ -4036,7 +4027,7 @@ local monster_chapter = { [30601]={ ["monster_base"]=10019, ["hp"]=341410000, - ["atk"]=5200000, + ["atk"]=3720000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -4048,7 +4039,7 @@ local monster_chapter = { [30701]={ ["monster_base"]=10023, ["hp"]=364040000, - ["atk"]=5360000, + ["atk"]=3800000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -4060,7 +4051,7 @@ local monster_chapter = { [30801]={ ["monster_base"]=10005, ["hp"]=399370000, - ["atk"]=5490000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -4072,7 +4063,7 @@ local monster_chapter = { [30901]={ ["monster_base"]=10033, ["hp"]=436080000, - ["atk"]=5620000, + ["atk"]=4070000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -4085,7 +4076,7 @@ local monster_chapter = { ["monster_base"]=20016, ["is_boss"]=2, ["hp"]=688620000, - ["atk"]=7080000, + ["atk"]=5530000, ["atk_times"]=4, ["hurt_skill"]={ 30046, @@ -4104,7 +4095,7 @@ local monster_chapter = { [31101]={ ["monster_base"]=10026, ["hp"]=73440000, - ["atk"]=3940000, + ["atk"]=2270000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -4116,7 +4107,7 @@ local monster_chapter = { [31201]={ ["monster_base"]=10001, ["hp"]=101830000, - ["atk"]=4120000, + ["atk"]=2420000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -4128,7 +4119,7 @@ local monster_chapter = { [31301]={ ["monster_base"]=10044, ["hp"]=114660000, - ["atk"]=4280000, + ["atk"]=2520000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -4140,7 +4131,7 @@ local monster_chapter = { [31401]={ ["monster_base"]=10013, ["hp"]=152060000, - ["atk"]=4410000, + ["atk"]=2640000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -4153,7 +4144,7 @@ local monster_chapter = { ["monster_base"]=20002, ["is_boss"]=1, ["hp"]=210760000, - ["atk"]=4590000, + ["atk"]=3020000, ["atk_times"]=4, ["hurt_skill"]={ 30004, @@ -4168,7 +4159,7 @@ local monster_chapter = { [31601]={ ["monster_base"]=10048, ["hp"]=144140000, - ["atk"]=4570000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -4180,7 +4171,7 @@ local monster_chapter = { [31701]={ ["monster_base"]=10006, ["hp"]=159710000, - ["atk"]=5040000, + ["atk"]=3140000, ["atk_times"]=3, ["hurt_skill"]={ 20016, @@ -4192,7 +4183,7 @@ local monster_chapter = { [31801]={ ["monster_base"]=10012, ["hp"]=184820000, - ["atk"]=4720000, + ["atk"]=2910000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -4204,7 +4195,7 @@ local monster_chapter = { [31901]={ ["monster_base"]=10004, ["hp"]=210760000, - ["atk"]=5190000, + ["atk"]=3260000, ["atk_times"]=3, ["hurt_skill"]={ 20010, @@ -4217,7 +4208,7 @@ local monster_chapter = { ["monster_base"]=20004, ["is_boss"]=1, ["hp"]=396120000, - ["atk"]=4990000, + ["atk"]=3620000, ["atk_times"]=4, ["hurt_skill"]={ 30010, @@ -4232,7 +4223,7 @@ local monster_chapter = { [32101]={ ["monster_base"]=10024, ["hp"]=229050000, - ["atk"]=4990000, + ["atk"]=3400000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -4244,7 +4235,7 @@ local monster_chapter = { [32201]={ ["monster_base"]=10044, ["hp"]=259620000, - ["atk"]=5120000, + ["atk"]=3490000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -4256,7 +4247,7 @@ local monster_chapter = { [32301]={ ["monster_base"]=10016, ["hp"]=275180000, - ["atk"]=5250000, + ["atk"]=3620000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -4268,7 +4259,7 @@ local monster_chapter = { [32401]={ ["monster_base"]=10019, ["hp"]=298120000, - ["atk"]=5400000, + ["atk"]=3790000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -4281,7 +4272,7 @@ local monster_chapter = { ["monster_base"]=20008, ["is_boss"]=1, ["hp"]=539180000, - ["atk"]=5120000, + ["atk"]=3790000, ["atk_times"]=4, ["hurt_skill"]={ 30022, @@ -4299,7 +4290,7 @@ local monster_chapter = { [32601]={ ["monster_base"]=10004, ["hp"]=357630000, - ["atk"]=5510000, + ["atk"]=3910000, ["atk_times"]=3, ["hurt_skill"]={ 20010, @@ -4311,7 +4302,7 @@ local monster_chapter = { [32701]={ ["monster_base"]=10006, ["hp"]=381110000, - ["atk"]=5660000, + ["atk"]=3990000, ["atk_times"]=3, ["hurt_skill"]={ 20016, @@ -4323,7 +4314,7 @@ local monster_chapter = { [32801]={ ["monster_base"]=10048, ["hp"]=418240000, - ["atk"]=5790000, + ["atk"]=4150000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -4335,7 +4326,7 @@ local monster_chapter = { [32901]={ ["monster_base"]=10037, ["hp"]=456730000, - ["atk"]=5920000, + ["atk"]=4280000, ["atk_times"]=3, ["hurt_skill"]={ 20106, @@ -4348,7 +4339,7 @@ local monster_chapter = { ["monster_base"]=30020, ["is_boss"]=2, ["hp"]=720990000, - ["atk"]=7460000, + ["atk"]=5810000, ["atk_times"]=4, ["hurt_skill"]={ 40033, @@ -4364,7 +4355,7 @@ local monster_chapter = { [33101]={ ["monster_base"]=10049, ["hp"]=75620000, - ["atk"]=4100000, + ["atk"]=2370000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -4376,7 +4367,7 @@ local monster_chapter = { [33201]={ ["monster_base"]=10005, ["hp"]=104830000, - ["atk"]=4280000, + ["atk"]=2520000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -4388,7 +4379,7 @@ local monster_chapter = { [33301]={ ["monster_base"]=10024, ["hp"]=117940000, - ["atk"]=4440000, + ["atk"]=2630000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -4400,7 +4391,7 @@ local monster_chapter = { [33401]={ ["monster_base"]=10012, ["hp"]=156430000, - ["atk"]=4590000, + ["atk"]=2750000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -4413,7 +4404,7 @@ local monster_chapter = { ["monster_base"]=20006, ["is_boss"]=1, ["hp"]=216760000, - ["atk"]=4750000, + ["atk"]=3150000, ["atk_times"]=4, ["hurt_skill"]={ 30016, @@ -4431,7 +4422,7 @@ local monster_chapter = { [33601]={ ["monster_base"]=10048, ["hp"]=148240000, - ["atk"]=4750000, + ["atk"]=2890000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -4443,7 +4434,7 @@ local monster_chapter = { [33701]={ ["monster_base"]=10049, ["hp"]=164350000, - ["atk"]=5250000, + ["atk"]=3270000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -4455,7 +4446,7 @@ local monster_chapter = { [33801]={ ["monster_base"]=10004, ["hp"]=190010000, - ["atk"]=4930000, + ["atk"]=3030000, ["atk_times"]=3, ["hurt_skill"]={ 20010, @@ -4467,7 +4458,7 @@ local monster_chapter = { [33901]={ ["monster_base"]=10006, ["hp"]=216760000, - ["atk"]=5400000, + ["atk"]=3400000, ["atk_times"]=3, ["hurt_skill"]={ 20016, @@ -4480,7 +4471,7 @@ local monster_chapter = { ["monster_base"]=20007, ["is_boss"]=1, ["hp"]=407040000, - ["atk"]=5170000, + ["atk"]=3770000, ["atk_times"]=4, ["hurt_skill"]={ 30019, @@ -4498,7 +4489,7 @@ local monster_chapter = { [34101]={ ["monster_base"]=10020, ["hp"]=235600000, - ["atk"]=5170000, + ["atk"]=3540000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -4510,7 +4501,7 @@ local monster_chapter = { [34201]={ ["monster_base"]=10024, ["hp"]=266990000, - ["atk"]=5320000, + ["atk"]=3640000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -4522,7 +4513,7 @@ local monster_chapter = { [34301]={ ["monster_base"]=10012, ["hp"]=282830000, - ["atk"]=5450000, + ["atk"]=3770000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -4534,7 +4525,7 @@ local monster_chapter = { [34401]={ ["monster_base"]=10016, ["hp"]=306580000, - ["atk"]=5610000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -4547,7 +4538,7 @@ local monster_chapter = { ["monster_base"]=20002, ["is_boss"]=1, ["hp"]=554190000, - ["atk"]=5300000, + ["atk"]=3950000, ["atk_times"]=4, ["hurt_skill"]={ 30004, @@ -4562,7 +4553,7 @@ local monster_chapter = { [34601]={ ["monster_base"]=10004, ["hp"]=367730000, - ["atk"]=5720000, + ["atk"]=4070000, ["atk_times"]=3, ["hurt_skill"]={ 20010, @@ -4574,7 +4565,7 @@ local monster_chapter = { [34701]={ ["monster_base"]=10012, ["hp"]=391760000, - ["atk"]=5870000, + ["atk"]=4160000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -4586,7 +4577,7 @@ local monster_chapter = { [34801]={ ["monster_base"]=10049, ["hp"]=429980000, - ["atk"]=6030000, + ["atk"]=4320000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -4598,7 +4589,7 @@ local monster_chapter = { [34901]={ ["monster_base"]=10048, ["hp"]=469560000, - ["atk"]=6160000, + ["atk"]=4460000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -4611,7 +4602,7 @@ local monster_chapter = { ["monster_base"]=20009, ["is_boss"]=2, ["hp"]=740920000, - ["atk"]=7700000, + ["atk"]=6050000, ["atk_times"]=4, ["hurt_skill"]={ 30025, @@ -4630,7 +4621,7 @@ local monster_chapter = { [35101]={ ["monster_base"]=10004, ["hp"]=79650000, - ["atk"]=4360000, + ["atk"]=2460000, ["atk_times"]=3, ["hurt_skill"]={ 20010, @@ -4642,7 +4633,7 @@ local monster_chapter = { [35201]={ ["monster_base"]=10020, ["hp"]=110160000, - ["atk"]=4570000, + ["atk"]=2610000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -4654,7 +4645,7 @@ local monster_chapter = { [35301]={ ["monster_base"]=10048, ["hp"]=123930000, - ["atk"]=4720000, + ["atk"]=2730000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -4666,7 +4657,7 @@ local monster_chapter = { [35401]={ ["monster_base"]=10012, ["hp"]=164430000, - ["atk"]=4880000, + ["atk"]=2850000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -4679,7 +4670,7 @@ local monster_chapter = { ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=227610000, - ["atk"]=5030000, + ["atk"]=3260000, ["atk_times"]=4, ["hurt_skill"]={ 30040, @@ -4697,7 +4688,7 @@ local monster_chapter = { [35601]={ ["monster_base"]=10004, ["hp"]=155790000, - ["atk"]=5060000, + ["atk"]=2990000, ["atk_times"]=3, ["hurt_skill"]={ 20010, @@ -4709,7 +4700,7 @@ local monster_chapter = { [35701]={ ["monster_base"]=10012, ["hp"]=172800000, - ["atk"]=5570000, + ["atk"]=3390000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -4721,7 +4712,7 @@ local monster_chapter = { [35801]={ ["monster_base"]=10037, ["hp"]=199530000, - ["atk"]=5210000, + ["atk"]=3140000, ["atk_times"]=3, ["hurt_skill"]={ 20106, @@ -4733,7 +4724,7 @@ local monster_chapter = { [35901]={ ["monster_base"]=10048, ["hp"]=227610000, - ["atk"]=5730000, + ["atk"]=3520000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -4746,7 +4737,7 @@ local monster_chapter = { ["monster_base"]=20009, ["is_boss"]=1, ["hp"]=427410000, - ["atk"]=5470000, + ["atk"]=3900000, ["atk_times"]=4, ["hurt_skill"]={ 30025, @@ -4765,7 +4756,7 @@ local monster_chapter = { [36101]={ ["monster_base"]=10014, ["hp"]=247590000, - ["atk"]=5500000, + ["atk"]=3670000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -4777,7 +4768,7 @@ local monster_chapter = { [36201]={ ["monster_base"]=10027, ["hp"]=280530000, - ["atk"]=5650000, + ["atk"]=3770000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -4789,7 +4780,7 @@ local monster_chapter = { [36301]={ ["monster_base"]=10017, ["hp"]=297000000, - ["atk"]=5780000, + ["atk"]=3900000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -4801,7 +4792,7 @@ local monster_chapter = { [36401]={ ["monster_base"]=10023, ["hp"]=322110000, - ["atk"]=5930000, + ["atk"]=4090000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -4814,7 +4805,7 @@ local monster_chapter = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=582120000, - ["atk"]=5600000, + ["atk"]=4090000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -4832,7 +4823,7 @@ local monster_chapter = { [36601]={ ["monster_base"]=10014, ["hp"]=386370000, - ["atk"]=6060000, + ["atk"]=4220000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -4844,7 +4835,7 @@ local monster_chapter = { [36701]={ ["monster_base"]=10002, ["hp"]=411480000, - ["atk"]=6220000, + ["atk"]=4310000, ["atk_times"]=3, ["hurt_skill"]={ 20004, @@ -4856,7 +4847,7 @@ local monster_chapter = { [36801]={ ["monster_base"]=10029, ["hp"]=451710000, - ["atk"]=6370000, + ["atk"]=4470000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -4868,7 +4859,7 @@ local monster_chapter = { [36901]={ ["monster_base"]=10036, ["hp"]=493290000, - ["atk"]=6530000, + ["atk"]=4620000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -4881,7 +4872,7 @@ local monster_chapter = { ["monster_base"]=30009, ["is_boss"]=2, ["hp"]=778140000, - ["atk"]=8130000, + ["atk"]=6260000, ["atk_times"]=4, ["hurt_skill"]={ 40021, @@ -4897,7 +4888,7 @@ local monster_chapter = { [37101]={ ["monster_base"]=10054, ["hp"]=82890000, - ["atk"]=4590000, + ["atk"]=2530000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -4909,7 +4900,7 @@ local monster_chapter = { [37201]={ ["monster_base"]=10024, ["hp"]=114480000, - ["atk"]=4800000, + ["atk"]=2690000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -4921,7 +4912,7 @@ local monster_chapter = { [37301]={ ["monster_base"]=10012, ["hp"]=128790000, - ["atk"]=4950000, + ["atk"]=2810000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -4933,7 +4924,7 @@ local monster_chapter = { [37401]={ ["monster_base"]=10048, ["hp"]=170910000, - ["atk"]=5110000, + ["atk"]=2930000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -4946,7 +4937,7 @@ local monster_chapter = { ["monster_base"]=20009, ["is_boss"]=1, ["hp"]=236520000, - ["atk"]=5260000, + ["atk"]=3350000, ["atk_times"]=4, ["hurt_skill"]={ 30025, @@ -4965,7 +4956,7 @@ local monster_chapter = { [37601]={ ["monster_base"]=10048, ["hp"]=162000000, - ["atk"]=5290000, + ["atk"]=3080000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -4977,7 +4968,7 @@ local monster_chapter = { [37701]={ ["monster_base"]=10054, ["hp"]=179550000, - ["atk"]=5830000, + ["atk"]=3490000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -4989,7 +4980,7 @@ local monster_chapter = { [37801]={ ["monster_base"]=10012, ["hp"]=207360000, - ["atk"]=5470000, + ["atk"]=3230000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -5001,7 +4992,7 @@ local monster_chapter = { [37901]={ ["monster_base"]=10024, ["hp"]=236520000, - ["atk"]=6010000, + ["atk"]=3620000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -5014,7 +5005,7 @@ local monster_chapter = { ["monster_base"]=20006, ["is_boss"]=1, ["hp"]=443880000, - ["atk"]=5700000, + ["atk"]=4010000, ["atk_times"]=4, ["hurt_skill"]={ 30016, @@ -5032,7 +5023,7 @@ local monster_chapter = { [38101]={ ["monster_base"]=10020, ["hp"]=257310000, - ["atk"]=5750000, + ["atk"]=3770000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -5044,7 +5035,7 @@ local monster_chapter = { [38201]={ ["monster_base"]=10053, ["hp"]=291330000, - ["atk"]=5910000, + ["atk"]=3880000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -5056,7 +5047,7 @@ local monster_chapter = { [38301]={ ["monster_base"]=10006, ["hp"]=308340000, - ["atk"]=6040000, + ["atk"]=4010000, ["atk_times"]=3, ["hurt_skill"]={ 20016, @@ -5068,7 +5059,7 @@ local monster_chapter = { [38401]={ ["monster_base"]=10004, ["hp"]=334530000, - ["atk"]=6220000, + ["atk"]=4210000, ["atk_times"]=3, ["hurt_skill"]={ 20010, @@ -5081,7 +5072,7 @@ local monster_chapter = { ["monster_base"]=20004, ["is_boss"]=1, ["hp"]=604530000, - ["atk"]=5860000, + ["atk"]=4210000, ["atk_times"]=4, ["hurt_skill"]={ 30010, @@ -5096,7 +5087,7 @@ local monster_chapter = { [38601]={ ["monster_base"]=10053, ["hp"]=401220000, - ["atk"]=6350000, + ["atk"]=4340000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -5108,7 +5099,7 @@ local monster_chapter = { [38701]={ ["monster_base"]=10049, ["hp"]=427410000, - ["atk"]=6500000, + ["atk"]=4430000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -5120,7 +5111,7 @@ local monster_chapter = { [38801]={ ["monster_base"]=10020, ["hp"]=468990000, - ["atk"]=6680000, + ["atk"]=4600000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -5132,7 +5123,7 @@ local monster_chapter = { [38901]={ ["monster_base"]=10054, ["hp"]=512190000, - ["atk"]=6810000, + ["atk"]=4750000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -5145,7 +5136,7 @@ local monster_chapter = { ["monster_base"]=20010, ["is_boss"]=2, ["hp"]=808110000, - ["atk"]=8490000, + ["atk"]=6440000, ["atk_times"]=4, ["hurt_skill"]={ 30028, @@ -5166,7 +5157,7 @@ local monster_chapter = { [39101]={ ["monster_base"]=10052, ["hp"]=85050000, - ["atk"]=4750000, + ["atk"]=2610000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -5178,7 +5169,7 @@ local monster_chapter = { [39201]={ ["monster_base"]=10050, ["hp"]=117450000, - ["atk"]=4980000, + ["atk"]=2780000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -5190,7 +5181,7 @@ local monster_chapter = { [39301]={ ["monster_base"]=10010, ["hp"]=132030000, - ["atk"]=5130000, + ["atk"]=2900000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -5202,7 +5193,7 @@ local monster_chapter = { [39401]={ ["monster_base"]=10053, ["hp"]=175230000, - ["atk"]=5310000, + ["atk"]=3020000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -5215,7 +5206,7 @@ local monster_chapter = { ["monster_base"]=20005, ["is_boss"]=1, ["hp"]=242460000, - ["atk"]=5440000, + ["atk"]=3460000, ["atk_times"]=4, ["hurt_skill"]={ 30013, @@ -5233,7 +5224,7 @@ local monster_chapter = { [39601]={ ["monster_base"]=10040, ["hp"]=166050000, - ["atk"]=5500000, + ["atk"]=3180000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -5245,7 +5236,7 @@ local monster_chapter = { [39701]={ ["monster_base"]=10052, ["hp"]=184140000, - ["atk"]=6040000, + ["atk"]=3600000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -5257,7 +5248,7 @@ local monster_chapter = { [39801]={ ["monster_base"]=10054, ["hp"]=212760000, - ["atk"]=5680000, + ["atk"]=3330000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -5269,7 +5260,7 @@ local monster_chapter = { [39901]={ ["monster_base"]=10038, ["hp"]=242460000, - ["atk"]=6220000, + ["atk"]=3740000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -5282,7 +5273,7 @@ local monster_chapter = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=454950000, - ["atk"]=5910000, + ["atk"]=4140000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -5300,7 +5291,7 @@ local monster_chapter = { [40101]={ ["monster_base"]=10009, ["hp"]=263790000, - ["atk"]=5960000, + ["atk"]=3890000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -5312,7 +5303,7 @@ local monster_chapter = { [40201]={ ["monster_base"]=10054, ["hp"]=298620000, - ["atk"]=6110000, + ["atk"]=4000000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -5324,7 +5315,7 @@ local monster_chapter = { [40301]={ ["monster_base"]=10052, ["hp"]=316170000, - ["atk"]=6240000, + ["atk"]=4140000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -5336,7 +5327,7 @@ local monster_chapter = { [40401]={ ["monster_base"]=10050, ["hp"]=342900000, - ["atk"]=6450000, + ["atk"]=4340000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -5349,7 +5340,7 @@ local monster_chapter = { ["monster_base"]=20008, ["is_boss"]=1, ["hp"]=619650000, - ["atk"]=6040000, + ["atk"]=4340000, ["atk_times"]=4, ["hurt_skill"]={ 30022, @@ -5367,7 +5358,7 @@ local monster_chapter = { [40601]={ ["monster_base"]=10038, ["hp"]=411210000, - ["atk"]=6550000, + ["atk"]=4480000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -5379,7 +5370,7 @@ local monster_chapter = { [40701]={ ["monster_base"]=10053, ["hp"]=438210000, - ["atk"]=6730000, + ["atk"]=4570000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -5391,7 +5382,7 @@ local monster_chapter = { [40801]={ ["monster_base"]=10050, ["hp"]=480870000, - ["atk"]=6890000, + ["atk"]=4750000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -5403,7 +5394,7 @@ local monster_chapter = { [40901]={ ["monster_base"]=10040, ["hp"]=525150000, - ["atk"]=7040000, + ["atk"]=4900000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -5416,7 +5407,7 @@ local monster_chapter = { ["monster_base"]=30015, ["is_boss"]=2, ["hp"]=828360000, - ["atk"]=8750000, + ["atk"]=6640000, ["atk_times"]=4, ["hurt_skill"]={ 40025, @@ -5432,7 +5423,7 @@ local monster_chapter = { [41101]={ ["monster_base"]=10043, ["hp"]=87310000, - ["atk"]=4920000, + ["atk"]=2690000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -5444,7 +5435,7 @@ local monster_chapter = { [41201]={ ["monster_base"]=10054, ["hp"]=120420000, - ["atk"]=5150000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -5456,7 +5447,7 @@ local monster_chapter = { [41301]={ ["monster_base"]=10038, ["hp"]=135370000, - ["atk"]=5300000, + ["atk"]=2990000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -5468,7 +5459,7 @@ local monster_chapter = { [41401]={ ["monster_base"]=10053, ["hp"]=179690000, - ["atk"]=5480000, + ["atk"]=3110000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -5481,7 +5472,7 @@ local monster_chapter = { ["monster_base"]=20010, ["is_boss"]=1, ["hp"]=248580000, - ["atk"]=5610000, + ["atk"]=3570000, ["atk_times"]=4, ["hurt_skill"]={ 30028, @@ -5502,7 +5493,7 @@ local monster_chapter = { [41601]={ ["monster_base"]=10038, ["hp"]=170350000, - ["atk"]=5660000, + ["atk"]=3280000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -5514,7 +5505,7 @@ local monster_chapter = { [41701]={ ["monster_base"]=10053, ["hp"]=188770000, - ["atk"]=6220000, + ["atk"]=3710000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -5526,7 +5517,7 @@ local monster_chapter = { [41801]={ ["monster_base"]=10006, ["hp"]=218140000, - ["atk"]=5870000, + ["atk"]=3430000, ["atk_times"]=3, ["hurt_skill"]={ 20016, @@ -5538,7 +5529,7 @@ local monster_chapter = { [41901]={ ["monster_base"]=10004, ["hp"]=248580000, - ["atk"]=6400000, + ["atk"]=3860000, ["atk_times"]=3, ["hurt_skill"]={ 20010, @@ -5551,7 +5542,7 @@ local monster_chapter = { ["monster_base"]=20004, ["is_boss"]=1, ["hp"]=466180000, - ["atk"]=6070000, + ["atk"]=4270000, ["atk_times"]=4, ["hurt_skill"]={ 30010, @@ -5566,7 +5557,7 @@ local monster_chapter = { [42101]={ ["monster_base"]=10052, ["hp"]=270470000, - ["atk"]=6150000, + ["atk"]=4010000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -5578,7 +5569,7 @@ local monster_chapter = { [42201]={ ["monster_base"]=10050, ["hp"]=305980000, - ["atk"]=6320000, + ["atk"]=4120000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -5590,7 +5581,7 @@ local monster_chapter = { [42301]={ ["monster_base"]=10010, ["hp"]=324140000, - ["atk"]=6450000, + ["atk"]=4270000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -5602,7 +5593,7 @@ local monster_chapter = { [42401]={ ["monster_base"]=10039, ["hp"]=351370000, - ["atk"]=6660000, + ["atk"]=4470000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -5615,7 +5606,7 @@ local monster_chapter = { ["monster_base"]=20005, ["is_boss"]=1, ["hp"]=634930000, - ["atk"]=6220000, + ["atk"]=4470000, ["atk_times"]=4, ["hurt_skill"]={ 30013, @@ -5633,7 +5624,7 @@ local monster_chapter = { [42601]={ ["monster_base"]=10040, ["hp"]=421330000, - ["atk"]=6760000, + ["atk"]=4620000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -5645,7 +5636,7 @@ local monster_chapter = { [42701]={ ["monster_base"]=10010, ["hp"]=449090000, - ["atk"]=6940000, + ["atk"]=4710000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -5657,7 +5648,7 @@ local monster_chapter = { [42801]={ ["monster_base"]=10040, ["hp"]=492620000, - ["atk"]=7110000, + ["atk"]=4900000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -5669,7 +5660,7 @@ local monster_chapter = { [42901]={ ["monster_base"]=10009, ["hp"]=538010000, - ["atk"]=7270000, + ["atk"]=5050000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -5682,7 +5673,7 @@ local monster_chapter = { ["monster_base"]=20024, ["is_boss"]=2, ["hp"]=848790000, - ["atk"]=8980000, + ["atk"]=6840000, ["atk_times"]=4, ["hurt_skill"]={ 30070, @@ -5701,7 +5692,7 @@ local monster_chapter = { [43101]={ ["monster_base"]=10009, ["hp"]=91310000, - ["atk"]=5180000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -5713,7 +5704,7 @@ local monster_chapter = { [43201]={ ["monster_base"]=10054, ["hp"]=125760000, - ["atk"]=5430000, + ["atk"]=2960000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -5725,7 +5716,7 @@ local monster_chapter = { [43301]={ ["monster_base"]=10052, ["hp"]=141240000, - ["atk"]=5580000, + ["atk"]=3080000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -5737,7 +5728,7 @@ local monster_chapter = { [43401]={ ["monster_base"]=10050, ["hp"]=187430000, - ["atk"]=5760000, + ["atk"]=3200000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -5750,7 +5741,7 @@ local monster_chapter = { ["monster_base"]=20008, ["is_boss"]=1, ["hp"]=259260000, - ["atk"]=5890000, + ["atk"]=3680000, ["atk_times"]=4, ["hurt_skill"]={ 30022, @@ -5768,7 +5759,7 @@ local monster_chapter = { [43601]={ ["monster_base"]=10044, ["hp"]=177820000, - ["atk"]=5970000, + ["atk"]=3380000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -5780,7 +5771,7 @@ local monster_chapter = { [43701]={ ["monster_base"]=10054, ["hp"]=197050000, - ["atk"]=6550000, + ["atk"]=3820000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -5792,7 +5783,7 @@ local monster_chapter = { [43801]={ ["monster_base"]=10014, ["hp"]=227750000, - ["atk"]=6170000, + ["atk"]=3530000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -5804,7 +5795,7 @@ local monster_chapter = { [43901]={ ["monster_base"]=10018, ["hp"]=259260000, - ["atk"]=6730000, + ["atk"]=3980000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -5817,7 +5808,7 @@ local monster_chapter = { ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=486210000, - ["atk"]=6380000, + ["atk"]=4400000, ["atk_times"]=4, ["hurt_skill"]={ 30040, @@ -5835,7 +5826,7 @@ local monster_chapter = { [44101]={ ["monster_base"]=10009, ["hp"]=282220000, - ["atk"]=6480000, + ["atk"]=4130000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -5847,7 +5838,7 @@ local monster_chapter = { [44201]={ ["monster_base"]=10010, ["hp"]=319330000, - ["atk"]=6660000, + ["atk"]=4240000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -5859,7 +5850,7 @@ local monster_chapter = { [44301]={ ["monster_base"]=10053, ["hp"]=338290000, - ["atk"]=6780000, + ["atk"]=4400000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -5871,7 +5862,7 @@ local monster_chapter = { [44401]={ ["monster_base"]=10039, ["hp"]=366590000, - ["atk"]=6990000, + ["atk"]=4600000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -5884,7 +5875,7 @@ local monster_chapter = { ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=662430000, - ["atk"]=6550000, + ["atk"]=4600000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -5899,7 +5890,7 @@ local monster_chapter = { [44601]={ ["monster_base"]=10052, ["hp"]=439480000, - ["atk"]=7110000, + ["atk"]=4760000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -5911,7 +5902,7 @@ local monster_chapter = { [44701]={ ["monster_base"]=10043, ["hp"]=468590000, - ["atk"]=7290000, + ["atk"]=4850000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -5923,7 +5914,7 @@ local monster_chapter = { [44801]={ ["monster_base"]=10054, ["hp"]=513980000, - ["atk"]=7470000, + ["atk"]=5050000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -5935,7 +5926,7 @@ local monster_chapter = { [44901]={ ["monster_base"]=10050, ["hp"]=561230000, - ["atk"]=7620000, + ["atk"]=5200000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -5948,7 +5939,7 @@ local monster_chapter = { ["monster_base"]=20019, ["is_boss"]=2, ["hp"]=708290000, - ["atk"]=8460000, + ["atk"]=6330000, ["atk_times"]=4, ["hurt_skill"]={ 30055, @@ -5968,7 +5959,7 @@ local monster_chapter = { ["monster_base"]=20010, ["is_boss"]=1, ["hp"]=531220000, - ["atk"]=7520000, + ["atk"]=5630000, ["atk_times"]=4, ["hurt_skill"]={ 30028, @@ -5989,7 +5980,7 @@ local monster_chapter = { [45101]={ ["monster_base"]=10046, ["hp"]=92140000, - ["atk"]=5270000, + ["atk"]=2850000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -6001,7 +5992,7 @@ local monster_chapter = { [45201]={ ["monster_base"]=10043, ["hp"]=126720000, - ["atk"]=5520000, + ["atk"]=3050000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -6013,7 +6004,7 @@ local monster_chapter = { [45301]={ ["monster_base"]=10050, ["hp"]=142300000, - ["atk"]=5700000, + ["atk"]=3170000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -6025,7 +6016,7 @@ local monster_chapter = { [45401]={ ["monster_base"]=10054, ["hp"]=188760000, - ["atk"]=5870000, + ["atk"]=3290000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -6038,7 +6029,7 @@ local monster_chapter = { ["monster_base"]=20010, ["is_boss"]=1, ["hp"]=261100000, - ["atk"]=5950000, + ["atk"]=3790000, ["atk_times"]=4, ["hurt_skill"]={ 30028, @@ -6059,7 +6050,7 @@ local monster_chapter = { [45601]={ ["monster_base"]=10052, ["hp"]=179260000, - ["atk"]=6050000, + ["atk"]=3480000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -6071,7 +6062,7 @@ local monster_chapter = { [45701]={ ["monster_base"]=10045, ["hp"]=198530000, - ["atk"]=6650000, + ["atk"]=3930000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -6083,7 +6074,7 @@ local monster_chapter = { [45801]={ ["monster_base"]=10043, ["hp"]=229420000, - ["atk"]=6270000, + ["atk"]=3630000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -6095,7 +6086,7 @@ local monster_chapter = { [45901]={ ["monster_base"]=10053, ["hp"]=261100000, - ["atk"]=6830000, + ["atk"]=4100000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -6108,7 +6099,7 @@ local monster_chapter = { ["monster_base"]=20005, ["is_boss"]=1, ["hp"]=489720000, - ["atk"]=6480000, + ["atk"]=4530000, ["atk_times"]=4, ["hurt_skill"]={ 30013, @@ -6126,7 +6117,7 @@ local monster_chapter = { [46101]={ ["monster_base"]=10045, ["hp"]=284330000, - ["atk"]=6550000, + ["atk"]=4250000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -6138,7 +6129,7 @@ local monster_chapter = { [46201]={ ["monster_base"]=10052, ["hp"]=321550000, - ["atk"]=6750000, + ["atk"]=4360000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -6150,7 +6141,7 @@ local monster_chapter = { [46301]={ ["monster_base"]=10010, ["hp"]=340820000, - ["atk"]=6880000, + ["atk"]=4530000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -6162,7 +6153,7 @@ local monster_chapter = { [46401]={ ["monster_base"]=10039, ["hp"]=369340000, - ["atk"]=7080000, + ["atk"]=4730000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -6175,7 +6166,7 @@ local monster_chapter = { ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=667130000, - ["atk"]=6630000, + ["atk"]=4730000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -6190,7 +6181,7 @@ local monster_chapter = { [46601]={ ["monster_base"]=10050, ["hp"]=442730000, - ["atk"]=7210000, + ["atk"]=4900000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -6202,7 +6193,7 @@ local monster_chapter = { [46701]={ ["monster_base"]=10043, ["hp"]=472030000, - ["atk"]=7410000, + ["atk"]=4990000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -6214,7 +6205,7 @@ local monster_chapter = { [46801]={ ["monster_base"]=10046, ["hp"]=517700000, - ["atk"]=7590000, + ["atk"]=5200000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -6226,7 +6217,7 @@ local monster_chapter = { [46901]={ ["monster_base"]=10054, ["hp"]=565220000, - ["atk"]=7740000, + ["atk"]=5350000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -6239,7 +6230,7 @@ local monster_chapter = { ["monster_base"]=20020, ["is_boss"]=2, ["hp"]=713220000, - ["atk"]=8550000, + ["atk"]=6510000, ["atk_times"]=4, ["hurt_skill"]={ 30058, @@ -6259,7 +6250,7 @@ local monster_chapter = { ["monster_base"]=20010, ["is_boss"]=1, ["hp"]=534910000, - ["atk"]=7600000, + ["atk"]=5790000, ["atk_times"]=4, ["hurt_skill"]={ 30028, @@ -6280,7 +6271,7 @@ local monster_chapter = { [47101]={ ["monster_base"]=10047, ["hp"]=94250000, - ["atk"]=5440000, + ["atk"]=2940000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -6292,7 +6283,7 @@ local monster_chapter = { [47201]={ ["monster_base"]=10038, ["hp"]=129620000, - ["atk"]=5700000, + ["atk"]=3150000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -6304,7 +6295,7 @@ local monster_chapter = { [47301]={ ["monster_base"]=10021, ["hp"]=145730000, - ["atk"]=5870000, + ["atk"]=3270000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -6316,7 +6307,7 @@ local monster_chapter = { [47401]={ ["monster_base"]=10040, ["hp"]=193250000, - ["atk"]=6050000, + ["atk"]=3390000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -6329,7 +6320,7 @@ local monster_chapter = { ["monster_base"]=20017, ["is_boss"]=1, ["hp"]=267170000, - ["atk"]=6120000, + ["atk"]=3910000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -6344,7 +6335,7 @@ local monster_chapter = { [47601]={ ["monster_base"]=10010, ["hp"]=183480000, - ["atk"]=6250000, + ["atk"]=3590000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -6356,7 +6347,7 @@ local monster_chapter = { [47701]={ ["monster_base"]=10039, ["hp"]=203020000, - ["atk"]=6850000, + ["atk"]=4050000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -6368,7 +6359,7 @@ local monster_chapter = { [47801]={ ["monster_base"]=10040, ["hp"]=234700000, - ["atk"]=6450000, + ["atk"]=3740000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -6380,7 +6371,7 @@ local monster_chapter = { [47901]={ ["monster_base"]=10009, ["hp"]=267170000, - ["atk"]=7060000, + ["atk"]=4230000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -6393,7 +6384,7 @@ local monster_chapter = { ["monster_base"]=20024, ["is_boss"]=1, ["hp"]=500810000, - ["atk"]=6650000, + ["atk"]=4670000, ["atk_times"]=4, ["hurt_skill"]={ 30070, @@ -6412,7 +6403,7 @@ local monster_chapter = { [48101]={ ["monster_base"]=10052, ["hp"]=290930000, - ["atk"]=6750000, + ["atk"]=4380000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -6424,7 +6415,7 @@ local monster_chapter = { [48201]={ ["monster_base"]=10043, ["hp"]=328940000, - ["atk"]=6960000, + ["atk"]=4500000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -6436,7 +6427,7 @@ local monster_chapter = { [48301]={ ["monster_base"]=10050, ["hp"]=348740000, - ["atk"]=7080000, + ["atk"]=4670000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -6448,7 +6439,7 @@ local monster_chapter = { [48401]={ ["monster_base"]=10054, ["hp"]=377780000, - ["atk"]=7310000, + ["atk"]=4880000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -6461,7 +6452,7 @@ local monster_chapter = { ["monster_base"]=20019, ["is_boss"]=1, ["hp"]=682180000, - ["atk"]=6800000, + ["atk"]=4880000, ["atk_times"]=4, ["hurt_skill"]={ 30055, @@ -6479,7 +6470,7 @@ local monster_chapter = { [48601]={ ["monster_base"]=10029, ["hp"]=452760000, - ["atk"]=7430000, + ["atk"]=5050000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -6491,7 +6482,7 @@ local monster_chapter = { [48701]={ ["monster_base"]=10050, ["hp"]=482860000, - ["atk"]=7610000, + ["atk"]=5150000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -6503,7 +6494,7 @@ local monster_chapter = { [48801]={ ["monster_base"]=10043, ["hp"]=529580000, - ["atk"]=7810000, + ["atk"]=5360000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -6515,7 +6506,7 @@ local monster_chapter = { [48901]={ ["monster_base"]=10028, ["hp"]=578160000, - ["atk"]=7960000, + ["atk"]=5520000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -6528,7 +6519,7 @@ local monster_chapter = { ["monster_base"]=20013, ["is_boss"]=2, ["hp"]=911860000, - ["atk"]=9780000, + ["atk"]=7460000, ["atk_times"]=4, ["hurt_skill"]={ 30037, @@ -6544,7 +6535,7 @@ local monster_chapter = { [49101]={ ["monster_base"]=10052, ["hp"]=98400000, - ["atk"]=5750000, + ["atk"]=3030000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -6556,7 +6547,7 @@ local monster_chapter = { [49201]={ ["monster_base"]=10045, ["hp"]=135460000, - ["atk"]=5980000, + ["atk"]=3250000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -6568,7 +6559,7 @@ local monster_chapter = { [49301]={ ["monster_base"]=10043, ["hp"]=152160000, - ["atk"]=6180000, + ["atk"]=3370000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -6580,7 +6571,7 @@ local monster_chapter = { [49401]={ ["monster_base"]=10053, ["hp"]=201750000, - ["atk"]=6370000, + ["atk"]=3490000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -6593,7 +6584,7 @@ local monster_chapter = { ["monster_base"]=20005, ["is_boss"]=1, ["hp"]=279010000, - ["atk"]=6450000, + ["atk"]=4030000, ["atk_times"]=4, ["hurt_skill"]={ 30013, @@ -6611,7 +6602,7 @@ local monster_chapter = { [49601]={ ["monster_base"]=10010, ["hp"]=191570000, - ["atk"]=6570000, + ["atk"]=3700000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -6623,7 +6614,7 @@ local monster_chapter = { [49701]={ ["monster_base"]=10039, ["hp"]=211930000, - ["atk"]=7200000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -6635,7 +6626,7 @@ local monster_chapter = { [49801]={ ["monster_base"]=10040, ["hp"]=245080000, - ["atk"]=6800000, + ["atk"]=3850000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -6647,7 +6638,7 @@ local monster_chapter = { [49901]={ ["monster_base"]=10009, ["hp"]=279010000, - ["atk"]=7400000, + ["atk"]=4360000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -6660,7 +6651,7 @@ local monster_chapter = { ["monster_base"]=20024, ["is_boss"]=1, ["hp"]=522780000, - ["atk"]=6970000, + ["atk"]=4810000, ["atk_times"]=4, ["hurt_skill"]={ 30070, @@ -6679,7 +6670,7 @@ local monster_chapter = { [50101]={ ["monster_base"]=10040, ["hp"]=303800000, - ["atk"]=7100000, + ["atk"]=4510000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -6691,7 +6682,7 @@ local monster_chapter = { [50201]={ ["monster_base"]=10039, ["hp"]=343480000, - ["atk"]=7320000, + ["atk"]=4640000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -6703,7 +6694,7 @@ local monster_chapter = { [50301]={ ["monster_base"]=10010, ["hp"]=364100000, - ["atk"]=7450000, + ["atk"]=4810000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -6715,7 +6706,7 @@ local monster_chapter = { [50401]={ ["monster_base"]=10039, ["hp"]=394370000, - ["atk"]=7670000, + ["atk"]=5030000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -6728,7 +6719,7 @@ local monster_chapter = { ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=712010000, - ["atk"]=7150000, + ["atk"]=5030000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -6743,7 +6734,7 @@ local monster_chapter = { [50601]={ ["monster_base"]=10010, ["hp"]=472670000, - ["atk"]=7820000, + ["atk"]=5200000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -6755,7 +6746,7 @@ local monster_chapter = { [50701]={ ["monster_base"]=10040, ["hp"]=503990000, - ["atk"]=7990000, + ["atk"]=5310000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -6767,7 +6758,7 @@ local monster_chapter = { [50801]={ ["monster_base"]=10038, ["hp"]=552800000, - ["atk"]=8190000, + ["atk"]=5520000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -6779,7 +6770,7 @@ local monster_chapter = { [50901]={ ["monster_base"]=10032, ["hp"]=603430000, - ["atk"]=8370000, + ["atk"]=5690000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -6792,7 +6783,7 @@ local monster_chapter = { ["monster_base"]=20018, ["is_boss"]=2, ["hp"]=951870000, - ["atk"]=10230000, + ["atk"]=7680000, ["atk_times"]=4, ["hurt_skill"]={ 30052, @@ -6811,7 +6802,7 @@ local monster_chapter = { [51101]={ ["monster_base"]=10033, ["hp"]=100490000, - ["atk"]=5900000, + ["atk"]=3120000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -6823,7 +6814,7 @@ local monster_chapter = { [51201]={ ["monster_base"]=10029, ["hp"]=138070000, - ["atk"]=6150000, + ["atk"]=3350000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -6835,7 +6826,7 @@ local monster_chapter = { [51301]={ ["monster_base"]=10031, ["hp"]=155030000, - ["atk"]=6350000, + ["atk"]=3470000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -6847,7 +6838,7 @@ local monster_chapter = { [51401]={ ["monster_base"]=10028, ["hp"]=205670000, - ["atk"]=6550000, + ["atk"]=3590000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -6860,7 +6851,7 @@ local monster_chapter = { ["monster_base"]=20013, ["is_boss"]=1, ["hp"]=284490000, - ["atk"]=6600000, + ["atk"]=4150000, ["atk_times"]=4, ["hurt_skill"]={ 30037, @@ -6876,7 +6867,7 @@ local monster_chapter = { [51601]={ ["monster_base"]=10030, ["hp"]=195230000, - ["atk"]=6750000, + ["atk"]=3810000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -6888,7 +6879,7 @@ local monster_chapter = { [51701]={ ["monster_base"]=10029, ["hp"]=216110000, - ["atk"]=7400000, + ["atk"]=4290000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -6900,7 +6891,7 @@ local monster_chapter = { [51801]={ ["monster_base"]=10033, ["hp"]=249780000, - ["atk"]=6970000, + ["atk"]=3960000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -6912,7 +6903,7 @@ local monster_chapter = { [51901]={ ["monster_base"]=10054, ["hp"]=284490000, - ["atk"]=7590000, + ["atk"]=4490000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -6925,7 +6916,7 @@ local monster_chapter = { ["monster_base"]=20010, ["is_boss"]=1, ["hp"]=532700000, - ["atk"]=7150000, + ["atk"]=4950000, ["atk_times"]=4, ["hurt_skill"]={ 30028, @@ -6946,7 +6937,7 @@ local monster_chapter = { [52101]={ ["monster_base"]=10053, ["hp"]=309550000, - ["atk"]=7300000, + ["atk"]=4640000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -6958,7 +6949,7 @@ local monster_chapter = { [52201]={ ["monster_base"]=10033, ["hp"]=350000000, - ["atk"]=7490000, + ["atk"]=4780000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -6970,7 +6961,7 @@ local monster_chapter = { [52301]={ ["monster_base"]=10029, ["hp"]=371140000, - ["atk"]=7640000, + ["atk"]=4950000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -6982,7 +6973,7 @@ local monster_chapter = { [52401]={ ["monster_base"]=10054, ["hp"]=401940000, - ["atk"]=7870000, + ["atk"]=5180000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -6995,7 +6986,7 @@ local monster_chapter = { ["monster_base"]=20020, ["is_boss"]=1, ["hp"]=725580000, - ["atk"]=7320000, + ["atk"]=5180000, ["atk_times"]=4, ["hurt_skill"]={ 30058, @@ -7013,7 +7004,7 @@ local monster_chapter = { [52601]={ ["monster_base"]=10053, ["hp"]=481550000, - ["atk"]=8020000, + ["atk"]=5350000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -7025,7 +7016,7 @@ local monster_chapter = { [52701]={ ["monster_base"]=10028, ["hp"]=513650000, - ["atk"]=8220000, + ["atk"]=5470000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -7037,7 +7028,7 @@ local monster_chapter = { [52801]={ ["monster_base"]=10046, ["hp"]=563240000, - ["atk"]=8420000, + ["atk"]=5680000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -7049,7 +7040,7 @@ local monster_chapter = { [52901]={ ["monster_base"]=10058, ["hp"]=614920000, - ["atk"]=8570000, + ["atk"]=5860000, ["atk_times"]=3, ["hurt_skill"]={ 20169, @@ -7062,7 +7053,7 @@ local monster_chapter = { ["monster_base"]=20032, ["is_boss"]=2, ["hp"]=969880000, - ["atk"]=10460000, + ["atk"]=7900000, ["atk_times"]=4, ["hurt_skill"]={ 30094, @@ -7084,7 +7075,7 @@ local monster_chapter = { [53101]={ ["monster_base"]=10057, ["hp"]=102570000, - ["atk"]=6080000, + ["atk"]=3210000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -7096,7 +7087,7 @@ local monster_chapter = { [53201]={ ["monster_base"]=10046, ["hp"]=140940000, - ["atk"]=6320000, + ["atk"]=3450000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -7108,7 +7099,7 @@ local monster_chapter = { [53301]={ ["monster_base"]=10052, ["hp"]=158170000, - ["atk"]=6520000, + ["atk"]=3570000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -7120,7 +7111,7 @@ local monster_chapter = { [53401]={ ["monster_base"]=10029, ["hp"]=209840000, - ["atk"]=6720000, + ["atk"]=3690000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -7133,7 +7124,7 @@ local monster_chapter = { ["monster_base"]=20008, ["is_boss"]=1, ["hp"]=290230000, - ["atk"]=6770000, + ["atk"]=4270000, ["atk_times"]=4, ["hurt_skill"]={ 30022, @@ -7151,7 +7142,7 @@ local monster_chapter = { [53601]={ ["monster_base"]=10058, ["hp"]=199140000, - ["atk"]=6950000, + ["atk"]=3920000, ["atk_times"]=3, ["hurt_skill"]={ 20169, @@ -7163,7 +7154,7 @@ local monster_chapter = { [53701]={ ["monster_base"]=10033, ["hp"]=220550000, - ["atk"]=7590000, + ["atk"]=4410000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -7175,7 +7166,7 @@ local monster_chapter = { [53801]={ ["monster_base"]=10044, ["hp"]=255000000, - ["atk"]=7170000, + ["atk"]=4070000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -7187,7 +7178,7 @@ local monster_chapter = { [53901]={ ["monster_base"]=10053, ["hp"]=290230000, - ["atk"]=7790000, + ["atk"]=4620000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -7200,7 +7191,7 @@ local monster_chapter = { ["monster_base"]=20011, ["is_boss"]=1, ["hp"]=543400000, - ["atk"]=7350000, + ["atk"]=5090000, ["atk_times"]=4, ["hurt_skill"]={ 30031, @@ -7215,7 +7206,7 @@ local monster_chapter = { [54101]={ ["monster_base"]=10029, ["hp"]=315810000, - ["atk"]=7490000, + ["atk"]=4770000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -7227,7 +7218,7 @@ local monster_chapter = { [54201]={ ["monster_base"]=10058, ["hp"]=357050000, - ["atk"]=7720000, + ["atk"]=4920000, ["atk_times"]=3, ["hurt_skill"]={ 20169, @@ -7239,7 +7230,7 @@ local monster_chapter = { [54301]={ ["monster_base"]=10052, ["hp"]=378710000, - ["atk"]=7840000, + ["atk"]=5090000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -7251,7 +7242,7 @@ local monster_chapter = { [54401]={ ["monster_base"]=10054, ["hp"]=410030000, - ["atk"]=8090000, + ["atk"]=5330000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -7264,7 +7255,7 @@ local monster_chapter = { ["monster_base"]=20005, ["is_boss"]=1, ["hp"]=740200000, - ["atk"]=7520000, + ["atk"]=5330000, ["atk_times"]=4, ["hurt_skill"]={ 30013, @@ -7282,7 +7273,7 @@ local monster_chapter = { [54601]={ ["monster_base"]=10053, ["hp"]=491200000, - ["atk"]=8220000, + ["atk"]=5500000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -7294,7 +7285,7 @@ local monster_chapter = { [54701]={ ["monster_base"]=10028, ["hp"]=524090000, - ["atk"]=8420000, + ["atk"]=5630000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -7306,7 +7297,7 @@ local monster_chapter = { [54801]={ ["monster_base"]=10046, ["hp"]=574720000, - ["atk"]=8640000, + ["atk"]=5840000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -7318,7 +7309,7 @@ local monster_chapter = { [54901]={ ["monster_base"]=10057, ["hp"]=627440000, - ["atk"]=8790000, + ["atk"]=6030000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -7331,7 +7322,7 @@ local monster_chapter = { ["monster_base"]=20032, ["is_boss"]=2, ["hp"]=791560000, - ["atk"]=9630000, + ["atk"]=7300000, ["atk_times"]=4, ["hurt_skill"]={ 30094, @@ -7355,7 +7346,7 @@ local monster_chapter = { ["monster_base"]=20030, ["is_boss"]=2, ["hp"]=593670000, - ["atk"]=8560000, + ["atk"]=6490000, ["atk_times"]=4, ["hurt_skill"]={ 30088, @@ -7374,7 +7365,7 @@ local monster_chapter = { [55201]={ ["monster_base"]=10056, ["hp"]=106340000, - ["atk"]=6420000, + ["atk"]=3300000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -7386,7 +7377,7 @@ local monster_chapter = { [55301]={ ["monster_base"]=10009, ["hp"]=145860000, - ["atk"]=6670000, + ["atk"]=3550000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -7398,7 +7389,7 @@ local monster_chapter = { [55401]={ ["monster_base"]=10010, ["hp"]=163710000, - ["atk"]=6890000, + ["atk"]=3670000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -7410,7 +7401,7 @@ local monster_chapter = { [55501]={ ["monster_base"]=10039, ["hp"]=217260000, - ["atk"]=7080000, + ["atk"]=3790000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -7423,7 +7414,7 @@ local monster_chapter = { ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=300390000, - ["atk"]=7130000, + ["atk"]=4390000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -7438,7 +7429,7 @@ local monster_chapter = { [55701]={ ["monster_base"]=10009, ["hp"]=206040000, - ["atk"]=7310000, + ["atk"]=4030000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -7450,7 +7441,7 @@ local monster_chapter = { [55801]={ ["monster_base"]=10055, ["hp"]=228230000, - ["atk"]=8000000, + ["atk"]=4530000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -7462,7 +7453,7 @@ local monster_chapter = { [55901]={ ["monster_base"]=10046, ["hp"]=263930000, - ["atk"]=7550000, + ["atk"]=4180000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -7474,7 +7465,7 @@ local monster_chapter = { [56001]={ ["monster_base"]=10057, ["hp"]=300390000, - ["atk"]=8220000, + ["atk"]=4750000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -7487,7 +7478,7 @@ local monster_chapter = { ["monster_base"]=20030, ["is_boss"]=1, ["hp"]=562280000, - ["atk"]=7720000, + ["atk"]=5230000, ["atk_times"]=4, ["hurt_skill"]={ 30088, @@ -7506,7 +7497,7 @@ local monster_chapter = { [56201]={ ["monster_base"]=10058, ["hp"]=326910000, - ["atk"]=7900000, + ["atk"]=4900000, ["atk_times"]=3, ["hurt_skill"]={ 20169, @@ -7518,7 +7509,7 @@ local monster_chapter = { [56301]={ ["monster_base"]=10051, ["hp"]=369500000, - ["atk"]=8120000, + ["atk"]=5060000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -7530,7 +7521,7 @@ local monster_chapter = { [56401]={ ["monster_base"]=10053, ["hp"]=391940000, - ["atk"]=8270000, + ["atk"]=5230000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -7542,7 +7533,7 @@ local monster_chapter = { [56501]={ ["monster_base"]=10055, ["hp"]=424320000, - ["atk"]=8510000, + ["atk"]=5480000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -7555,7 +7546,7 @@ local monster_chapter = { ["monster_base"]=20029, ["is_boss"]=1, ["hp"]=766020000, - ["atk"]=7900000, + ["atk"]=5480000, ["atk_times"]=4, ["hurt_skill"]={ 30085, @@ -7573,7 +7564,7 @@ local monster_chapter = { [56701]={ ["monster_base"]=10058, ["hp"]=508220000, - ["atk"]=8660000, + ["atk"]=5650000, ["atk_times"]=3, ["hurt_skill"]={ 20169, @@ -7585,7 +7576,7 @@ local monster_chapter = { [56801]={ ["monster_base"]=10051, ["hp"]=542390000, - ["atk"]=8860000, + ["atk"]=5790000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -7597,7 +7588,7 @@ local monster_chapter = { [56901]={ ["monster_base"]=10055, ["hp"]=594660000, - ["atk"]=9080000, + ["atk"]=6000000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -7609,7 +7600,7 @@ local monster_chapter = { [57001]={ ["monster_base"]=10057, ["hp"]=649230000, - ["atk"]=9250000, + ["atk"]=6200000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -7622,7 +7613,7 @@ local monster_chapter = { ["monster_base"]=20031, ["is_boss"]=2, ["hp"]=1023830000, - ["atk"]=11240000, + ["atk"]=8340000, ["atk_times"]=4, ["hurt_skill"]={ 30091, @@ -7643,7 +7634,7 @@ local monster_chapter = { [57201]={ ["monster_base"]=10060, ["hp"]=110420000, - ["atk"]=6720000, + ["atk"]=3400000, ["atk_times"]=3, ["hurt_skill"]={ 20175, @@ -7655,7 +7646,7 @@ local monster_chapter = { [57301]={ ["monster_base"]=10046, ["hp"]=151470000, - ["atk"]=6960000, + ["atk"]=3660000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -7667,7 +7658,7 @@ local monster_chapter = { [57401]={ ["monster_base"]=10061, ["hp"]=169830000, - ["atk"]=7210000, + ["atk"]=3780000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -7679,7 +7670,7 @@ local monster_chapter = { [57501]={ ["monster_base"]=10052, ["hp"]=225420000, - ["atk"]=7400000, + ["atk"]=3900000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -7692,7 +7683,7 @@ local monster_chapter = { ["monster_base"]=20017, ["is_boss"]=1, ["hp"]=311610000, - ["atk"]=7430000, + ["atk"]=4520000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -7707,7 +7698,7 @@ local monster_chapter = { [57701]={ ["monster_base"]=10023, ["hp"]=213690000, - ["atk"]=7650000, + ["atk"]=4150000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -7719,7 +7710,7 @@ local monster_chapter = { [57801]={ ["monster_base"]=10060, ["hp"]=236900000, - ["atk"]=8360000, + ["atk"]=4660000, ["atk_times"]=3, ["hurt_skill"]={ 20175, @@ -7731,7 +7722,7 @@ local monster_chapter = { [57901]={ ["monster_base"]=10057, ["hp"]=273870000, - ["atk"]=7870000, + ["atk"]=4300000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -7743,7 +7734,7 @@ local monster_chapter = { [58001]={ ["monster_base"]=10055, ["hp"]=311610000, - ["atk"]=8590000, + ["atk"]=4890000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -7756,7 +7747,7 @@ local monster_chapter = { ["monster_base"]=20031, ["is_boss"]=1, ["hp"]=583190000, - ["atk"]=8040000, + ["atk"]=5380000, ["atk_times"]=4, ["hurt_skill"]={ 30091, @@ -7777,7 +7768,7 @@ local monster_chapter = { [58201]={ ["monster_base"]=10047, ["hp"]=339150000, - ["atk"]=8240000, + ["atk"]=5040000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -7789,7 +7780,7 @@ local monster_chapter = { [58301]={ ["monster_base"]=10052, ["hp"]=383270000, - ["atk"]=8460000, + ["atk"]=5210000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -7801,7 +7792,7 @@ local monster_chapter = { [58401]={ ["monster_base"]=10027, ["hp"]=406730000, - ["atk"]=8610000, + ["atk"]=5380000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -7813,7 +7804,7 @@ local monster_chapter = { [58501]={ ["monster_base"]=10061, ["hp"]=440130000, - ["atk"]=8880000, + ["atk"]=5640000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -7826,7 +7817,7 @@ local monster_chapter = { ["monster_base"]=20029, ["is_boss"]=1, ["hp"]=794580000, - ["atk"]=8240000, + ["atk"]=5640000, ["atk_times"]=4, ["hurt_skill"]={ 30085, @@ -7844,7 +7835,7 @@ local monster_chapter = { [58701]={ ["monster_base"]=10051, ["hp"]=527090000, - ["atk"]=9030000, + ["atk"]=5820000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -7856,7 +7847,7 @@ local monster_chapter = { [58801]={ ["monster_base"]=10027, ["hp"]=562530000, - ["atk"]=9250000, + ["atk"]=5960000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -7868,7 +7859,7 @@ local monster_chapter = { [58901]={ ["monster_base"]=10052, ["hp"]=616850000, - ["atk"]=9470000, + ["atk"]=6180000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -7880,7 +7871,7 @@ local monster_chapter = { [59001]={ ["monster_base"]=10061, ["hp"]=673460000, - ["atk"]=9640000, + ["atk"]=6380000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -7893,7 +7884,7 @@ local monster_chapter = { ["monster_base"]=20034, ["is_boss"]=2, ["hp"]=1062080000, - ["atk"]=11710000, + ["atk"]=8580000, ["atk_times"]=4, ["hurt_skill"]={ 30097, @@ -7913,7 +7904,7 @@ local monster_chapter = { [59201]={ ["monster_base"]=10060, ["hp"]=114160000, - ["atk"]=6970000, + ["atk"]=3590000, ["atk_times"]=3, ["hurt_skill"]={ 20175, @@ -7925,7 +7916,7 @@ local monster_chapter = { [59301]={ ["monster_base"]=10027, ["hp"]=156490000, - ["atk"]=7240000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -7937,7 +7928,7 @@ local monster_chapter = { [59401]={ ["monster_base"]=10051, ["hp"]=175390000, - ["atk"]=7480000, + ["atk"]=3990000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -7949,7 +7940,7 @@ local monster_chapter = { [59501]={ ["monster_base"]=10055, ["hp"]=232850000, - ["atk"]=7700000, + ["atk"]=4120000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -7962,7 +7953,7 @@ local monster_chapter = { ["monster_base"]=20019, ["is_boss"]=1, ["hp"]=321800000, - ["atk"]=7730000, + ["atk"]=4780000, ["atk_times"]=4, ["hurt_skill"]={ 30055, @@ -7980,7 +7971,7 @@ local monster_chapter = { [59701]={ ["monster_base"]=10057, ["hp"]=220750000, - ["atk"]=7950000, + ["atk"]=4380000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -7992,7 +7983,7 @@ local monster_chapter = { [59801]={ ["monster_base"]=10027, ["hp"]=244690000, - ["atk"]=8680000, + ["atk"]=4920000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -8004,7 +7995,7 @@ local monster_chapter = { [59901]={ ["monster_base"]=10052, ["hp"]=283000000, - ["atk"]=8190000, + ["atk"]=4540000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -8016,7 +8007,7 @@ local monster_chapter = { [60001]={ ["monster_base"]=10061, ["hp"]=321800000, - ["atk"]=8890000, + ["atk"]=5170000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -8029,7 +8020,7 @@ local monster_chapter = { ["monster_base"]=20034, ["is_boss"]=1, ["hp"]=602280000, - ["atk"]=8330000, + ["atk"]=5680000, ["atk_times"]=4, ["hurt_skill"]={ 30097, @@ -8049,7 +8040,7 @@ local monster_chapter = { [60201]={ ["monster_base"]=10047, ["hp"]=350280000, - ["atk"]=8550000, + ["atk"]=5320000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -8061,7 +8052,7 @@ local monster_chapter = { [60301]={ ["monster_base"]=10023, ["hp"]=395890000, - ["atk"]=8800000, + ["atk"]=5500000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -8073,7 +8064,7 @@ local monster_chapter = { [60401]={ ["monster_base"]=10046, ["hp"]=420080000, - ["atk"]=8940000, + ["atk"]=5680000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -8085,7 +8076,7 @@ local monster_chapter = { [60501]={ ["monster_base"]=10052, ["hp"]=454610000, - ["atk"]=9230000, + ["atk"]=5960000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -8098,7 +8089,7 @@ local monster_chapter = { ["monster_base"]=20010, ["is_boss"]=1, ["hp"]=820510000, - ["atk"]=8530000, + ["atk"]=5960000, ["atk_times"]=4, ["hurt_skill"]={ 30028, @@ -8119,7 +8110,7 @@ local monster_chapter = { [60701]={ ["monster_base"]=10027, ["hp"]=544320000, - ["atk"]=9380000, + ["atk"]=6150000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -8131,7 +8122,7 @@ local monster_chapter = { [60801]={ ["monster_base"]=10047, ["hp"]=580860000, - ["atk"]=9600000, + ["atk"]=6300000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -8143,7 +8134,7 @@ local monster_chapter = { [60901]={ ["monster_base"]=10057, ["hp"]=637060000, - ["atk"]=9840000, + ["atk"]=6530000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -8155,7 +8146,7 @@ local monster_chapter = { [61001]={ ["monster_base"]=10060, ["hp"]=695520000, - ["atk"]=10010000, + ["atk"]=6740000, ["atk_times"]=3, ["hurt_skill"]={ 20175, @@ -8168,7 +8159,7 @@ local monster_chapter = { ["monster_base"]=20035, ["is_boss"]=2, ["hp"]=1096700000, - ["atk"]=12130000, + ["atk"]=9060000, ["atk_times"]=4, ["hurt_skill"]={ 30100, @@ -8188,7 +8179,7 @@ local monster_chapter = { [61201]={ ["monster_base"]=10062, ["hp"]=119020000, - ["atk"]=7320000, + ["atk"]=3780000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -8200,7 +8191,7 @@ local monster_chapter = { [61301]={ ["monster_base"]=10049, ["hp"]=163100000, - ["atk"]=7580000, + ["atk"]=4080000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -8212,7 +8203,7 @@ local monster_chapter = { [61401]={ ["monster_base"]=10042, ["hp"]=182770000, - ["atk"]=7850000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -8224,7 +8215,7 @@ local monster_chapter = { [61501]={ ["monster_base"]=10026, ["hp"]=242530000, - ["atk"]=8060000, + ["atk"]=4340000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -8237,7 +8228,7 @@ local monster_chapter = { ["monster_base"]=20006, ["is_boss"]=1, ["hp"]=335150000, - ["atk"]=8060000, + ["atk"]=5040000, ["atk_times"]=4, ["hurt_skill"]={ 30016, @@ -8255,7 +8246,7 @@ local monster_chapter = { [61701]={ ["monster_base"]=10064, ["hp"]=229830000, - ["atk"]=8300000, + ["atk"]=4610000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -8267,7 +8258,7 @@ local monster_chapter = { [61801]={ ["monster_base"]=10042, ["hp"]=254730000, - ["atk"]=9070000, + ["atk"]=5180000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -8279,7 +8270,7 @@ local monster_chapter = { [61901]={ ["monster_base"]=10019, ["hp"]=294820000, - ["atk"]=8570000, + ["atk"]=4780000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -8291,7 +8282,7 @@ local monster_chapter = { [62001]={ ["monster_base"]=10062, ["hp"]=335150000, - ["atk"]=9310000, + ["atk"]=5450000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -8304,7 +8295,7 @@ local monster_chapter = { ["monster_base"]=20021, ["is_boss"]=1, ["hp"]=626980000, - ["atk"]=8710000, + ["atk"]=5980000, ["atk_times"]=4, ["hurt_skill"]={ 30061, @@ -8323,7 +8314,7 @@ local monster_chapter = { [62201]={ ["monster_base"]=10013, ["hp"]=364790000, - ["atk"]=8950000, + ["atk"]=5600000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -8335,7 +8326,7 @@ local monster_chapter = { [62301]={ ["monster_base"]=10026, ["hp"]=412340000, - ["atk"]=9220000, + ["atk"]=5790000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -8347,7 +8338,7 @@ local monster_chapter = { [62401]={ ["monster_base"]=10062, ["hp"]=437490000, - ["atk"]=9360000, + ["atk"]=5980000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -8359,7 +8350,7 @@ local monster_chapter = { [62501]={ ["monster_base"]=10044, ["hp"]=473350000, - ["atk"]=9650000, + ["atk"]=6280000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -8372,7 +8363,7 @@ local monster_chapter = { ["monster_base"]=20016, ["is_boss"]=1, ["hp"]=854320000, - ["atk"]=8930000, + ["atk"]=6280000, ["atk_times"]=4, ["hurt_skill"]={ 30046, @@ -8391,7 +8382,7 @@ local monster_chapter = { [62701]={ ["monster_base"]=10062, ["hp"]=566720000, - ["atk"]=9820000, + ["atk"]=6480000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -8403,7 +8394,7 @@ local monster_chapter = { [62801]={ ["monster_base"]=10019, ["hp"]=604820000, - ["atk"]=10030000, + ["atk"]=6640000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -8415,7 +8406,7 @@ local monster_chapter = { [62901]={ ["monster_base"]=10064, ["hp"]=663340000, - ["atk"]=10300000, + ["atk"]=6880000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -8427,7 +8418,7 @@ local monster_chapter = { [63001]={ ["monster_base"]=10013, ["hp"]=724090000, - ["atk"]=10460000, + ["atk"]=7100000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -8440,7 +8431,7 @@ local monster_chapter = { ["monster_base"]=20036, ["is_boss"]=2, ["hp"]=1141670000, - ["atk"]=12650000, + ["atk"]=9540000, ["atk_times"]=4, ["hurt_skill"]={ 30103, @@ -8459,7 +8450,7 @@ local monster_chapter = { [63201]={ ["monster_base"]=10063, ["hp"]=122760000, - ["atk"]=7580000, + ["atk"]=3990000, ["atk_times"]=3, ["hurt_skill"]={ 20184, @@ -8471,7 +8462,7 @@ local monster_chapter = { [63301]={ ["monster_base"]=10064, ["hp"]=168080000, - ["atk"]=7870000, + ["atk"]=4310000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -8483,7 +8474,7 @@ local monster_chapter = { [63401]={ ["monster_base"]=10062, ["hp"]=188490000, - ["atk"]=8140000, + ["atk"]=4440000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -8495,7 +8486,7 @@ local monster_chapter = { [63501]={ ["monster_base"]=10026, ["hp"]=250000000, - ["atk"]=8350000, + ["atk"]=4590000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -8508,7 +8499,7 @@ local monster_chapter = { ["monster_base"]=20021, ["is_boss"]=1, ["hp"]=345610000, - ["atk"]=8350000, + ["atk"]=5320000, ["atk_times"]=4, ["hurt_skill"]={ 30061, @@ -8527,7 +8518,7 @@ local monster_chapter = { [63701]={ ["monster_base"]=10064, ["hp"]=237050000, - ["atk"]=8620000, + ["atk"]=4870000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -8539,7 +8530,7 @@ local monster_chapter = { [63801]={ ["monster_base"]=10062, ["hp"]=262700000, - ["atk"]=9410000, + ["atk"]=5470000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -8551,7 +8542,7 @@ local monster_chapter = { [63901]={ ["monster_base"]=10022, ["hp"]=304030000, - ["atk"]=8880000, + ["atk"]=5050000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -8563,7 +8554,7 @@ local monster_chapter = { [64001]={ ["monster_base"]=10063, ["hp"]=345610000, - ["atk"]=9650000, + ["atk"]=5760000, ["atk_times"]=3, ["hurt_skill"]={ 20184, @@ -8576,7 +8567,7 @@ local monster_chapter = { ["monster_base"]=20036, ["is_boss"]=1, ["hp"]=646160000, - ["atk"]=9020000, + ["atk"]=6320000, ["atk_times"]=4, ["hurt_skill"]={ 30103, @@ -8595,7 +8586,7 @@ local monster_chapter = { [64201]={ ["monster_base"]=10019, ["hp"]=375990000, - ["atk"]=9290000, + ["atk"]=5920000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -8607,7 +8598,7 @@ local monster_chapter = { [64301]={ ["monster_base"]=10026, ["hp"]=425040000, - ["atk"]=9550000, + ["atk"]=6120000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -8619,7 +8610,7 @@ local monster_chapter = { [64401]={ ["monster_base"]=10062, ["hp"]=450940000, - ["atk"]=9700000, + ["atk"]=6320000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -8631,7 +8622,7 @@ local monster_chapter = { [64501]={ ["monster_base"]=10063, ["hp"]=487790000, - ["atk"]=10010000, + ["atk"]=6630000, ["atk_times"]=3, ["hurt_skill"]={ 20184, @@ -8644,7 +8635,7 @@ local monster_chapter = { ["monster_base"]=20006, ["is_boss"]=1, ["hp"]=880460000, - ["atk"]=9240000, + ["atk"]=6630000, ["atk_times"]=4, ["hurt_skill"]={ 30016, @@ -8662,7 +8653,7 @@ local monster_chapter = { [64701]={ ["monster_base"]=10013, ["hp"]=584150000, - ["atk"]=10180000, + ["atk"]=6840000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -8674,7 +8665,7 @@ local monster_chapter = { [64801]={ ["monster_base"]=10062, ["hp"]=623500000, - ["atk"]=10390000, + ["atk"]=7010000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -8686,7 +8677,7 @@ local monster_chapter = { [64901]={ ["monster_base"]=10064, ["hp"]=683750000, - ["atk"]=10660000, + ["atk"]=7270000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -8698,7 +8689,7 @@ local monster_chapter = { [65001]={ ["monster_base"]=10063, ["hp"]=746250000, - ["atk"]=10850000, + ["atk"]=7500000, ["atk_times"]=3, ["hurt_skill"]={ 20184, @@ -8711,7 +8702,7 @@ local monster_chapter = { ["monster_base"]=20037, ["is_boss"]=2, ["hp"]=1176530000, - ["atk"]=13080000, + ["atk"]=10070000, ["atk_times"]=4, ["hurt_skill"]={ 30106, @@ -8731,7 +8722,7 @@ local monster_chapter = { [65201]={ ["monster_base"]=10065, ["hp"]=131470000, - ["atk"]=8160000, + ["atk"]=4310000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -8743,7 +8734,7 @@ local monster_chapter = { [65301]={ ["monster_base"]=10062, ["hp"]=179780000, - ["atk"]=8470000, + ["atk"]=4650000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -8755,7 +8746,7 @@ local monster_chapter = { [65401]={ ["monster_base"]=10064, ["hp"]=201690000, - ["atk"]=8740000, + ["atk"]=4790000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -8767,7 +8758,7 @@ local monster_chapter = { [65501]={ ["monster_base"]=10063, ["hp"]=267430000, - ["atk"]=8980000, + ["atk"]=4960000, ["atk_times"]=3, ["hurt_skill"]={ 20184, @@ -8780,7 +8771,7 @@ local monster_chapter = { ["monster_base"]=20027, ["is_boss"]=1, ["hp"]=369520000, - ["atk"]=8980000, + ["atk"]=5740000, ["atk_times"]=4, ["hurt_skill"]={ 30079, @@ -8795,7 +8786,7 @@ local monster_chapter = { [65701]={ ["monster_base"]=10026, ["hp"]=253480000, - ["atk"]=9260000, + ["atk"]=5260000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -8807,7 +8798,7 @@ local monster_chapter = { [65801]={ ["monster_base"]=10063, ["hp"]=280870000, - ["atk"]=10100000, + ["atk"]=5910000, ["atk_times"]=3, ["hurt_skill"]={ 20184, @@ -8819,7 +8810,7 @@ local monster_chapter = { [65901]={ ["monster_base"]=10062, ["hp"]=325190000, - ["atk"]=9550000, + ["atk"]=5450000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -8831,7 +8822,7 @@ local monster_chapter = { [66001]={ ["monster_base"]=10065, ["hp"]=369520000, - ["atk"]=10370000, + ["atk"]=6220000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -8844,7 +8835,7 @@ local monster_chapter = { ["monster_base"]=20036, ["is_boss"]=1, ["hp"]=690980000, - ["atk"]=9700000, + ["atk"]=6820000, ["atk_times"]=4, ["hurt_skill"]={ 30103, @@ -8863,7 +8854,7 @@ local monster_chapter = { [66201]={ ["monster_base"]=10063, ["hp"]=402140000, - ["atk"]=9980000, + ["atk"]=6390000, ["atk_times"]=3, ["hurt_skill"]={ 20184, @@ -8875,7 +8866,7 @@ local monster_chapter = { [66301]={ ["monster_base"]=10062, ["hp"]=454430000, - ["atk"]=10250000, + ["atk"]=6610000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -8887,7 +8878,7 @@ local monster_chapter = { [66401]={ ["monster_base"]=10022, ["hp"]=482310000, - ["atk"]=10420000, + ["atk"]=6820000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -8899,7 +8890,7 @@ local monster_chapter = { [66501]={ ["monster_base"]=10065, ["hp"]=521660000, - ["atk"]=10750000, + ["atk"]=7160000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -8912,7 +8903,7 @@ local monster_chapter = { ["monster_base"]=20037, ["is_boss"]=1, ["hp"]=941470000, - ["atk"]=9910000, + ["atk"]=7160000, ["atk_times"]=4, ["hurt_skill"]={ 30106, @@ -8932,7 +8923,7 @@ local monster_chapter = { [66701]={ ["monster_base"]=10062, ["hp"]=624490000, - ["atk"]=10920000, + ["atk"]=7380000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -8944,7 +8935,7 @@ local monster_chapter = { [66801]={ ["monster_base"]=10063, ["hp"]=666570000, - ["atk"]=11160000, + ["atk"]=7570000, ["atk_times"]=3, ["hurt_skill"]={ 20184, @@ -8956,7 +8947,7 @@ local monster_chapter = { [66901]={ ["monster_base"]=10026, ["hp"]=731060000, - ["atk"]=11450000, + ["atk"]=7850000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -8968,7 +8959,7 @@ local monster_chapter = { [67001]={ ["monster_base"]=10065, ["hp"]=797800000, - ["atk"]=11640000, + ["atk"]=8100000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -8981,7 +8972,7 @@ local monster_chapter = { ["monster_base"]=20038, ["is_boss"]=2, ["hp"]=1257950000, - ["atk"]=14020000, + ["atk"]=10870000, ["atk_times"]=4, ["hurt_skill"]={ 30109, diff --git a/lua/app/config/monster_daily_challenge.lua b/lua/app/config/monster_daily_challenge.lua index e25526f0..ae07cdef 100644 --- a/lua/app/config/monster_daily_challenge.lua +++ b/lua/app/config/monster_daily_challenge.lua @@ -1,8 +1,8 @@ local monster_daily_challenge = { [102]={ ["monster_base"]=10001, - ["hp"]=21810000, - ["atk"]=690000, + ["hp"]=21820000, + ["atk"]=610000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -14,7 +14,7 @@ local monster_daily_challenge = { [202]={ ["monster_base"]=10002, ["hp"]=30000000, - ["atk"]=750000, + ["atk"]=660000, ["atk_times"]=3, ["hurt_skill"]={ 20004, @@ -25,8 +25,8 @@ local monster_daily_challenge = { }, [302]={ ["monster_base"]=10003, - ["hp"]=32700000, - ["atk"]=780000, + ["hp"]=32730000, + ["atk"]=710000, ["atk_times"]=3, ["hurt_skill"]={ 20007, @@ -37,8 +37,8 @@ local monster_daily_challenge = { }, [402]={ ["monster_base"]=10005, - ["hp"]=40890000, - ["atk"]=840000, + ["hp"]=40910000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -50,8 +50,8 @@ local monster_daily_challenge = { [502]={ ["monster_base"]=20004, ["is_boss"]=1, - ["hp"]=62700000, - ["atk"]=1020000, + ["hp"]=62730000, + ["atk"]=910000, ["atk_times"]=4, ["hurt_skill"]={ 30010, @@ -62,8 +62,8 @@ local monster_daily_challenge = { }, [602]={ ["monster_base"]=10038, - ["hp"]=40890000, - ["atk"]=840000, + ["hp"]=40910000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -74,8 +74,8 @@ local monster_daily_challenge = { }, [702]={ ["monster_base"]=10040, - ["hp"]=46350000, - ["atk"]=900000, + ["hp"]=46360000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -86,8 +86,8 @@ local monster_daily_challenge = { }, [802]={ ["monster_base"]=10010, - ["hp"]=54540000, - ["atk"]=900000, + ["hp"]=54550000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -99,7 +99,7 @@ local monster_daily_challenge = { [902]={ ["monster_base"]=10009, ["hp"]=60000000, - ["atk"]=960000, + ["atk"]=850000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -111,8 +111,8 @@ local monster_daily_challenge = { [1002]={ ["monster_base"]=20017, ["is_boss"]=1, - ["hp"]=114540000, - ["atk"]=1110000, + ["hp"]=114550000, + ["atk"]=980000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -126,8 +126,8 @@ local monster_daily_challenge = { }, [1102]={ ["monster_base"]=10002, - ["hp"]=62700000, - ["atk"]=960000, + ["hp"]=62730000, + ["atk"]=850000, ["atk_times"]=3, ["hurt_skill"]={ 20004, @@ -138,8 +138,8 @@ local monster_daily_challenge = { }, [1202]={ ["monster_base"]=10009, - ["hp"]=76350000, - ["atk"]=1020000, + ["hp"]=76360000, + ["atk"]=910000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -150,8 +150,8 @@ local monster_daily_challenge = { }, [1302]={ ["monster_base"]=10001, - ["hp"]=84540000, - ["atk"]=1080000, + ["hp"]=84550000, + ["atk"]=950000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -162,8 +162,8 @@ local monster_daily_challenge = { }, [1402]={ ["monster_base"]=10039, - ["hp"]=95430000, - ["atk"]=1110000, + ["hp"]=95450000, + ["atk"]=1000000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -175,8 +175,8 @@ local monster_daily_challenge = { [1502]={ ["monster_base"]=20015, ["is_boss"]=1, - ["hp"]=141810000, - ["atk"]=1200000, + ["hp"]=141820000, + ["atk"]=1070000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -193,8 +193,8 @@ local monster_daily_challenge = { }, [1602]={ ["monster_base"]=10031, - ["hp"]=109080000, - ["atk"]=1170000, + ["hp"]=109090000, + ["atk"]=1060000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -206,7 +206,7 @@ local monster_daily_challenge = { [1702]={ ["monster_base"]=10034, ["hp"]=120000000, - ["atk"]=1230000, + ["atk"]=1100000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -217,8 +217,8 @@ local monster_daily_challenge = { }, [1802]={ ["monster_base"]=10032, - ["hp"]=136350000, - ["atk"]=1290000, + ["hp"]=136360000, + ["atk"]=1150000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -230,7 +230,7 @@ local monster_daily_challenge = { [1902]={ ["monster_base"]=10035, ["hp"]=147270000, - ["atk"]=1350000, + ["atk"]=1190000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -242,8 +242,8 @@ local monster_daily_challenge = { [2002]={ ["monster_base"]=20003, ["is_boss"]=2, - ["hp"]=245430000, - ["atk"]=1860000, + ["hp"]=245450000, + ["atk"]=1640000, ["atk_times"]=4, ["hurt_skill"]={ 30007, @@ -262,8 +262,8 @@ local monster_daily_challenge = { }, [2102]={ ["monster_base"]=10030, - ["hp"]=21810000, - ["atk"]=690000, + ["hp"]=21820000, + ["atk"]=610000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -275,7 +275,7 @@ local monster_daily_challenge = { [2202]={ ["monster_base"]=10035, ["hp"]=30000000, - ["atk"]=750000, + ["atk"]=660000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -286,8 +286,8 @@ local monster_daily_challenge = { }, [2302]={ ["monster_base"]=10039, - ["hp"]=32700000, - ["atk"]=780000, + ["hp"]=32730000, + ["atk"]=710000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -298,8 +298,8 @@ local monster_daily_challenge = { }, [2402]={ ["monster_base"]=10010, - ["hp"]=40890000, - ["atk"]=840000, + ["hp"]=40910000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -311,8 +311,8 @@ local monster_daily_challenge = { [2502]={ ["monster_base"]=20007, ["is_boss"]=1, - ["hp"]=62700000, - ["atk"]=1020000, + ["hp"]=62730000, + ["atk"]=910000, ["atk_times"]=4, ["hurt_skill"]={ 30019, @@ -329,8 +329,8 @@ local monster_daily_challenge = { }, [2602]={ ["monster_base"]=10044, - ["hp"]=40890000, - ["atk"]=840000, + ["hp"]=40910000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -341,8 +341,8 @@ local monster_daily_challenge = { }, [2702]={ ["monster_base"]=10038, - ["hp"]=46350000, - ["atk"]=900000, + ["hp"]=46360000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -353,8 +353,8 @@ local monster_daily_challenge = { }, [2802]={ ["monster_base"]=10022, - ["hp"]=54540000, - ["atk"]=900000, + ["hp"]=54550000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -366,7 +366,7 @@ local monster_daily_challenge = { [2902]={ ["monster_base"]=10026, ["hp"]=60000000, - ["atk"]=960000, + ["atk"]=850000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -378,8 +378,8 @@ local monster_daily_challenge = { [3002]={ ["monster_base"]=20014, ["is_boss"]=1, - ["hp"]=114540000, - ["atk"]=1110000, + ["hp"]=114550000, + ["atk"]=980000, ["atk_times"]=4, ["hurt_skill"]={ 30040, @@ -396,8 +396,8 @@ local monster_daily_challenge = { }, [3102]={ ["monster_base"]=10020, - ["hp"]=62700000, - ["atk"]=960000, + ["hp"]=62730000, + ["atk"]=850000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -408,8 +408,8 @@ local monster_daily_challenge = { }, [3202]={ ["monster_base"]=10006, - ["hp"]=76350000, - ["atk"]=1020000, + ["hp"]=76360000, + ["atk"]=910000, ["atk_times"]=3, ["hurt_skill"]={ 20016, @@ -420,8 +420,8 @@ local monster_daily_challenge = { }, [3302]={ ["monster_base"]=10026, - ["hp"]=84540000, - ["atk"]=1080000, + ["hp"]=84550000, + ["atk"]=950000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -432,8 +432,8 @@ local monster_daily_challenge = { }, [3402]={ ["monster_base"]=10014, - ["hp"]=95430000, - ["atk"]=1110000, + ["hp"]=95450000, + ["atk"]=1000000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -445,8 +445,8 @@ local monster_daily_challenge = { [3502]={ ["monster_base"]=20002, ["is_boss"]=1, - ["hp"]=141810000, - ["atk"]=1200000, + ["hp"]=141820000, + ["atk"]=1070000, ["atk_times"]=4, ["hurt_skill"]={ 30004, @@ -460,8 +460,8 @@ local monster_daily_challenge = { }, [3602]={ ["monster_base"]=10008, - ["hp"]=109080000, - ["atk"]=1170000, + ["hp"]=109090000, + ["atk"]=1060000, ["atk_times"]=3, ["hurt_skill"]={ 20022, @@ -473,7 +473,7 @@ local monster_daily_challenge = { [3702]={ ["monster_base"]=10033, ["hp"]=120000000, - ["atk"]=1230000, + ["atk"]=1100000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -484,8 +484,8 @@ local monster_daily_challenge = { }, [3802]={ ["monster_base"]=10014, - ["hp"]=136350000, - ["atk"]=1290000, + ["hp"]=136360000, + ["atk"]=1150000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -497,7 +497,7 @@ local monster_daily_challenge = { [3902]={ ["monster_base"]=10032, ["hp"]=147270000, - ["atk"]=1350000, + ["atk"]=1190000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -509,8 +509,8 @@ local monster_daily_challenge = { [4002]={ ["monster_base"]=20021, ["is_boss"]=2, - ["hp"]=245430000, - ["atk"]=1860000, + ["hp"]=245450000, + ["atk"]=1640000, ["atk_times"]=4, ["hurt_skill"]={ 30061, @@ -528,8 +528,8 @@ local monster_daily_challenge = { }, [4102]={ ["monster_base"]=10044, - ["hp"]=21810000, - ["atk"]=690000, + ["hp"]=21820000, + ["atk"]=610000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -541,7 +541,7 @@ local monster_daily_challenge = { [4202]={ ["monster_base"]=10001, ["hp"]=30000000, - ["atk"]=750000, + ["atk"]=660000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -552,8 +552,8 @@ local monster_daily_challenge = { }, [4302]={ ["monster_base"]=10038, - ["hp"]=32700000, - ["atk"]=780000, + ["hp"]=32730000, + ["atk"]=710000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -564,8 +564,8 @@ local monster_daily_challenge = { }, [4402]={ ["monster_base"]=10022, - ["hp"]=40890000, - ["atk"]=840000, + ["hp"]=40910000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -577,8 +577,8 @@ local monster_daily_challenge = { [4502]={ ["monster_base"]=20007, ["is_boss"]=1, - ["hp"]=62700000, - ["atk"]=1020000, + ["hp"]=62730000, + ["atk"]=910000, ["atk_times"]=4, ["hurt_skill"]={ 30019, @@ -595,8 +595,8 @@ local monster_daily_challenge = { }, [4602]={ ["monster_base"]=10013, - ["hp"]=40890000, - ["atk"]=840000, + ["hp"]=40910000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -607,8 +607,8 @@ local monster_daily_challenge = { }, [4702]={ ["monster_base"]=10005, - ["hp"]=46350000, - ["atk"]=900000, + ["hp"]=46360000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -619,8 +619,8 @@ local monster_daily_challenge = { }, [4802]={ ["monster_base"]=10026, - ["hp"]=54540000, - ["atk"]=900000, + ["hp"]=54550000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -632,7 +632,7 @@ local monster_daily_challenge = { [4902]={ ["monster_base"]=10042, ["hp"]=60000000, - ["atk"]=960000, + ["atk"]=850000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -644,8 +644,8 @@ local monster_daily_challenge = { [5002]={ ["monster_base"]=20006, ["is_boss"]=1, - ["hp"]=114540000, - ["atk"]=1110000, + ["hp"]=114550000, + ["atk"]=980000, ["atk_times"]=4, ["hurt_skill"]={ 30016, @@ -662,8 +662,8 @@ local monster_daily_challenge = { }, [5102]={ ["monster_base"]=10047, - ["hp"]=62700000, - ["atk"]=960000, + ["hp"]=62730000, + ["atk"]=850000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -674,8 +674,8 @@ local monster_daily_challenge = { }, [5202]={ ["monster_base"]=10038, - ["hp"]=76350000, - ["atk"]=1020000, + ["hp"]=76360000, + ["atk"]=910000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -686,8 +686,8 @@ local monster_daily_challenge = { }, [5302]={ ["monster_base"]=10021, - ["hp"]=84540000, - ["atk"]=1080000, + ["hp"]=84550000, + ["atk"]=950000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -698,8 +698,8 @@ local monster_daily_challenge = { }, [5402]={ ["monster_base"]=10040, - ["hp"]=95430000, - ["atk"]=1110000, + ["hp"]=95450000, + ["atk"]=1000000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -711,8 +711,8 @@ local monster_daily_challenge = { [5502]={ ["monster_base"]=20009, ["is_boss"]=1, - ["hp"]=141810000, - ["atk"]=1200000, + ["hp"]=141820000, + ["atk"]=1070000, ["atk_times"]=4, ["hurt_skill"]={ 30025, @@ -730,8 +730,8 @@ local monster_daily_challenge = { }, [5602]={ ["monster_base"]=10019, - ["hp"]=109080000, - ["atk"]=1170000, + ["hp"]=109090000, + ["atk"]=1060000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -743,7 +743,7 @@ local monster_daily_challenge = { [5702]={ ["monster_base"]=10023, ["hp"]=120000000, - ["atk"]=1230000, + ["atk"]=1100000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -754,8 +754,8 @@ local monster_daily_challenge = { }, [5802]={ ["monster_base"]=10008, - ["hp"]=136350000, - ["atk"]=1290000, + ["hp"]=136360000, + ["atk"]=1150000, ["atk_times"]=3, ["hurt_skill"]={ 20022, @@ -767,7 +767,7 @@ local monster_daily_challenge = { [5902]={ ["monster_base"]=10033, ["hp"]=147270000, - ["atk"]=1350000, + ["atk"]=1190000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -779,8 +779,8 @@ local monster_daily_challenge = { [6002]={ ["monster_base"]=20016, ["is_boss"]=2, - ["hp"]=245430000, - ["atk"]=1860000, + ["hp"]=245450000, + ["atk"]=1640000, ["atk_times"]=4, ["hurt_skill"]={ 30046, @@ -798,8 +798,8 @@ local monster_daily_challenge = { }, [6102]={ ["monster_base"]=10001, - ["hp"]=21810000, - ["atk"]=690000, + ["hp"]=21820000, + ["atk"]=610000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -811,7 +811,7 @@ local monster_daily_challenge = { [6202]={ ["monster_base"]=10005, ["hp"]=30000000, - ["atk"]=750000, + ["atk"]=660000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -822,8 +822,8 @@ local monster_daily_challenge = { }, [6302]={ ["monster_base"]=10041, - ["hp"]=32700000, - ["atk"]=780000, + ["hp"]=32730000, + ["atk"]=710000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -834,8 +834,8 @@ local monster_daily_challenge = { }, [6402]={ ["monster_base"]=10013, - ["hp"]=40890000, - ["atk"]=840000, + ["hp"]=40910000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -847,8 +847,8 @@ local monster_daily_challenge = { [6502]={ ["monster_base"]=20026, ["is_boss"]=1, - ["hp"]=62700000, - ["atk"]=1020000, + ["hp"]=62730000, + ["atk"]=910000, ["atk_times"]=4, ["hurt_skill"]={ 30076, @@ -865,8 +865,8 @@ local monster_daily_challenge = { }, [6602]={ ["monster_base"]=10043, - ["hp"]=40890000, - ["atk"]=840000, + ["hp"]=40910000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -877,8 +877,8 @@ local monster_daily_challenge = { }, [6702]={ ["monster_base"]=10047, - ["hp"]=46350000, - ["atk"]=900000, + ["hp"]=46360000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -889,8 +889,8 @@ local monster_daily_challenge = { }, [6802]={ ["monster_base"]=10006, - ["hp"]=54540000, - ["atk"]=900000, + ["hp"]=54550000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20016, @@ -902,7 +902,7 @@ local monster_daily_challenge = { [6902]={ ["monster_base"]=10053, ["hp"]=60000000, - ["atk"]=960000, + ["atk"]=850000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -914,8 +914,8 @@ local monster_daily_challenge = { [7002]={ ["monster_base"]=20010, ["is_boss"]=1, - ["hp"]=114540000, - ["atk"]=1110000, + ["hp"]=114550000, + ["atk"]=980000, ["atk_times"]=4, ["hurt_skill"]={ 30028, @@ -935,8 +935,8 @@ local monster_daily_challenge = { }, [7102]={ ["monster_base"]=10024, - ["hp"]=62700000, - ["atk"]=960000, + ["hp"]=62730000, + ["atk"]=850000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -947,8 +947,8 @@ local monster_daily_challenge = { }, [7202]={ ["monster_base"]=10044, - ["hp"]=76350000, - ["atk"]=1020000, + ["hp"]=76360000, + ["atk"]=910000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -959,8 +959,8 @@ local monster_daily_challenge = { }, [7302]={ ["monster_base"]=10016, - ["hp"]=84540000, - ["atk"]=1080000, + ["hp"]=84550000, + ["atk"]=950000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -971,8 +971,8 @@ local monster_daily_challenge = { }, [7402]={ ["monster_base"]=10019, - ["hp"]=95430000, - ["atk"]=1110000, + ["hp"]=95450000, + ["atk"]=1000000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -984,8 +984,8 @@ local monster_daily_challenge = { [7502]={ ["monster_base"]=20008, ["is_boss"]=1, - ["hp"]=141810000, - ["atk"]=1200000, + ["hp"]=141820000, + ["atk"]=1070000, ["atk_times"]=4, ["hurt_skill"]={ 30022, @@ -1002,8 +1002,8 @@ local monster_daily_challenge = { }, [7602]={ ["monster_base"]=10052, - ["hp"]=109080000, - ["atk"]=1170000, + ["hp"]=109090000, + ["atk"]=1060000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -1015,7 +1015,7 @@ local monster_daily_challenge = { [7702]={ ["monster_base"]=10043, ["hp"]=120000000, - ["atk"]=1230000, + ["atk"]=1100000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -1026,8 +1026,8 @@ local monster_daily_challenge = { }, [7802]={ ["monster_base"]=10050, - ["hp"]=136350000, - ["atk"]=1290000, + ["hp"]=136360000, + ["atk"]=1150000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -1039,7 +1039,7 @@ local monster_daily_challenge = { [7902]={ ["monster_base"]=10054, ["hp"]=147270000, - ["atk"]=1350000, + ["atk"]=1190000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -1051,8 +1051,8 @@ local monster_daily_challenge = { [8002]={ ["monster_base"]=20024, ["is_boss"]=2, - ["hp"]=245430000, - ["atk"]=1860000, + ["hp"]=245450000, + ["atk"]=1640000, ["atk_times"]=4, ["hurt_skill"]={ 30070, @@ -1070,8 +1070,8 @@ local monster_daily_challenge = { }, [8102]={ ["monster_base"]=10045, - ["hp"]=21810000, - ["atk"]=690000, + ["hp"]=21820000, + ["atk"]=610000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -1083,7 +1083,7 @@ local monster_daily_challenge = { [8202]={ ["monster_base"]=10047, ["hp"]=30000000, - ["atk"]=750000, + ["atk"]=660000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -1094,8 +1094,8 @@ local monster_daily_challenge = { }, [8302]={ ["monster_base"]=10010, - ["hp"]=32700000, - ["atk"]=780000, + ["hp"]=32730000, + ["atk"]=710000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -1106,8 +1106,8 @@ local monster_daily_challenge = { }, [8402]={ ["monster_base"]=10039, - ["hp"]=40890000, - ["atk"]=840000, + ["hp"]=40910000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -1119,8 +1119,8 @@ local monster_daily_challenge = { [8502]={ ["monster_base"]=20012, ["is_boss"]=1, - ["hp"]=62700000, - ["atk"]=1020000, + ["hp"]=62730000, + ["atk"]=910000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -1134,8 +1134,8 @@ local monster_daily_challenge = { }, [8602]={ ["monster_base"]=10058, - ["hp"]=40890000, - ["atk"]=840000, + ["hp"]=40910000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20169, @@ -1146,8 +1146,8 @@ local monster_daily_challenge = { }, [8702]={ ["monster_base"]=10024, - ["hp"]=46350000, - ["atk"]=900000, + ["hp"]=46360000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -1158,8 +1158,8 @@ local monster_daily_challenge = { }, [8802]={ ["monster_base"]=10044, - ["hp"]=54540000, - ["atk"]=900000, + ["hp"]=54550000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -1171,7 +1171,7 @@ local monster_daily_challenge = { [8902]={ ["monster_base"]=10056, ["hp"]=60000000, - ["atk"]=960000, + ["atk"]=850000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -1183,8 +1183,8 @@ local monster_daily_challenge = { [9002]={ ["monster_base"]=20011, ["is_boss"]=1, - ["hp"]=114540000, - ["atk"]=1110000, + ["hp"]=114550000, + ["atk"]=980000, ["atk_times"]=4, ["hurt_skill"]={ 30031, @@ -1198,8 +1198,8 @@ local monster_daily_challenge = { }, [9102]={ ["monster_base"]=10022, - ["hp"]=62700000, - ["atk"]=960000, + ["hp"]=62730000, + ["atk"]=850000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -1210,8 +1210,8 @@ local monster_daily_challenge = { }, [9202]={ ["monster_base"]=10040, - ["hp"]=76350000, - ["atk"]=1020000, + ["hp"]=76360000, + ["atk"]=910000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -1222,8 +1222,8 @@ local monster_daily_challenge = { }, [9302]={ ["monster_base"]=10025, - ["hp"]=84540000, - ["atk"]=1080000, + ["hp"]=84550000, + ["atk"]=950000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -1234,8 +1234,8 @@ local monster_daily_challenge = { }, [9402]={ ["monster_base"]=10032, - ["hp"]=95430000, - ["atk"]=1110000, + ["hp"]=95450000, + ["atk"]=1000000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -1247,8 +1247,8 @@ local monster_daily_challenge = { [9502]={ ["monster_base"]=20018, ["is_boss"]=1, - ["hp"]=141810000, - ["atk"]=1200000, + ["hp"]=141820000, + ["atk"]=1070000, ["atk_times"]=4, ["hurt_skill"]={ 30052, @@ -1266,8 +1266,8 @@ local monster_daily_challenge = { }, [9602]={ ["monster_base"]=10048, - ["hp"]=109080000, - ["atk"]=1170000, + ["hp"]=109090000, + ["atk"]=1060000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -1279,7 +1279,7 @@ local monster_daily_challenge = { [9702]={ ["monster_base"]=10029, ["hp"]=120000000, - ["atk"]=1230000, + ["atk"]=1100000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -1290,8 +1290,8 @@ local monster_daily_challenge = { }, [9802]={ ["monster_base"]=10031, - ["hp"]=136350000, - ["atk"]=1290000, + ["hp"]=136360000, + ["atk"]=1150000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -1303,7 +1303,7 @@ local monster_daily_challenge = { [9902]={ ["monster_base"]=10028, ["hp"]=147270000, - ["atk"]=1350000, + ["atk"]=1190000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -1315,8 +1315,8 @@ local monster_daily_challenge = { [10002]={ ["monster_base"]=20013, ["is_boss"]=2, - ["hp"]=245430000, - ["atk"]=1860000, + ["hp"]=245450000, + ["atk"]=1640000, ["atk_times"]=4, ["hurt_skill"]={ 30037, @@ -1331,8 +1331,8 @@ local monster_daily_challenge = { }, [10102]={ ["monster_base"]=10030, - ["hp"]=21810000, - ["atk"]=690000, + ["hp"]=21820000, + ["atk"]=610000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -1344,7 +1344,7 @@ local monster_daily_challenge = { [10202]={ ["monster_base"]=10029, ["hp"]=30000000, - ["atk"]=750000, + ["atk"]=660000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -1355,8 +1355,8 @@ local monster_daily_challenge = { }, [10302]={ ["monster_base"]=10033, - ["hp"]=32700000, - ["atk"]=780000, + ["hp"]=32730000, + ["atk"]=710000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -1367,8 +1367,8 @@ local monster_daily_challenge = { }, [10402]={ ["monster_base"]=10031, - ["hp"]=40890000, - ["atk"]=840000, + ["hp"]=40910000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -1380,8 +1380,8 @@ local monster_daily_challenge = { [10502]={ ["monster_base"]=20025, ["is_boss"]=1, - ["hp"]=62700000, - ["atk"]=1020000, + ["hp"]=62730000, + ["atk"]=910000, ["atk_times"]=4, ["hurt_skill"]={ 30073, @@ -1398,8 +1398,8 @@ local monster_daily_challenge = { }, [10602]={ ["monster_base"]=10053, - ["hp"]=40890000, - ["atk"]=840000, + ["hp"]=40910000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -1410,8 +1410,8 @@ local monster_daily_challenge = { }, [10702]={ ["monster_base"]=10048, - ["hp"]=46350000, - ["atk"]=900000, + ["hp"]=46360000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -1422,8 +1422,8 @@ local monster_daily_challenge = { }, [10802]={ ["monster_base"]=10029, - ["hp"]=54540000, - ["atk"]=900000, + ["hp"]=54550000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -1435,7 +1435,7 @@ local monster_daily_challenge = { [10902]={ ["monster_base"]=10054, ["hp"]=60000000, - ["atk"]=960000, + ["atk"]=850000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -1447,8 +1447,8 @@ local monster_daily_challenge = { [11002]={ ["monster_base"]=20020, ["is_boss"]=1, - ["hp"]=114540000, - ["atk"]=1110000, + ["hp"]=114550000, + ["atk"]=980000, ["atk_times"]=4, ["hurt_skill"]={ 30058, @@ -1465,8 +1465,8 @@ local monster_daily_challenge = { }, [11102]={ ["monster_base"]=10052, - ["hp"]=62700000, - ["atk"]=960000, + ["hp"]=62730000, + ["atk"]=850000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -1477,8 +1477,8 @@ local monster_daily_challenge = { }, [11202]={ ["monster_base"]=10045, - ["hp"]=76350000, - ["atk"]=1020000, + ["hp"]=76360000, + ["atk"]=910000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -1489,8 +1489,8 @@ local monster_daily_challenge = { }, [11302]={ ["monster_base"]=10043, - ["hp"]=84540000, - ["atk"]=1080000, + ["hp"]=84550000, + ["atk"]=950000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -1501,8 +1501,8 @@ local monster_daily_challenge = { }, [11402]={ ["monster_base"]=10053, - ["hp"]=95430000, - ["atk"]=1110000, + ["hp"]=95450000, + ["atk"]=1000000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -1514,8 +1514,8 @@ local monster_daily_challenge = { [11502]={ ["monster_base"]=20029, ["is_boss"]=1, - ["hp"]=141810000, - ["atk"]=1200000, + ["hp"]=141820000, + ["atk"]=1070000, ["atk_times"]=4, ["hurt_skill"]={ 30085, @@ -1532,8 +1532,8 @@ local monster_daily_challenge = { }, [11602]={ ["monster_base"]=10056, - ["hp"]=109080000, - ["atk"]=1170000, + ["hp"]=109090000, + ["atk"]=1060000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -1545,7 +1545,7 @@ local monster_daily_challenge = { [11702]={ ["monster_base"]=10028, ["hp"]=120000000, - ["atk"]=1230000, + ["atk"]=1100000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -1556,8 +1556,8 @@ local monster_daily_challenge = { }, [11802]={ ["monster_base"]=10046, - ["hp"]=136350000, - ["atk"]=1290000, + ["hp"]=136360000, + ["atk"]=1150000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -1569,7 +1569,7 @@ local monster_daily_challenge = { [11902]={ ["monster_base"]=10057, ["hp"]=147270000, - ["atk"]=1350000, + ["atk"]=1190000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -1581,8 +1581,8 @@ local monster_daily_challenge = { [12002]={ ["monster_base"]=20032, ["is_boss"]=2, - ["hp"]=245430000, - ["atk"]=1860000, + ["hp"]=245450000, + ["atk"]=1640000, ["atk_times"]=4, ["hurt_skill"]={ 30094, @@ -1602,8 +1602,8 @@ local monster_daily_challenge = { }, [12102]={ ["monster_base"]=10057, - ["hp"]=21810000, - ["atk"]=690000, + ["hp"]=21820000, + ["atk"]=610000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -1615,7 +1615,7 @@ local monster_daily_challenge = { [12202]={ ["monster_base"]=10046, ["hp"]=30000000, - ["atk"]=750000, + ["atk"]=660000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -1626,8 +1626,8 @@ local monster_daily_challenge = { }, [12302]={ ["monster_base"]=10051, - ["hp"]=32700000, - ["atk"]=780000, + ["hp"]=32730000, + ["atk"]=710000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -1638,8 +1638,8 @@ local monster_daily_challenge = { }, [12402]={ ["monster_base"]=10029, - ["hp"]=40890000, - ["atk"]=840000, + ["hp"]=40910000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -1651,8 +1651,8 @@ local monster_daily_challenge = { [12502]={ ["monster_base"]=20026, ["is_boss"]=1, - ["hp"]=62700000, - ["atk"]=1020000, + ["hp"]=62730000, + ["atk"]=910000, ["atk_times"]=4, ["hurt_skill"]={ 30076, @@ -1669,8 +1669,8 @@ local monster_daily_challenge = { }, [12602]={ ["monster_base"]=10050, - ["hp"]=40890000, - ["atk"]=840000, + ["hp"]=40910000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -1681,8 +1681,8 @@ local monster_daily_challenge = { }, [12702]={ ["monster_base"]=10058, - ["hp"]=46350000, - ["atk"]=900000, + ["hp"]=46360000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20169, @@ -1693,8 +1693,8 @@ local monster_daily_challenge = { }, [12802]={ ["monster_base"]=10052, - ["hp"]=54540000, - ["atk"]=900000, + ["hp"]=54550000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -1706,7 +1706,7 @@ local monster_daily_challenge = { [12902]={ ["monster_base"]=10054, ["hp"]=60000000, - ["atk"]=960000, + ["atk"]=850000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -1718,8 +1718,8 @@ local monster_daily_challenge = { [13002]={ ["monster_base"]=20005, ["is_boss"]=1, - ["hp"]=114540000, - ["atk"]=1110000, + ["hp"]=114550000, + ["atk"]=980000, ["atk_times"]=4, ["hurt_skill"]={ 30013, @@ -1736,8 +1736,8 @@ local monster_daily_challenge = { }, [13102]={ ["monster_base"]=10009, - ["hp"]=62700000, - ["atk"]=960000, + ["hp"]=62730000, + ["atk"]=850000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -1748,8 +1748,8 @@ local monster_daily_challenge = { }, [13202]={ ["monster_base"]=10055, - ["hp"]=76350000, - ["atk"]=1020000, + ["hp"]=76360000, + ["atk"]=910000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -1760,8 +1760,8 @@ local monster_daily_challenge = { }, [13302]={ ["monster_base"]=10046, - ["hp"]=84540000, - ["atk"]=1080000, + ["hp"]=84550000, + ["atk"]=950000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -1772,8 +1772,8 @@ local monster_daily_challenge = { }, [13402]={ ["monster_base"]=10042, - ["hp"]=95430000, - ["atk"]=1110000, + ["hp"]=95450000, + ["atk"]=1000000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -1785,8 +1785,8 @@ local monster_daily_challenge = { [13502]={ ["monster_base"]=20030, ["is_boss"]=1, - ["hp"]=141810000, - ["atk"]=1200000, + ["hp"]=141820000, + ["atk"]=1070000, ["atk_times"]=4, ["hurt_skill"]={ 30088, @@ -1804,8 +1804,8 @@ local monster_daily_challenge = { }, [13602]={ ["monster_base"]=10058, - ["hp"]=109080000, - ["atk"]=1170000, + ["hp"]=109090000, + ["atk"]=1060000, ["atk_times"]=3, ["hurt_skill"]={ 20169, @@ -1817,7 +1817,7 @@ local monster_daily_challenge = { [13702]={ ["monster_base"]=10051, ["hp"]=120000000, - ["atk"]=1230000, + ["atk"]=1100000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -1828,8 +1828,8 @@ local monster_daily_challenge = { }, [13802]={ ["monster_base"]=10055, - ["hp"]=136350000, - ["atk"]=1290000, + ["hp"]=136360000, + ["atk"]=1150000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -1841,7 +1841,7 @@ local monster_daily_challenge = { [13902]={ ["monster_base"]=10057, ["hp"]=147270000, - ["atk"]=1350000, + ["atk"]=1190000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -1853,8 +1853,8 @@ local monster_daily_challenge = { [14002]={ ["monster_base"]=20031, ["is_boss"]=2, - ["hp"]=245430000, - ["atk"]=1860000, + ["hp"]=245450000, + ["atk"]=1640000, ["atk_times"]=4, ["hurt_skill"]={ 30091, diff --git a/lua/app/config/monster_dungeon_armor.lua b/lua/app/config/monster_dungeon_armor.lua index 7a1e15bd..0103a741 100644 --- a/lua/app/config/monster_dungeon_armor.lua +++ b/lua/app/config/monster_dungeon_armor.lua @@ -2,7 +2,7 @@ local monster_dungeon_armor = { [107]={ ["monster_base"]=10022, ["hp"]=76340000, - ["atk"]=2000000, + ["atk"]=1760000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -14,7 +14,7 @@ local monster_dungeon_armor = { [207]={ ["monster_base"]=10043, ["hp"]=113830000, - ["atk"]=2190000, + ["atk"]=1970000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -26,7 +26,7 @@ local monster_dungeon_armor = { [307]={ ["monster_base"]=10033, ["hp"]=142400000, - ["atk"]=2300000, + ["atk"]=2050000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -38,7 +38,7 @@ local monster_dungeon_armor = { [407]={ ["monster_base"]=10048, ["hp"]=150430000, - ["atk"]=2670000, + ["atk"]=2450000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -51,7 +51,7 @@ local monster_dungeon_armor = { ["monster_base"]=20004, ["is_boss"]=1, ["hp"]=290940000, - ["atk"]=2800000, + ["atk"]=2640000, ["atk_times"]=4, ["hurt_skill"]={ 30010, @@ -66,7 +66,7 @@ local monster_dungeon_armor = { [607]={ ["monster_base"]=10051, ["hp"]=185400000, - ["atk"]=2750000, + ["atk"]=2550000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -78,7 +78,7 @@ local monster_dungeon_armor = { [707]={ ["monster_base"]=10046, ["hp"]=203090000, - ["atk"]=2720000, + ["atk"]=2640000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -90,7 +90,7 @@ local monster_dungeon_armor = { [807]={ ["monster_base"]=10003, ["hp"]=237710000, - ["atk"]=2800000, + ["atk"]=2600000, ["atk_times"]=2, ["hurt_skill"]={ 20007, @@ -102,7 +102,7 @@ local monster_dungeon_armor = { [907]={ ["monster_base"]=10058, ["hp"]=273290000, - ["atk"]=2990000, + ["atk"]=2740000, ["atk_times"]=3, ["hurt_skill"]={ 20169, @@ -115,7 +115,7 @@ local monster_dungeon_armor = { ["monster_base"]=20012, ["is_boss"]=2, ["hp"]=494490000, - ["atk"]=3100000, + ["atk"]=2740000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -130,7 +130,7 @@ local monster_dungeon_armor = { [1107]={ ["monster_base"]=10017, ["hp"]=76340000, - ["atk"]=2000000, + ["atk"]=1760000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -142,7 +142,7 @@ local monster_dungeon_armor = { [1207]={ ["monster_base"]=10009, ["hp"]=113830000, - ["atk"]=2190000, + ["atk"]=1970000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -154,7 +154,7 @@ local monster_dungeon_armor = { [1307]={ ["monster_base"]=10019, ["hp"]=142400000, - ["atk"]=2300000, + ["atk"]=2050000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -166,7 +166,7 @@ local monster_dungeon_armor = { [1407]={ ["monster_base"]=10039, ["hp"]=150430000, - ["atk"]=2670000, + ["atk"]=2450000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -179,7 +179,7 @@ local monster_dungeon_armor = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=290940000, - ["atk"]=2800000, + ["atk"]=2640000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -197,7 +197,7 @@ local monster_dungeon_armor = { [1607]={ ["monster_base"]=10048, ["hp"]=185400000, - ["atk"]=2750000, + ["atk"]=2550000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -209,7 +209,7 @@ local monster_dungeon_armor = { [1707]={ ["monster_base"]=10017, ["hp"]=203090000, - ["atk"]=2720000, + ["atk"]=2640000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -221,7 +221,7 @@ local monster_dungeon_armor = { [1807]={ ["monster_base"]=10009, ["hp"]=237710000, - ["atk"]=2800000, + ["atk"]=2600000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -233,7 +233,7 @@ local monster_dungeon_armor = { [1907]={ ["monster_base"]=10039, ["hp"]=273290000, - ["atk"]=2990000, + ["atk"]=2740000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -246,7 +246,7 @@ local monster_dungeon_armor = { ["monster_base"]=20011, ["is_boss"]=2, ["hp"]=494490000, - ["atk"]=3100000, + ["atk"]=2740000, ["atk_times"]=4, ["hurt_skill"]={ 30031, @@ -261,7 +261,7 @@ local monster_dungeon_armor = { [2107]={ ["monster_base"]=10046, ["hp"]=76340000, - ["atk"]=2000000, + ["atk"]=1760000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -273,7 +273,7 @@ local monster_dungeon_armor = { [2207]={ ["monster_base"]=10005, ["hp"]=113830000, - ["atk"]=2190000, + ["atk"]=1970000, ["atk_times"]=2, ["hurt_skill"]={ 20013, @@ -285,7 +285,7 @@ local monster_dungeon_armor = { [2307]={ ["monster_base"]=10044, ["hp"]=142400000, - ["atk"]=2300000, + ["atk"]=2050000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -297,7 +297,7 @@ local monster_dungeon_armor = { [2407]={ ["monster_base"]=10052, ["hp"]=150430000, - ["atk"]=2670000, + ["atk"]=2450000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -310,7 +310,7 @@ local monster_dungeon_armor = { ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=290940000, - ["atk"]=2800000, + ["atk"]=2640000, ["atk_times"]=4, ["hurt_skill"]={ 30040, @@ -325,7 +325,7 @@ local monster_dungeon_armor = { [2607]={ ["monster_base"]=10060, ["hp"]=185400000, - ["atk"]=2750000, + ["atk"]=2550000, ["atk_times"]=3, ["hurt_skill"]={ 20175, @@ -337,7 +337,7 @@ local monster_dungeon_armor = { [2707]={ ["monster_base"]=10051, ["hp"]=203090000, - ["atk"]=2720000, + ["atk"]=2640000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -349,7 +349,7 @@ local monster_dungeon_armor = { [2807]={ ["monster_base"]=10036, ["hp"]=237710000, - ["atk"]=2800000, + ["atk"]=2600000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -361,7 +361,7 @@ local monster_dungeon_armor = { [2907]={ ["monster_base"]=10029, ["hp"]=273290000, - ["atk"]=2990000, + ["atk"]=2740000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -374,7 +374,7 @@ local monster_dungeon_armor = { ["monster_base"]=20029, ["is_boss"]=2, ["hp"]=494490000, - ["atk"]=3100000, + ["atk"]=2740000, ["atk_times"]=4, ["hurt_skill"]={ 30085, @@ -389,7 +389,7 @@ local monster_dungeon_armor = { [3107]={ ["monster_base"]=10029, ["hp"]=76340000, - ["atk"]=2000000, + ["atk"]=1760000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -401,7 +401,7 @@ local monster_dungeon_armor = { [3207]={ ["monster_base"]=10061, ["hp"]=113830000, - ["atk"]=2190000, + ["atk"]=1970000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -413,7 +413,7 @@ local monster_dungeon_armor = { [3307]={ ["monster_base"]=10041, ["hp"]=142400000, - ["atk"]=2300000, + ["atk"]=2050000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -425,7 +425,7 @@ local monster_dungeon_armor = { [3407]={ ["monster_base"]=10020, ["hp"]=150430000, - ["atk"]=2670000, + ["atk"]=2450000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -438,7 +438,7 @@ local monster_dungeon_armor = { ["monster_base"]=20002, ["is_boss"]=1, ["hp"]=290940000, - ["atk"]=2800000, + ["atk"]=2640000, ["atk_times"]=4, ["hurt_skill"]={ 30004, @@ -453,7 +453,7 @@ local monster_dungeon_armor = { [3607]={ ["monster_base"]=10035, ["hp"]=185400000, - ["atk"]=2750000, + ["atk"]=2550000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -465,7 +465,7 @@ local monster_dungeon_armor = { [3707]={ ["monster_base"]=10018, ["hp"]=203090000, - ["atk"]=2720000, + ["atk"]=2640000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -477,7 +477,7 @@ local monster_dungeon_armor = { [3807]={ ["monster_base"]=10049, ["hp"]=237710000, - ["atk"]=2800000, + ["atk"]=2600000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -489,7 +489,7 @@ local monster_dungeon_armor = { [3907]={ ["monster_base"]=10014, ["hp"]=273290000, - ["atk"]=2990000, + ["atk"]=2740000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -502,7 +502,7 @@ local monster_dungeon_armor = { ["monster_base"]=20023, ["is_boss"]=2, ["hp"]=494490000, - ["atk"]=3100000, + ["atk"]=2740000, ["atk_times"]=4, ["hurt_skill"]={ 30067, @@ -520,7 +520,7 @@ local monster_dungeon_armor = { [4107]={ ["monster_base"]=10004, ["hp"]=76340000, - ["atk"]=2000000, + ["atk"]=1760000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -532,7 +532,7 @@ local monster_dungeon_armor = { [4207]={ ["monster_base"]=10055, ["hp"]=113830000, - ["atk"]=2190000, + ["atk"]=1970000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -544,7 +544,7 @@ local monster_dungeon_armor = { [4307]={ ["monster_base"]=10010, ["hp"]=142400000, - ["atk"]=2300000, + ["atk"]=2050000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -556,7 +556,7 @@ local monster_dungeon_armor = { [4407]={ ["monster_base"]=10015, ["hp"]=150430000, - ["atk"]=2670000, + ["atk"]=2450000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -569,7 +569,7 @@ local monster_dungeon_armor = { ["monster_base"]=20007, ["is_boss"]=1, ["hp"]=290940000, - ["atk"]=2800000, + ["atk"]=2640000, ["atk_times"]=4, ["hurt_skill"]={ 30019, @@ -587,7 +587,7 @@ local monster_dungeon_armor = { [4607]={ ["monster_base"]=10031, ["hp"]=185400000, - ["atk"]=2750000, + ["atk"]=2550000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -599,7 +599,7 @@ local monster_dungeon_armor = { [4707]={ ["monster_base"]=10038, ["hp"]=203090000, - ["atk"]=2720000, + ["atk"]=2640000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -611,7 +611,7 @@ local monster_dungeon_armor = { [4807]={ ["monster_base"]=10025, ["hp"]=237710000, - ["atk"]=2800000, + ["atk"]=2600000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -623,7 +623,7 @@ local monster_dungeon_armor = { [4907]={ ["monster_base"]=10007, ["hp"]=273290000, - ["atk"]=2990000, + ["atk"]=2740000, ["atk_times"]=2, ["hurt_skill"]={ 20019, @@ -636,7 +636,7 @@ local monster_dungeon_armor = { ["monster_base"]=20025, ["is_boss"]=2, ["hp"]=494490000, - ["atk"]=3100000, + ["atk"]=2740000, ["atk_times"]=4, ["hurt_skill"]={ 30073, @@ -654,7 +654,7 @@ local monster_dungeon_armor = { [5107]={ ["monster_base"]=10049, ["hp"]=76340000, - ["atk"]=2000000, + ["atk"]=1760000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -666,7 +666,7 @@ local monster_dungeon_armor = { [5207]={ ["monster_base"]=10008, ["hp"]=113830000, - ["atk"]=2190000, + ["atk"]=1970000, ["atk_times"]=2, ["hurt_skill"]={ 20022, @@ -678,7 +678,7 @@ local monster_dungeon_armor = { [5307]={ ["monster_base"]=10050, ["hp"]=142400000, - ["atk"]=2300000, + ["atk"]=2050000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -690,7 +690,7 @@ local monster_dungeon_armor = { [5407]={ ["monster_base"]=10051, ["hp"]=150430000, - ["atk"]=2670000, + ["atk"]=2450000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -703,7 +703,7 @@ local monster_dungeon_armor = { ["monster_base"]=20001, ["is_boss"]=1, ["hp"]=290940000, - ["atk"]=2800000, + ["atk"]=2640000, ["atk_times"]=4, ["hurt_skill"]={ 30001, @@ -718,7 +718,7 @@ local monster_dungeon_armor = { [5607]={ ["monster_base"]=10036, ["hp"]=185400000, - ["atk"]=2750000, + ["atk"]=2550000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -730,7 +730,7 @@ local monster_dungeon_armor = { [5707]={ ["monster_base"]=10030, ["hp"]=203090000, - ["atk"]=2720000, + ["atk"]=2640000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -742,7 +742,7 @@ local monster_dungeon_armor = { [5807]={ ["monster_base"]=10055, ["hp"]=237710000, - ["atk"]=2800000, + ["atk"]=2600000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -754,7 +754,7 @@ local monster_dungeon_armor = { [5907]={ ["monster_base"]=10062, ["hp"]=273290000, - ["atk"]=2990000, + ["atk"]=2740000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -767,7 +767,7 @@ local monster_dungeon_armor = { ["monster_base"]=20005, ["is_boss"]=2, ["hp"]=494490000, - ["atk"]=3100000, + ["atk"]=2740000, ["atk_times"]=4, ["hurt_skill"]={ 30013, @@ -785,7 +785,7 @@ local monster_dungeon_armor = { [6107]={ ["monster_base"]=10054, ["hp"]=97940000, - ["atk"]=2670000, + ["atk"]=1910000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -797,7 +797,7 @@ local monster_dungeon_armor = { [6207]={ ["monster_base"]=10007, ["hp"]=145130000, - ["atk"]=2910000, + ["atk"]=2150000, ["atk_times"]=2, ["hurt_skill"]={ 20019, @@ -809,7 +809,7 @@ local monster_dungeon_armor = { [6307]={ ["monster_base"]=10035, ["hp"]=181680000, - ["atk"]=3040000, + ["atk"]=2220000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -821,7 +821,7 @@ local monster_dungeon_armor = { [6407]={ ["monster_base"]=10037, ["hp"]=191500000, - ["atk"]=3500000, + ["atk"]=2660000, ["atk_times"]=3, ["hurt_skill"]={ 20106, @@ -834,7 +834,7 @@ local monster_dungeon_armor = { ["monster_base"]=20011, ["is_boss"]=1, ["hp"]=356570000, - ["atk"]=3520000, + ["atk"]=2870000, ["atk_times"]=4, ["hurt_skill"]={ 30031, @@ -849,7 +849,7 @@ local monster_dungeon_armor = { [6607]={ ["monster_base"]=10004, ["hp"]=236460000, - ["atk"]=3630000, + ["atk"]=2770000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -861,7 +861,7 @@ local monster_dungeon_armor = { [6707]={ ["monster_base"]=10060, ["hp"]=248810000, - ["atk"]=3440000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20175, @@ -873,7 +873,7 @@ local monster_dungeon_armor = { [6807]={ ["monster_base"]=10036, ["hp"]=291690000, - ["atk"]=3550000, + ["atk"]=2820000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -885,7 +885,7 @@ local monster_dungeon_armor = { [6907]={ ["monster_base"]=10057, ["hp"]=335220000, - ["atk"]=3760000, + ["atk"]=2980000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -898,7 +898,7 @@ local monster_dungeon_armor = { ["monster_base"]=20017, ["is_boss"]=2, ["hp"]=566760000, - ["atk"]=3630000, + ["atk"]=2980000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -913,7 +913,7 @@ local monster_dungeon_armor = { [7107]={ ["monster_base"]=10045, ["hp"]=97940000, - ["atk"]=2670000, + ["atk"]=1910000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -925,7 +925,7 @@ local monster_dungeon_armor = { [7207]={ ["monster_base"]=10015, ["hp"]=145130000, - ["atk"]=2910000, + ["atk"]=2150000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -937,7 +937,7 @@ local monster_dungeon_armor = { [7307]={ ["monster_base"]=10025, ["hp"]=181680000, - ["atk"]=3040000, + ["atk"]=2220000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -949,7 +949,7 @@ local monster_dungeon_armor = { [7407]={ ["monster_base"]=10035, ["hp"]=191500000, - ["atk"]=3500000, + ["atk"]=2660000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -962,7 +962,7 @@ local monster_dungeon_armor = { ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=356570000, - ["atk"]=3520000, + ["atk"]=2870000, ["atk_times"]=4, ["hurt_skill"]={ 30040, @@ -977,7 +977,7 @@ local monster_dungeon_armor = { [7607]={ ["monster_base"]=10040, ["hp"]=236460000, - ["atk"]=3630000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -989,7 +989,7 @@ local monster_dungeon_armor = { [7707]={ ["monster_base"]=10002, ["hp"]=248810000, - ["atk"]=3440000, + ["atk"]=2870000, ["atk_times"]=2, ["hurt_skill"]={ 20004, @@ -1001,7 +1001,7 @@ local monster_dungeon_armor = { [7807]={ ["monster_base"]=10047, ["hp"]=291690000, - ["atk"]=3550000, + ["atk"]=2820000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -1013,7 +1013,7 @@ local monster_dungeon_armor = { [7907]={ ["monster_base"]=10034, ["hp"]=335220000, - ["atk"]=3760000, + ["atk"]=2980000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -1026,7 +1026,7 @@ local monster_dungeon_armor = { ["monster_base"]=30014, ["is_boss"]=2, ["hp"]=566760000, - ["atk"]=3630000, + ["atk"]=2980000, ["atk_times"]=4, ["hurt_skill"]={ 40009, @@ -1042,7 +1042,7 @@ local monster_dungeon_armor = { [8107]={ ["monster_base"]=10005, ["hp"]=97940000, - ["atk"]=2670000, + ["atk"]=1910000, ["atk_times"]=2, ["hurt_skill"]={ 20013, @@ -1054,7 +1054,7 @@ local monster_dungeon_armor = { [8207]={ ["monster_base"]=10037, ["hp"]=145130000, - ["atk"]=2910000, + ["atk"]=2150000, ["atk_times"]=3, ["hurt_skill"]={ 20106, @@ -1066,7 +1066,7 @@ local monster_dungeon_armor = { [8307]={ ["monster_base"]=10022, ["hp"]=181680000, - ["atk"]=3040000, + ["atk"]=2220000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -1078,7 +1078,7 @@ local monster_dungeon_armor = { [8407]={ ["monster_base"]=10012, ["hp"]=191500000, - ["atk"]=3500000, + ["atk"]=2660000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -1091,7 +1091,7 @@ local monster_dungeon_armor = { ["monster_base"]=20008, ["is_boss"]=1, ["hp"]=356570000, - ["atk"]=3520000, + ["atk"]=2870000, ["atk_times"]=4, ["hurt_skill"]={ 30022, @@ -1109,7 +1109,7 @@ local monster_dungeon_armor = { [8607]={ ["monster_base"]=10029, ["hp"]=236460000, - ["atk"]=3630000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -1121,7 +1121,7 @@ local monster_dungeon_armor = { [8707]={ ["monster_base"]=10030, ["hp"]=248810000, - ["atk"]=3440000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -1133,7 +1133,7 @@ local monster_dungeon_armor = { [8807]={ ["monster_base"]=10021, ["hp"]=291690000, - ["atk"]=3550000, + ["atk"]=2820000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -1145,7 +1145,7 @@ local monster_dungeon_armor = { [8907]={ ["monster_base"]=10024, ["hp"]=335220000, - ["atk"]=3760000, + ["atk"]=2980000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -1158,7 +1158,7 @@ local monster_dungeon_armor = { ["monster_base"]=30012, ["is_boss"]=2, ["hp"]=566760000, - ["atk"]=3630000, + ["atk"]=2980000, ["atk_times"]=4, ["hurt_skill"]={ 40005, @@ -1175,7 +1175,7 @@ local monster_dungeon_armor = { [9107]={ ["monster_base"]=10039, ["hp"]=97940000, - ["atk"]=2670000, + ["atk"]=1910000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -1187,7 +1187,7 @@ local monster_dungeon_armor = { [9207]={ ["monster_base"]=10061, ["hp"]=145130000, - ["atk"]=2910000, + ["atk"]=2150000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -1199,7 +1199,7 @@ local monster_dungeon_armor = { [9307]={ ["monster_base"]=10048, ["hp"]=181680000, - ["atk"]=3040000, + ["atk"]=2220000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -1211,7 +1211,7 @@ local monster_dungeon_armor = { [9407]={ ["monster_base"]=10027, ["hp"]=191500000, - ["atk"]=3500000, + ["atk"]=2660000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -1224,7 +1224,7 @@ local monster_dungeon_armor = { ["monster_base"]=20006, ["is_boss"]=1, ["hp"]=356570000, - ["atk"]=3520000, + ["atk"]=2870000, ["atk_times"]=4, ["hurt_skill"]={ 30016, @@ -1242,7 +1242,7 @@ local monster_dungeon_armor = { [9607]={ ["monster_base"]=10031, ["hp"]=236460000, - ["atk"]=3630000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -1254,7 +1254,7 @@ local monster_dungeon_armor = { [9707]={ ["monster_base"]=10041, ["hp"]=248810000, - ["atk"]=3440000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -1266,7 +1266,7 @@ local monster_dungeon_armor = { [9807]={ ["monster_base"]=10040, ["hp"]=291690000, - ["atk"]=3550000, + ["atk"]=2820000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -1278,7 +1278,7 @@ local monster_dungeon_armor = { [9907]={ ["monster_base"]=10017, ["hp"]=335220000, - ["atk"]=3760000, + ["atk"]=2980000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -1291,7 +1291,7 @@ local monster_dungeon_armor = { ["monster_base"]=20021, ["is_boss"]=2, ["hp"]=566760000, - ["atk"]=3630000, + ["atk"]=2980000, ["atk_times"]=4, ["hurt_skill"]={ 30061, @@ -1310,7 +1310,7 @@ local monster_dungeon_armor = { [10107]={ ["monster_base"]=10039, ["hp"]=97940000, - ["atk"]=2670000, + ["atk"]=1910000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -1322,7 +1322,7 @@ local monster_dungeon_armor = { [10207]={ ["monster_base"]=10053, ["hp"]=145130000, - ["atk"]=2910000, + ["atk"]=2150000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -1334,7 +1334,7 @@ local monster_dungeon_armor = { [10307]={ ["monster_base"]=10002, ["hp"]=181680000, - ["atk"]=3040000, + ["atk"]=2220000, ["atk_times"]=2, ["hurt_skill"]={ 20004, @@ -1346,7 +1346,7 @@ local monster_dungeon_armor = { [10407]={ ["monster_base"]=10063, ["hp"]=191500000, - ["atk"]=3500000, + ["atk"]=2660000, ["atk_times"]=3, ["hurt_skill"]={ 20184, @@ -1359,7 +1359,7 @@ local monster_dungeon_armor = { ["monster_base"]=20016, ["is_boss"]=1, ["hp"]=356570000, - ["atk"]=3520000, + ["atk"]=2870000, ["atk_times"]=4, ["hurt_skill"]={ 30046, @@ -1378,7 +1378,7 @@ local monster_dungeon_armor = { [10607]={ ["monster_base"]=10061, ["hp"]=236460000, - ["atk"]=3630000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -1390,7 +1390,7 @@ local monster_dungeon_armor = { [10707]={ ["monster_base"]=10050, ["hp"]=248810000, - ["atk"]=3440000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -1402,7 +1402,7 @@ local monster_dungeon_armor = { [10807]={ ["monster_base"]=10033, ["hp"]=291690000, - ["atk"]=3550000, + ["atk"]=2820000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -1414,7 +1414,7 @@ local monster_dungeon_armor = { [10907]={ ["monster_base"]=10057, ["hp"]=335220000, - ["atk"]=3760000, + ["atk"]=2980000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -1427,7 +1427,7 @@ local monster_dungeon_armor = { ["monster_base"]=30020, ["is_boss"]=2, ["hp"]=566760000, - ["atk"]=3630000, + ["atk"]=2980000, ["atk_times"]=4, ["hurt_skill"]={ 40033, @@ -1443,7 +1443,7 @@ local monster_dungeon_armor = { [11107]={ ["monster_base"]=10034, ["hp"]=97940000, - ["atk"]=2670000, + ["atk"]=1910000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -1455,7 +1455,7 @@ local monster_dungeon_armor = { [11207]={ ["monster_base"]=10056, ["hp"]=145130000, - ["atk"]=2910000, + ["atk"]=2150000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -1467,7 +1467,7 @@ local monster_dungeon_armor = { [11307]={ ["monster_base"]=10037, ["hp"]=181680000, - ["atk"]=3040000, + ["atk"]=2220000, ["atk_times"]=3, ["hurt_skill"]={ 20106, @@ -1479,7 +1479,7 @@ local monster_dungeon_armor = { [11407]={ ["monster_base"]=10042, ["hp"]=191500000, - ["atk"]=3500000, + ["atk"]=2660000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -1492,7 +1492,7 @@ local monster_dungeon_armor = { ["monster_base"]=30010, ["is_boss"]=1, ["hp"]=356570000, - ["atk"]=3520000, + ["atk"]=2870000, ["atk_times"]=4, ["hurt_skill"]={ 40013, @@ -1508,7 +1508,7 @@ local monster_dungeon_armor = { [11607]={ ["monster_base"]=10062, ["hp"]=236460000, - ["atk"]=3630000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -1520,7 +1520,7 @@ local monster_dungeon_armor = { [11707]={ ["monster_base"]=10042, ["hp"]=248810000, - ["atk"]=3440000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -1532,7 +1532,7 @@ local monster_dungeon_armor = { [11807]={ ["monster_base"]=10008, ["hp"]=291690000, - ["atk"]=3550000, + ["atk"]=2820000, ["atk_times"]=2, ["hurt_skill"]={ 20022, @@ -1544,7 +1544,7 @@ local monster_dungeon_armor = { [11907]={ ["monster_base"]=10023, ["hp"]=335220000, - ["atk"]=3760000, + ["atk"]=2980000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -1557,7 +1557,7 @@ local monster_dungeon_armor = { ["monster_base"]=20003, ["is_boss"]=2, ["hp"]=566760000, - ["atk"]=3630000, + ["atk"]=2980000, ["atk_times"]=4, ["hurt_skill"]={ 30007, @@ -1577,7 +1577,7 @@ local monster_dungeon_armor = { [12107]={ ["monster_base"]=10062, ["hp"]=132190000, - ["atk"]=3940000, + ["atk"]=2500000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -1589,7 +1589,7 @@ local monster_dungeon_armor = { [12207]={ ["monster_base"]=10008, ["hp"]=194920000, - ["atk"]=4280000, + ["atk"]=2770000, ["atk_times"]=2, ["hurt_skill"]={ 20022, @@ -1601,7 +1601,7 @@ local monster_dungeon_armor = { [12307]={ ["monster_base"]=10065, ["hp"]=243300000, - ["atk"]=4410000, + ["atk"]=2900000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -1613,7 +1613,7 @@ local monster_dungeon_armor = { [12407]={ ["monster_base"]=10013, ["hp"]=255540000, - ["atk"]=5040000, + ["atk"]=3450000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -1626,7 +1626,7 @@ local monster_dungeon_armor = { ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=475340000, - ["atk"]=4990000, + ["atk"]=3690000, ["atk_times"]=4, ["hurt_skill"]={ 30040, @@ -1641,7 +1641,7 @@ local monster_dungeon_armor = { [12607]={ ["monster_base"]=10020, ["hp"]=316140000, - ["atk"]=5190000, + ["atk"]=3590000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -1653,7 +1653,7 @@ local monster_dungeon_armor = { [12707]={ ["monster_base"]=10047, ["hp"]=332120000, - ["atk"]=4990000, + ["atk"]=3710000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -1665,7 +1665,7 @@ local monster_dungeon_armor = { [12807]={ ["monster_base"]=10065, ["hp"]=389430000, - ["atk"]=5120000, + ["atk"]=3660000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -1677,7 +1677,7 @@ local monster_dungeon_armor = { [12907]={ ["monster_base"]=10063, ["hp"]=447180000, - ["atk"]=5400000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20184, @@ -1690,7 +1690,7 @@ local monster_dungeon_armor = { ["monster_base"]=20005, ["is_boss"]=2, ["hp"]=754850000, - ["atk"]=5120000, + ["atk"]=3870000, ["atk_times"]=4, ["hurt_skill"]={ 30013, @@ -1708,7 +1708,7 @@ local monster_dungeon_armor = { [13107]={ ["monster_base"]=10033, ["hp"]=132190000, - ["atk"]=3940000, + ["atk"]=2500000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -1720,7 +1720,7 @@ local monster_dungeon_armor = { [13207]={ ["monster_base"]=10020, ["hp"]=194920000, - ["atk"]=4280000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -1732,7 +1732,7 @@ local monster_dungeon_armor = { [13307]={ ["monster_base"]=10057, ["hp"]=243300000, - ["atk"]=4410000, + ["atk"]=2900000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -1744,7 +1744,7 @@ local monster_dungeon_armor = { [13407]={ ["monster_base"]=10006, ["hp"]=255540000, - ["atk"]=5040000, + ["atk"]=3450000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -1757,7 +1757,7 @@ local monster_dungeon_armor = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=475340000, - ["atk"]=4990000, + ["atk"]=3690000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -1775,7 +1775,7 @@ local monster_dungeon_armor = { [13607]={ ["monster_base"]=10048, ["hp"]=316140000, - ["atk"]=5190000, + ["atk"]=3590000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -1787,7 +1787,7 @@ local monster_dungeon_armor = { [13707]={ ["monster_base"]=10020, ["hp"]=332120000, - ["atk"]=4990000, + ["atk"]=3710000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -1799,7 +1799,7 @@ local monster_dungeon_armor = { [13807]={ ["monster_base"]=10041, ["hp"]=389430000, - ["atk"]=5120000, + ["atk"]=3660000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -1811,7 +1811,7 @@ local monster_dungeon_armor = { [13907]={ ["monster_base"]=10006, ["hp"]=447180000, - ["atk"]=5400000, + ["atk"]=3870000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -1824,7 +1824,7 @@ local monster_dungeon_armor = { ["monster_base"]=30012, ["is_boss"]=2, ["hp"]=754850000, - ["atk"]=5120000, + ["atk"]=3870000, ["atk_times"]=4, ["hurt_skill"]={ 40005, @@ -1841,7 +1841,7 @@ local monster_dungeon_armor = { [14107]={ ["monster_base"]=10001, ["hp"]=132190000, - ["atk"]=3940000, + ["atk"]=2500000, ["atk_times"]=2, ["hurt_skill"]={ 20001, @@ -1853,7 +1853,7 @@ local monster_dungeon_armor = { [14207]={ ["monster_base"]=10016, ["hp"]=194920000, - ["atk"]=4280000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -1865,7 +1865,7 @@ local monster_dungeon_armor = { [14307]={ ["monster_base"]=10041, ["hp"]=243300000, - ["atk"]=4410000, + ["atk"]=2900000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -1877,7 +1877,7 @@ local monster_dungeon_armor = { [14407]={ ["monster_base"]=10053, ["hp"]=255540000, - ["atk"]=5040000, + ["atk"]=3450000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -1890,7 +1890,7 @@ local monster_dungeon_armor = { ["monster_base"]=20002, ["is_boss"]=1, ["hp"]=475340000, - ["atk"]=4990000, + ["atk"]=3690000, ["atk_times"]=4, ["hurt_skill"]={ 30004, @@ -1905,7 +1905,7 @@ local monster_dungeon_armor = { [14607]={ ["monster_base"]=10054, ["hp"]=316140000, - ["atk"]=5190000, + ["atk"]=3590000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -1917,7 +1917,7 @@ local monster_dungeon_armor = { [14707]={ ["monster_base"]=10018, ["hp"]=332120000, - ["atk"]=4990000, + ["atk"]=3710000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -1929,7 +1929,7 @@ local monster_dungeon_armor = { [14807]={ ["monster_base"]=10050, ["hp"]=389430000, - ["atk"]=5120000, + ["atk"]=3660000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -1941,7 +1941,7 @@ local monster_dungeon_armor = { [14907]={ ["monster_base"]=10041, ["hp"]=447180000, - ["atk"]=5400000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -1954,7 +1954,7 @@ local monster_dungeon_armor = { ["monster_base"]=20017, ["is_boss"]=2, ["hp"]=754850000, - ["atk"]=5120000, + ["atk"]=3870000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -1969,7 +1969,7 @@ local monster_dungeon_armor = { [15107]={ ["monster_base"]=10051, ["hp"]=132190000, - ["atk"]=3940000, + ["atk"]=2500000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -1981,7 +1981,7 @@ local monster_dungeon_armor = { [15207]={ ["monster_base"]=10018, ["hp"]=194920000, - ["atk"]=4280000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -1993,7 +1993,7 @@ local monster_dungeon_armor = { [15307]={ ["monster_base"]=10040, ["hp"]=243300000, - ["atk"]=4410000, + ["atk"]=2900000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -2005,7 +2005,7 @@ local monster_dungeon_armor = { [15407]={ ["monster_base"]=10032, ["hp"]=255540000, - ["atk"]=5040000, + ["atk"]=3450000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -2018,7 +2018,7 @@ local monster_dungeon_armor = { ["monster_base"]=20001, ["is_boss"]=1, ["hp"]=475340000, - ["atk"]=4990000, + ["atk"]=3690000, ["atk_times"]=4, ["hurt_skill"]={ 30001, @@ -2033,7 +2033,7 @@ local monster_dungeon_armor = { [15607]={ ["monster_base"]=10041, ["hp"]=316140000, - ["atk"]=5190000, + ["atk"]=3590000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -2045,7 +2045,7 @@ local monster_dungeon_armor = { [15707]={ ["monster_base"]=10053, ["hp"]=332120000, - ["atk"]=4990000, + ["atk"]=3710000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -2057,7 +2057,7 @@ local monster_dungeon_armor = { [15807]={ ["monster_base"]=10024, ["hp"]=389430000, - ["atk"]=5120000, + ["atk"]=3660000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -2069,7 +2069,7 @@ local monster_dungeon_armor = { [15907]={ ["monster_base"]=10038, ["hp"]=447180000, - ["atk"]=5400000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -2082,7 +2082,7 @@ local monster_dungeon_armor = { ["monster_base"]=20016, ["is_boss"]=2, ["hp"]=754850000, - ["atk"]=5120000, + ["atk"]=3870000, ["atk_times"]=4, ["hurt_skill"]={ 30046, @@ -2101,7 +2101,7 @@ local monster_dungeon_armor = { [16107]={ ["monster_base"]=10016, ["hp"]=132190000, - ["atk"]=3940000, + ["atk"]=2500000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -2113,7 +2113,7 @@ local monster_dungeon_armor = { [16207]={ ["monster_base"]=10006, ["hp"]=194920000, - ["atk"]=4280000, + ["atk"]=2770000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -2125,7 +2125,7 @@ local monster_dungeon_armor = { [16307]={ ["monster_base"]=10021, ["hp"]=243300000, - ["atk"]=4410000, + ["atk"]=2900000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -2137,7 +2137,7 @@ local monster_dungeon_armor = { [16407]={ ["monster_base"]=10018, ["hp"]=255540000, - ["atk"]=5040000, + ["atk"]=3450000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -2150,7 +2150,7 @@ local monster_dungeon_armor = { ["monster_base"]=20010, ["is_boss"]=1, ["hp"]=475340000, - ["atk"]=4990000, + ["atk"]=3690000, ["atk_times"]=4, ["hurt_skill"]={ 30028, @@ -2171,7 +2171,7 @@ local monster_dungeon_armor = { [16607]={ ["monster_base"]=10052, ["hp"]=316140000, - ["atk"]=5190000, + ["atk"]=3590000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -2183,7 +2183,7 @@ local monster_dungeon_armor = { [16707]={ ["monster_base"]=10039, ["hp"]=332120000, - ["atk"]=4990000, + ["atk"]=3710000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -2195,7 +2195,7 @@ local monster_dungeon_armor = { [16807]={ ["monster_base"]=10055, ["hp"]=389430000, - ["atk"]=5120000, + ["atk"]=3660000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -2207,7 +2207,7 @@ local monster_dungeon_armor = { [16907]={ ["monster_base"]=10031, ["hp"]=447180000, - ["atk"]=5400000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -2220,7 +2220,7 @@ local monster_dungeon_armor = { ["monster_base"]=30015, ["is_boss"]=2, ["hp"]=754850000, - ["atk"]=5120000, + ["atk"]=3870000, ["atk_times"]=4, ["hurt_skill"]={ 40025, @@ -2236,7 +2236,7 @@ local monster_dungeon_armor = { [17107]={ ["monster_base"]=10027, ["hp"]=132190000, - ["atk"]=3940000, + ["atk"]=2500000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -2248,7 +2248,7 @@ local monster_dungeon_armor = { [17207]={ ["monster_base"]=10040, ["hp"]=194920000, - ["atk"]=4280000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -2260,7 +2260,7 @@ local monster_dungeon_armor = { [17307]={ ["monster_base"]=10013, ["hp"]=243300000, - ["atk"]=4410000, + ["atk"]=2900000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -2272,7 +2272,7 @@ local monster_dungeon_armor = { [17407]={ ["monster_base"]=10053, ["hp"]=255540000, - ["atk"]=5040000, + ["atk"]=3450000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -2285,7 +2285,7 @@ local monster_dungeon_armor = { ["monster_base"]=30020, ["is_boss"]=1, ["hp"]=475340000, - ["atk"]=4990000, + ["atk"]=3690000, ["atk_times"]=4, ["hurt_skill"]={ 40033, @@ -2301,7 +2301,7 @@ local monster_dungeon_armor = { [17607]={ ["monster_base"]=10019, ["hp"]=316140000, - ["atk"]=5190000, + ["atk"]=3590000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -2313,7 +2313,7 @@ local monster_dungeon_armor = { [17707]={ ["monster_base"]=10018, ["hp"]=332120000, - ["atk"]=4990000, + ["atk"]=3710000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -2325,7 +2325,7 @@ local monster_dungeon_armor = { [17807]={ ["monster_base"]=10013, ["hp"]=389430000, - ["atk"]=5120000, + ["atk"]=3660000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -2337,7 +2337,7 @@ local monster_dungeon_armor = { [17907]={ ["monster_base"]=10023, ["hp"]=447180000, - ["atk"]=5400000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -2350,7 +2350,7 @@ local monster_dungeon_armor = { ["monster_base"]=20009, ["is_boss"]=2, ["hp"]=754850000, - ["atk"]=5120000, + ["atk"]=3870000, ["atk_times"]=4, ["hurt_skill"]={ 30025, @@ -2369,7 +2369,7 @@ local monster_dungeon_armor = { [18107]={ ["monster_base"]=10043, ["hp"]=143370000, - ["atk"]=4360000, + ["atk"]=2710000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -2381,7 +2381,7 @@ local monster_dungeon_armor = { [18207]={ ["monster_base"]=10055, ["hp"]=210680000, - ["atk"]=4720000, + ["atk"]=3000000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -2393,7 +2393,7 @@ local monster_dungeon_armor = { [18307]={ ["monster_base"]=10026, ["hp"]=263090000, - ["atk"]=4880000, + ["atk"]=3140000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -2405,7 +2405,7 @@ local monster_dungeon_armor = { [18407]={ ["monster_base"]=10023, ["hp"]=276480000, - ["atk"]=5570000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -2418,7 +2418,7 @@ local monster_dungeon_armor = { ["monster_base"]=30009, ["is_boss"]=1, ["hp"]=512890000, - ["atk"]=5470000, + ["atk"]=3980000, ["atk_times"]=4, ["hurt_skill"]={ 40021, @@ -2434,7 +2434,7 @@ local monster_dungeon_armor = { [18607]={ ["monster_base"]=10006, ["hp"]=341420000, - ["atk"]=5730000, + ["atk"]=3870000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -2446,7 +2446,7 @@ local monster_dungeon_armor = { [18707]={ ["monster_base"]=10057, ["hp"]=359010000, - ["atk"]=5500000, + ["atk"]=4000000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -2458,7 +2458,7 @@ local monster_dungeon_armor = { [18807]={ ["monster_base"]=10004, ["hp"]=420800000, - ["atk"]=5650000, + ["atk"]=3960000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -2470,7 +2470,7 @@ local monster_dungeon_armor = { [18907]={ ["monster_base"]=10048, ["hp"]=483170000, - ["atk"]=5930000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -2483,7 +2483,7 @@ local monster_dungeon_armor = { ["monster_base"]=20010, ["is_boss"]=2, ["hp"]=814970000, - ["atk"]=5600000, + ["atk"]=4170000, ["atk_times"]=4, ["hurt_skill"]={ 30028, @@ -2504,7 +2504,7 @@ local monster_dungeon_armor = { [19107]={ ["monster_base"]=10010, ["hp"]=143370000, - ["atk"]=4360000, + ["atk"]=2710000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -2516,7 +2516,7 @@ local monster_dungeon_armor = { [19207]={ ["monster_base"]=10057, ["hp"]=210680000, - ["atk"]=4720000, + ["atk"]=3000000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -2528,7 +2528,7 @@ local monster_dungeon_armor = { [19307]={ ["monster_base"]=10045, ["hp"]=263090000, - ["atk"]=4880000, + ["atk"]=3140000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -2540,7 +2540,7 @@ local monster_dungeon_armor = { [19407]={ ["monster_base"]=10032, ["hp"]=276480000, - ["atk"]=5570000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -2553,7 +2553,7 @@ local monster_dungeon_armor = { ["monster_base"]=20017, ["is_boss"]=1, ["hp"]=512890000, - ["atk"]=5470000, + ["atk"]=3980000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -2568,7 +2568,7 @@ local monster_dungeon_armor = { [19607]={ ["monster_base"]=10010, ["hp"]=341420000, - ["atk"]=5730000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -2580,7 +2580,7 @@ local monster_dungeon_armor = { [19707]={ ["monster_base"]=10029, ["hp"]=359010000, - ["atk"]=5500000, + ["atk"]=4000000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -2592,7 +2592,7 @@ local monster_dungeon_armor = { [19807]={ ["monster_base"]=10042, ["hp"]=420800000, - ["atk"]=5650000, + ["atk"]=3960000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -2604,7 +2604,7 @@ local monster_dungeon_armor = { [19907]={ ["monster_base"]=10007, ["hp"]=483170000, - ["atk"]=5930000, + ["atk"]=4170000, ["atk_times"]=2, ["hurt_skill"]={ 20019, @@ -2617,7 +2617,7 @@ local monster_dungeon_armor = { ["monster_base"]=20019, ["is_boss"]=2, ["hp"]=814970000, - ["atk"]=5600000, + ["atk"]=4170000, ["atk_times"]=4, ["hurt_skill"]={ 30055, @@ -2636,7 +2636,7 @@ local monster_dungeon_armor = { [20107]={ ["monster_base"]=10012, ["hp"]=143370000, - ["atk"]=4360000, + ["atk"]=2710000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -2648,7 +2648,7 @@ local monster_dungeon_armor = { [20207]={ ["monster_base"]=10053, ["hp"]=210680000, - ["atk"]=4720000, + ["atk"]=3000000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -2660,7 +2660,7 @@ local monster_dungeon_armor = { [20307]={ ["monster_base"]=10022, ["hp"]=263090000, - ["atk"]=4880000, + ["atk"]=3140000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -2672,7 +2672,7 @@ local monster_dungeon_armor = { [20407]={ ["monster_base"]=10058, ["hp"]=276480000, - ["atk"]=5570000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20169, @@ -2685,7 +2685,7 @@ local monster_dungeon_armor = { ["monster_base"]=30014, ["is_boss"]=1, ["hp"]=512890000, - ["atk"]=5470000, + ["atk"]=3980000, ["atk_times"]=4, ["hurt_skill"]={ 40009, @@ -2701,7 +2701,7 @@ local monster_dungeon_armor = { [20607]={ ["monster_base"]=10023, ["hp"]=341420000, - ["atk"]=5730000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -2713,7 +2713,7 @@ local monster_dungeon_armor = { [20707]={ ["monster_base"]=10046, ["hp"]=359010000, - ["atk"]=5500000, + ["atk"]=4000000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -2725,7 +2725,7 @@ local monster_dungeon_armor = { [20807]={ ["monster_base"]=10008, ["hp"]=420800000, - ["atk"]=5650000, + ["atk"]=3960000, ["atk_times"]=2, ["hurt_skill"]={ 20022, @@ -2737,7 +2737,7 @@ local monster_dungeon_armor = { [20907]={ ["monster_base"]=10056, ["hp"]=483170000, - ["atk"]=5930000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -2750,7 +2750,7 @@ local monster_dungeon_armor = { ["monster_base"]=20020, ["is_boss"]=2, ["hp"]=814970000, - ["atk"]=5600000, + ["atk"]=4170000, ["atk_times"]=4, ["hurt_skill"]={ 30058, @@ -2769,7 +2769,7 @@ local monster_dungeon_armor = { [21107]={ ["monster_base"]=10055, ["hp"]=143370000, - ["atk"]=4360000, + ["atk"]=2710000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -2781,7 +2781,7 @@ local monster_dungeon_armor = { [21207]={ ["monster_base"]=10025, ["hp"]=210680000, - ["atk"]=4720000, + ["atk"]=3000000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -2793,7 +2793,7 @@ local monster_dungeon_armor = { [21307]={ ["monster_base"]=10049, ["hp"]=263090000, - ["atk"]=4880000, + ["atk"]=3140000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -2805,7 +2805,7 @@ local monster_dungeon_armor = { [21407]={ ["monster_base"]=10051, ["hp"]=276480000, - ["atk"]=5570000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -2818,7 +2818,7 @@ local monster_dungeon_armor = { ["monster_base"]=20017, ["is_boss"]=1, ["hp"]=512890000, - ["atk"]=5470000, + ["atk"]=3980000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -2833,7 +2833,7 @@ local monster_dungeon_armor = { [21607]={ ["monster_base"]=10026, ["hp"]=341420000, - ["atk"]=5730000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -2845,7 +2845,7 @@ local monster_dungeon_armor = { [21707]={ ["monster_base"]=10006, ["hp"]=359010000, - ["atk"]=5500000, + ["atk"]=4000000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -2857,7 +2857,7 @@ local monster_dungeon_armor = { [21807]={ ["monster_base"]=10005, ["hp"]=420800000, - ["atk"]=5650000, + ["atk"]=3960000, ["atk_times"]=2, ["hurt_skill"]={ 20013, @@ -2869,7 +2869,7 @@ local monster_dungeon_armor = { [21907]={ ["monster_base"]=10009, ["hp"]=483170000, - ["atk"]=5930000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -2882,7 +2882,7 @@ local monster_dungeon_armor = { ["monster_base"]=20018, ["is_boss"]=2, ["hp"]=814970000, - ["atk"]=5600000, + ["atk"]=4170000, ["atk_times"]=4, ["hurt_skill"]={ 30052, @@ -2901,7 +2901,7 @@ local monster_dungeon_armor = { [22107]={ ["monster_base"]=10003, ["hp"]=143370000, - ["atk"]=4360000, + ["atk"]=2710000, ["atk_times"]=2, ["hurt_skill"]={ 20007, @@ -2913,7 +2913,7 @@ local monster_dungeon_armor = { [22207]={ ["monster_base"]=10026, ["hp"]=210680000, - ["atk"]=4720000, + ["atk"]=3000000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -2925,7 +2925,7 @@ local monster_dungeon_armor = { [22307]={ ["monster_base"]=10049, ["hp"]=263090000, - ["atk"]=4880000, + ["atk"]=3140000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -2937,7 +2937,7 @@ local monster_dungeon_armor = { [22407]={ ["monster_base"]=10024, ["hp"]=276480000, - ["atk"]=5570000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -2950,7 +2950,7 @@ local monster_dungeon_armor = { ["monster_base"]=30010, ["is_boss"]=1, ["hp"]=512890000, - ["atk"]=5470000, + ["atk"]=3980000, ["atk_times"]=4, ["hurt_skill"]={ 40013, @@ -2966,7 +2966,7 @@ local monster_dungeon_armor = { [22607]={ ["monster_base"]=10048, ["hp"]=341420000, - ["atk"]=5730000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -2978,7 +2978,7 @@ local monster_dungeon_armor = { [22707]={ ["monster_base"]=10004, ["hp"]=359010000, - ["atk"]=5500000, + ["atk"]=4000000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -2990,7 +2990,7 @@ local monster_dungeon_armor = { [22807]={ ["monster_base"]=10014, ["hp"]=420800000, - ["atk"]=5650000, + ["atk"]=3960000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -3002,7 +3002,7 @@ local monster_dungeon_armor = { [22907]={ ["monster_base"]=10055, ["hp"]=483170000, - ["atk"]=5930000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -3015,7 +3015,7 @@ local monster_dungeon_armor = { ["monster_base"]=20013, ["is_boss"]=2, ["hp"]=814970000, - ["atk"]=5600000, + ["atk"]=4170000, ["atk_times"]=4, ["hurt_skill"]={ 30037, @@ -3031,7 +3031,7 @@ local monster_dungeon_armor = { [23107]={ ["monster_base"]=10019, ["hp"]=143370000, - ["atk"]=4360000, + ["atk"]=2710000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -3043,7 +3043,7 @@ local monster_dungeon_armor = { [23207]={ ["monster_base"]=10048, ["hp"]=210680000, - ["atk"]=4720000, + ["atk"]=3000000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -3055,7 +3055,7 @@ local monster_dungeon_armor = { [23307]={ ["monster_base"]=10028, ["hp"]=263090000, - ["atk"]=4880000, + ["atk"]=3140000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -3067,7 +3067,7 @@ local monster_dungeon_armor = { [23407]={ ["monster_base"]=10014, ["hp"]=276480000, - ["atk"]=5570000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -3080,7 +3080,7 @@ local monster_dungeon_armor = { ["monster_base"]=20009, ["is_boss"]=1, ["hp"]=512890000, - ["atk"]=5470000, + ["atk"]=3980000, ["atk_times"]=4, ["hurt_skill"]={ 30025, @@ -3099,7 +3099,7 @@ local monster_dungeon_armor = { [23607]={ ["monster_base"]=10012, ["hp"]=341420000, - ["atk"]=5730000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -3111,7 +3111,7 @@ local monster_dungeon_armor = { [23707]={ ["monster_base"]=10065, ["hp"]=359010000, - ["atk"]=5500000, + ["atk"]=4000000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -3123,7 +3123,7 @@ local monster_dungeon_armor = { [23807]={ ["monster_base"]=10018, ["hp"]=420800000, - ["atk"]=5650000, + ["atk"]=3960000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -3135,7 +3135,7 @@ local monster_dungeon_armor = { [23907]={ ["monster_base"]=10014, ["hp"]=483170000, - ["atk"]=5930000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -3148,7 +3148,7 @@ local monster_dungeon_armor = { ["monster_base"]=20024, ["is_boss"]=2, ["hp"]=814970000, - ["atk"]=5600000, + ["atk"]=4170000, ["atk_times"]=4, ["hurt_skill"]={ 30070, @@ -3167,7 +3167,7 @@ local monster_dungeon_armor = { [24107]={ ["monster_base"]=10019, ["hp"]=153090000, - ["atk"]=4750000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -3179,7 +3179,7 @@ local monster_dungeon_armor = { [24207]={ ["monster_base"]=10013, ["hp"]=224450000, - ["atk"]=5130000, + ["atk"]=3190000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -3191,7 +3191,7 @@ local monster_dungeon_armor = { [24307]={ ["monster_base"]=10001, ["hp"]=280370000, - ["atk"]=5310000, + ["atk"]=3320000, ["atk_times"]=2, ["hurt_skill"]={ 20001, @@ -3203,7 +3203,7 @@ local monster_dungeon_armor = { [24407]={ ["monster_base"]=10031, ["hp"]=294620000, - ["atk"]=6040000, + ["atk"]=3960000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -3216,7 +3216,7 @@ local monster_dungeon_armor = { ["monster_base"]=30015, ["is_boss"]=1, ["hp"]=545940000, - ["atk"]=5910000, + ["atk"]=4220000, ["atk_times"]=4, ["hurt_skill"]={ 40025, @@ -3232,7 +3232,7 @@ local monster_dungeon_armor = { [24607]={ ["monster_base"]=10019, ["hp"]=363690000, - ["atk"]=6220000, + ["atk"]=4110000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -3244,7 +3244,7 @@ local monster_dungeon_armor = { [24707]={ ["monster_base"]=10063, ["hp"]=382500000, - ["atk"]=5960000, + ["atk"]=4240000, ["atk_times"]=3, ["hurt_skill"]={ 20184, @@ -3256,7 +3256,7 @@ local monster_dungeon_armor = { [24807]={ ["monster_base"]=10016, ["hp"]=447930000, - ["atk"]=6110000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -3268,7 +3268,7 @@ local monster_dungeon_armor = { [24907]={ ["monster_base"]=10024, ["hp"]=514350000, - ["atk"]=6450000, + ["atk"]=4430000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -3281,7 +3281,7 @@ local monster_dungeon_armor = { ["monster_base"]=20032, ["is_boss"]=2, ["hp"]=867510000, - ["atk"]=6040000, + ["atk"]=4430000, ["atk_times"]=4, ["hurt_skill"]={ 30094, @@ -3303,7 +3303,7 @@ local monster_dungeon_armor = { [25107]={ ["monster_base"]=10040, ["hp"]=153090000, - ["atk"]=4750000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -3315,7 +3315,7 @@ local monster_dungeon_armor = { [25207]={ ["monster_base"]=10056, ["hp"]=224450000, - ["atk"]=5130000, + ["atk"]=3190000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -3327,7 +3327,7 @@ local monster_dungeon_armor = { [25307]={ ["monster_base"]=10038, ["hp"]=280370000, - ["atk"]=5310000, + ["atk"]=3320000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -3339,7 +3339,7 @@ local monster_dungeon_armor = { [25407]={ ["monster_base"]=10005, ["hp"]=294620000, - ["atk"]=6040000, + ["atk"]=3960000, ["atk_times"]=2, ["hurt_skill"]={ 20013, @@ -3352,7 +3352,7 @@ local monster_dungeon_armor = { ["monster_base"]=20007, ["is_boss"]=1, ["hp"]=545940000, - ["atk"]=5910000, + ["atk"]=4220000, ["atk_times"]=4, ["hurt_skill"]={ 30019, @@ -3370,7 +3370,7 @@ local monster_dungeon_armor = { [25607]={ ["monster_base"]=10035, ["hp"]=363690000, - ["atk"]=6220000, + ["atk"]=4110000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -3382,7 +3382,7 @@ local monster_dungeon_armor = { [25707]={ ["monster_base"]=10026, ["hp"]=382500000, - ["atk"]=5960000, + ["atk"]=4240000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -3394,7 +3394,7 @@ local monster_dungeon_armor = { [25807]={ ["monster_base"]=10025, ["hp"]=447930000, - ["atk"]=6110000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -3406,7 +3406,7 @@ local monster_dungeon_armor = { [25907]={ ["monster_base"]=10034, ["hp"]=514350000, - ["atk"]=6450000, + ["atk"]=4430000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -3419,7 +3419,7 @@ local monster_dungeon_armor = { ["monster_base"]=20003, ["is_boss"]=2, ["hp"]=867510000, - ["atk"]=6040000, + ["atk"]=4430000, ["atk_times"]=4, ["hurt_skill"]={ 30007, @@ -3439,7 +3439,7 @@ local monster_dungeon_armor = { [26107]={ ["monster_base"]=10036, ["hp"]=153090000, - ["atk"]=4750000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -3451,7 +3451,7 @@ local monster_dungeon_armor = { [26207]={ ["monster_base"]=10014, ["hp"]=224450000, - ["atk"]=5130000, + ["atk"]=3190000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -3463,7 +3463,7 @@ local monster_dungeon_armor = { [26307]={ ["monster_base"]=10046, ["hp"]=280370000, - ["atk"]=5310000, + ["atk"]=3320000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -3475,7 +3475,7 @@ local monster_dungeon_armor = { [26407]={ ["monster_base"]=10041, ["hp"]=294620000, - ["atk"]=6040000, + ["atk"]=3960000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -3488,7 +3488,7 @@ local monster_dungeon_armor = { ["monster_base"]=30010, ["is_boss"]=1, ["hp"]=545940000, - ["atk"]=5910000, + ["atk"]=4220000, ["atk_times"]=4, ["hurt_skill"]={ 40013, @@ -3504,7 +3504,7 @@ local monster_dungeon_armor = { [26607]={ ["monster_base"]=10006, ["hp"]=363690000, - ["atk"]=6220000, + ["atk"]=4110000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -3516,7 +3516,7 @@ local monster_dungeon_armor = { [26707]={ ["monster_base"]=10036, ["hp"]=382500000, - ["atk"]=5960000, + ["atk"]=4240000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -3528,7 +3528,7 @@ local monster_dungeon_armor = { [26807]={ ["monster_base"]=10004, ["hp"]=447930000, - ["atk"]=6110000, + ["atk"]=4200000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -3540,7 +3540,7 @@ local monster_dungeon_armor = { [26907]={ ["monster_base"]=10031, ["hp"]=514350000, - ["atk"]=6450000, + ["atk"]=4430000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -3553,7 +3553,7 @@ local monster_dungeon_armor = { ["monster_base"]=20016, ["is_boss"]=2, ["hp"]=867510000, - ["atk"]=6040000, + ["atk"]=4430000, ["atk_times"]=4, ["hurt_skill"]={ 30046, @@ -3572,7 +3572,7 @@ local monster_dungeon_armor = { [27107]={ ["monster_base"]=10018, ["hp"]=153090000, - ["atk"]=4750000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -3584,7 +3584,7 @@ local monster_dungeon_armor = { [27207]={ ["monster_base"]=10044, ["hp"]=224450000, - ["atk"]=5130000, + ["atk"]=3190000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -3596,7 +3596,7 @@ local monster_dungeon_armor = { [27307]={ ["monster_base"]=10033, ["hp"]=280370000, - ["atk"]=5310000, + ["atk"]=3320000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -3608,7 +3608,7 @@ local monster_dungeon_armor = { [27407]={ ["monster_base"]=10028, ["hp"]=294620000, - ["atk"]=6040000, + ["atk"]=3960000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -3621,7 +3621,7 @@ local monster_dungeon_armor = { ["monster_base"]=20019, ["is_boss"]=1, ["hp"]=545940000, - ["atk"]=5910000, + ["atk"]=4220000, ["atk_times"]=4, ["hurt_skill"]={ 30055, @@ -3640,7 +3640,7 @@ local monster_dungeon_armor = { [27607]={ ["monster_base"]=10016, ["hp"]=363690000, - ["atk"]=6220000, + ["atk"]=4110000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -3652,7 +3652,7 @@ local monster_dungeon_armor = { [27707]={ ["monster_base"]=10044, ["hp"]=382500000, - ["atk"]=5960000, + ["atk"]=4240000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -3664,7 +3664,7 @@ local monster_dungeon_armor = { [27807]={ ["monster_base"]=10021, ["hp"]=447930000, - ["atk"]=6110000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -3676,7 +3676,7 @@ local monster_dungeon_armor = { [27907]={ ["monster_base"]=10030, ["hp"]=514350000, - ["atk"]=6450000, + ["atk"]=4430000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -3689,7 +3689,7 @@ local monster_dungeon_armor = { ["monster_base"]=20020, ["is_boss"]=2, ["hp"]=867510000, - ["atk"]=6040000, + ["atk"]=4430000, ["atk_times"]=4, ["hurt_skill"]={ 30058, @@ -3708,7 +3708,7 @@ local monster_dungeon_armor = { [28107]={ ["monster_base"]=10024, ["hp"]=153090000, - ["atk"]=4750000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -3720,7 +3720,7 @@ local monster_dungeon_armor = { [28207]={ ["monster_base"]=10064, ["hp"]=224450000, - ["atk"]=5130000, + ["atk"]=3190000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -3732,7 +3732,7 @@ local monster_dungeon_armor = { [28307]={ ["monster_base"]=10047, ["hp"]=280370000, - ["atk"]=5310000, + ["atk"]=3320000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -3744,7 +3744,7 @@ local monster_dungeon_armor = { [28407]={ ["monster_base"]=10008, ["hp"]=294620000, - ["atk"]=6040000, + ["atk"]=3960000, ["atk_times"]=2, ["hurt_skill"]={ 20022, @@ -3757,7 +3757,7 @@ local monster_dungeon_armor = { ["monster_base"]=20019, ["is_boss"]=1, ["hp"]=545940000, - ["atk"]=5910000, + ["atk"]=4220000, ["atk_times"]=4, ["hurt_skill"]={ 30055, @@ -3776,7 +3776,7 @@ local monster_dungeon_armor = { [28607]={ ["monster_base"]=10056, ["hp"]=363690000, - ["atk"]=6220000, + ["atk"]=4110000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -3788,7 +3788,7 @@ local monster_dungeon_armor = { [28707]={ ["monster_base"]=10045, ["hp"]=382500000, - ["atk"]=5960000, + ["atk"]=4240000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -3800,7 +3800,7 @@ local monster_dungeon_armor = { [28807]={ ["monster_base"]=10016, ["hp"]=447930000, - ["atk"]=6110000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -3812,7 +3812,7 @@ local monster_dungeon_armor = { [28907]={ ["monster_base"]=10064, ["hp"]=514350000, - ["atk"]=6450000, + ["atk"]=4430000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -3825,7 +3825,7 @@ local monster_dungeon_armor = { ["monster_base"]=20013, ["is_boss"]=2, ["hp"]=867510000, - ["atk"]=6040000, + ["atk"]=4430000, ["atk_times"]=4, ["hurt_skill"]={ 30037, @@ -3841,7 +3841,7 @@ local monster_dungeon_armor = { [29107]={ ["monster_base"]=10032, ["hp"]=153090000, - ["atk"]=4750000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -3853,7 +3853,7 @@ local monster_dungeon_armor = { [29207]={ ["monster_base"]=10004, ["hp"]=224450000, - ["atk"]=5130000, + ["atk"]=3190000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -3865,7 +3865,7 @@ local monster_dungeon_armor = { [29307]={ ["monster_base"]=10014, ["hp"]=280370000, - ["atk"]=5310000, + ["atk"]=3320000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -3877,7 +3877,7 @@ local monster_dungeon_armor = { [29407]={ ["monster_base"]=10006, ["hp"]=294620000, - ["atk"]=6040000, + ["atk"]=3960000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -3890,7 +3890,7 @@ local monster_dungeon_armor = { ["monster_base"]=20031, ["is_boss"]=1, ["hp"]=545940000, - ["atk"]=5910000, + ["atk"]=4220000, ["atk_times"]=4, ["hurt_skill"]={ 30091, @@ -3911,7 +3911,7 @@ local monster_dungeon_armor = { [29607]={ ["monster_base"]=10015, ["hp"]=363690000, - ["atk"]=6220000, + ["atk"]=4110000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -3923,7 +3923,7 @@ local monster_dungeon_armor = { [29707]={ ["monster_base"]=10026, ["hp"]=382500000, - ["atk"]=5960000, + ["atk"]=4240000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -3935,7 +3935,7 @@ local monster_dungeon_armor = { [29807]={ ["monster_base"]=10007, ["hp"]=447930000, - ["atk"]=6110000, + ["atk"]=4200000, ["atk_times"]=2, ["hurt_skill"]={ 20019, @@ -3947,7 +3947,7 @@ local monster_dungeon_armor = { [29907]={ ["monster_base"]=10064, ["hp"]=514350000, - ["atk"]=6450000, + ["atk"]=4430000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -3960,7 +3960,7 @@ local monster_dungeon_armor = { ["monster_base"]=20032, ["is_boss"]=2, ["hp"]=867510000, - ["atk"]=6040000, + ["atk"]=4430000, ["atk_times"]=4, ["hurt_skill"]={ 30094, @@ -3982,7 +3982,7 @@ local monster_dungeon_armor = { [30107]={ ["monster_base"]=10019, ["hp"]=164360000, - ["atk"]=5180000, + ["atk"]=3050000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -3994,7 +3994,7 @@ local monster_dungeon_armor = { [30207]={ ["monster_base"]=10035, ["hp"]=240110000, - ["atk"]=5580000, + ["atk"]=3390000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -4006,7 +4006,7 @@ local monster_dungeon_armor = { [30307]={ ["monster_base"]=10057, ["hp"]=299890000, - ["atk"]=5760000, + ["atk"]=3520000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -4018,7 +4018,7 @@ local monster_dungeon_armor = { [30407]={ ["monster_base"]=10051, ["hp"]=315280000, - ["atk"]=6550000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -4031,7 +4031,7 @@ local monster_dungeon_armor = { ["monster_base"]=20020, ["is_boss"]=1, ["hp"]=583450000, - ["atk"]=6380000, + ["atk"]=4490000, ["atk_times"]=4, ["hurt_skill"]={ 30058, @@ -4050,7 +4050,7 @@ local monster_dungeon_armor = { [30607]={ ["monster_base"]=10062, ["hp"]=388890000, - ["atk"]=6730000, + ["atk"]=4380000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -4062,7 +4062,7 @@ local monster_dungeon_armor = { [30707]={ ["monster_base"]=10056, ["hp"]=409220000, - ["atk"]=6480000, + ["atk"]=4500000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -4074,7 +4074,7 @@ local monster_dungeon_armor = { [30807]={ ["monster_base"]=10054, ["hp"]=479000000, - ["atk"]=6660000, + ["atk"]=4450000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -4086,7 +4086,7 @@ local monster_dungeon_armor = { [30907]={ ["monster_base"]=10060, ["hp"]=549890000, - ["atk"]=6990000, + ["atk"]=4690000, ["atk_times"]=3, ["hurt_skill"]={ 20175, @@ -4099,7 +4099,7 @@ local monster_dungeon_armor = { ["monster_base"]=20013, ["is_boss"]=2, ["hp"]=927400000, - ["atk"]=6550000, + ["atk"]=4690000, ["atk_times"]=4, ["hurt_skill"]={ 30037, @@ -4115,7 +4115,7 @@ local monster_dungeon_armor = { [31107]={ ["monster_base"]=10058, ["hp"]=164360000, - ["atk"]=5180000, + ["atk"]=3050000, ["atk_times"]=3, ["hurt_skill"]={ 20169, @@ -4127,7 +4127,7 @@ local monster_dungeon_armor = { [31207]={ ["monster_base"]=10027, ["hp"]=240110000, - ["atk"]=5580000, + ["atk"]=3390000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -4139,7 +4139,7 @@ local monster_dungeon_armor = { [31307]={ ["monster_base"]=10025, ["hp"]=299890000, - ["atk"]=5760000, + ["atk"]=3520000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -4151,7 +4151,7 @@ local monster_dungeon_armor = { [31407]={ ["monster_base"]=10007, ["hp"]=315280000, - ["atk"]=6550000, + ["atk"]=4200000, ["atk_times"]=2, ["hurt_skill"]={ 20019, @@ -4164,7 +4164,7 @@ local monster_dungeon_armor = { ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=583450000, - ["atk"]=6380000, + ["atk"]=4490000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -4179,7 +4179,7 @@ local monster_dungeon_armor = { [31607]={ ["monster_base"]=10024, ["hp"]=388890000, - ["atk"]=6730000, + ["atk"]=4380000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -4191,7 +4191,7 @@ local monster_dungeon_armor = { [31707]={ ["monster_base"]=10030, ["hp"]=409220000, - ["atk"]=6480000, + ["atk"]=4500000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -4203,7 +4203,7 @@ local monster_dungeon_armor = { [31807]={ ["monster_base"]=10048, ["hp"]=479000000, - ["atk"]=6660000, + ["atk"]=4450000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -4215,7 +4215,7 @@ local monster_dungeon_armor = { [31907]={ ["monster_base"]=10001, ["hp"]=549890000, - ["atk"]=6990000, + ["atk"]=4690000, ["atk_times"]=2, ["hurt_skill"]={ 20001, @@ -4228,7 +4228,7 @@ local monster_dungeon_armor = { ["monster_base"]=20034, ["is_boss"]=2, ["hp"]=927400000, - ["atk"]=6550000, + ["atk"]=4690000, ["atk_times"]=4, ["hurt_skill"]={ 30097, @@ -4248,7 +4248,7 @@ local monster_dungeon_armor = { [32107]={ ["monster_base"]=10061, ["hp"]=164360000, - ["atk"]=5180000, + ["atk"]=3050000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -4260,7 +4260,7 @@ local monster_dungeon_armor = { [32207]={ ["monster_base"]=10017, ["hp"]=240110000, - ["atk"]=5580000, + ["atk"]=3390000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -4272,7 +4272,7 @@ local monster_dungeon_armor = { [32307]={ ["monster_base"]=10064, ["hp"]=299890000, - ["atk"]=5760000, + ["atk"]=3520000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -4284,7 +4284,7 @@ local monster_dungeon_armor = { [32407]={ ["monster_base"]=10027, ["hp"]=315280000, - ["atk"]=6550000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -4297,7 +4297,7 @@ local monster_dungeon_armor = { ["monster_base"]=20008, ["is_boss"]=1, ["hp"]=583450000, - ["atk"]=6380000, + ["atk"]=4490000, ["atk_times"]=4, ["hurt_skill"]={ 30022, @@ -4315,7 +4315,7 @@ local monster_dungeon_armor = { [32607]={ ["monster_base"]=10005, ["hp"]=388890000, - ["atk"]=6730000, + ["atk"]=4380000, ["atk_times"]=2, ["hurt_skill"]={ 20013, @@ -4327,7 +4327,7 @@ local monster_dungeon_armor = { [32707]={ ["monster_base"]=10032, ["hp"]=409220000, - ["atk"]=6480000, + ["atk"]=4500000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -4339,7 +4339,7 @@ local monster_dungeon_armor = { [32807]={ ["monster_base"]=10056, ["hp"]=479000000, - ["atk"]=6660000, + ["atk"]=4450000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -4351,7 +4351,7 @@ local monster_dungeon_armor = { [32907]={ ["monster_base"]=10053, ["hp"]=549890000, - ["atk"]=6990000, + ["atk"]=4690000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -4364,7 +4364,7 @@ local monster_dungeon_armor = { ["monster_base"]=20035, ["is_boss"]=2, ["hp"]=927400000, - ["atk"]=6550000, + ["atk"]=4690000, ["atk_times"]=4, ["hurt_skill"]={ 30100, @@ -4384,7 +4384,7 @@ local monster_dungeon_armor = { [33107]={ ["monster_base"]=10004, ["hp"]=164360000, - ["atk"]=5180000, + ["atk"]=3050000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -4396,7 +4396,7 @@ local monster_dungeon_armor = { [33207]={ ["monster_base"]=10064, ["hp"]=240110000, - ["atk"]=5580000, + ["atk"]=3390000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -4408,7 +4408,7 @@ local monster_dungeon_armor = { [33307]={ ["monster_base"]=10050, ["hp"]=299890000, - ["atk"]=5760000, + ["atk"]=3520000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -4420,7 +4420,7 @@ local monster_dungeon_armor = { [33407]={ ["monster_base"]=10012, ["hp"]=315280000, - ["atk"]=6550000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -4433,7 +4433,7 @@ local monster_dungeon_armor = { ["monster_base"]=20021, ["is_boss"]=1, ["hp"]=583450000, - ["atk"]=6380000, + ["atk"]=4490000, ["atk_times"]=4, ["hurt_skill"]={ 30061, @@ -4452,7 +4452,7 @@ local monster_dungeon_armor = { [33607]={ ["monster_base"]=10024, ["hp"]=388890000, - ["atk"]=6730000, + ["atk"]=4380000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -4464,7 +4464,7 @@ local monster_dungeon_armor = { [33707]={ ["monster_base"]=10052, ["hp"]=409220000, - ["atk"]=6480000, + ["atk"]=4500000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -4476,7 +4476,7 @@ local monster_dungeon_armor = { [33807]={ ["monster_base"]=10012, ["hp"]=479000000, - ["atk"]=6660000, + ["atk"]=4450000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -4488,7 +4488,7 @@ local monster_dungeon_armor = { [33907]={ ["monster_base"]=10006, ["hp"]=549890000, - ["atk"]=6990000, + ["atk"]=4690000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -4501,7 +4501,7 @@ local monster_dungeon_armor = { ["monster_base"]=20036, ["is_boss"]=2, ["hp"]=927400000, - ["atk"]=6550000, + ["atk"]=4690000, ["atk_times"]=4, ["hurt_skill"]={ 30103, @@ -4520,7 +4520,7 @@ local monster_dungeon_armor = { [34107]={ ["monster_base"]=10002, ["hp"]=164360000, - ["atk"]=5180000, + ["atk"]=3050000, ["atk_times"]=2, ["hurt_skill"]={ 20004, @@ -4532,7 +4532,7 @@ local monster_dungeon_armor = { [34207]={ ["monster_base"]=10060, ["hp"]=240110000, - ["atk"]=5580000, + ["atk"]=3390000, ["atk_times"]=3, ["hurt_skill"]={ 20175, @@ -4544,7 +4544,7 @@ local monster_dungeon_armor = { [34307]={ ["monster_base"]=10065, ["hp"]=299890000, - ["atk"]=5760000, + ["atk"]=3520000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -4556,7 +4556,7 @@ local monster_dungeon_armor = { [34407]={ ["monster_base"]=10037, ["hp"]=315280000, - ["atk"]=6550000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20106, @@ -4569,7 +4569,7 @@ local monster_dungeon_armor = { ["monster_base"]=20006, ["is_boss"]=1, ["hp"]=583450000, - ["atk"]=6380000, + ["atk"]=4490000, ["atk_times"]=4, ["hurt_skill"]={ 30016, @@ -4587,7 +4587,7 @@ local monster_dungeon_armor = { [34607]={ ["monster_base"]=10012, ["hp"]=388890000, - ["atk"]=6730000, + ["atk"]=4380000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -4599,7 +4599,7 @@ local monster_dungeon_armor = { [34707]={ ["monster_base"]=10049, ["hp"]=409220000, - ["atk"]=6480000, + ["atk"]=4500000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -4611,7 +4611,7 @@ local monster_dungeon_armor = { [34807]={ ["monster_base"]=10020, ["hp"]=479000000, - ["atk"]=6660000, + ["atk"]=4450000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -4623,7 +4623,7 @@ local monster_dungeon_armor = { [34907]={ ["monster_base"]=10043, ["hp"]=549890000, - ["atk"]=6990000, + ["atk"]=4690000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -4636,7 +4636,7 @@ local monster_dungeon_armor = { ["monster_base"]=20037, ["is_boss"]=2, ["hp"]=927400000, - ["atk"]=6550000, + ["atk"]=4690000, ["atk_times"]=4, ["hurt_skill"]={ 30106, @@ -4656,7 +4656,7 @@ local monster_dungeon_armor = { [35107]={ ["monster_base"]=10041, ["hp"]=164360000, - ["atk"]=5180000, + ["atk"]=3050000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -4668,7 +4668,7 @@ local monster_dungeon_armor = { [35207]={ ["monster_base"]=10014, ["hp"]=240110000, - ["atk"]=5580000, + ["atk"]=3390000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -4680,7 +4680,7 @@ local monster_dungeon_armor = { [35307]={ ["monster_base"]=10047, ["hp"]=299890000, - ["atk"]=5760000, + ["atk"]=3520000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -4692,7 +4692,7 @@ local monster_dungeon_armor = { [35407]={ ["monster_base"]=10062, ["hp"]=315280000, - ["atk"]=6550000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -4705,7 +4705,7 @@ local monster_dungeon_armor = { ["monster_base"]=20027, ["is_boss"]=1, ["hp"]=583450000, - ["atk"]=6380000, + ["atk"]=4490000, ["atk_times"]=4, ["hurt_skill"]={ 30079, @@ -4720,7 +4720,7 @@ local monster_dungeon_armor = { [35607]={ ["monster_base"]=10005, ["hp"]=388890000, - ["atk"]=6730000, + ["atk"]=4380000, ["atk_times"]=2, ["hurt_skill"]={ 20013, @@ -4732,7 +4732,7 @@ local monster_dungeon_armor = { [35707]={ ["monster_base"]=10004, ["hp"]=409220000, - ["atk"]=6480000, + ["atk"]=4500000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -4744,7 +4744,7 @@ local monster_dungeon_armor = { [35807]={ ["monster_base"]=10039, ["hp"]=479000000, - ["atk"]=6660000, + ["atk"]=4450000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -4756,7 +4756,7 @@ local monster_dungeon_armor = { [35907]={ ["monster_base"]=10032, ["hp"]=549890000, - ["atk"]=6990000, + ["atk"]=4690000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -4769,7 +4769,7 @@ local monster_dungeon_armor = { ["monster_base"]=20038, ["is_boss"]=2, ["hp"]=927400000, - ["atk"]=6550000, + ["atk"]=4690000, ["atk_times"]=4, ["hurt_skill"]={ 30109, @@ -4791,7 +4791,7 @@ local monster_dungeon_armor = { [36107]={ ["monster_base"]=10057, ["hp"]=169650000, - ["atk"]=5440000, + ["atk"]=3230000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -4803,7 +4803,7 @@ local monster_dungeon_armor = { [36207]={ ["monster_base"]=10061, ["hp"]=247740000, - ["atk"]=5870000, + ["atk"]=3600000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -4815,7 +4815,7 @@ local monster_dungeon_armor = { [36307]={ ["monster_base"]=10040, ["hp"]=309200000, - ["atk"]=6050000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -4827,7 +4827,7 @@ local monster_dungeon_armor = { [36407]={ ["monster_base"]=10047, ["hp"]=324830000, - ["atk"]=6850000, + ["atk"]=4460000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -4840,7 +4840,7 @@ local monster_dungeon_armor = { ["monster_base"]=20004, ["is_boss"]=1, ["hp"]=600970000, - ["atk"]=6650000, + ["atk"]=4760000, ["atk_times"]=4, ["hurt_skill"]={ 30010, @@ -4855,7 +4855,7 @@ local monster_dungeon_armor = { [36607]={ ["monster_base"]=10028, ["hp"]=400760000, - ["atk"]=7060000, + ["atk"]=4650000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -4867,7 +4867,7 @@ local monster_dungeon_armor = { [36707]={ ["monster_base"]=10004, ["hp"]=421850000, - ["atk"]=6750000, + ["atk"]=4770000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -4879,7 +4879,7 @@ local monster_dungeon_armor = { [36807]={ ["monster_base"]=10002, ["hp"]=493410000, - ["atk"]=6960000, + ["atk"]=4730000, ["atk_times"]=2, ["hurt_skill"]={ 20004, @@ -4891,7 +4891,7 @@ local monster_dungeon_armor = { [36907]={ ["monster_base"]=10062, ["hp"]=566670000, - ["atk"]=7310000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -4904,7 +4904,7 @@ local monster_dungeon_armor = { ["monster_base"]=20012, ["is_boss"]=2, ["hp"]=955050000, - ["atk"]=6800000, + ["atk"]=4980000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -4919,7 +4919,7 @@ local monster_dungeon_armor = { [37107]={ ["monster_base"]=10001, ["hp"]=169650000, - ["atk"]=5440000, + ["atk"]=3230000, ["atk_times"]=2, ["hurt_skill"]={ 20001, @@ -4931,7 +4931,7 @@ local monster_dungeon_armor = { [37207]={ ["monster_base"]=10054, ["hp"]=247740000, - ["atk"]=5870000, + ["atk"]=3600000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -4943,7 +4943,7 @@ local monster_dungeon_armor = { [37307]={ ["monster_base"]=10023, ["hp"]=309200000, - ["atk"]=6050000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -4955,7 +4955,7 @@ local monster_dungeon_armor = { [37407]={ ["monster_base"]=10008, ["hp"]=324830000, - ["atk"]=6850000, + ["atk"]=4460000, ["atk_times"]=2, ["hurt_skill"]={ 20022, @@ -4968,7 +4968,7 @@ local monster_dungeon_armor = { ["monster_base"]=20022, ["is_boss"]=1, ["hp"]=600970000, - ["atk"]=6650000, + ["atk"]=4760000, ["atk_times"]=4, ["hurt_skill"]={ 30064, @@ -4986,7 +4986,7 @@ local monster_dungeon_armor = { [37607]={ ["monster_base"]=10034, ["hp"]=400760000, - ["atk"]=7060000, + ["atk"]=4650000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -4998,7 +4998,7 @@ local monster_dungeon_armor = { [37707]={ ["monster_base"]=10035, ["hp"]=421850000, - ["atk"]=6750000, + ["atk"]=4770000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -5010,7 +5010,7 @@ local monster_dungeon_armor = { [37807]={ ["monster_base"]=10004, ["hp"]=493410000, - ["atk"]=6960000, + ["atk"]=4730000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -5022,7 +5022,7 @@ local monster_dungeon_armor = { [37907]={ ["monster_base"]=10029, ["hp"]=566670000, - ["atk"]=7310000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -5035,7 +5035,7 @@ local monster_dungeon_armor = { ["monster_base"]=20003, ["is_boss"]=2, ["hp"]=955050000, - ["atk"]=6800000, + ["atk"]=4980000, ["atk_times"]=4, ["hurt_skill"]={ 30007, @@ -5055,7 +5055,7 @@ local monster_dungeon_armor = { [38107]={ ["monster_base"]=10004, ["hp"]=169650000, - ["atk"]=5440000, + ["atk"]=3230000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -5067,7 +5067,7 @@ local monster_dungeon_armor = { [38207]={ ["monster_base"]=10056, ["hp"]=247740000, - ["atk"]=5870000, + ["atk"]=3600000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -5079,7 +5079,7 @@ local monster_dungeon_armor = { [38307]={ ["monster_base"]=10057, ["hp"]=309200000, - ["atk"]=6050000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -5091,7 +5091,7 @@ local monster_dungeon_armor = { [38407]={ ["monster_base"]=10043, ["hp"]=324830000, - ["atk"]=6850000, + ["atk"]=4460000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -5104,7 +5104,7 @@ local monster_dungeon_armor = { ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=600970000, - ["atk"]=6650000, + ["atk"]=4760000, ["atk_times"]=4, ["hurt_skill"]={ 30040, @@ -5119,7 +5119,7 @@ local monster_dungeon_armor = { [38607]={ ["monster_base"]=10009, ["hp"]=400760000, - ["atk"]=7060000, + ["atk"]=4650000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -5131,7 +5131,7 @@ local monster_dungeon_armor = { [38707]={ ["monster_base"]=10030, ["hp"]=421850000, - ["atk"]=6750000, + ["atk"]=4770000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -5143,7 +5143,7 @@ local monster_dungeon_armor = { [38807]={ ["monster_base"]=10048, ["hp"]=493410000, - ["atk"]=6960000, + ["atk"]=4730000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -5155,7 +5155,7 @@ local monster_dungeon_armor = { [38907]={ ["monster_base"]=10041, ["hp"]=566670000, - ["atk"]=7310000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -5168,7 +5168,7 @@ local monster_dungeon_armor = { ["monster_base"]=20005, ["is_boss"]=2, ["hp"]=955050000, - ["atk"]=6800000, + ["atk"]=4980000, ["atk_times"]=4, ["hurt_skill"]={ 30013, @@ -5186,7 +5186,7 @@ local monster_dungeon_armor = { [39107]={ ["monster_base"]=10003, ["hp"]=169650000, - ["atk"]=5440000, + ["atk"]=3230000, ["atk_times"]=2, ["hurt_skill"]={ 20007, @@ -5198,7 +5198,7 @@ local monster_dungeon_armor = { [39207]={ ["monster_base"]=10056, ["hp"]=247740000, - ["atk"]=5870000, + ["atk"]=3600000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -5210,7 +5210,7 @@ local monster_dungeon_armor = { [39307]={ ["monster_base"]=10062, ["hp"]=309200000, - ["atk"]=6050000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -5222,7 +5222,7 @@ local monster_dungeon_armor = { [39407]={ ["monster_base"]=10057, ["hp"]=324830000, - ["atk"]=6850000, + ["atk"]=4460000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -5235,7 +5235,7 @@ local monster_dungeon_armor = { ["monster_base"]=30009, ["is_boss"]=1, ["hp"]=600970000, - ["atk"]=6650000, + ["atk"]=4760000, ["atk_times"]=4, ["hurt_skill"]={ 40021, @@ -5251,7 +5251,7 @@ local monster_dungeon_armor = { [39607]={ ["monster_base"]=10048, ["hp"]=400760000, - ["atk"]=7060000, + ["atk"]=4650000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -5263,7 +5263,7 @@ local monster_dungeon_armor = { [39707]={ ["monster_base"]=10004, ["hp"]=421850000, - ["atk"]=6750000, + ["atk"]=4770000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -5275,7 +5275,7 @@ local monster_dungeon_armor = { [39807]={ ["monster_base"]=10031, ["hp"]=493410000, - ["atk"]=6960000, + ["atk"]=4730000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -5287,7 +5287,7 @@ local monster_dungeon_armor = { [39907]={ ["monster_base"]=10040, ["hp"]=566670000, - ["atk"]=7310000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -5300,7 +5300,7 @@ local monster_dungeon_armor = { ["monster_base"]=20025, ["is_boss"]=2, ["hp"]=955050000, - ["atk"]=6800000, + ["atk"]=4980000, ["atk_times"]=4, ["hurt_skill"]={ 30073, @@ -5318,7 +5318,7 @@ local monster_dungeon_armor = { [40107]={ ["monster_base"]=10056, ["hp"]=169650000, - ["atk"]=5440000, + ["atk"]=3230000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -5330,7 +5330,7 @@ local monster_dungeon_armor = { [40207]={ ["monster_base"]=10021, ["hp"]=247740000, - ["atk"]=5870000, + ["atk"]=3600000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -5342,7 +5342,7 @@ local monster_dungeon_armor = { [40307]={ ["monster_base"]=10015, ["hp"]=309200000, - ["atk"]=6050000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -5354,7 +5354,7 @@ local monster_dungeon_armor = { [40407]={ ["monster_base"]=10044, ["hp"]=324830000, - ["atk"]=6850000, + ["atk"]=4460000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -5367,7 +5367,7 @@ local monster_dungeon_armor = { ["monster_base"]=30015, ["is_boss"]=1, ["hp"]=600970000, - ["atk"]=6650000, + ["atk"]=4760000, ["atk_times"]=4, ["hurt_skill"]={ 40025, @@ -5383,7 +5383,7 @@ local monster_dungeon_armor = { [40607]={ ["monster_base"]=10055, ["hp"]=400760000, - ["atk"]=7060000, + ["atk"]=4650000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -5395,7 +5395,7 @@ local monster_dungeon_armor = { [40707]={ ["monster_base"]=10003, ["hp"]=421850000, - ["atk"]=6750000, + ["atk"]=4770000, ["atk_times"]=2, ["hurt_skill"]={ 20007, @@ -5407,7 +5407,7 @@ local monster_dungeon_armor = { [40807]={ ["monster_base"]=10031, ["hp"]=493410000, - ["atk"]=6960000, + ["atk"]=4730000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -5419,7 +5419,7 @@ local monster_dungeon_armor = { [40907]={ ["monster_base"]=10004, ["hp"]=566670000, - ["atk"]=7310000, + ["atk"]=4980000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -5432,7 +5432,7 @@ local monster_dungeon_armor = { ["monster_base"]=20037, ["is_boss"]=2, ["hp"]=955050000, - ["atk"]=6800000, + ["atk"]=4980000, ["atk_times"]=4, ["hurt_skill"]={ 30106, @@ -5452,7 +5452,7 @@ local monster_dungeon_armor = { [41107]={ ["monster_base"]=10019, ["hp"]=169650000, - ["atk"]=5440000, + ["atk"]=3230000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -5464,7 +5464,7 @@ local monster_dungeon_armor = { [41207]={ ["monster_base"]=10017, ["hp"]=247740000, - ["atk"]=5870000, + ["atk"]=3600000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -5476,7 +5476,7 @@ local monster_dungeon_armor = { [41307]={ ["monster_base"]=10055, ["hp"]=309200000, - ["atk"]=6050000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -5488,7 +5488,7 @@ local monster_dungeon_armor = { [41407]={ ["monster_base"]=10013, ["hp"]=324830000, - ["atk"]=6850000, + ["atk"]=4460000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -5501,7 +5501,7 @@ local monster_dungeon_armor = { ["monster_base"]=20030, ["is_boss"]=1, ["hp"]=600970000, - ["atk"]=6650000, + ["atk"]=4760000, ["atk_times"]=4, ["hurt_skill"]={ 30088, @@ -5520,7 +5520,7 @@ local monster_dungeon_armor = { [41607]={ ["monster_base"]=10042, ["hp"]=400760000, - ["atk"]=7060000, + ["atk"]=4650000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -5532,7 +5532,7 @@ local monster_dungeon_armor = { [41707]={ ["monster_base"]=10025, ["hp"]=421850000, - ["atk"]=6750000, + ["atk"]=4770000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -5544,7 +5544,7 @@ local monster_dungeon_armor = { [41807]={ ["monster_base"]=10002, ["hp"]=493410000, - ["atk"]=6960000, + ["atk"]=4730000, ["atk_times"]=2, ["hurt_skill"]={ 20004, @@ -5556,7 +5556,7 @@ local monster_dungeon_armor = { [41907]={ ["monster_base"]=10034, ["hp"]=566670000, - ["atk"]=7310000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -5569,7 +5569,7 @@ local monster_dungeon_armor = { ["monster_base"]=20032, ["is_boss"]=2, ["hp"]=955050000, - ["atk"]=6800000, + ["atk"]=4980000, ["atk_times"]=4, ["hurt_skill"]={ 30094, @@ -5591,7 +5591,7 @@ local monster_dungeon_armor = { [42107]={ ["monster_base"]=10022, ["hp"]=180880000, - ["atk"]=5900000, + ["atk"]=3430000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -5603,7 +5603,7 @@ local monster_dungeon_armor = { [42207]={ ["monster_base"]=10020, ["hp"]=263550000, - ["atk"]=6350000, + ["atk"]=3820000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -5615,7 +5615,7 @@ local monster_dungeon_armor = { [42307]={ ["monster_base"]=10024, ["hp"]=329070000, - ["atk"]=6550000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -5627,7 +5627,7 @@ local monster_dungeon_armor = { [42407]={ ["monster_base"]=10045, ["hp"]=345780000, - ["atk"]=7400000, + ["atk"]=4720000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -5640,7 +5640,7 @@ local monster_dungeon_armor = { ["monster_base"]=20027, ["is_boss"]=1, ["hp"]=639240000, - ["atk"]=7150000, + ["atk"]=5050000, ["atk_times"]=4, ["hurt_skill"]={ 30079, @@ -5655,7 +5655,7 @@ local monster_dungeon_armor = { [42607]={ ["monster_base"]=10002, ["hp"]=426740000, - ["atk"]=7590000, + ["atk"]=4940000, ["atk_times"]=2, ["hurt_skill"]={ 20004, @@ -5667,7 +5667,7 @@ local monster_dungeon_armor = { [42707]={ ["monster_base"]=10008, ["hp"]=448850000, - ["atk"]=7300000, + ["atk"]=5060000, ["atk_times"]=2, ["hurt_skill"]={ 20022, @@ -5679,7 +5679,7 @@ local monster_dungeon_armor = { [42807]={ ["monster_base"]=10019, ["hp"]=525000000, - ["atk"]=7490000, + ["atk"]=5020000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -5691,7 +5691,7 @@ local monster_dungeon_armor = { [42907]={ ["monster_base"]=10048, ["hp"]=602910000, - ["atk"]=7870000, + ["atk"]=5280000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -5704,7 +5704,7 @@ local monster_dungeon_armor = { ["monster_base"]=20034, ["is_boss"]=2, ["hp"]=1015810000, - ["atk"]=7320000, + ["atk"]=5280000, ["atk_times"]=4, ["hurt_skill"]={ 30097, @@ -5724,7 +5724,7 @@ local monster_dungeon_armor = { [43107]={ ["monster_base"]=10003, ["hp"]=180880000, - ["atk"]=5900000, + ["atk"]=3430000, ["atk_times"]=2, ["hurt_skill"]={ 20007, @@ -5736,7 +5736,7 @@ local monster_dungeon_armor = { [43207]={ ["monster_base"]=10016, ["hp"]=263550000, - ["atk"]=6350000, + ["atk"]=3820000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -5748,7 +5748,7 @@ local monster_dungeon_armor = { [43307]={ ["monster_base"]=10057, ["hp"]=329070000, - ["atk"]=6550000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -5760,7 +5760,7 @@ local monster_dungeon_armor = { [43407]={ ["monster_base"]=10023, ["hp"]=345780000, - ["atk"]=7400000, + ["atk"]=4720000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -5773,7 +5773,7 @@ local monster_dungeon_armor = { ["monster_base"]=30012, ["is_boss"]=1, ["hp"]=639240000, - ["atk"]=7150000, + ["atk"]=5050000, ["atk_times"]=4, ["hurt_skill"]={ 40005, @@ -5790,7 +5790,7 @@ local monster_dungeon_armor = { [43607]={ ["monster_base"]=10040, ["hp"]=426740000, - ["atk"]=7590000, + ["atk"]=4940000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -5802,7 +5802,7 @@ local monster_dungeon_armor = { [43707]={ ["monster_base"]=10041, ["hp"]=448850000, - ["atk"]=7300000, + ["atk"]=5060000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -5814,7 +5814,7 @@ local monster_dungeon_armor = { [43807]={ ["monster_base"]=10032, ["hp"]=525000000, - ["atk"]=7490000, + ["atk"]=5020000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -5826,7 +5826,7 @@ local monster_dungeon_armor = { [43907]={ ["monster_base"]=10020, ["hp"]=602910000, - ["atk"]=7870000, + ["atk"]=5280000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -5839,7 +5839,7 @@ local monster_dungeon_armor = { ["monster_base"]=20009, ["is_boss"]=2, ["hp"]=1015810000, - ["atk"]=7320000, + ["atk"]=5280000, ["atk_times"]=4, ["hurt_skill"]={ 30025, @@ -5858,7 +5858,7 @@ local monster_dungeon_armor = { [44107]={ ["monster_base"]=10027, ["hp"]=180880000, - ["atk"]=5900000, + ["atk"]=3430000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -5870,7 +5870,7 @@ local monster_dungeon_armor = { [44207]={ ["monster_base"]=10014, ["hp"]=263550000, - ["atk"]=6350000, + ["atk"]=3820000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -5882,7 +5882,7 @@ local monster_dungeon_armor = { [44307]={ ["monster_base"]=10042, ["hp"]=329070000, - ["atk"]=6550000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -5894,7 +5894,7 @@ local monster_dungeon_armor = { [44407]={ ["monster_base"]=10054, ["hp"]=345780000, - ["atk"]=7400000, + ["atk"]=4720000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -5907,7 +5907,7 @@ local monster_dungeon_armor = { ["monster_base"]=30010, ["is_boss"]=1, ["hp"]=639240000, - ["atk"]=7150000, + ["atk"]=5050000, ["atk_times"]=4, ["hurt_skill"]={ 40013, @@ -5923,7 +5923,7 @@ local monster_dungeon_armor = { [44607]={ ["monster_base"]=10024, ["hp"]=426740000, - ["atk"]=7590000, + ["atk"]=4940000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -5935,7 +5935,7 @@ local monster_dungeon_armor = { [44707]={ ["monster_base"]=10022, ["hp"]=448850000, - ["atk"]=7300000, + ["atk"]=5060000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -5947,7 +5947,7 @@ local monster_dungeon_armor = { [44807]={ ["monster_base"]=10034, ["hp"]=525000000, - ["atk"]=7490000, + ["atk"]=5020000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -5959,7 +5959,7 @@ local monster_dungeon_armor = { [44907]={ ["monster_base"]=10017, ["hp"]=602910000, - ["atk"]=7870000, + ["atk"]=5280000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -5972,7 +5972,7 @@ local monster_dungeon_armor = { ["monster_base"]=20036, ["is_boss"]=2, ["hp"]=1015810000, - ["atk"]=7320000, + ["atk"]=5280000, ["atk_times"]=4, ["hurt_skill"]={ 30103, @@ -5991,7 +5991,7 @@ local monster_dungeon_armor = { [45107]={ ["monster_base"]=10009, ["hp"]=180880000, - ["atk"]=5900000, + ["atk"]=3430000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -6003,7 +6003,7 @@ local monster_dungeon_armor = { [45207]={ ["monster_base"]=10036, ["hp"]=263550000, - ["atk"]=6350000, + ["atk"]=3820000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -6015,7 +6015,7 @@ local monster_dungeon_armor = { [45307]={ ["monster_base"]=10029, ["hp"]=329070000, - ["atk"]=6550000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -6027,7 +6027,7 @@ local monster_dungeon_armor = { [45407]={ ["monster_base"]=10031, ["hp"]=345780000, - ["atk"]=7400000, + ["atk"]=4720000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -6040,7 +6040,7 @@ local monster_dungeon_armor = { ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=639240000, - ["atk"]=7150000, + ["atk"]=5050000, ["atk_times"]=4, ["hurt_skill"]={ 30040, @@ -6055,7 +6055,7 @@ local monster_dungeon_armor = { [45607]={ ["monster_base"]=10022, ["hp"]=426740000, - ["atk"]=7590000, + ["atk"]=4940000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -6067,7 +6067,7 @@ local monster_dungeon_armor = { [45707]={ ["monster_base"]=10017, ["hp"]=448850000, - ["atk"]=7300000, + ["atk"]=5060000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -6079,7 +6079,7 @@ local monster_dungeon_armor = { [45807]={ ["monster_base"]=10041, ["hp"]=525000000, - ["atk"]=7490000, + ["atk"]=5020000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -6091,7 +6091,7 @@ local monster_dungeon_armor = { [45907]={ ["monster_base"]=10004, ["hp"]=602910000, - ["atk"]=7870000, + ["atk"]=5280000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -6104,7 +6104,7 @@ local monster_dungeon_armor = { ["monster_base"]=20026, ["is_boss"]=2, ["hp"]=1015810000, - ["atk"]=7320000, + ["atk"]=5280000, ["atk_times"]=4, ["hurt_skill"]={ 30076, @@ -6122,7 +6122,7 @@ local monster_dungeon_armor = { [46107]={ ["monster_base"]=10040, ["hp"]=180880000, - ["atk"]=5900000, + ["atk"]=3430000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -6134,7 +6134,7 @@ local monster_dungeon_armor = { [46207]={ ["monster_base"]=10013, ["hp"]=263550000, - ["atk"]=6350000, + ["atk"]=3820000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -6146,7 +6146,7 @@ local monster_dungeon_armor = { [46307]={ ["monster_base"]=10014, ["hp"]=329070000, - ["atk"]=6550000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -6158,7 +6158,7 @@ local monster_dungeon_armor = { [46407]={ ["monster_base"]=10021, ["hp"]=345780000, - ["atk"]=7400000, + ["atk"]=4720000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -6171,7 +6171,7 @@ local monster_dungeon_armor = { ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=639240000, - ["atk"]=7150000, + ["atk"]=5050000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -6186,7 +6186,7 @@ local monster_dungeon_armor = { [46607]={ ["monster_base"]=10017, ["hp"]=426740000, - ["atk"]=7590000, + ["atk"]=4940000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -6198,7 +6198,7 @@ local monster_dungeon_armor = { [46707]={ ["monster_base"]=10012, ["hp"]=448850000, - ["atk"]=7300000, + ["atk"]=5060000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -6210,7 +6210,7 @@ local monster_dungeon_armor = { [46807]={ ["monster_base"]=10065, ["hp"]=525000000, - ["atk"]=7490000, + ["atk"]=5020000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -6222,7 +6222,7 @@ local monster_dungeon_armor = { [46907]={ ["monster_base"]=10044, ["hp"]=602910000, - ["atk"]=7870000, + ["atk"]=5280000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -6235,7 +6235,7 @@ local monster_dungeon_armor = { ["monster_base"]=20021, ["is_boss"]=2, ["hp"]=1015810000, - ["atk"]=7320000, + ["atk"]=5280000, ["atk_times"]=4, ["hurt_skill"]={ 30061, @@ -6254,7 +6254,7 @@ local monster_dungeon_armor = { [47107]={ ["monster_base"]=10026, ["hp"]=180880000, - ["atk"]=5900000, + ["atk"]=3430000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -6266,7 +6266,7 @@ local monster_dungeon_armor = { [47207]={ ["monster_base"]=10021, ["hp"]=263550000, - ["atk"]=6350000, + ["atk"]=3820000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -6278,7 +6278,7 @@ local monster_dungeon_armor = { [47307]={ ["monster_base"]=10036, ["hp"]=329070000, - ["atk"]=6550000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -6290,7 +6290,7 @@ local monster_dungeon_armor = { [47407]={ ["monster_base"]=10009, ["hp"]=345780000, - ["atk"]=7400000, + ["atk"]=4720000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -6303,7 +6303,7 @@ local monster_dungeon_armor = { ["monster_base"]=20017, ["is_boss"]=1, ["hp"]=639240000, - ["atk"]=7150000, + ["atk"]=5050000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -6318,7 +6318,7 @@ local monster_dungeon_armor = { [47607]={ ["monster_base"]=10035, ["hp"]=426740000, - ["atk"]=7590000, + ["atk"]=4940000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -6330,7 +6330,7 @@ local monster_dungeon_armor = { [47707]={ ["monster_base"]=10027, ["hp"]=448850000, - ["atk"]=7300000, + ["atk"]=5060000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -6342,7 +6342,7 @@ local monster_dungeon_armor = { [47807]={ ["monster_base"]=10005, ["hp"]=525000000, - ["atk"]=7490000, + ["atk"]=5020000, ["atk_times"]=2, ["hurt_skill"]={ 20013, @@ -6354,7 +6354,7 @@ local monster_dungeon_armor = { [47907]={ ["monster_base"]=10037, ["hp"]=602910000, - ["atk"]=7870000, + ["atk"]=5280000, ["atk_times"]=3, ["hurt_skill"]={ 20106, @@ -6367,7 +6367,7 @@ local monster_dungeon_armor = { ["monster_base"]=20034, ["is_boss"]=2, ["hp"]=1015810000, - ["atk"]=7320000, + ["atk"]=5280000, ["atk_times"]=4, ["hurt_skill"]={ 30097, @@ -6387,7 +6387,7 @@ local monster_dungeon_armor = { [48107]={ ["monster_base"]=10044, ["hp"]=191410000, - ["atk"]=6420000, + ["atk"]=3630000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -6399,7 +6399,7 @@ local monster_dungeon_armor = { [48207]={ ["monster_base"]=10027, ["hp"]=278310000, - ["atk"]=6890000, + ["atk"]=4040000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -6411,7 +6411,7 @@ local monster_dungeon_armor = { [48307]={ ["monster_base"]=10064, ["hp"]=347620000, - ["atk"]=7080000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -6423,7 +6423,7 @@ local monster_dungeon_armor = { [48407]={ ["monster_base"]=10042, ["hp"]=365170000, - ["atk"]=8000000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -6436,7 +6436,7 @@ local monster_dungeon_armor = { ["monster_base"]=30012, ["is_boss"]=1, ["hp"]=674740000, - ["atk"]=7720000, + ["atk"]=5330000, ["atk_times"]=4, ["hurt_skill"]={ 40005, @@ -6453,7 +6453,7 @@ local monster_dungeon_armor = { [48607]={ ["monster_base"]=10001, ["hp"]=450590000, - ["atk"]=8220000, + ["atk"]=5230000, ["atk_times"]=2, ["hurt_skill"]={ 20001, @@ -6465,7 +6465,7 @@ local monster_dungeon_armor = { [48707]={ ["monster_base"]=10050, ["hp"]=474020000, - ["atk"]=7900000, + ["atk"]=5340000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -6477,7 +6477,7 @@ local monster_dungeon_armor = { [48807]={ ["monster_base"]=10003, ["hp"]=554250000, - ["atk"]=8120000, + ["atk"]=5310000, ["atk_times"]=2, ["hurt_skill"]={ 20007, @@ -6489,7 +6489,7 @@ local monster_dungeon_armor = { [48907]={ ["monster_base"]=10057, ["hp"]=636480000, - ["atk"]=8510000, + ["atk"]=5590000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -6502,7 +6502,7 @@ local monster_dungeon_armor = { ["monster_base"]=20035, ["is_boss"]=2, ["hp"]=1072430000, - ["atk"]=7900000, + ["atk"]=5590000, ["atk_times"]=4, ["hurt_skill"]={ 30100, @@ -6522,7 +6522,7 @@ local monster_dungeon_armor = { [49107]={ ["monster_base"]=10056, ["hp"]=191410000, - ["atk"]=6420000, + ["atk"]=3630000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -6534,7 +6534,7 @@ local monster_dungeon_armor = { [49207]={ ["monster_base"]=10054, ["hp"]=278310000, - ["atk"]=6890000, + ["atk"]=4040000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -6546,7 +6546,7 @@ local monster_dungeon_armor = { [49307]={ ["monster_base"]=10024, ["hp"]=347620000, - ["atk"]=7080000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -6558,7 +6558,7 @@ local monster_dungeon_armor = { [49407]={ ["monster_base"]=10013, ["hp"]=365170000, - ["atk"]=8000000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -6571,7 +6571,7 @@ local monster_dungeon_armor = { ["monster_base"]=30019, ["is_boss"]=1, ["hp"]=674740000, - ["atk"]=7720000, + ["atk"]=5330000, ["atk_times"]=4, ["hurt_skill"]={ 40029, @@ -6591,7 +6591,7 @@ local monster_dungeon_armor = { [49607]={ ["monster_base"]=10017, ["hp"]=450590000, - ["atk"]=8220000, + ["atk"]=5230000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -6603,7 +6603,7 @@ local monster_dungeon_armor = { [49707]={ ["monster_base"]=10006, ["hp"]=474020000, - ["atk"]=7900000, + ["atk"]=5340000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -6615,7 +6615,7 @@ local monster_dungeon_armor = { [49807]={ ["monster_base"]=10028, ["hp"]=554250000, - ["atk"]=8120000, + ["atk"]=5310000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -6627,7 +6627,7 @@ local monster_dungeon_armor = { [49907]={ ["monster_base"]=10057, ["hp"]=636480000, - ["atk"]=8510000, + ["atk"]=5590000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -6640,7 +6640,7 @@ local monster_dungeon_armor = { ["monster_base"]=20023, ["is_boss"]=2, ["hp"]=1072430000, - ["atk"]=7900000, + ["atk"]=5590000, ["atk_times"]=4, ["hurt_skill"]={ 30067, @@ -6658,7 +6658,7 @@ local monster_dungeon_armor = { [50107]={ ["monster_base"]=10054, ["hp"]=191410000, - ["atk"]=6420000, + ["atk"]=3630000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -6670,7 +6670,7 @@ local monster_dungeon_armor = { [50207]={ ["monster_base"]=10025, ["hp"]=278310000, - ["atk"]=6890000, + ["atk"]=4040000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -6682,7 +6682,7 @@ local monster_dungeon_armor = { [50307]={ ["monster_base"]=10010, ["hp"]=347620000, - ["atk"]=7080000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -6694,7 +6694,7 @@ local monster_dungeon_armor = { [50407]={ ["monster_base"]=10064, ["hp"]=365170000, - ["atk"]=8000000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -6707,7 +6707,7 @@ local monster_dungeon_armor = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=674740000, - ["atk"]=7720000, + ["atk"]=5330000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -6725,7 +6725,7 @@ local monster_dungeon_armor = { [50607]={ ["monster_base"]=10007, ["hp"]=450590000, - ["atk"]=8220000, + ["atk"]=5230000, ["atk_times"]=2, ["hurt_skill"]={ 20019, @@ -6737,7 +6737,7 @@ local monster_dungeon_armor = { [50707]={ ["monster_base"]=10040, ["hp"]=474020000, - ["atk"]=7900000, + ["atk"]=5340000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -6749,7 +6749,7 @@ local monster_dungeon_armor = { [50807]={ ["monster_base"]=10018, ["hp"]=554250000, - ["atk"]=8120000, + ["atk"]=5310000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -6761,7 +6761,7 @@ local monster_dungeon_armor = { [50907]={ ["monster_base"]=10043, ["hp"]=636480000, - ["atk"]=8510000, + ["atk"]=5590000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -6774,7 +6774,7 @@ local monster_dungeon_armor = { ["monster_base"]=20020, ["is_boss"]=2, ["hp"]=1072430000, - ["atk"]=7900000, + ["atk"]=5590000, ["atk_times"]=4, ["hurt_skill"]={ 30058, @@ -6793,7 +6793,7 @@ local monster_dungeon_armor = { [51107]={ ["monster_base"]=10004, ["hp"]=191410000, - ["atk"]=6420000, + ["atk"]=3630000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -6805,7 +6805,7 @@ local monster_dungeon_armor = { [51207]={ ["monster_base"]=10033, ["hp"]=278310000, - ["atk"]=6890000, + ["atk"]=4040000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -6817,7 +6817,7 @@ local monster_dungeon_armor = { [51307]={ ["monster_base"]=10064, ["hp"]=347620000, - ["atk"]=7080000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -6829,7 +6829,7 @@ local monster_dungeon_armor = { [51407]={ ["monster_base"]=10062, ["hp"]=365170000, - ["atk"]=8000000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -6842,7 +6842,7 @@ local monster_dungeon_armor = { ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=674740000, - ["atk"]=7720000, + ["atk"]=5330000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -6857,7 +6857,7 @@ local monster_dungeon_armor = { [51607]={ ["monster_base"]=10014, ["hp"]=450590000, - ["atk"]=8220000, + ["atk"]=5230000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -6869,7 +6869,7 @@ local monster_dungeon_armor = { [51707]={ ["monster_base"]=10064, ["hp"]=474020000, - ["atk"]=7900000, + ["atk"]=5340000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -6881,7 +6881,7 @@ local monster_dungeon_armor = { [51807]={ ["monster_base"]=10036, ["hp"]=554250000, - ["atk"]=8120000, + ["atk"]=5310000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -6893,7 +6893,7 @@ local monster_dungeon_armor = { [51907]={ ["monster_base"]=10013, ["hp"]=636480000, - ["atk"]=8510000, + ["atk"]=5590000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -6906,7 +6906,7 @@ local monster_dungeon_armor = { ["monster_base"]=20024, ["is_boss"]=2, ["hp"]=1072430000, - ["atk"]=7900000, + ["atk"]=5590000, ["atk_times"]=4, ["hurt_skill"]={ 30070, @@ -6925,7 +6925,7 @@ local monster_dungeon_armor = { [52107]={ ["monster_base"]=10006, ["hp"]=191410000, - ["atk"]=6420000, + ["atk"]=3630000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -6937,7 +6937,7 @@ local monster_dungeon_armor = { [52207]={ ["monster_base"]=10026, ["hp"]=278310000, - ["atk"]=6890000, + ["atk"]=4040000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -6949,7 +6949,7 @@ local monster_dungeon_armor = { [52307]={ ["monster_base"]=10029, ["hp"]=347620000, - ["atk"]=7080000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -6961,7 +6961,7 @@ local monster_dungeon_armor = { [52407]={ ["monster_base"]=10009, ["hp"]=365170000, - ["atk"]=8000000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -6974,7 +6974,7 @@ local monster_dungeon_armor = { ["monster_base"]=20027, ["is_boss"]=1, ["hp"]=674740000, - ["atk"]=7720000, + ["atk"]=5330000, ["atk_times"]=4, ["hurt_skill"]={ 30079, @@ -6989,7 +6989,7 @@ local monster_dungeon_armor = { [52607]={ ["monster_base"]=10035, ["hp"]=450590000, - ["atk"]=8220000, + ["atk"]=5230000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -7001,7 +7001,7 @@ local monster_dungeon_armor = { [52707]={ ["monster_base"]=10043, ["hp"]=474020000, - ["atk"]=7900000, + ["atk"]=5340000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -7013,7 +7013,7 @@ local monster_dungeon_armor = { [52807]={ ["monster_base"]=10030, ["hp"]=554250000, - ["atk"]=8120000, + ["atk"]=5310000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -7025,7 +7025,7 @@ local monster_dungeon_armor = { [52907]={ ["monster_base"]=10009, ["hp"]=636480000, - ["atk"]=8510000, + ["atk"]=5590000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -7038,7 +7038,7 @@ local monster_dungeon_armor = { ["monster_base"]=20021, ["is_boss"]=2, ["hp"]=1072430000, - ["atk"]=7900000, + ["atk"]=5590000, ["atk_times"]=4, ["hurt_skill"]={ 30061, @@ -7057,7 +7057,7 @@ local monster_dungeon_armor = { [53107]={ ["monster_base"]=10057, ["hp"]=191410000, - ["atk"]=6420000, + ["atk"]=3630000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -7069,7 +7069,7 @@ local monster_dungeon_armor = { [53207]={ ["monster_base"]=10006, ["hp"]=278310000, - ["atk"]=6890000, + ["atk"]=4040000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -7081,7 +7081,7 @@ local monster_dungeon_armor = { [53307]={ ["monster_base"]=10051, ["hp"]=347620000, - ["atk"]=7080000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -7093,7 +7093,7 @@ local monster_dungeon_armor = { [53407]={ ["monster_base"]=10019, ["hp"]=365170000, - ["atk"]=8000000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -7106,7 +7106,7 @@ local monster_dungeon_armor = { ["monster_base"]=30009, ["is_boss"]=1, ["hp"]=674740000, - ["atk"]=7720000, + ["atk"]=5330000, ["atk_times"]=4, ["hurt_skill"]={ 40021, @@ -7122,7 +7122,7 @@ local monster_dungeon_armor = { [53607]={ ["monster_base"]=10024, ["hp"]=450590000, - ["atk"]=8220000, + ["atk"]=5230000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -7134,7 +7134,7 @@ local monster_dungeon_armor = { [53707]={ ["monster_base"]=10001, ["hp"]=474020000, - ["atk"]=7900000, + ["atk"]=5340000, ["atk_times"]=2, ["hurt_skill"]={ 20001, @@ -7146,7 +7146,7 @@ local monster_dungeon_armor = { [53807]={ ["monster_base"]=10015, ["hp"]=554250000, - ["atk"]=8120000, + ["atk"]=5310000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -7158,7 +7158,7 @@ local monster_dungeon_armor = { [53907]={ ["monster_base"]=10035, ["hp"]=636480000, - ["atk"]=8510000, + ["atk"]=5590000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -7171,7 +7171,7 @@ local monster_dungeon_armor = { ["monster_base"]=20038, ["is_boss"]=2, ["hp"]=1072430000, - ["atk"]=7900000, + ["atk"]=5590000, ["atk_times"]=4, ["hurt_skill"]={ 30109, @@ -7193,7 +7193,7 @@ local monster_dungeon_armor = { [54107]={ ["monster_base"]=10045, ["hp"]=205490000, - ["atk"]=6970000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -7205,7 +7205,7 @@ local monster_dungeon_armor = { [54207]={ ["monster_base"]=10012, ["hp"]=298160000, - ["atk"]=7480000, + ["atk"]=4390000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -7217,7 +7217,7 @@ local monster_dungeon_armor = { [54307]={ ["monster_base"]=10035, ["hp"]=372560000, - ["atk"]=7700000, + ["atk"]=4530000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -7229,7 +7229,7 @@ local monster_dungeon_armor = { [54407]={ ["monster_base"]=10004, ["hp"]=391500000, - ["atk"]=8680000, + ["atk"]=5410000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -7242,7 +7242,7 @@ local monster_dungeon_armor = { ["monster_base"]=20025, ["is_boss"]=1, ["hp"]=722740000, - ["atk"]=8330000, + ["atk"]=5790000, ["atk_times"]=4, ["hurt_skill"]={ 30073, @@ -7260,7 +7260,7 @@ local monster_dungeon_armor = { [54607]={ ["monster_base"]=10012, ["hp"]=482700000, - ["atk"]=8890000, + ["atk"]=5690000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -7272,7 +7272,7 @@ local monster_dungeon_armor = { [54707]={ ["monster_base"]=10009, ["hp"]=507910000, - ["atk"]=8550000, + ["atk"]=5800000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -7284,7 +7284,7 @@ local monster_dungeon_armor = { [54807]={ ["monster_base"]=10021, ["hp"]=593840000, - ["atk"]=8800000, + ["atk"]=5780000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -7296,7 +7296,7 @@ local monster_dungeon_armor = { [54907]={ ["monster_base"]=10029, ["hp"]=681920000, - ["atk"]=9230000, + ["atk"]=6080000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -7309,7 +7309,7 @@ local monster_dungeon_armor = { ["monster_base"]=20036, ["is_boss"]=2, ["hp"]=1148710000, - ["atk"]=8530000, + ["atk"]=6080000, ["atk_times"]=4, ["hurt_skill"]={ 30103, @@ -7328,7 +7328,7 @@ local monster_dungeon_armor = { [55107]={ ["monster_base"]=10065, ["hp"]=205490000, - ["atk"]=6970000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -7340,7 +7340,7 @@ local monster_dungeon_armor = { [55207]={ ["monster_base"]=10008, ["hp"]=298160000, - ["atk"]=7480000, + ["atk"]=4390000, ["atk_times"]=2, ["hurt_skill"]={ 20022, @@ -7352,7 +7352,7 @@ local monster_dungeon_armor = { [55307]={ ["monster_base"]=10024, ["hp"]=372560000, - ["atk"]=7700000, + ["atk"]=4530000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -7364,7 +7364,7 @@ local monster_dungeon_armor = { [55407]={ ["monster_base"]=10038, ["hp"]=391500000, - ["atk"]=8680000, + ["atk"]=5410000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -7377,7 +7377,7 @@ local monster_dungeon_armor = { ["monster_base"]=30020, ["is_boss"]=1, ["hp"]=722740000, - ["atk"]=8330000, + ["atk"]=5790000, ["atk_times"]=4, ["hurt_skill"]={ 40033, @@ -7393,7 +7393,7 @@ local monster_dungeon_armor = { [55607]={ ["monster_base"]=10048, ["hp"]=482700000, - ["atk"]=8890000, + ["atk"]=5690000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -7405,7 +7405,7 @@ local monster_dungeon_armor = { [55707]={ ["monster_base"]=10023, ["hp"]=507910000, - ["atk"]=8550000, + ["atk"]=5800000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -7417,7 +7417,7 @@ local monster_dungeon_armor = { [55807]={ ["monster_base"]=10017, ["hp"]=593840000, - ["atk"]=8800000, + ["atk"]=5780000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -7429,7 +7429,7 @@ local monster_dungeon_armor = { [55907]={ ["monster_base"]=10041, ["hp"]=681920000, - ["atk"]=9230000, + ["atk"]=6080000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -7442,7 +7442,7 @@ local monster_dungeon_armor = { ["monster_base"]=20018, ["is_boss"]=2, ["hp"]=1148710000, - ["atk"]=8530000, + ["atk"]=6080000, ["atk_times"]=4, ["hurt_skill"]={ 30052, @@ -7461,7 +7461,7 @@ local monster_dungeon_armor = { [56107]={ ["monster_base"]=10024, ["hp"]=205490000, - ["atk"]=6970000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -7473,7 +7473,7 @@ local monster_dungeon_armor = { [56207]={ ["monster_base"]=10006, ["hp"]=298160000, - ["atk"]=7480000, + ["atk"]=4390000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -7485,7 +7485,7 @@ local monster_dungeon_armor = { [56307]={ ["monster_base"]=10040, ["hp"]=372560000, - ["atk"]=7700000, + ["atk"]=4530000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -7497,7 +7497,7 @@ local monster_dungeon_armor = { [56407]={ ["monster_base"]=10061, ["hp"]=391500000, - ["atk"]=8680000, + ["atk"]=5410000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -7510,7 +7510,7 @@ local monster_dungeon_armor = { ["monster_base"]=20005, ["is_boss"]=1, ["hp"]=722740000, - ["atk"]=8330000, + ["atk"]=5790000, ["atk_times"]=4, ["hurt_skill"]={ 30013, @@ -7528,7 +7528,7 @@ local monster_dungeon_armor = { [56607]={ ["monster_base"]=10009, ["hp"]=482700000, - ["atk"]=8890000, + ["atk"]=5690000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -7540,7 +7540,7 @@ local monster_dungeon_armor = { [56707]={ ["monster_base"]=10015, ["hp"]=507910000, - ["atk"]=8550000, + ["atk"]=5800000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -7552,7 +7552,7 @@ local monster_dungeon_armor = { [56807]={ ["monster_base"]=10018, ["hp"]=593840000, - ["atk"]=8800000, + ["atk"]=5780000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -7564,7 +7564,7 @@ local monster_dungeon_armor = { [56907]={ ["monster_base"]=10040, ["hp"]=681920000, - ["atk"]=9230000, + ["atk"]=6080000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -7577,7 +7577,7 @@ local monster_dungeon_armor = { ["monster_base"]=20025, ["is_boss"]=2, ["hp"]=1148710000, - ["atk"]=8530000, + ["atk"]=6080000, ["atk_times"]=4, ["hurt_skill"]={ 30073, @@ -7595,7 +7595,7 @@ local monster_dungeon_armor = { [57107]={ ["monster_base"]=10013, ["hp"]=205490000, - ["atk"]=6970000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -7607,7 +7607,7 @@ local monster_dungeon_armor = { [57207]={ ["monster_base"]=10060, ["hp"]=298160000, - ["atk"]=7480000, + ["atk"]=4390000, ["atk_times"]=3, ["hurt_skill"]={ 20175, @@ -7619,7 +7619,7 @@ local monster_dungeon_armor = { [57307]={ ["monster_base"]=10019, ["hp"]=372560000, - ["atk"]=7700000, + ["atk"]=4530000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -7631,7 +7631,7 @@ local monster_dungeon_armor = { [57407]={ ["monster_base"]=10004, ["hp"]=391500000, - ["atk"]=8680000, + ["atk"]=5410000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -7644,7 +7644,7 @@ local monster_dungeon_armor = { ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=722740000, - ["atk"]=8330000, + ["atk"]=5790000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -7659,7 +7659,7 @@ local monster_dungeon_armor = { [57607]={ ["monster_base"]=10061, ["hp"]=482700000, - ["atk"]=8890000, + ["atk"]=5690000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -7671,7 +7671,7 @@ local monster_dungeon_armor = { [57707]={ ["monster_base"]=10046, ["hp"]=507910000, - ["atk"]=8550000, + ["atk"]=5800000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -7683,7 +7683,7 @@ local monster_dungeon_armor = { [57807]={ ["monster_base"]=10039, ["hp"]=593840000, - ["atk"]=8800000, + ["atk"]=5780000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -7695,7 +7695,7 @@ local monster_dungeon_armor = { [57907]={ ["monster_base"]=10027, ["hp"]=681920000, - ["atk"]=9230000, + ["atk"]=6080000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -7708,7 +7708,7 @@ local monster_dungeon_armor = { ["monster_base"]=20019, ["is_boss"]=2, ["hp"]=1148710000, - ["atk"]=8530000, + ["atk"]=6080000, ["atk_times"]=4, ["hurt_skill"]={ 30055, @@ -7727,7 +7727,7 @@ local monster_dungeon_armor = { [58107]={ ["monster_base"]=10037, ["hp"]=205490000, - ["atk"]=6970000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20106, @@ -7739,7 +7739,7 @@ local monster_dungeon_armor = { [58207]={ ["monster_base"]=10034, ["hp"]=298160000, - ["atk"]=7480000, + ["atk"]=4390000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -7751,7 +7751,7 @@ local monster_dungeon_armor = { [58307]={ ["monster_base"]=10022, ["hp"]=372560000, - ["atk"]=7700000, + ["atk"]=4530000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -7763,7 +7763,7 @@ local monster_dungeon_armor = { [58407]={ ["monster_base"]=10029, ["hp"]=391500000, - ["atk"]=8680000, + ["atk"]=5410000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -7776,7 +7776,7 @@ local monster_dungeon_armor = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=722740000, - ["atk"]=8330000, + ["atk"]=5790000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -7794,7 +7794,7 @@ local monster_dungeon_armor = { [58607]={ ["monster_base"]=10017, ["hp"]=482700000, - ["atk"]=8890000, + ["atk"]=5690000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -7806,7 +7806,7 @@ local monster_dungeon_armor = { [58707]={ ["monster_base"]=10065, ["hp"]=507910000, - ["atk"]=8550000, + ["atk"]=5800000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -7818,7 +7818,7 @@ local monster_dungeon_armor = { [58807]={ ["monster_base"]=10016, ["hp"]=593840000, - ["atk"]=8800000, + ["atk"]=5780000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -7830,7 +7830,7 @@ local monster_dungeon_armor = { [58907]={ ["monster_base"]=10064, ["hp"]=681920000, - ["atk"]=9230000, + ["atk"]=6080000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -7843,7 +7843,7 @@ local monster_dungeon_armor = { ["monster_base"]=20024, ["is_boss"]=2, ["hp"]=1148710000, - ["atk"]=8530000, + ["atk"]=6080000, ["atk_times"]=4, ["hurt_skill"]={ 30070, @@ -7862,7 +7862,7 @@ local monster_dungeon_armor = { [59107]={ ["monster_base"]=10022, ["hp"]=205490000, - ["atk"]=6970000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -7874,7 +7874,7 @@ local monster_dungeon_armor = { [59207]={ ["monster_base"]=10028, ["hp"]=298160000, - ["atk"]=7480000, + ["atk"]=4390000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -7886,7 +7886,7 @@ local monster_dungeon_armor = { [59307]={ ["monster_base"]=10006, ["hp"]=372560000, - ["atk"]=7700000, + ["atk"]=4530000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -7898,7 +7898,7 @@ local monster_dungeon_armor = { [59407]={ ["monster_base"]=10041, ["hp"]=391500000, - ["atk"]=8680000, + ["atk"]=5410000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -7911,7 +7911,7 @@ local monster_dungeon_armor = { ["monster_base"]=20002, ["is_boss"]=1, ["hp"]=722740000, - ["atk"]=8330000, + ["atk"]=5790000, ["atk_times"]=4, ["hurt_skill"]={ 30004, @@ -7926,7 +7926,7 @@ local monster_dungeon_armor = { [59607]={ ["monster_base"]=10040, ["hp"]=482700000, - ["atk"]=8890000, + ["atk"]=5690000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -7938,7 +7938,7 @@ local monster_dungeon_armor = { [59707]={ ["monster_base"]=10052, ["hp"]=507910000, - ["atk"]=8550000, + ["atk"]=5800000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -7950,7 +7950,7 @@ local monster_dungeon_armor = { [59807]={ ["monster_base"]=10017, ["hp"]=593840000, - ["atk"]=8800000, + ["atk"]=5780000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -7962,7 +7962,7 @@ local monster_dungeon_armor = { [59907]={ ["monster_base"]=10064, ["hp"]=681920000, - ["atk"]=9230000, + ["atk"]=6080000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -7975,7 +7975,7 @@ local monster_dungeon_armor = { ["monster_base"]=20031, ["is_boss"]=2, ["hp"]=1148710000, - ["atk"]=8530000, + ["atk"]=6080000, ["atk_times"]=4, ["hurt_skill"]={ 30091, diff --git a/lua/app/config/monster_dungeon_equip.lua b/lua/app/config/monster_dungeon_equip.lua index c3123cce..ec959e5b 100644 --- a/lua/app/config/monster_dungeon_equip.lua +++ b/lua/app/config/monster_dungeon_equip.lua @@ -2,7 +2,7 @@ local monster_dungeon_equip = { [106]={ ["monster_base"]=10056, ["hp"]=76930000, - ["atk"]=1600000, + ["atk"]=1390000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -17,7 +17,7 @@ local monster_dungeon_equip = { [206]={ ["monster_base"]=10045, ["hp"]=93400000, - ["atk"]=2150000, + ["atk"]=1930000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -32,7 +32,7 @@ local monster_dungeon_equip = { [306]={ ["monster_base"]=10028, ["hp"]=153020000, - ["atk"]=2260000, + ["atk"]=2140000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -47,7 +47,7 @@ local monster_dungeon_equip = { [406]={ ["monster_base"]=10003, ["hp"]=203320000, - ["atk"]=2320000, + ["atk"]=2220000, ["atk_times"]=2, ["hurt_skill"]={ 20007, @@ -63,7 +63,7 @@ local monster_dungeon_equip = { ["monster_base"]=20041, ["is_boss"]=2, ["hp"]=386900000, - ["atk"]=2400000, + ["atk"]=2260000, ["atk_times"]=4, ["hurt_skill"]={ 30126, @@ -83,7 +83,7 @@ local monster_dungeon_equip = { [606]={ ["monster_base"]=10060, ["hp"]=85320000, - ["atk"]=1810000, + ["atk"]=1540000, ["atk_times"]=3, ["hurt_skill"]={ 20175, @@ -98,7 +98,7 @@ local monster_dungeon_equip = { [706]={ ["monster_base"]=10055, ["hp"]=103120000, - ["atk"]=2400000, + ["atk"]=2150000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -113,7 +113,7 @@ local monster_dungeon_equip = { [806]={ ["monster_base"]=10027, ["hp"]=168890000, - ["atk"]=2540000, + ["atk"]=2380000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -128,7 +128,7 @@ local monster_dungeon_equip = { [906]={ ["monster_base"]=10064, ["hp"]=224600000, - ["atk"]=2590000, + ["atk"]=2470000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -144,7 +144,7 @@ local monster_dungeon_equip = { ["monster_base"]=20040, ["is_boss"]=2, ["hp"]=426150000, - ["atk"]=2650000, + ["atk"]=2520000, ["atk_times"]=4, ["hurt_skill"]={ 30114, @@ -163,7 +163,7 @@ local monster_dungeon_equip = { [1106]={ ["monster_base"]=10015, ["hp"]=93300000, - ["atk"]=2000000, + ["atk"]=1680000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -178,7 +178,7 @@ local monster_dungeon_equip = { [1206]={ ["monster_base"]=10025, ["hp"]=112820000, - ["atk"]=2670000, + ["atk"]=2340000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -193,7 +193,7 @@ local monster_dungeon_equip = { [1306]={ ["monster_base"]=10030, ["hp"]=191790000, - ["atk"]=2910000, + ["atk"]=2590000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -208,7 +208,7 @@ local monster_dungeon_equip = { [1406]={ ["monster_base"]=10018, ["hp"]=255070000, - ["atk"]=2990000, + ["atk"]=2690000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -224,7 +224,7 @@ local monster_dungeon_equip = { ["monster_base"]=20039, ["is_boss"]=2, ["hp"]=494490000, - ["atk"]=3100000, + ["atk"]=2740000, ["atk_times"]=4, ["hurt_skill"]={ 30117, @@ -243,7 +243,7 @@ local monster_dungeon_equip = { [1606]={ ["monster_base"]=10004, ["hp"]=119700000, - ["atk"]=2670000, + ["atk"]=1830000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -258,7 +258,7 @@ local monster_dungeon_equip = { [1706]={ ["monster_base"]=10049, ["hp"]=143630000, - ["atk"]=3500000, + ["atk"]=2540000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -273,7 +273,7 @@ local monster_dungeon_equip = { [1806]={ ["monster_base"]=10037, ["hp"]=235050000, - ["atk"]=3660000, + ["atk"]=2810000, ["atk_times"]=3, ["hurt_skill"]={ 20106, @@ -288,7 +288,7 @@ local monster_dungeon_equip = { [1906]={ ["monster_base"]=10016, ["hp"]=312870000, - ["atk"]=3760000, + ["atk"]=2920000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -304,7 +304,7 @@ local monster_dungeon_equip = { ["monster_base"]=20043, ["is_boss"]=2, ["hp"]=566760000, - ["atk"]=3630000, + ["atk"]=2980000, ["atk_times"]=4, ["hurt_skill"]={ 30120, @@ -324,7 +324,7 @@ local monster_dungeon_equip = { [2106]={ ["monster_base"]=10022, ["hp"]=136880000, - ["atk"]=3150000, + ["atk"]=2010000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -339,7 +339,7 @@ local monster_dungeon_equip = { [2206]={ ["monster_base"]=10032, ["hp"]=163040000, - ["atk"]=4110000, + ["atk"]=2780000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -354,7 +354,7 @@ local monster_dungeon_equip = { [2306]={ ["monster_base"]=10013, ["hp"]=267170000, - ["atk"]=4270000, + ["atk"]=3070000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -369,7 +369,7 @@ local monster_dungeon_equip = { [2406]={ ["monster_base"]=10001, ["hp"]=355450000, - ["atk"]=4410000, + ["atk"]=3200000, ["atk_times"]=2, ["hurt_skill"]={ 20001, @@ -385,7 +385,7 @@ local monster_dungeon_equip = { ["monster_base"]=20042, ["is_boss"]=2, ["hp"]=643710000, - ["atk"]=4220000, + ["atk"]=3260000, ["atk_times"]=4, ["hurt_skill"]={ 30123, @@ -404,7 +404,7 @@ local monster_dungeon_equip = { [2606]={ ["monster_base"]=10045, ["hp"]=147550000, - ["atk"]=3510000, + ["atk"]=2190000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -419,7 +419,7 @@ local monster_dungeon_equip = { [2706]={ ["monster_base"]=10056, ["hp"]=175200000, - ["atk"]=4510000, + ["atk"]=3030000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -434,7 +434,7 @@ local monster_dungeon_equip = { [2806]={ ["monster_base"]=10003, ["hp"]=287270000, - ["atk"]=4700000, + ["atk"]=3340000, ["atk_times"]=2, ["hurt_skill"]={ 20007, @@ -449,7 +449,7 @@ local monster_dungeon_equip = { [2906]={ ["monster_base"]=10028, ["hp"]=382140000, - ["atk"]=4860000, + ["atk"]=3490000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -465,7 +465,7 @@ local monster_dungeon_equip = { ["monster_base"]=20041, ["is_boss"]=2, ["hp"]=691660000, - ["atk"]=4620000, + ["atk"]=3560000, ["atk_times"]=4, ["hurt_skill"]={ 30126, @@ -485,7 +485,7 @@ local monster_dungeon_equip = { [3106]={ ["monster_base"]=10052, ["hp"]=161570000, - ["atk"]=3940000, + ["atk"]=2380000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -500,7 +500,7 @@ local monster_dungeon_equip = { [3206]={ ["monster_base"]=10062, ["hp"]=191650000, - ["atk"]=5040000, + ["atk"]=3300000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -515,7 +515,7 @@ local monster_dungeon_equip = { [3306]={ ["monster_base"]=10036, ["hp"]=313710000, - ["atk"]=5250000, + ["atk"]=3620000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -530,7 +530,7 @@ local monster_dungeon_equip = { [3406]={ ["monster_base"]=10061, ["hp"]=417370000, - ["atk"]=5400000, + ["atk"]=3790000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -546,7 +546,7 @@ local monster_dungeon_equip = { ["monster_base"]=20040, ["is_boss"]=2, ["hp"]=754850000, - ["atk"]=5120000, + ["atk"]=3870000, ["atk_times"]=4, ["hurt_skill"]={ 30129, @@ -565,7 +565,7 @@ local monster_dungeon_equip = { [3606]={ ["monster_base"]=10030, ["hp"]=175230000, - ["atk"]=4360000, + ["atk"]=2580000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -580,7 +580,7 @@ local monster_dungeon_equip = { [3706]={ ["monster_base"]=10015, ["hp"]=207360000, - ["atk"]=5570000, + ["atk"]=3560000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -595,7 +595,7 @@ local monster_dungeon_equip = { [3806]={ ["monster_base"]=10025, ["hp"]=338580000, - ["atk"]=5780000, + ["atk"]=3900000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -610,7 +610,7 @@ local monster_dungeon_equip = { [3906]={ ["monster_base"]=10034, ["hp"]=450950000, - ["atk"]=5930000, + ["atk"]=4090000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -626,7 +626,7 @@ local monster_dungeon_equip = { ["monster_base"]=20039, ["is_boss"]=2, ["hp"]=814970000, - ["atk"]=5600000, + ["atk"]=4170000, ["atk_times"]=4, ["hurt_skill"]={ 30117, @@ -645,7 +645,7 @@ local monster_dungeon_equip = { [4106]={ ["monster_base"]=10054, ["hp"]=182360000, - ["atk"]=4590000, + ["atk"]=2660000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -660,7 +660,7 @@ local monster_dungeon_equip = { [4206]={ ["monster_base"]=10037, ["hp"]=215460000, - ["atk"]=5830000, + ["atk"]=3660000, ["atk_times"]=3, ["hurt_skill"]={ 20106, @@ -675,7 +675,7 @@ local monster_dungeon_equip = { [4306]={ ["monster_base"]=10012, ["hp"]=351510000, - ["atk"]=6040000, + ["atk"]=4010000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -690,7 +690,7 @@ local monster_dungeon_equip = { [4406]={ ["monster_base"]=10049, ["hp"]=468340000, - ["atk"]=6220000, + ["atk"]=4210000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -706,7 +706,7 @@ local monster_dungeon_equip = { ["monster_base"]=20043, ["is_boss"]=2, ["hp"]=846340000, - ["atk"]=5860000, + ["atk"]=4290000, ["atk_times"]=4, ["hurt_skill"]={ 30120, @@ -726,7 +726,7 @@ local monster_dungeon_equip = { [4606]={ ["monster_base"]=10042, ["hp"]=187110000, - ["atk"]=4750000, + ["atk"]=2740000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -741,7 +741,7 @@ local monster_dungeon_equip = { [4706]={ ["monster_base"]=10026, ["hp"]=220970000, - ["atk"]=6040000, + ["atk"]=3780000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -756,7 +756,7 @@ local monster_dungeon_equip = { [4806]={ ["monster_base"]=10019, ["hp"]=360430000, - ["atk"]=6240000, + ["atk"]=4140000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -771,7 +771,7 @@ local monster_dungeon_equip = { [4906]={ ["monster_base"]=10001, ["hp"]=480060000, - ["atk"]=6450000, + ["atk"]=4340000, ["atk_times"]=2, ["hurt_skill"]={ 20001, @@ -787,7 +787,7 @@ local monster_dungeon_equip = { ["monster_base"]=20042, ["is_boss"]=2, ["hp"]=867510000, - ["atk"]=6040000, + ["atk"]=4430000, ["atk_times"]=4, ["hurt_skill"]={ 30132, @@ -806,7 +806,7 @@ local monster_dungeon_equip = { [5106]={ ["monster_base"]=10045, ["hp"]=200880000, - ["atk"]=5180000, + ["atk"]=2910000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -821,7 +821,7 @@ local monster_dungeon_equip = { [5206]={ ["monster_base"]=10056, ["hp"]=236460000, - ["atk"]=6550000, + ["atk"]=4010000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -836,7 +836,7 @@ local monster_dungeon_equip = { [5306]={ ["monster_base"]=10003, ["hp"]=385650000, - ["atk"]=6780000, + ["atk"]=4400000, ["atk_times"]=2, ["hurt_skill"]={ 20007, @@ -851,7 +851,7 @@ local monster_dungeon_equip = { [5406]={ ["monster_base"]=10028, ["hp"]=513230000, - ["atk"]=6990000, + ["atk"]=4600000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -867,7 +867,7 @@ local monster_dungeon_equip = { ["monster_base"]=20041, ["is_boss"]=2, ["hp"]=927400000, - ["atk"]=6550000, + ["atk"]=4690000, ["atk_times"]=4, ["hurt_skill"]={ 30126, @@ -887,7 +887,7 @@ local monster_dungeon_equip = { [5606]={ ["monster_base"]=10029, ["hp"]=202710000, - ["atk"]=5270000, + ["atk"]=2990000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -902,7 +902,7 @@ local monster_dungeon_equip = { [5706]={ ["monster_base"]=10055, ["hp"]=238240000, - ["atk"]=6650000, + ["atk"]=4130000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -917,7 +917,7 @@ local monster_dungeon_equip = { [5806]={ ["monster_base"]=10051, ["hp"]=388530000, - ["atk"]=6880000, + ["atk"]=4530000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -932,7 +932,7 @@ local monster_dungeon_equip = { [5906]={ ["monster_base"]=10064, ["hp"]=517080000, - ["atk"]=7080000, + ["atk"]=4730000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -948,7 +948,7 @@ local monster_dungeon_equip = { ["monster_base"]=20040, ["is_boss"]=2, ["hp"]=933980000, - ["atk"]=6630000, + ["atk"]=4820000, ["atk_times"]=4, ["hurt_skill"]={ 30135, @@ -967,7 +967,7 @@ local monster_dungeon_equip = { [6106]={ ["monster_base"]=10015, ["hp"]=216480000, - ["atk"]=5750000, + ["atk"]=3180000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -982,7 +982,7 @@ local monster_dungeon_equip = { [6206]={ ["monster_base"]=10025, ["hp"]=254320000, - ["atk"]=7200000, + ["atk"]=4380000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -997,7 +997,7 @@ local monster_dungeon_equip = { [6306]={ ["monster_base"]=10021, ["hp"]=415070000, - ["atk"]=7450000, + ["atk"]=4810000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -1012,7 +1012,7 @@ local monster_dungeon_equip = { [6406]={ ["monster_base"]=10034, ["hp"]=552120000, - ["atk"]=7670000, + ["atk"]=5030000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -1028,7 +1028,7 @@ local monster_dungeon_equip = { ["monster_base"]=20039, ["is_boss"]=2, ["hp"]=996810000, - ["atk"]=7150000, + ["atk"]=5130000, ["atk_times"]=4, ["hurt_skill"]={ 30117, @@ -1047,7 +1047,7 @@ local monster_dungeon_equip = { [6606]={ ["monster_base"]=10049, ["hp"]=221080000, - ["atk"]=5900000, + ["atk"]=3280000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -1062,7 +1062,7 @@ local monster_dungeon_equip = { [6706]={ ["monster_base"]=10006, ["hp"]=259330000, - ["atk"]=7400000, + ["atk"]=4500000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -1077,7 +1077,7 @@ local monster_dungeon_equip = { [6806]={ ["monster_base"]=10054, ["hp"]=423100000, - ["atk"]=7640000, + ["atk"]=4950000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -1092,7 +1092,7 @@ local monster_dungeon_equip = { [6906]={ ["monster_base"]=10024, ["hp"]=562720000, - ["atk"]=7870000, + ["atk"]=5180000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -1108,7 +1108,7 @@ local monster_dungeon_equip = { ["monster_base"]=20043, ["is_boss"]=2, ["hp"]=1015810000, - ["atk"]=7320000, + ["atk"]=5280000, ["atk_times"]=4, ["hurt_skill"]={ 30120, @@ -1128,7 +1128,7 @@ local monster_dungeon_equip = { [7106]={ ["monster_base"]=10019, ["hp"]=225650000, - ["atk"]=6080000, + ["atk"]=3370000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -1143,7 +1143,7 @@ local monster_dungeon_equip = { [7206]={ ["monster_base"]=10035, ["hp"]=264660000, - ["atk"]=7590000, + ["atk"]=4630000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -1158,7 +1158,7 @@ local monster_dungeon_equip = { [7306]={ ["monster_base"]=10026, ["hp"]=431730000, - ["atk"]=7840000, + ["atk"]=5090000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -1173,7 +1173,7 @@ local monster_dungeon_equip = { [7406]={ ["monster_base"]=10041, ["hp"]=574040000, - ["atk"]=8090000, + ["atk"]=5330000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -1189,7 +1189,7 @@ local monster_dungeon_equip = { ["monster_base"]=20042, ["is_boss"]=2, ["hp"]=1036280000, - ["atk"]=7520000, + ["atk"]=5440000, ["atk_times"]=4, ["hurt_skill"]={ 30138, @@ -1208,7 +1208,7 @@ local monster_dungeon_equip = { [7606]={ ["monster_base"]=10053, ["hp"]=233950000, - ["atk"]=6420000, + ["atk"]=3470000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -1223,7 +1223,7 @@ local monster_dungeon_equip = { [7706]={ ["monster_base"]=10043, ["hp"]=273880000, - ["atk"]=8000000, + ["atk"]=4760000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -1238,7 +1238,7 @@ local monster_dungeon_equip = { [7806]={ ["monster_base"]=10033, ["hp"]=446810000, - ["atk"]=8270000, + ["atk"]=5230000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -1253,7 +1253,7 @@ local monster_dungeon_equip = { [7906]={ ["monster_base"]=10028, ["hp"]=594050000, - ["atk"]=8510000, + ["atk"]=5480000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -1269,7 +1269,7 @@ local monster_dungeon_equip = { ["monster_base"]=20041, ["is_boss"]=2, ["hp"]=1072430000, - ["atk"]=7900000, + ["atk"]=5590000, ["atk_times"]=4, ["hurt_skill"]={ 30126, @@ -1289,7 +1289,7 @@ local monster_dungeon_equip = { [8106]={ ["monster_base"]=10036, ["hp"]=132000000, - ["atk"]=990000, + ["atk"]=870000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -1304,7 +1304,7 @@ local monster_dungeon_equip = { [8206]={ ["monster_base"]=10017, ["hp"]=284280000, - ["atk"]=8360000, + ["atk"]=4890000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -1319,7 +1319,7 @@ local monster_dungeon_equip = { [8306]={ ["monster_base"]=10023, ["hp"]=463670000, - ["atk"]=8610000, + ["atk"]=5380000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -1334,7 +1334,7 @@ local monster_dungeon_equip = { [8406]={ ["monster_base"]=10051, ["hp"]=616180000, - ["atk"]=8880000, + ["atk"]=5640000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -1350,7 +1350,7 @@ local monster_dungeon_equip = { ["monster_base"]=20040, ["is_boss"]=2, ["hp"]=1112410000, - ["atk"]=8240000, + ["atk"]=5750000, ["atk_times"]=4, ["hurt_skill"]={ 30141, @@ -1369,7 +1369,7 @@ local monster_dungeon_equip = { [8606]={ ["monster_base"]=10021, ["hp"]=251150000, - ["atk"]=6970000, + ["atk"]=3770000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -1384,7 +1384,7 @@ local monster_dungeon_equip = { [8706]={ ["monster_base"]=10034, ["hp"]=293630000, - ["atk"]=8680000, + ["atk"]=5170000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -1399,7 +1399,7 @@ local monster_dungeon_equip = { [8806]={ ["monster_base"]=10030, ["hp"]=478890000, - ["atk"]=8940000, + ["atk"]=5680000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -1414,7 +1414,7 @@ local monster_dungeon_equip = { [8906]={ ["monster_base"]=10018, ["hp"]=636450000, - ["atk"]=9230000, + ["atk"]=5960000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -1430,7 +1430,7 @@ local monster_dungeon_equip = { ["monster_base"]=20039, ["is_boss"]=2, ["hp"]=1148710000, - ["atk"]=8530000, + ["atk"]=6080000, ["atk_times"]=4, ["hurt_skill"]={ 30117, @@ -1449,7 +1449,7 @@ local monster_dungeon_equip = { [9106]={ ["monster_base"]=10016, ["hp"]=261840000, - ["atk"]=7320000, + ["atk"]=3970000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -1464,7 +1464,7 @@ local monster_dungeon_equip = { [9206]={ ["monster_base"]=10054, ["hp"]=305680000, - ["atk"]=9070000, + ["atk"]=5440000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -1479,7 +1479,7 @@ local monster_dungeon_equip = { [9306]={ ["monster_base"]=10006, ["hp"]=498740000, - ["atk"]=9360000, + ["atk"]=5980000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -1494,7 +1494,7 @@ local monster_dungeon_equip = { [9406]={ ["monster_base"]=10020, ["hp"]=662690000, - ["atk"]=9650000, + ["atk"]=6280000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -1510,7 +1510,7 @@ local monster_dungeon_equip = { ["monster_base"]=20043, ["is_boss"]=2, ["hp"]=1196050000, - ["atk"]=8930000, + ["atk"]=6410000, ["atk_times"]=4, ["hurt_skill"]={ 30120, @@ -1530,7 +1530,7 @@ local monster_dungeon_equip = { [9606]={ ["monster_base"]=10031, ["hp"]=270070000, - ["atk"]=7580000, + ["atk"]=4190000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -1545,7 +1545,7 @@ local monster_dungeon_equip = { [9706]={ ["monster_base"]=10035, ["hp"]=315240000, - ["atk"]=9410000, + ["atk"]=5740000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -1560,7 +1560,7 @@ local monster_dungeon_equip = { [9806]={ ["monster_base"]=10019, ["hp"]=514070000, - ["atk"]=9700000, + ["atk"]=6320000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -1575,7 +1575,7 @@ local monster_dungeon_equip = { [9906]={ ["monster_base"]=10013, ["hp"]=682910000, - ["atk"]=10010000, + ["atk"]=6630000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -1591,7 +1591,7 @@ local monster_dungeon_equip = { ["monster_base"]=20042, ["is_boss"]=2, ["hp"]=1232640000, - ["atk"]=9240000, + ["atk"]=6760000, ["atk_times"]=4, ["hurt_skill"]={ 30144, diff --git a/lua/app/config/task_daily_challenge.lua b/lua/app/config/task_daily_challenge.lua index 95c974b2..b644d0ad 100644 --- a/lua/app/config/task_daily_challenge.lua +++ b/lua/app/config/task_daily_challenge.lua @@ -204,7 +204,7 @@ local task_daily_challenge = { }, [8]={ ["rand_type"]=2, - ["param"]=3000, + ["param"]=2500, ["reward"]={ { ["type"]=1, From 24d90bfd1c24ac465c68fe04dcd438d886ac0f4b Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Wed, 2 Aug 2023 20:34:25 +0800 Subject: [PATCH 18/44] =?UTF-8?q?=E6=88=98=E6=96=97=E8=A1=80=E6=9D=A1?= =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/battle_base_controller.lua | 62 ++++++++++++++++++- .../module/battle/helper/battle_formula.lua | 31 ++++++++++ lua/app/ui/battle/battle_base_ui.lua | 10 +++ 3 files changed, 101 insertions(+), 2 deletions(-) diff --git a/lua/app/module/battle/controller/battle_base_controller.lua b/lua/app/module/battle/controller/battle_base_controller.lua index e11bd70d..7e016964 100644 --- a/lua/app/module/battle/controller/battle_base_controller.lua +++ b/lua/app/module/battle/controller/battle_base_controller.lua @@ -11,6 +11,7 @@ local BATTLE_INSTRUCTIONS_HELPER = require "app/module/battle/helper/battle_inst local BattleBoardTouchHelper = require "app/module/battle/helper/battle_board_touch_helper" local BattleBuffHandle = require "app/module/battle/helper/battle_buff_handle" local BATTLE_SNAPSHOT_HELPER = require "app/module/battle/helper/battle_snapshot_helper" +local BattleFormula = require "app/module/battle/helper/battle_formula" local BattleBaseController = class("BattleBaseController") local BattleConst = GConst.BattleConst local BUFF_NAME_TO_ATTR = BattleConst.BUFF_NAME_TO_ATTR @@ -245,13 +246,18 @@ function BattleBaseController:onLinkChange() local sequence = self.battleData:getGridSequence() local mainElementType - + local dmgSkillId for index, info in ipairs(sequence) do local entity = self.battleData:getGridEntity(info.posId) if not mainElementType then local skillId = entity:getSkillId() - if not skillId then + if not skillId and not mainElementType then mainElementType = entity:getElementType() + end + if skillId and not dmgSkillId then + dmgSkillId = skillId + end + if mainElementType and dmgSkillId then break end end @@ -298,8 +304,10 @@ function BattleBaseController:onLinkChange() end end + local dmgElementTypeMap if not self:getCurActionUnitComp():getActiveSkillLimit() then local aniSequence, influenceElementType, lineCount, elementTypeMap, linkElementType, effectGridMap, randomPosList = self:calculateCurElimination(true) + dmgElementTypeMap = elementTypeMap if randomPosList then for _, posId in ipairs(randomPosList) do local gridEntity = self.battleData:getGridEntity(posId) @@ -317,6 +325,23 @@ function BattleBaseController:onLinkChange() if mainElementType then self:getSideTeam(self.curActionSide):changeMainUnit(mainElementType) end + + local elementTypeCount = 0 + for element, count in pairs(dmgElementTypeMap) do + elementTypeCount = elementTypeCount + count + end + local dmg = self:calExpectedInjury(mainElementType, elementTypeCount, dmgSkillId) + Logger.logHighlight(dmg) + local defMainUnitcomp = self:getCurOtherActionUnitComp() + if defMainUnitcomp then + local hp = defMainUnitcomp.unitEntity:getHp() + local hpPercent = (hp - dmg) / defMainUnitcomp.unitEntity:getMaxHp() + if self.curActionSide == SIDE_ATK then + self.battleUI:setDefHp(hp, hpPercent) + else + self.battleUI:setAtkHp(hp, hpPercent) + end + end end function BattleBaseController:getInitBoard() @@ -724,6 +749,18 @@ function BattleBaseController:getCurActionUnitComp() return self:getCurActionTeam():getMainUnit() end +function BattleBaseController:getCurOtherActionUnitComp() + local side = self:getCurActionOtherSide() + if not side then + return + end + local team = self:getCurActionTeam(side) + if not team then + return + end + return team:getMainUnit() +end + function BattleBaseController:getCurActionBoardRowRange(side) side = side or self.curActionSide local isAtkAction = side == SIDE_ATK @@ -1176,6 +1213,14 @@ function BattleBaseController:clearGridSequence() end function BattleBaseController:onLinkOver() + local hp = self.atkTeam:getMainUnit().unitEntity:getHp() + local hpPercent = self.atkTeam:getMainUnit().unitEntity:getMaxHp() + self.battleUI:setAtkHp(hp, hpPercent) + + local hp = self.defTeam:getMainUnit().unitEntity:getHp() + local hpPercent = self.defTeam:getMainUnit().unitEntity:getMaxHp() + self.battleUI:setDefHp(hp, hpPercent) + self.battleUI:hideAllSfxLine() local sequence = self.battleData:getGridSequence() local count = #sequence @@ -3025,4 +3070,17 @@ BattleBaseController._doInstruction = { [BattleConst.INSTRUCTION_NAME.PLAY_SKILL] = _playSkill, } +function BattleBaseController:calExpectedInjury(mainElementType, count, skillId) + local atkCompMap = self:getCurActionTeam():getUnitComp() + if not atkCompMap then + return 0 + end + local atkUnitComp = atkCompMap[mainElementType] + if not atkUnitComp then + return 0 + end + local dmg = BattleFormula:getExpectedDamageResult(atkUnitComp, count, self:getCurOtherActionUnitComp(), skillId, atkCompMap) + return dmg +end + return BattleBaseController \ No newline at end of file diff --git a/lua/app/module/battle/helper/battle_formula.lua b/lua/app/module/battle/helper/battle_formula.lua index 815be78c..de66c004 100644 --- a/lua/app/module/battle/helper/battle_formula.lua +++ b/lua/app/module/battle/helper/battle_formula.lua @@ -14,6 +14,37 @@ function BattleFormula:getDamageOrCureResult(unitComp, buff, targetUnitComp) return 0 end +function BattleFormula:getExpectedDamageResult(unitComp, count, targetUnitComp, skillId, atkCompMap) + -- (元素个数*攻击者攻击力+链接技能的伤害) * 受击者伤害减免 + -- 普攻 + local result = unitComp.unitEntity:getAtk() * count + local atkMatchType = unitComp.unitEntity:getMatchType() + local coefficient = math.max(DEFAULT_FACTOR - targetUnitComp.unitEntity:getDecDmg(atkMatchType), 0) + result = result * coefficient // DEFAULT_FACTOR + -- 技能 + if skillId and atkCompMap then + local skillConfig = ConfigManager:getConfig("skill")[skillId] + if skillConfig and skillConfig.effect and skillConfig.position then + local matchType = skillConfig.position + if atkCompMap[matchType] then + local atk = atkCompMap[matchType].unitEntity:getAtk() + local dmg = 0 + for _, effect in ipairs(skillConfig.effect) do + local buffConfig = ConfigManager:getConfigWithOtherKey("buff", effect.type) + if buffConfig and buffConfig.formula == 1 then -- 伤害公式 + dmg = dmg + effect.num * atk + end + end + local coefficient = math.max(DEFAULT_FACTOR - targetUnitComp.unitEntity:getDecDmg(atkMatchType), 0) + result = result + (dmg * coefficient // DEFAULT_FACTOR) + end + end + end + -- 最终伤害 + result = result * (DEFAULT_FACTOR - unitComp.unitEntity:getEndDmgDecAll() + unitComp.unitEntity:getEndDmgAddtionAll()) // DEFAULT_FACTOR + return result +end + BattleFormula.calculateFormula = { -- ((攻击)*技能倍率*(1+(攻击者元素伤害增加+所有伤害增加)(攻击者)- (攻击者元素伤害降低+所有伤害降低) +(受到元素伤害增加+受到所有伤害增加(受击)-受到元素伤害降低-受到所有伤害降低(受击) + 主动技能增伤) + 固定值) *暴击伤害*(1-最终造成伤害降低%+最终造成伤害增加%) [1] = function(unitComp, buff, targetUnit) diff --git a/lua/app/ui/battle/battle_base_ui.lua b/lua/app/ui/battle/battle_base_ui.lua index c0125803..a9883038 100644 --- a/lua/app/ui/battle/battle_base_ui.lua +++ b/lua/app/ui/battle/battle_base_ui.lua @@ -1081,6 +1081,16 @@ function BattleBaseUI:refreshDefHp(num, percent) end end +function BattleBaseUI:setAtkHp(num, percent) + self.hpTextLeft:setText(GFunc.num2Str(num)) + self.hpProgressLeft.value = percent +end + +function BattleBaseUI:setDefHp(num, percent) + self.hpTextRight:setText(GFunc.num2Str(num)) + self.hpProgressRight.value = percent +end + function BattleBaseUI:refreshSkill(elementMap, showSfx, side) side = side or SIDE_ATK if not self.skillNodeCells or not self.skillNodeCells[side] then From 4c8eff015ef6d524576a489d765260b7bb0537e6 Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Thu, 3 Aug 2023 09:47:21 +0800 Subject: [PATCH 19/44] =?UTF-8?q?=E6=98=BE=E7=A4=BAbug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../battle/controller/battle_base_controller.lua | 5 ++--- lua/app/userdata/summon/summon_data.lua | 14 ++++++++------ 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/lua/app/module/battle/controller/battle_base_controller.lua b/lua/app/module/battle/controller/battle_base_controller.lua index 7e016964..294f157d 100644 --- a/lua/app/module/battle/controller/battle_base_controller.lua +++ b/lua/app/module/battle/controller/battle_base_controller.lua @@ -331,7 +331,6 @@ function BattleBaseController:onLinkChange() elementTypeCount = elementTypeCount + count end local dmg = self:calExpectedInjury(mainElementType, elementTypeCount, dmgSkillId) - Logger.logHighlight(dmg) local defMainUnitcomp = self:getCurOtherActionUnitComp() if defMainUnitcomp then local hp = defMainUnitcomp.unitEntity:getHp() @@ -1214,11 +1213,11 @@ end function BattleBaseController:onLinkOver() local hp = self.atkTeam:getMainUnit().unitEntity:getHp() - local hpPercent = self.atkTeam:getMainUnit().unitEntity:getMaxHp() + local hpPercent = self.atkTeam:getMainUnit().unitEntity:getHpPercent() self.battleUI:setAtkHp(hp, hpPercent) local hp = self.defTeam:getMainUnit().unitEntity:getHp() - local hpPercent = self.defTeam:getMainUnit().unitEntity:getMaxHp() + local hpPercent = self.defTeam:getMainUnit().unitEntity:getHpPercent() self.battleUI:setDefHp(hp, hpPercent) self.battleUI:hideAllSfxLine() diff --git a/lua/app/userdata/summon/summon_data.lua b/lua/app/userdata/summon/summon_data.lua index 8fbb5091..0be73e4c 100644 --- a/lua/app/userdata/summon/summon_data.lua +++ b/lua/app/userdata/summon/summon_data.lua @@ -82,13 +82,15 @@ function SummonData:getSummonRewardByLv(summonType, level) for _, reward in ipairs(rewards) do local find = false for index, rewardBase in ipairs(cfgInfo.box_lv_base) do - if reward.type == rewardBase.type and reward.id == rewardBase.id and reward.num > rewardBase.num then + if reward.type == rewardBase.type and reward.id == rewardBase.id and reward.num >= rewardBase.num then local num = reward.num - rewardBase.num - table.insert(self.cacheSummonRewardByLv[level], { - id = reward.id, - type = reward.type, - num = num - }) + if num ~= 0 then + table.insert(self.cacheSummonRewardByLv[level], { + id = reward.id, + type = reward.type, + num = num + }) + end find = true break end From 35f9f629d3322b64983f948f87032e5d3f626cf5 Mon Sep 17 00:00:00 2001 From: Fang Date: Thu, 3 Aug 2023 10:09:10 +0800 Subject: [PATCH 20/44] =?UTF-8?q?=E8=B5=84=E6=BA=90=E5=89=AF=E6=9C=AC?= =?UTF-8?q?=E6=89=AB=E8=8D=A1=E4=B8=8D=E5=85=B3=E9=97=AD=E5=85=B3=E5=8D=A1?= =?UTF-8?q?=E7=95=8C=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/ui/dungeon/dungeon_difficulty_ui.lua | 3 --- 1 file changed, 3 deletions(-) diff --git a/lua/app/ui/dungeon/dungeon_difficulty_ui.lua b/lua/app/ui/dungeon/dungeon_difficulty_ui.lua index e574fdc3..8e7f7b39 100644 --- a/lua/app/ui/dungeon/dungeon_difficulty_ui.lua +++ b/lua/app/ui/dungeon/dungeon_difficulty_ui.lua @@ -115,9 +115,6 @@ function DungeonDifficultyUI:onLoadRootComplete() self:addEventListener(EventManager.CUSTOM_EVENT.DUNGEON_CHALLENGE, function() self:closeUI() end) - self:addEventListener(EventManager.CUSTOM_EVENT.DUNGEON_SWEEP, function() - self:closeUI() - end) end function DungeonDifficultyUI:refreshDifficulty() From 619bfad50a80b69663041985d3e657cfbe237122 Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Thu, 3 Aug 2023 10:24:00 +0800 Subject: [PATCH 21/44] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=B1=80=E5=86=85?= =?UTF-8?q?=E6=8A=80=E8=83=BD=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/ui/tips/battle_board_skill_tips.lua | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lua/app/ui/tips/battle_board_skill_tips.lua b/lua/app/ui/tips/battle_board_skill_tips.lua index 520f7ff0..297873dc 100644 --- a/lua/app/ui/tips/battle_board_skill_tips.lua +++ b/lua/app/ui/tips/battle_board_skill_tips.lua @@ -46,6 +46,13 @@ function BattleBoardSkillTips:onLoadRootComplete() self.originPivot = tipsBgTransform.pivot self.originAnchoredPosition = tipsBgTransform.anchoredPosition self.originLocalPosition = tipsBgTransform.localPosition + + self.bg:addClickListener(function() + local cfg = ConfigManager:getConfig("skill")[self.boardSkillEntity:getSkillId()] + if cfg.buff_id and #cfg.buff_id > 0 then + ModuleManager.TipsManager:showSkillTips(self.bg, cfg.buff_id) + end + end) end function BattleBoardSkillTips:onRefresh() @@ -79,7 +86,8 @@ function BattleBoardSkillTips:onRefresh() local value = self.battleData:getSelectSkillMap(self.side)[skillId].value or 0 cell:refresh(skillId, count) cell:addClickListener(function() - ModuleManager.TipsManager:showDescTips(ModuleManager.HeroManager:getSkillRogueDesc(skillId, value), cell:getBaseObject()) + local cfg = ConfigManager:getConfig("skill_rogue")[skillId] + ModuleManager.TipsManager:showSkillTips(cell:getBaseObject(), cfg.buff_id, skillId) end) else cell:getBaseObject():setActive(false) From e0c2821f764c989bc860c859dae941e1a7237983 Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Thu, 3 Aug 2023 11:08:04 +0800 Subject: [PATCH 22/44] =?UTF-8?q?=E6=AD=A6=E5=99=A8=E5=89=AF=E6=9C=AC?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=BD=93=E5=8A=9B=E6=B6=88=E8=80=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/config/chapter.lua | 140 +- lua/app/config/chapter_board.lua | 1958 ++++++++--------- .../config/chapter_board_daily_challenge.lua | 2 +- lua/app/config/chapter_daily_challenge.lua | 56 + lua/app/config/chapter_dungeon_equip.lua | 184 +- lua/app/config/chapter_dungeon_gold.lua | 120 + lua/app/config/chapter_dungeon_shards.lua | 150 +- lua/app/config/const.lua | 14 +- lua/app/config/mall_daily.lua | 516 ++++- lua/app/config/monster_chapter.lua | 1609 +++++++------- lua/app/config/monster_daily_challenge.lua | 504 ++--- lua/app/config/monster_dungeon_armor.lua | 1200 +++++----- lua/app/config/monster_dungeon_equip.lua | 200 +- lua/app/config/skill.lua | 9 - lua/app/config/strings/cn/global.lua | 2 +- lua/app/config/strings/en/global.lua | 2 +- lua/app/config/strings/es/global.lua | 4 +- lua/app/config/strings/id/global.lua | 2 +- lua/app/config/strings/ja/global.lua | 2 +- lua/app/config/strings/ko/global.lua | 2 +- lua/app/config/strings/pt/global.lua | 2 +- lua/app/config/strings/th/global.lua | 2 +- lua/app/config/strings/vi/global.lua | 2 +- lua/app/config/strings/zh/global.lua | 2 +- lua/app/config/task_daily_challenge.lua | 2 +- .../dungeon_weapon/dungeon_weapon_manager.lua | 15 + .../cell/chapter_layer_cell.lua | 86 +- .../dungeon/dungeon_weapon_entity.lua | 4 + 28 files changed, 3895 insertions(+), 2896 deletions(-) diff --git a/lua/app/config/chapter.lua b/lua/app/config/chapter.lua index 18ac9f66..78680970 100644 --- a/lua/app/config/chapter.lua +++ b/lua/app/config/chapter.lua @@ -127,8 +127,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 100, - 100 + 1, + 1 } }, [2]={ @@ -278,8 +278,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 100, - 100 + 1, + 1 } }, [3]={ @@ -424,8 +424,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 100, - 100 + 1, + 1 } }, [4]={ @@ -621,8 +621,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 230, - 44 + 1, + 1 } }, [5]={ @@ -824,8 +824,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 1785, - 4062 + 1425, + 3528 } }, [6]={ @@ -1027,8 +1027,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 2511, - 5397 + 1976, + 5486 } }, [7]={ @@ -1246,8 +1246,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 4456, - 7506 + 3300, + 7539 } }, [8]={ @@ -1465,8 +1465,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 6127, - 10184 + 4837, + 9756 } }, [9]={ @@ -1684,8 +1684,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 7787, - 12470 + 6364, + 12027 } }, [10]={ @@ -1903,8 +1903,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 10159, - 15963 + 8546, + 14328 } }, [11]={ @@ -2122,8 +2122,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 12466, - 18556 + 10668, + 15012 } }, [12]={ @@ -2341,8 +2341,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 14126, - 21487 + 12196, + 16024 } }, [13]={ @@ -2560,8 +2560,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 15225, - 23424 + 13207, + 17506 } }, [14]={ @@ -2779,8 +2779,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 17392, - 26737 + 15201, + 18468 } }, [15]={ @@ -2998,8 +2998,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 18125, - 28176 + 15875, + 19426 } }, [16]={ @@ -3217,8 +3217,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 19440, - 30378 + 17085, + 21047 } }, [17]={ @@ -3436,8 +3436,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 20691, - 32484 + 18235, + 22088 } }, [18]={ @@ -3655,8 +3655,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 22146, - 34908 + 19574, + 23715 } }, [19]={ @@ -3874,8 +3874,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 23030, - 36601 + 20388, + 25138 } }, [20]={ @@ -4093,8 +4093,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 24712, - 39364 + 21935, + 26412 } }, [21]={ @@ -4312,8 +4312,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 26059, - 41629 + 23174, + 27434 } }, [22]={ @@ -4531,8 +4531,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 26965, - 43375 + 24007, + 28639 } }, [23]={ @@ -4750,8 +4750,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 27859, - 45058 + 24831, + 29814 } }, [24]={ @@ -4969,8 +4969,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 29509, - 47863 + 26348, + 31029 } }, [25]={ @@ -5188,8 +5188,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 29800, - 48678 + 26616, + 32214 } }, [26]={ @@ -5407,8 +5407,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 30716, - 50392 + 27459, + 33533 } }, [27]={ @@ -5626,8 +5626,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 32506, - 53451 + 29105, + 34852 } }, [28]={ @@ -5845,8 +5845,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 33303, - 55081 + 29839, + 36176 } }, [29]={ @@ -6064,8 +6064,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 34166, - 56796 + 30632, + 37485 } }, [30]={ @@ -6283,8 +6283,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 35718, - 60278 + 32061, + 38809 } }, [31]={ @@ -6502,8 +6502,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 37410, - 63294 + 33618, + 40252 } }, [32]={ @@ -6721,8 +6721,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 38984, - 66067 + 35066, + 43069 } }, [33]={ @@ -6940,8 +6940,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 41000, - 69592 + 36920, + 45891 } }, [34]={ @@ -7159,8 +7159,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 42574, - 72471 + 38368, + 49054 } }, [35]={ @@ -7377,8 +7377,8 @@ local chapter = { } }, ["daily_challenge_difficulty"]={ - 46207, - 78535 + 41710, + 53745 } } } diff --git a/lua/app/config/chapter_board.lua b/lua/app/config/chapter_board.lua index ae11b825..5d8fc7b3 100644 --- a/lua/app/config/chapter_board.lua +++ b/lua/app/config/chapter_board.lua @@ -1622,10 +1622,42 @@ local chapter_board = { 1, 0 }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, { 1, 0 }, + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, { 0, 3 @@ -1646,41 +1678,13 @@ local chapter_board = { 1, 0 }, - { - 1, - 0 - }, - { - 1, - 0 - }, { 0, - 3 - }, - { - 0, - 3 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 + 2 + }, + { + 0, + 2 }, { 0, @@ -1702,6 +1706,26 @@ local chapter_board = { 1, 0 }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, { 1, 0 @@ -1711,31 +1735,7 @@ local chapter_board = { 0 }, { - 7, - 0 - }, - { - 7, - 0 - }, - { - 7, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, + 0, 0 }, { @@ -1751,7 +1751,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -1763,7 +1763,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -1779,7 +1779,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -2677,7 +2677,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -2693,7 +2693,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -2705,7 +2705,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -2721,7 +2721,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -2733,7 +2733,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -2749,7 +2749,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -2761,23 +2761,23 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { - 1, + 2, 0 }, { - 1, + 0, 0 }, { - 1, + 2, 0 }, { - 1, + 0, 0 }, { @@ -2875,7 +2875,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -2891,7 +2891,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -2903,7 +2903,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -2919,7 +2919,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -2931,7 +2931,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -2947,7 +2947,7 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { @@ -2959,23 +2959,23 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { - 1, + 2, 0 }, { - 1, + 0, 0 }, { - 1, + 2, 0 }, { - 1, + 0, 0 }, { @@ -3079,15 +3079,15 @@ local chapter_board = { 1 }, { - 3, + 2, 2 }, { - 3, + 2, 3 }, { - 3, + 2, 4 }, { @@ -3163,7 +3163,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -3171,7 +3171,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -3187,7 +3187,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -3203,7 +3203,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -3277,15 +3277,15 @@ local chapter_board = { 1 }, { - 3, + 2, 2 }, { - 3, + 2, 3 }, { - 3, + 2, 4 }, { @@ -3361,7 +3361,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -3369,7 +3369,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -3385,7 +3385,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -3401,7 +3401,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -3417,7 +3417,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -3426,14 +3426,14 @@ local chapter_board = { }, { 0, - 3 + 2 }, { 0, - 3 + 1 }, { - 3, + 2, 0 }, { @@ -3462,7 +3462,7 @@ local chapter_board = { }, { 4, - 3 + 1 }, { 1, @@ -3474,7 +3474,7 @@ local chapter_board = { }, { 4, - 3 + 2 }, { 4, @@ -3486,7 +3486,7 @@ local chapter_board = { }, { 4, - 1 + 3 }, { 4, @@ -3525,7 +3525,7 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { @@ -3533,15 +3533,7 @@ local chapter_board = { 0 }, { - 3, - 0 - }, - { - 1, - 0 - }, - { - 3, + 2, 0 }, { @@ -3549,63 +3541,71 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 3, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 3, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, 0 } } @@ -4015,8 +4015,8 @@ local chapter_board = { 0 }, { - 1, - 0 + 0, + 3 }, { 0, @@ -4028,11 +4028,11 @@ local chapter_board = { }, { 0, - 2 + 3 }, { - 1, - 0 + 0, + 3 }, { 1, @@ -4056,7 +4056,7 @@ local chapter_board = { }, { 0, - 3 + 2 }, { 0, @@ -4072,11 +4072,7 @@ local chapter_board = { }, { 4, - 4 - }, - { - 4, - 2 + 3 }, { 4, @@ -4084,11 +4080,15 @@ local chapter_board = { }, { 4, - 2 + 4 }, { 4, - 2 + 4 + }, + { + 4, + 3 }, { 1, @@ -4136,15 +4136,15 @@ local chapter_board = { }, { 5, - 3 + 2 }, { 5, - 3 + 4 }, { 5, - 3 + 2 }, { 2, @@ -4218,21 +4218,21 @@ local chapter_board = { 0, 3 }, + { + 0, + 3 + }, + { + 0, + 3 + }, { 0, 1 }, { 0, - 3 - }, - { - 0, - 3 - }, - { - 0, - 3 + 1 }, { 0, @@ -4254,14 +4254,6 @@ local chapter_board = { 0, 1 }, - { - 5, - 1 - }, - { - 5, - 1 - }, { 5, 3 @@ -4276,7 +4268,15 @@ local chapter_board = { }, { 5, - 1 + 5 + }, + { + 5, + 5 + }, + { + 5, + 5 }, { 2, @@ -4284,7 +4284,7 @@ local chapter_board = { }, { 5, - 2 + 3 }, { 3, @@ -4304,7 +4304,7 @@ local chapter_board = { }, { 5, - 1 + 5 }, { 2, @@ -4312,7 +4312,7 @@ local chapter_board = { }, { 5, - 2 + 3 }, { 5, @@ -4332,7 +4332,7 @@ local chapter_board = { }, { 5, - 1 + 5 }, { 5, @@ -4351,15 +4351,15 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { @@ -4379,15 +4379,15 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { @@ -4416,21 +4416,21 @@ local chapter_board = { 0, 3 }, + { + 0, + 3 + }, + { + 0, + 3 + }, { 0, 1 }, { 0, - 3 - }, - { - 0, - 3 - }, - { - 0, - 3 + 1 }, { 0, @@ -4452,14 +4452,6 @@ local chapter_board = { 0, 1 }, - { - 5, - 1 - }, - { - 5, - 1 - }, { 5, 3 @@ -4474,7 +4466,15 @@ local chapter_board = { }, { 5, - 1 + 5 + }, + { + 5, + 5 + }, + { + 5, + 5 }, { 2, @@ -4482,7 +4482,7 @@ local chapter_board = { }, { 5, - 2 + 3 }, { 3, @@ -4502,7 +4502,7 @@ local chapter_board = { }, { 5, - 1 + 5 }, { 2, @@ -4510,7 +4510,7 @@ local chapter_board = { }, { 5, - 2 + 3 }, { 5, @@ -4530,7 +4530,7 @@ local chapter_board = { }, { 5, - 1 + 5 }, { 5, @@ -4549,15 +4549,15 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { @@ -4577,15 +4577,15 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { @@ -4613,7 +4613,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -4629,7 +4629,7 @@ local chapter_board = { 4 }, { - 3, + 2, 0 }, { @@ -4641,7 +4641,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -4657,7 +4657,7 @@ local chapter_board = { 3 }, { - 3, + 2, 0 }, { @@ -4669,11 +4669,11 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { - 3, + 2, 0 }, { @@ -4681,11 +4681,11 @@ local chapter_board = { 2 }, { - 3, + 2, 0 }, { - 3, + 2, 0 }, { @@ -4781,24 +4781,24 @@ local chapter_board = { 0 }, { - 1, - 0 + 5, + 2 }, { - 1, - 0 + 5, + 2 }, { - 1, - 0 + 5, + 1 }, { - 1, - 0 + 5, + 3 }, { - 1, - 0 + 5, + 3 }, { 1, @@ -4826,7 +4826,7 @@ local chapter_board = { }, { 0, - 3 + 1 }, { 0, @@ -5412,7 +5412,7 @@ local chapter_board = { }, { 0, - 4 + 3 }, { 0, @@ -5440,7 +5440,7 @@ local chapter_board = { }, { 0, - 4 + 3 }, { 0, @@ -5452,11 +5452,11 @@ local chapter_board = { }, { 0, - 3 + 4 }, { 0, - 3 + 4 }, { 1, @@ -5474,18 +5474,18 @@ local chapter_board = { 0, 5 }, + { + 0, + 5 + }, + { + 0, + 5 + }, { 0, 4 }, - { - 0, - 2 - }, - { - 0, - 1 - }, { 1, 0 @@ -5503,7 +5503,7 @@ local chapter_board = { 0 }, { - 1, + 3, 0 }, { @@ -5632,7 +5632,7 @@ local chapter_board = { }, { 0, - 1 + 4 }, { 1, @@ -5640,11 +5640,11 @@ local chapter_board = { }, { 5, - 1 + 2 }, { - 2, - 0 + 0, + 3 }, { 0, @@ -5659,19 +5659,11 @@ local chapter_board = { 3 }, { - 0, - 1 - }, - { - 3, + 1, 0 }, { - 5, - 1 - }, - { - 2, + 3, 0 }, { @@ -5683,7 +5675,15 @@ local chapter_board = { 0 }, { - 3, + 5, + 1 + }, + { + 2, + 0 + }, + { + 2, 0 }, { @@ -5694,14 +5694,6 @@ local chapter_board = { 3, 0 }, - { - 5, - 1 - }, - { - 2, - 0 - }, { 5, 2 @@ -5710,29 +5702,9 @@ local chapter_board = { 2, 0 }, - { - 2, - 0 - }, - { - 1, - 0 - }, - { - 3, - 0 - }, { 5, - 4 - }, - { - 2, - 0 - }, - { - 5, - 5 + 1 }, { 2, @@ -5752,7 +5724,35 @@ local chapter_board = { }, { 5, - 4 + 2 + }, + { + 2, + 0 + }, + { + 5, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 5, + 2 }, { 14, @@ -5760,14 +5760,14 @@ local chapter_board = { }, { 5, - 5 + 1 }, { 2, 0 }, { - 3, + 2, 0 }, { @@ -5779,8 +5779,8 @@ local chapter_board = { 0 }, { - 1, - 0 + 5, + 2 }, { 3, @@ -5795,7 +5795,7 @@ local chapter_board = { 0 }, { - 1, + 3, 0 }, { @@ -5830,7 +5830,7 @@ local chapter_board = { }, { 0, - 1 + 4 }, { 1, @@ -5838,11 +5838,11 @@ local chapter_board = { }, { 5, - 1 + 2 }, { - 2, - 0 + 0, + 3 }, { 0, @@ -5857,19 +5857,11 @@ local chapter_board = { 3 }, { - 0, - 1 - }, - { - 3, + 1, 0 }, { - 5, - 1 - }, - { - 2, + 3, 0 }, { @@ -5881,7 +5873,15 @@ local chapter_board = { 0 }, { - 3, + 5, + 1 + }, + { + 2, + 0 + }, + { + 2, 0 }, { @@ -5892,14 +5892,6 @@ local chapter_board = { 3, 0 }, - { - 5, - 1 - }, - { - 2, - 0 - }, { 5, 2 @@ -5908,29 +5900,9 @@ local chapter_board = { 2, 0 }, - { - 2, - 0 - }, - { - 1, - 0 - }, - { - 3, - 0 - }, { 5, - 4 - }, - { - 2, - 0 - }, - { - 5, - 5 + 1 }, { 2, @@ -5950,7 +5922,35 @@ local chapter_board = { }, { 5, - 4 + 2 + }, + { + 2, + 0 + }, + { + 5, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 5, + 2 }, { 17, @@ -5958,14 +5958,14 @@ local chapter_board = { }, { 5, - 5 + 1 }, { 2, 0 }, { - 3, + 2, 0 }, { @@ -5977,8 +5977,8 @@ local chapter_board = { 0 }, { - 1, - 0 + 5, + 2 }, { 3, @@ -5993,7 +5993,7 @@ local chapter_board = { 0 }, { - 1, + 3, 0 }, { @@ -6210,11 +6210,11 @@ local chapter_board = { }, { 0, - 3 + 4 }, { 0, - 4 + 3 }, { 0, @@ -6254,7 +6254,7 @@ local chapter_board = { }, { 0, - 3 + 2 }, { 1, @@ -6292,18 +6292,6 @@ local chapter_board = { 2, 0 }, - { - 4, - 3 - }, - { - 4, - 2 - }, - { - 4, - 1 - }, { 4, 1 @@ -6317,27 +6305,15 @@ local chapter_board = { 0 }, { - 0, - 0 + 4, + 5 }, { - 3, - 0 + 4, + 5 }, { - 3, - 0 - }, - { - 3, - 0 - }, - { - 3, - 0 - }, - { - 3, + 2, 0 }, { @@ -6349,7 +6325,35 @@ local chapter_board = { 0 }, { - 3, + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 2, 0 }, { @@ -6357,15 +6361,11 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { - 3, - 0 - }, - { - 3, + 2, 0 }, { @@ -6408,11 +6408,11 @@ local chapter_board = { }, { 0, - 3 + 4 }, { 0, - 4 + 3 }, { 0, @@ -6452,7 +6452,7 @@ local chapter_board = { }, { 0, - 3 + 2 }, { 1, @@ -6490,18 +6490,6 @@ local chapter_board = { 2, 0 }, - { - 4, - 3 - }, - { - 4, - 2 - }, - { - 4, - 1 - }, { 4, 1 @@ -6515,27 +6503,15 @@ local chapter_board = { 0 }, { - 0, - 0 + 4, + 5 }, { - 3, - 0 + 4, + 5 }, { - 3, - 0 - }, - { - 3, - 0 - }, - { - 3, - 0 - }, - { - 3, + 2, 0 }, { @@ -6547,7 +6523,35 @@ local chapter_board = { 0 }, { - 3, + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 2, 0 }, { @@ -6555,15 +6559,11 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { - 3, - 0 - }, - { - 3, + 2, 0 }, { @@ -6623,7 +6623,7 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { @@ -6651,7 +6651,7 @@ local chapter_board = { 0 }, { - 1, + 3, 0 }, { @@ -6691,7 +6691,11 @@ local chapter_board = { 0 }, { - 1, + 3, + 0 + }, + { + 2, 0 }, { @@ -6699,11 +6703,7 @@ local chapter_board = { 0 }, { - 3, - 0 - }, - { - 3, + 2, 0 }, { @@ -6719,7 +6719,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -6727,7 +6727,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -6751,7 +6751,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -6759,7 +6759,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -6783,7 +6783,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -6821,7 +6821,7 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { @@ -6849,7 +6849,7 @@ local chapter_board = { 0 }, { - 1, + 3, 0 }, { @@ -6889,7 +6889,11 @@ local chapter_board = { 0 }, { - 1, + 3, + 0 + }, + { + 2, 0 }, { @@ -6897,11 +6901,7 @@ local chapter_board = { 0 }, { - 3, - 0 - }, - { - 3, + 2, 0 }, { @@ -6917,7 +6917,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -6925,7 +6925,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -6949,7 +6949,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -6957,7 +6957,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -6981,7 +6981,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -7006,11 +7006,11 @@ local chapter_board = { }, { 0, - 1 + 5 }, { 0, - 1 + 5 }, { 0, @@ -7018,7 +7018,7 @@ local chapter_board = { }, { 0, - 3 + 5 }, { 0, @@ -7034,19 +7034,19 @@ local chapter_board = { }, { 0, - 1 + 5 }, { 0, 2 }, { - 3, + 2, 0 }, { 0, - 3 + 2 }, { 0, @@ -7057,7 +7057,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -7065,7 +7065,7 @@ local chapter_board = { 2 }, { - 3, + 2, 0 }, { @@ -7073,23 +7073,23 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { 0, - 5 + 2 }, { - 3, + 2, 0 }, { - 3, + 2, 0 }, { - 3, + 2, 0 }, { @@ -7105,11 +7105,11 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { - 3, + 2, 0 }, { @@ -7153,7 +7153,7 @@ local chapter_board = { 4 }, { - 3, + 2, 0 }, { @@ -7181,7 +7181,7 @@ local chapter_board = { 3 }, { - 3, + 2, 0 }, { @@ -7206,7 +7206,7 @@ local chapter_board = { }, { 0, - 2 + 3 }, { 0, @@ -7405,7 +7405,7 @@ local chapter_board = { 0 }, { - 4, + 0, 2 }, { @@ -7421,7 +7421,7 @@ local chapter_board = { 4 }, { - 4, + 0, 2 }, { @@ -7470,7 +7470,7 @@ local chapter_board = { }, { 0, - 2 + 1 }, { 3, @@ -7502,7 +7502,7 @@ local chapter_board = { }, { 0, - 5 + 1 }, { 3, @@ -7522,20 +7522,20 @@ local chapter_board = { }, { 4, - 2 - }, - { - 4, - 3 - }, - { - 4, - 4 + 5 }, { 4, 5 }, + { + 4, + 5 + }, + { + 4, + 1 + }, { 3, 0 @@ -7603,7 +7603,7 @@ local chapter_board = { 0 }, { - 4, + 0, 2 }, { @@ -7619,7 +7619,7 @@ local chapter_board = { 4 }, { - 4, + 0, 2 }, { @@ -7668,7 +7668,7 @@ local chapter_board = { }, { 0, - 2 + 1 }, { 3, @@ -7700,7 +7700,7 @@ local chapter_board = { }, { 0, - 5 + 1 }, { 3, @@ -7720,20 +7720,20 @@ local chapter_board = { }, { 4, - 2 - }, - { - 4, - 3 - }, - { - 4, - 4 + 5 }, { 4, 5 }, + { + 4, + 5 + }, + { + 4, + 1 + }, { 3, 0 @@ -7804,7 +7804,7 @@ local chapter_board = { }, { 0, - 4 + 2 }, { 0, @@ -7820,7 +7820,7 @@ local chapter_board = { }, { 0, - 2 + 4 }, { 1, @@ -7860,7 +7860,7 @@ local chapter_board = { }, { 0, - 4 + 2 }, { 4, @@ -7876,14 +7876,14 @@ local chapter_board = { }, { 0, - 2 + 4 }, { 1, 0 }, { - 3, + 2, 0 }, { @@ -7896,7 +7896,7 @@ local chapter_board = { }, { 4, - 1 + 3 }, { 3, @@ -7907,7 +7907,7 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { @@ -7967,15 +7967,11 @@ local chapter_board = { 0 }, { - 1, + 3, 0 }, { - 1, - 0 - }, - { - 1, + 2, 0 }, { @@ -7983,15 +7979,19 @@ local chapter_board = { 0 }, { - 1, + 3, 0 }, { - 1, + 3, 0 }, { - 1, + 2, + 0 + }, + { + 3, 0 } } @@ -8004,11 +8004,11 @@ local chapter_board = { }, { 0, - 5 + 1 }, { 0, - 4 + 2 }, { 0, @@ -8016,11 +8016,11 @@ local chapter_board = { }, { 0, - 1 + 4 }, { 0, - 1 + 5 }, { 1, @@ -8119,7 +8119,7 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { @@ -8127,7 +8127,7 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { @@ -8175,15 +8175,15 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, + 3, 0 }, { - 1, + 2, 0 }, { @@ -8202,11 +8202,11 @@ local chapter_board = { }, { 0, - 5 + 1 }, { 0, - 4 + 2 }, { 0, @@ -8214,11 +8214,11 @@ local chapter_board = { }, { 0, - 1 + 4 }, { 0, - 1 + 5 }, { 1, @@ -8317,7 +8317,7 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { @@ -8325,7 +8325,7 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { @@ -8373,15 +8373,15 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, + 3, 0 }, { - 1, + 2, 0 }, { @@ -8406,7 +8406,7 @@ local chapter_board = { }, { 0, - 3 + 4 }, { 0, @@ -8414,7 +8414,7 @@ local chapter_board = { }, { 0, - 2 + 4 }, { 1, @@ -8442,7 +8442,7 @@ local chapter_board = { }, { 0, - 4 + 3 }, { 4, @@ -8470,7 +8470,7 @@ local chapter_board = { }, { 4, - 4 + 2 }, { 3, @@ -8604,7 +8604,7 @@ local chapter_board = { }, { 0, - 3 + 4 }, { 0, @@ -8612,7 +8612,7 @@ local chapter_board = { }, { 0, - 2 + 4 }, { 1, @@ -8640,7 +8640,7 @@ local chapter_board = { }, { 0, - 4 + 3 }, { 4, @@ -8668,7 +8668,7 @@ local chapter_board = { }, { 4, - 4 + 2 }, { 3, @@ -8808,7 +8808,7 @@ local chapter_board = { }, { 0, - 2 + 3 }, { 4, @@ -8840,7 +8840,7 @@ local chapter_board = { }, { 4, - 4 + 2 }, { 9, @@ -8860,7 +8860,7 @@ local chapter_board = { }, { 4, - 2 + 1 }, { 0, @@ -8868,7 +8868,7 @@ local chapter_board = { }, { 4, - 4 + 2 }, { 7, @@ -8888,7 +8888,7 @@ local chapter_board = { }, { 4, - 2 + 1 }, { 4, @@ -8971,15 +8971,15 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { - 1, + 0, 0 }, { - 1, + 0, 0 }, { @@ -9012,15 +9012,15 @@ local chapter_board = { }, { 0, - 2 + 1 }, { 0, - 2 + 1 }, { 0, - 2 + 1 }, { 1, @@ -9210,15 +9210,15 @@ local chapter_board = { }, { 0, - 2 + 1 }, { 0, - 2 + 1 }, { 0, - 2 + 1 }, { 1, @@ -9392,42 +9392,6 @@ local chapter_board = { }, [34]={ ["board"]={ - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 3, - 0 - }, { 3, 0 @@ -9437,8 +9401,8 @@ local chapter_board = { 1 }, { - 3, - 0 + 0, + 1 }, { 3, @@ -9457,19 +9421,27 @@ local chapter_board = { 0 }, { - 3, + 0, + 1 + }, + { + 2, 0 }, { - 7, + 2, 0 }, { - 3, + 0, + 1 + }, + { + 2, 0 }, { - 3, + 2, 0 }, { @@ -9481,11 +9453,39 @@ local chapter_board = { 1 }, { - 3, + 2, 0 }, { - 7, + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 2, 0 }, { @@ -9493,7 +9493,47 @@ local chapter_board = { 0 }, { - 7, + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 1, 0 }, { @@ -9505,7 +9545,7 @@ local chapter_board = { 1 }, { - 1, + 2, 0 }, { @@ -9517,7 +9557,15 @@ local chapter_board = { 0 }, { - 7, + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, 0 }, { @@ -9528,60 +9576,12 @@ local chapter_board = { 0, 1 }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, { 3, 0 }, { - 0, - 1 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 1, - 0 - }, - { - 1, + 3, 0 }, { @@ -10031,8 +10031,8 @@ local chapter_board = { 4 }, { - 0, - 4 + 2, + 0 }, { 0, @@ -10056,7 +10056,7 @@ local chapter_board = { }, { 0, - 3 + 4 }, { 0, @@ -10849,8 +10849,8 @@ local chapter_board = { 0 }, { - 13, - 1 + 2, + 0 }, { 2, @@ -10877,8 +10877,8 @@ local chapter_board = { 0 }, { - 13, - 2 + 2, + 0 }, { 2, @@ -10890,23 +10890,23 @@ local chapter_board = { }, { 0, - 1 + 3 }, { 0, - 1 + 3 }, { 0, - 1 + 3 }, { 14, 0 }, { - 13, - 3 + 2, + 0 }, { 2, @@ -10933,8 +10933,8 @@ local chapter_board = { 0 }, { - 13, - 4 + 2, + 0 }, { 2, @@ -10988,74 +10988,74 @@ local chapter_board = { }, [40]={ ["board"]={ - { - 0, - 3 - }, - { - 0, - 4 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 - }, - { - 3, - 0 - }, - { - 1, - 0 - }, { 0, 5 }, - { - 0, - 3 - }, - { - 0, - 4 - }, - { - 0, - 1 - }, - { - 0, - 3 - }, - { - 3, - 0 - }, - { - 3, - 0 - }, { 0, 2 }, { 0, - 5 + 1 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 3, + 0 + }, + { + 3, + 0 }, { 0, 5 }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 0, + 5 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, { 0, 4 @@ -11074,7 +11074,7 @@ local chapter_board = { }, { 0, - 2 + 5 }, { 0, @@ -11082,11 +11082,11 @@ local chapter_board = { }, { 0, - 2 + 1 }, { - 1, - 0 + 0, + 4 }, { 0, @@ -11100,10 +11100,6 @@ local chapter_board = { 3, 0 }, - { - 3, - 0 - }, { 2, 0 @@ -11121,7 +11117,11 @@ local chapter_board = { 0 }, { - 3, + 2, + 0 + }, + { + 2, 0 }, { @@ -11132,38 +11132,14 @@ local chapter_board = { 1, 0 }, + { + 13, + 2 + }, { 13, 1 }, - { - 13, - 2 - }, - { - 13, - 3 - }, - { - 13, - 4 - }, - { - 13, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 13, - 5 - }, { 13, 4 @@ -11172,6 +11148,18 @@ local chapter_board = { 13, 3 }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, { 13, 2 @@ -11180,79 +11168,35 @@ local chapter_board = { 13, 1 }, + { + 13, + 4 + }, + { + 13, + 3 + }, + { + 2, + 0 + }, { 1, 0 } }, ["mystery_box_board"]={ - { - 0, - 3 - }, - { - 0, - 4 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 - }, - { - 3, - 0 - }, - { - 1, - 0 - }, { 0, 5 }, - { - 0, - 3 - }, - { - 0, - 4 - }, - { - 0, - 1 - }, - { - 0, - 3 - }, - { - 3, - 0 - }, - { - 3, - 0 - }, { 0, 2 }, { 0, - 5 - }, - { - 0, - 5 + 1 }, { 0, @@ -11267,12 +11211,12 @@ local chapter_board = { 0 }, { - 14, + 3, 0 }, { 0, - 2 + 5 }, { 0, @@ -11280,11 +11224,11 @@ local chapter_board = { }, { 0, - 2 + 1 }, { - 1, - 0 + 0, + 4 }, { 0, @@ -11299,28 +11243,24 @@ local chapter_board = { 0 }, { - 3, - 0 + 0, + 5 }, { - 2, - 0 + 0, + 2 }, { - 2, - 0 + 0, + 1 }, { - 2, - 0 + 0, + 4 }, { - 2, - 0 - }, - { - 3, - 0 + 0, + 3 }, { 3, @@ -11331,16 +11271,72 @@ local chapter_board = { 0 }, { - 13, + 0, + 5 + }, + { + 0, + 2 + }, + { + 0, 1 }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, { 13, 2 }, { 13, - 3 + 1 }, { 13, @@ -11348,7 +11344,11 @@ local chapter_board = { }, { 13, - 5 + 3 + }, + { + 2, + 0 }, { 1, @@ -11360,7 +11360,11 @@ local chapter_board = { }, { 13, - 5 + 2 + }, + { + 13, + 1 }, { 13, @@ -11371,12 +11375,8 @@ local chapter_board = { 3 }, { - 13, - 2 - }, - { - 13, - 1 + 2, + 0 }, { 1, @@ -11392,7 +11392,7 @@ local chapter_board = { }, { 0, - 4 + 1 }, { 0, @@ -11400,16 +11400,16 @@ local chapter_board = { }, { 0, - 4 - }, - { - 0, - 4 + 1 }, { 0, 3 }, + { + 0, + 1 + }, { 1, 0 @@ -11428,7 +11428,7 @@ local chapter_board = { }, { 0, - 1 + 3 }, { 0, @@ -11478,70 +11478,6 @@ local chapter_board = { 2, 0 }, - { - 13, - 1 - }, - { - 2, - 0 - }, - { - 13, - 2 - }, - { - 2, - 0 - }, - { - 2, - 0 - }, - { - 2, - 0 - }, - { - 13, - 3 - }, - { - 2, - 0 - }, - { - 2, - 0 - }, - { - 2, - 0 - }, - { - 13, - 3 - }, - { - 2, - 0 - }, - { - 13, - 2 - }, - { - 2, - 0 - }, - { - 13, - 4 - }, - { - 2, - 0 - }, { 13, 5 @@ -11552,7 +11488,71 @@ local chapter_board = { }, { 13, - 4 + 5 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 13, + 5 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 13, + 5 + }, + { + 2, + 0 + }, + { + 13, + 2 + }, + { + 2, + 0 + }, + { + 13, + 2 + }, + { + 2, + 0 + }, + { + 13, + 2 + }, + { + 2, + 0 + }, + { + 13, + 2 }, { 1, @@ -11590,7 +11590,7 @@ local chapter_board = { }, { 0, - 4 + 1 }, { 0, @@ -11598,16 +11598,16 @@ local chapter_board = { }, { 0, - 4 - }, - { - 0, - 4 + 1 }, { 0, 3 }, + { + 0, + 1 + }, { 1, 0 @@ -11626,7 +11626,7 @@ local chapter_board = { }, { 0, - 1 + 3 }, { 0, @@ -11676,70 +11676,6 @@ local chapter_board = { 2, 0 }, - { - 13, - 1 - }, - { - 2, - 0 - }, - { - 13, - 2 - }, - { - 2, - 0 - }, - { - 2, - 0 - }, - { - 2, - 0 - }, - { - 13, - 3 - }, - { - 2, - 0 - }, - { - 2, - 0 - }, - { - 2, - 0 - }, - { - 13, - 3 - }, - { - 2, - 0 - }, - { - 13, - 2 - }, - { - 2, - 0 - }, - { - 13, - 4 - }, - { - 2, - 0 - }, { 13, 5 @@ -11750,14 +11686,78 @@ local chapter_board = { }, { 13, - 4 + 5 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 13, + 5 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 13, + 5 + }, + { + 2, + 0 + }, + { + 13, + 2 + }, + { + 2, + 0 + }, + { + 13, + 2 + }, + { + 2, + 0 + }, + { + 13, + 2 + }, + { + 2, + 0 + }, + { + 13, + 2 }, { 1, 0 }, { - 14, + 2, 0 }, { @@ -11773,7 +11773,7 @@ local chapter_board = { 0 }, { - 14, + 2, 0 }, { @@ -11845,23 +11845,23 @@ local chapter_board = { 0 }, { - 3, + 2, 0 }, { - 3, + 2, 0 }, { - 3, + 2, 0 }, { - 3, + 2, 0 }, { - 3, + 2, 0 }, { @@ -11957,23 +11957,23 @@ local chapter_board = { 0 }, { - 1, + 3, 0 }, { - 1, + 3, 0 }, { - 1, + 3, 0 }, { - 1, + 3, 0 }, { - 1, + 3, 0 }, { diff --git a/lua/app/config/chapter_board_daily_challenge.lua b/lua/app/config/chapter_board_daily_challenge.lua index b6666eb8..7305b572 100644 --- a/lua/app/config/chapter_board_daily_challenge.lua +++ b/lua/app/config/chapter_board_daily_challenge.lua @@ -4359,7 +4359,7 @@ local chapter_board_daily_challenge = { }, { 34, - 0 + 3 }, { 34, diff --git a/lua/app/config/chapter_daily_challenge.lua b/lua/app/config/chapter_daily_challenge.lua index 8d1b14a4..62f228b6 100644 --- a/lua/app/config/chapter_daily_challenge.lua +++ b/lua/app/config/chapter_daily_challenge.lua @@ -55,6 +55,14 @@ local chapter_daily_challenge = { ["id_for_nothing"]="Ug==", ["num"]=1, ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=10, + ["num_for_nothing"]="Vwg=" } }, ["begin_buff_id"]={ @@ -276,6 +284,14 @@ local chapter_daily_challenge = { ["id_for_nothing"]="Ug==", ["num"]=1, ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=10, + ["num_for_nothing"]="Vwg=" } }, ["begin_buff_id"]={ @@ -497,6 +513,14 @@ local chapter_daily_challenge = { ["id_for_nothing"]="Ug==", ["num"]=1, ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=10, + ["num_for_nothing"]="Vwg=" } }, ["begin_buff_id"]={ @@ -718,6 +742,14 @@ local chapter_daily_challenge = { ["id_for_nothing"]="Ug==", ["num"]=1, ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=10, + ["num_for_nothing"]="Vwg=" } }, ["begin_buff_id"]={ @@ -939,6 +971,14 @@ local chapter_daily_challenge = { ["id_for_nothing"]="Ug==", ["num"]=1, ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=10, + ["num_for_nothing"]="Vwg=" } }, ["begin_buff_id"]={ @@ -1160,6 +1200,14 @@ local chapter_daily_challenge = { ["id_for_nothing"]="Ug==", ["num"]=1, ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=10, + ["num_for_nothing"]="Vwg=" } }, ["begin_buff_id"]={ @@ -1381,6 +1429,14 @@ local chapter_daily_challenge = { ["id_for_nothing"]="Ug==", ["num"]=1, ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=10, + ["num_for_nothing"]="Vwg=" } }, ["begin_buff_id"]={ diff --git a/lua/app/config/chapter_dungeon_equip.lua b/lua/app/config/chapter_dungeon_equip.lua index 8c741473..b9b2b4ab 100644 --- a/lua/app/config/chapter_dungeon_equip.lua +++ b/lua/app/config/chapter_dungeon_equip.lua @@ -8,11 +8,7 @@ local chapter_dungeon_equip = { 1 }, ["monster"]={ - 106, - 206, - 306, - 406, - 506 + 101, }, ["first_reward"]={ ["type"]=1, @@ -30,6 +26,14 @@ local chapter_dungeon_equip = { ["id_for_nothing"]="Vw==", ["num"]=500, ["num_for_nothing"]="Uwhc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, ["rand_drop"]={ @@ -73,11 +77,7 @@ local chapter_dungeon_equip = { 2 }, ["monster"]={ - 606, - 706, - 806, - 906, - 1006 + 101, }, ["first_reward"]={ ["type"]=1, @@ -95,6 +95,14 @@ local chapter_dungeon_equip = { ["id_for_nothing"]="Vw==", ["num"]=500, ["num_for_nothing"]="Uwhc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, ["rand_drop"]={ @@ -138,11 +146,7 @@ local chapter_dungeon_equip = { 3 }, ["monster"]={ - 1106, - 1206, - 1306, - 1406, - 1506 + 101, }, ["first_reward"]={ ["type"]=1, @@ -160,6 +164,14 @@ local chapter_dungeon_equip = { ["id_for_nothing"]="Vw==", ["num"]=600, ["num_for_nothing"]="UAhc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, ["rand_drop"]={ @@ -217,11 +229,7 @@ local chapter_dungeon_equip = { 4 }, ["monster"]={ - 1606, - 1706, - 1806, - 1906, - 2006 + 101, }, ["first_reward"]={ ["type"]=1, @@ -239,6 +247,14 @@ local chapter_dungeon_equip = { ["id_for_nothing"]="Vw==", ["num"]=600, ["num_for_nothing"]="UAhc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, ["rand_drop"]={ @@ -318,6 +334,14 @@ local chapter_dungeon_equip = { ["id_for_nothing"]="Vw==", ["num"]=700, ["num_for_nothing"]="UQhc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, ["rand_drop"]={ @@ -397,6 +421,14 @@ local chapter_dungeon_equip = { ["id_for_nothing"]="Vw==", ["num"]=700, ["num_for_nothing"]="UQhc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, ["rand_drop"]={ @@ -490,6 +522,14 @@ local chapter_dungeon_equip = { ["id_for_nothing"]="Vw==", ["num"]=800, ["num_for_nothing"]="Xghc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, ["rand_drop"]={ @@ -583,6 +623,14 @@ local chapter_dungeon_equip = { ["id_for_nothing"]="Vw==", ["num"]=800, ["num_for_nothing"]="Xghc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, ["rand_drop"]={ @@ -662,6 +710,14 @@ local chapter_dungeon_equip = { ["id_for_nothing"]="Vw==", ["num"]=900, ["num_for_nothing"]="Xwhc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, ["rand_drop"]={ @@ -747,6 +803,14 @@ local chapter_dungeon_equip = { ["id_for_nothing"]="Vw==", ["num"]=900, ["num_for_nothing"]="Xwhc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, ["rand_drop"]={ @@ -840,6 +904,14 @@ local chapter_dungeon_equip = { ["id_for_nothing"]="Vw==", ["num"]=1000, ["num_for_nothing"]="VwhcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, ["rand_drop"]={ @@ -919,6 +991,14 @@ local chapter_dungeon_equip = { ["id_for_nothing"]="Vw==", ["num"]=1000, ["num_for_nothing"]="VwhcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, ["rand_drop"]={ @@ -1012,6 +1092,14 @@ local chapter_dungeon_equip = { ["id_for_nothing"]="Vw==", ["num"]=1100, ["num_for_nothing"]="VwlcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, ["rand_drop"]={ @@ -1105,6 +1193,14 @@ local chapter_dungeon_equip = { ["id_for_nothing"]="Vw==", ["num"]=1100, ["num_for_nothing"]="VwlcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, ["rand_drop"]={ @@ -1184,6 +1280,14 @@ local chapter_dungeon_equip = { ["id_for_nothing"]="Vw==", ["num"]=1200, ["num_for_nothing"]="VwpcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, ["rand_drop"]={ @@ -1277,6 +1381,14 @@ local chapter_dungeon_equip = { ["id_for_nothing"]="Vw==", ["num"]=1200, ["num_for_nothing"]="VwpcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, ["rand_drop"]={ @@ -1370,6 +1482,14 @@ local chapter_dungeon_equip = { ["id_for_nothing"]="Vw==", ["num"]=1300, ["num_for_nothing"]="VwtcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, ["rand_drop"]={ @@ -1463,6 +1583,14 @@ local chapter_dungeon_equip = { ["id_for_nothing"]="Vw==", ["num"]=1300, ["num_for_nothing"]="VwtcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, ["rand_drop"]={ @@ -1556,6 +1684,14 @@ local chapter_dungeon_equip = { ["id_for_nothing"]="Vw==", ["num"]=1400, ["num_for_nothing"]="VwxcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, ["rand_drop"]={ @@ -1649,6 +1785,14 @@ local chapter_dungeon_equip = { ["id_for_nothing"]="Vw==", ["num"]=1400, ["num_for_nothing"]="VwxcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, ["rand_drop"]={ diff --git a/lua/app/config/chapter_dungeon_gold.lua b/lua/app/config/chapter_dungeon_gold.lua index 9e25a2fc..29bbebf9 100644 --- a/lua/app/config/chapter_dungeon_gold.lua +++ b/lua/app/config/chapter_dungeon_gold.lua @@ -33,6 +33,14 @@ local chapter_dungeon_gold = { ["ratio"]=10000, ["round"]=999 } + }, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, [2]={ @@ -69,6 +77,14 @@ local chapter_dungeon_gold = { ["ratio"]=10000, ["round"]=999 } + }, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, [3]={ @@ -105,6 +121,14 @@ local chapter_dungeon_gold = { ["ratio"]=10000, ["round"]=999 } + }, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, [4]={ @@ -141,6 +165,14 @@ local chapter_dungeon_gold = { ["ratio"]=10000, ["round"]=999 } + }, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, [5]={ @@ -177,6 +209,14 @@ local chapter_dungeon_gold = { ["ratio"]=10000, ["round"]=999 } + }, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, [6]={ @@ -213,6 +253,14 @@ local chapter_dungeon_gold = { ["ratio"]=10000, ["round"]=999 } + }, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, [7]={ @@ -249,6 +297,14 @@ local chapter_dungeon_gold = { ["ratio"]=10000, ["round"]=999 } + }, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, [8]={ @@ -285,6 +341,14 @@ local chapter_dungeon_gold = { ["ratio"]=10000, ["round"]=999 } + }, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, [9]={ @@ -321,6 +385,14 @@ local chapter_dungeon_gold = { ["ratio"]=10000, ["round"]=999 } + }, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, [10]={ @@ -357,6 +429,14 @@ local chapter_dungeon_gold = { ["ratio"]=10000, ["round"]=999 } + }, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, [11]={ @@ -393,6 +473,14 @@ local chapter_dungeon_gold = { ["ratio"]=10000, ["round"]=999 } + }, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, [12]={ @@ -429,6 +517,14 @@ local chapter_dungeon_gold = { ["ratio"]=10000, ["round"]=999 } + }, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, [13]={ @@ -465,6 +561,14 @@ local chapter_dungeon_gold = { ["ratio"]=10000, ["round"]=999 } + }, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, [14]={ @@ -501,6 +605,14 @@ local chapter_dungeon_gold = { ["ratio"]=10000, ["round"]=999 } + }, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, [15]={ @@ -537,6 +649,14 @@ local chapter_dungeon_gold = { ["ratio"]=10000, ["round"]=999 } + }, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } } } diff --git a/lua/app/config/chapter_dungeon_shards.lua b/lua/app/config/chapter_dungeon_shards.lua index f17ad20f..d2b5a073 100644 --- a/lua/app/config/chapter_dungeon_shards.lua +++ b/lua/app/config/chapter_dungeon_shards.lua @@ -362,7 +362,15 @@ local chapter_dungeon_shards = { ["weight"]=400 } }, - ["times_d"]=3 + ["times_d"]=3, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + } }, [2]={ ["scene"]="bg_debris", @@ -727,7 +735,15 @@ local chapter_dungeon_shards = { ["weight"]=500 } }, - ["times_d"]=5 + ["times_d"]=5, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + } }, [3]={ ["scene"]="bg_debris", @@ -1092,7 +1108,15 @@ local chapter_dungeon_shards = { ["weight"]=500 } }, - ["times_d"]=2 + ["times_d"]=2, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + } }, [4]={ ["scene"]="bg_debris", @@ -1457,7 +1481,15 @@ local chapter_dungeon_shards = { ["weight"]=500 } }, - ["times_d"]=4 + ["times_d"]=4, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + } }, [5]={ ["scene"]="bg_debris", @@ -1822,7 +1854,15 @@ local chapter_dungeon_shards = { ["weight"]=550 } }, - ["times_d"]=6 + ["times_d"]=6, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + } }, [6]={ ["scene"]="bg_debris", @@ -2187,7 +2227,15 @@ local chapter_dungeon_shards = { ["weight"]=600 } }, - ["times_d"]=3 + ["times_d"]=3, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + } }, [7]={ ["scene"]="bg_debris", @@ -2552,7 +2600,15 @@ local chapter_dungeon_shards = { ["weight"]=600 } }, - ["times_d"]=5 + ["times_d"]=5, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + } }, [8]={ ["scene"]="bg_debris", @@ -2977,7 +3033,15 @@ local chapter_dungeon_shards = { ["weight"]=5 } }, - ["times_d"]=7 + ["times_d"]=7, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + } }, [9]={ ["scene"]="bg_debris", @@ -3402,7 +3466,15 @@ local chapter_dungeon_shards = { ["weight"]=8 } }, - ["times_d"]=4 + ["times_d"]=4, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + } }, [10]={ ["scene"]="bg_debris", @@ -3827,7 +3899,15 @@ local chapter_dungeon_shards = { ["weight"]=10 } }, - ["times_d"]=6 + ["times_d"]=6, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + } }, [11]={ ["scene"]="bg_debris", @@ -4252,7 +4332,15 @@ local chapter_dungeon_shards = { ["weight"]=10 } }, - ["times_d"]=8 + ["times_d"]=8, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + } }, [12]={ ["scene"]="bg_debris", @@ -4677,7 +4765,15 @@ local chapter_dungeon_shards = { ["weight"]=20 } }, - ["times_d"]=5 + ["times_d"]=5, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + } }, [13]={ ["scene"]="bg_debris", @@ -5102,7 +5198,15 @@ local chapter_dungeon_shards = { ["weight"]=18 } }, - ["times_d"]=7 + ["times_d"]=7, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + } }, [14]={ ["scene"]="bg_debris", @@ -5527,7 +5631,15 @@ local chapter_dungeon_shards = { ["weight"]=35 } }, - ["times_d"]=4 + ["times_d"]=4, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + } }, [15]={ ["scene"]="bg_debris", @@ -5952,7 +6064,15 @@ local chapter_dungeon_shards = { ["weight"]=30 } }, - ["times_d"]=6 + ["times_d"]=6, + ["exp_reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=12, + ["id_for_nothing"]="Vwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + } } } local config = { diff --git a/lua/app/config/const.lua b/lua/app/config/const.lua index 86e757f4..55d66aae 100644 --- a/lua/app/config/const.lua +++ b/lua/app/config/const.lua @@ -339,7 +339,7 @@ local const = { ["value"]=2 }, ["dungeon_equip_limit"]={ - ["value"]=3 + ["value"]=8 }, ["dungeon_armor_limit"]={ ["reward"]={ @@ -350,9 +350,19 @@ local const = { ["num"]=5, ["num_for_nothing"]="Uw==" } + }, + ["dungeon_equip_cost"]={ + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=3, + ["id_for_nothing"]="VQ==", + ["num"]=5, + ["num_for_nothing"]="Uw==" + } } } local config = { -data=const,count=73 +data=const,count=74 } return config \ No newline at end of file diff --git a/lua/app/config/mall_daily.lua b/lua/app/config/mall_daily.lua index 15eba596..06037913 100644 --- a/lua/app/config/mall_daily.lua +++ b/lua/app/config/mall_daily.lua @@ -1420,6 +1420,86 @@ local mall_daily = { ["id_for_nothing"]="UwtcA2c=", ["num"]=6, ["num_for_nothing"]="UA==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=14001, + ["id_for_nothing"]="VwxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=14002, + ["id_for_nothing"]="VwxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=24001, + ["id_for_nothing"]="VAxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=24002, + ["id_for_nothing"]="VAxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=34001, + ["id_for_nothing"]="VQxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=34002, + ["id_for_nothing"]="VQxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=44001, + ["id_for_nothing"]="UgxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=44002, + ["id_for_nothing"]="UgxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=54001, + ["id_for_nothing"]="UwxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=54002, + ["id_for_nothing"]="UwxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" } }, ["weight"]={ @@ -1467,7 +1547,17 @@ local mall_daily = { 5, 5, 5, - 5 + 5, + 32, + 32, + 32, + 32, + 32, + 32, + 32, + 32, + 32, + 32 }, ["cost"]={ { @@ -1829,6 +1919,86 @@ local mall_daily = { ["id_for_nothing"]="VA==", ["num"]=30, ["num_for_nothing"]="VQg=" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" } } }, @@ -2193,6 +2363,86 @@ local mall_daily = { ["id_for_nothing"]="UwtcA2c=", ["num"]=6, ["num_for_nothing"]="UA==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=14001, + ["id_for_nothing"]="VwxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=14002, + ["id_for_nothing"]="VwxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=24001, + ["id_for_nothing"]="VAxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=24002, + ["id_for_nothing"]="VAxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=34001, + ["id_for_nothing"]="VQxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=34002, + ["id_for_nothing"]="VQxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=44001, + ["id_for_nothing"]="UgxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=44002, + ["id_for_nothing"]="UgxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=54001, + ["id_for_nothing"]="UwxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=54002, + ["id_for_nothing"]="UwxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" } }, ["weight"]={ @@ -2240,7 +2490,17 @@ local mall_daily = { 5, 5, 5, - 5 + 5, + 32, + 32, + 32, + 32, + 32, + 32, + 32, + 32, + 32, + 32 }, ["cost"]={ { @@ -2602,6 +2862,86 @@ local mall_daily = { ["id_for_nothing"]="VA==", ["num"]=30, ["num_for_nothing"]="VQg=" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" } } }, @@ -2966,6 +3306,86 @@ local mall_daily = { ["id_for_nothing"]="UwtcA2c=", ["num"]=6, ["num_for_nothing"]="UA==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=14001, + ["id_for_nothing"]="VwxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=14002, + ["id_for_nothing"]="VwxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=24001, + ["id_for_nothing"]="VAxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=24002, + ["id_for_nothing"]="VAxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=34001, + ["id_for_nothing"]="VQxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=34002, + ["id_for_nothing"]="VQxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=44001, + ["id_for_nothing"]="UgxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=44002, + ["id_for_nothing"]="UgxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=54001, + ["id_for_nothing"]="UwxcA2Q=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=54002, + ["id_for_nothing"]="UwxcA2c=", + ["num"]=1, + ["num_for_nothing"]="Vw==" } }, ["weight"]={ @@ -3013,7 +3433,17 @@ local mall_daily = { 5, 5, 5, - 5 + 5, + 32, + 32, + 32, + 32, + 32, + 32, + 32, + 32, + 32, + 32 }, ["cost"]={ { @@ -3375,6 +3805,86 @@ local mall_daily = { ["id_for_nothing"]="VA==", ["num"]=30, ["num_for_nothing"]="VQg=" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=180, + ["num_for_nothing"]="VwBc" } } } diff --git a/lua/app/config/monster_chapter.lua b/lua/app/config/monster_chapter.lua index 473c3cc6..3db99c9b 100644 --- a/lua/app/config/monster_chapter.lua +++ b/lua/app/config/monster_chapter.lua @@ -25,7 +25,7 @@ local monster_chapter = { }, [301]={ ["monster_base"]=10003, - ["hp"]=36000000, + ["hp"]=33000000, ["atk"]=600000, ["atk_times"]=2, ["hurt_skill"]={ @@ -66,7 +66,7 @@ local monster_chapter = { [601]={ ["monster_base"]=10008, ["hp"]=24000000, - ["atk"]=750000, + ["atk"]=600000, ["atk_times"]=2, ["hurt_skill"]={ 20022, @@ -78,7 +78,7 @@ local monster_chapter = { [701]={ ["monster_base"]=10004, ["hp"]=24000000, - ["atk"]=750000, + ["atk"]=600000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -90,7 +90,7 @@ local monster_chapter = { [801]={ ["monster_base"]=10001, ["hp"]=30000000, - ["atk"]=750000, + ["atk"]=600000, ["atk_times"]=2, ["hurt_skill"]={ 20001, @@ -102,7 +102,7 @@ local monster_chapter = { [901]={ ["monster_base"]=10007, ["hp"]=36000000, - ["atk"]=840000, + ["atk"]=670000, ["atk_times"]=2, ["hurt_skill"]={ 20019, @@ -115,7 +115,7 @@ local monster_chapter = { ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=60000000, - ["atk"]=1020000, + ["atk"]=820000, ["atk_times"]=3, ["hurt_skill"]={ 30040, @@ -130,7 +130,7 @@ local monster_chapter = { [1101]={ ["monster_base"]=10006, ["hp"]=45000000, - ["atk"]=900000, + ["atk"]=720000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -142,7 +142,7 @@ local monster_chapter = { [1201]={ ["monster_base"]=10007, ["hp"]=51000000, - ["atk"]=930000, + ["atk"]=740000, ["atk_times"]=2, ["hurt_skill"]={ 20019, @@ -154,7 +154,7 @@ local monster_chapter = { [1301]={ ["monster_base"]=10002, ["hp"]=60000000, - ["atk"]=960000, + ["atk"]=770000, ["atk_times"]=2, ["hurt_skill"]={ 20004, @@ -166,7 +166,7 @@ local monster_chapter = { [1401]={ ["monster_base"]=10005, ["hp"]=66000000, - ["atk"]=990000, + ["atk"]=790000, ["atk_times"]=2, ["hurt_skill"]={ 20013, @@ -179,7 +179,7 @@ local monster_chapter = { ["monster_base"]=20015, ["is_boss"]=2, ["hp"]=108000000, - ["atk"]=1140000, + ["atk"]=910000, ["atk_times"]=3, ["hurt_skill"]={ 30043, @@ -197,7 +197,7 @@ local monster_chapter = { [1601]={ ["monster_base"]=10009, ["hp"]=18000000, - ["atk"]=750000, + ["atk"]=630000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -209,7 +209,7 @@ local monster_chapter = { [1701]={ ["monster_base"]=10001, ["hp"]=24000000, - ["atk"]=750000, + ["atk"]=630000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -221,7 +221,7 @@ local monster_chapter = { [1801]={ ["monster_base"]=10038, ["hp"]=33000000, - ["atk"]=750000, + ["atk"]=630000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -233,7 +233,7 @@ local monster_chapter = { [1901]={ ["monster_base"]=10007, ["hp"]=42000000, - ["atk"]=840000, + ["atk"]=710000, ["atk_times"]=3, ["hurt_skill"]={ 20019, @@ -246,7 +246,7 @@ local monster_chapter = { ["monster_base"]=20004, ["is_boss"]=1, ["hp"]=60000000, - ["atk"]=1020000, + ["atk"]=860000, ["atk_times"]=4, ["hurt_skill"]={ 30010, @@ -261,7 +261,7 @@ local monster_chapter = { [2101]={ ["monster_base"]=10038, ["hp"]=45000000, - ["atk"]=900000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -273,7 +273,7 @@ local monster_chapter = { [2201]={ ["monster_base"]=10007, ["hp"]=54000000, - ["atk"]=930000, + ["atk"]=780000, ["atk_times"]=3, ["hurt_skill"]={ 20019, @@ -285,7 +285,7 @@ local monster_chapter = { [2301]={ ["monster_base"]=10010, ["hp"]=60000000, - ["atk"]=960000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -297,7 +297,7 @@ local monster_chapter = { [2401]={ ["monster_base"]=10001, ["hp"]=66000000, - ["atk"]=1020000, + ["atk"]=860000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -310,7 +310,7 @@ local monster_chapter = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=117000000, - ["atk"]=1170000, + ["atk"]=980000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -328,7 +328,7 @@ local monster_chapter = { [2601]={ ["monster_base"]=10039, ["hp"]=60000000, - ["atk"]=990000, + ["atk"]=830000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -340,7 +340,7 @@ local monster_chapter = { [2701]={ ["monster_base"]=10002, ["hp"]=72000000, - ["atk"]=1020000, + ["atk"]=860000, ["atk_times"]=3, ["hurt_skill"]={ 20004, @@ -352,7 +352,7 @@ local monster_chapter = { [2801]={ ["monster_base"]=10001, ["hp"]=81000000, - ["atk"]=1050000, + ["atk"]=880000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -364,7 +364,7 @@ local monster_chapter = { [2901]={ ["monster_base"]=10009, ["hp"]=90000000, - ["atk"]=1080000, + ["atk"]=910000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -377,7 +377,7 @@ local monster_chapter = { ["monster_base"]=20012, ["is_boss"]=2, ["hp"]=138000000, - ["atk"]=1260000, + ["atk"]=1060000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -392,7 +392,7 @@ local monster_chapter = { [3101]={ ["monster_base"]=10010, ["hp"]=24000000, - ["atk"]=750000, + ["atk"]=660000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -404,7 +404,7 @@ local monster_chapter = { [3201]={ ["monster_base"]=10039, ["hp"]=33000000, - ["atk"]=810000, + ["atk"]=710000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -416,7 +416,7 @@ local monster_chapter = { [3301]={ ["monster_base"]=10040, ["hp"]=36000000, - ["atk"]=870000, + ["atk"]=770000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -428,7 +428,7 @@ local monster_chapter = { [3401]={ ["monster_base"]=10038, ["hp"]=45000000, - ["atk"]=930000, + ["atk"]=820000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -441,7 +441,7 @@ local monster_chapter = { ["monster_base"]=20011, ["is_boss"]=1, ["hp"]=69000000, - ["atk"]=1110000, + ["atk"]=980000, ["atk_times"]=4, ["hurt_skill"]={ 30031, @@ -456,7 +456,7 @@ local monster_chapter = { [3601]={ ["monster_base"]=10009, ["hp"]=45000000, - ["atk"]=930000, + ["atk"]=820000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -468,7 +468,7 @@ local monster_chapter = { [3701]={ ["monster_base"]=10010, ["hp"]=51000000, - ["atk"]=990000, + ["atk"]=870000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -480,7 +480,7 @@ local monster_chapter = { [3801]={ ["monster_base"]=10038, ["hp"]=60000000, - ["atk"]=990000, + ["atk"]=870000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -492,7 +492,7 @@ local monster_chapter = { [3901]={ ["monster_base"]=10040, ["hp"]=66000000, - ["atk"]=1050000, + ["atk"]=920000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -505,7 +505,7 @@ local monster_chapter = { ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=126000000, - ["atk"]=1200000, + ["atk"]=1060000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -520,7 +520,7 @@ local monster_chapter = { [4101]={ ["monster_base"]=10039, ["hp"]=69000000, - ["atk"]=1050000, + ["atk"]=920000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -532,7 +532,7 @@ local monster_chapter = { [4201]={ ["monster_base"]=10040, ["hp"]=84000000, - ["atk"]=1110000, + ["atk"]=980000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -544,7 +544,7 @@ local monster_chapter = { [4301]={ ["monster_base"]=10038, ["hp"]=93000000, - ["atk"]=1170000, + ["atk"]=1030000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -556,7 +556,7 @@ local monster_chapter = { [4401]={ ["monster_base"]=10009, ["hp"]=105000000, - ["atk"]=1230000, + ["atk"]=1080000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -569,7 +569,7 @@ local monster_chapter = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=156000000, - ["atk"]=1320000, + ["atk"]=1160000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -587,7 +587,7 @@ local monster_chapter = { [4601]={ ["monster_base"]=10040, ["hp"]=120000000, - ["atk"]=1290000, + ["atk"]=1140000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -599,7 +599,7 @@ local monster_chapter = { [4701]={ ["monster_base"]=10009, ["hp"]=132000000, - ["atk"]=1350000, + ["atk"]=1190000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -611,7 +611,7 @@ local monster_chapter = { [4801]={ ["monster_base"]=10038, ["hp"]=150000000, - ["atk"]=1410000, + ["atk"]=1240000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -623,7 +623,7 @@ local monster_chapter = { [4901]={ ["monster_base"]=10039, ["hp"]=162000000, - ["atk"]=1470000, + ["atk"]=1290000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -636,7 +636,7 @@ local monster_chapter = { ["monster_base"]=20029, ["is_boss"]=2, ["hp"]=270000000, - ["atk"]=2010000, + ["atk"]=1770000, ["atk_times"]=4, ["hurt_skill"]={ 30085, @@ -651,7 +651,7 @@ local monster_chapter = { [5101]={ ["monster_base"]=10016, ["hp"]=25500000, - ["atk"]=1050000, + ["atk"]=900000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -663,7 +663,7 @@ local monster_chapter = { [5201]={ ["monster_base"]=10002, ["hp"]=36000000, - ["atk"]=1110000, + ["atk"]=950000, ["atk_times"]=3, ["hurt_skill"]={ 20004, @@ -675,7 +675,7 @@ local monster_chapter = { [5301]={ ["monster_base"]=10003, ["hp"]=40500000, - ["atk"]=1170000, + ["atk"]=1000000, ["atk_times"]=3, ["hurt_skill"]={ 20007, @@ -687,7 +687,7 @@ local monster_chapter = { [5401]={ ["monster_base"]=10019, ["hp"]=54000000, - ["atk"]=1230000, + ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -700,7 +700,7 @@ local monster_chapter = { ["monster_base"]=20002, ["is_boss"]=1, ["hp"]=75000000, - ["atk"]=1410000, + ["atk"]=1210000, ["atk_times"]=4, ["hurt_skill"]={ 30004, @@ -715,7 +715,7 @@ local monster_chapter = { [5601]={ ["monster_base"]=10007, ["hp"]=51000000, - ["atk"]=1290000, + ["atk"]=1110000, ["atk_times"]=3, ["hurt_skill"]={ 20019, @@ -727,7 +727,7 @@ local monster_chapter = { [5701]={ ["monster_base"]=10017, ["hp"]=57000000, - ["atk"]=1470000, + ["atk"]=1260000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -739,7 +739,7 @@ local monster_chapter = { [5801]={ ["monster_base"]=10004, ["hp"]=66000000, - ["atk"]=1350000, + ["atk"]=1160000, ["atk_times"]=3, ["hurt_skill"]={ 20010, @@ -751,7 +751,7 @@ local monster_chapter = { [5901]={ ["monster_base"]=10018, ["hp"]=75000000, - ["atk"]=1530000, + ["atk"]=1310000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -764,7 +764,7 @@ local monster_chapter = { ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=156000000, - ["atk"]=1710000, + ["atk"]=1470000, ["atk_times"]=4, ["hurt_skill"]={ 30040, @@ -782,7 +782,7 @@ local monster_chapter = { [6101]={ ["monster_base"]=10019, ["hp"]=90000000, - ["atk"]=1590000, + ["atk"]=1360000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -794,7 +794,7 @@ local monster_chapter = { [6201]={ ["monster_base"]=10008, ["hp"]=102000000, - ["atk"]=1650000, + ["atk"]=1410000, ["atk_times"]=3, ["hurt_skill"]={ 20022, @@ -806,7 +806,7 @@ local monster_chapter = { [6301]={ ["monster_base"]=10016, ["hp"]=108000000, - ["atk"]=1710000, + ["atk"]=1470000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -818,7 +818,7 @@ local monster_chapter = { [6401]={ ["monster_base"]=10003, ["hp"]=117000000, - ["atk"]=1770000, + ["atk"]=1520000, ["atk_times"]=3, ["hurt_skill"]={ 20007, @@ -831,7 +831,7 @@ local monster_chapter = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=213000000, - ["atk"]=1770000, + ["atk"]=1520000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -849,7 +849,7 @@ local monster_chapter = { [6601]={ ["monster_base"]=10018, ["hp"]=141000000, - ["atk"]=1830000, + ["atk"]=1570000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -861,7 +861,7 @@ local monster_chapter = { [6701]={ ["monster_base"]=10004, ["hp"]=150000000, - ["atk"]=1890000, + ["atk"]=1620000, ["atk_times"]=3, ["hurt_skill"]={ 20010, @@ -873,7 +873,7 @@ local monster_chapter = { [6801]={ ["monster_base"]=10007, ["hp"]=165000000, - ["atk"]=1950000, + ["atk"]=1670000, ["atk_times"]=3, ["hurt_skill"]={ 20019, @@ -885,7 +885,7 @@ local monster_chapter = { [6901]={ ["monster_base"]=10017, ["hp"]=180000000, - ["atk"]=2010000, + ["atk"]=1720000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -898,7 +898,7 @@ local monster_chapter = { ["monster_base"]=20001, ["is_boss"]=2, ["hp"]=285000000, - ["atk"]=2760000, + ["atk"]=2370000, ["atk_times"]=4, ["hurt_skill"]={ 30001, @@ -913,7 +913,7 @@ local monster_chapter = { [7101]={ ["monster_base"]=10042, ["hp"]=25250000, - ["atk"]=1090000, + ["atk"]=1030000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -925,7 +925,7 @@ local monster_chapter = { [7201]={ ["monster_base"]=10041, ["hp"]=35640000, - ["atk"]=1150000, + ["atk"]=1090000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -937,7 +937,7 @@ local monster_chapter = { [7301]={ ["monster_base"]=10013, ["hp"]=40100000, - ["atk"]=1210000, + ["atk"]=1150000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -949,7 +949,7 @@ local monster_chapter = { [7401]={ ["monster_base"]=10019, ["hp"]=53460000, - ["atk"]=1260000, + ["atk"]=1200000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -962,7 +962,7 @@ local monster_chapter = { ["monster_base"]=20022, ["is_boss"]=1, ["hp"]=74250000, - ["atk"]=1410000, + ["atk"]=1390000, ["atk_times"]=4, ["hurt_skill"]={ 30064, @@ -980,7 +980,7 @@ local monster_chapter = { [7601]={ ["monster_base"]=10001, ["hp"]=55540000, - ["atk"]=1440000, + ["atk"]=1270000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -992,7 +992,7 @@ local monster_chapter = { [7701]={ ["monster_base"]=10005, ["hp"]=62070000, - ["atk"]=1650000, + ["atk"]=1440000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -1004,7 +1004,7 @@ local monster_chapter = { [7801]={ ["monster_base"]=10041, ["hp"]=71870000, - ["atk"]=1500000, + ["atk"]=1330000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -1016,7 +1016,7 @@ local monster_chapter = { [7901]={ ["monster_base"]=10013, ["hp"]=81680000, - ["atk"]=1710000, + ["atk"]=1500000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -1026,10 +1026,74 @@ local monster_chapter = { ["monster_exp"]=12000 }, [8001]={ - ["monster_base"]=20023, + ["monster_base"]=20002, ["is_boss"]=1, ["hp"]=158600000, - ["atk"]=1760000, + ["atk"]=1680000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30004, + 30005, + 30006 + }, + ["skill"]={ + 10019 + }, + ["monster_exp"]=12000 + }, + [8101]={ + ["monster_base"]=10042, + ["hp"]=91480000, + ["atk"]=1560000, + ["atk_times"]=3, + ["hurt_skill"]={ + 20121, + 20122, + 20123 + }, + ["monster_exp"]=16000 + }, + [8201]={ + ["monster_base"]=10001, + ["hp"]=103650000, + ["atk"]=1610000, + ["atk_times"]=3, + ["hurt_skill"]={ + 20001, + 20002, + 20003 + }, + ["monster_exp"]=18000 + }, + [8301]={ + ["monster_base"]=10013, + ["hp"]=109890000, + ["atk"]=1680000, + ["atk_times"]=3, + ["hurt_skill"]={ + 20034, + 20035, + 20036 + }, + ["monster_exp"]=21000 + }, + [8401]={ + ["monster_base"]=10044, + ["hp"]=119100000, + ["atk"]=1740000, + ["atk_times"]=3, + ["hurt_skill"]={ + 20127, + 20128, + 20129 + }, + ["monster_exp"]=22000 + }, + [8501]={ + ["monster_base"]=20023, + ["is_boss"]=1, + ["hp"]=216510000, + ["atk"]=1740000, ["atk_times"]=4, ["hurt_skill"]={ 30067, @@ -1042,79 +1106,12 @@ local monster_chapter = { ["passive_skill"]={ 10013 }, - ["monster_exp"]=12000 - }, - [8101]={ - ["monster_base"]=10042, - ["hp"]=91480000, - ["atk"]=1650000, - ["atk_times"]=3, - ["hurt_skill"]={ - 20121, - 20122, - 20123 - }, - ["monster_exp"]=16000 - }, - [8201]={ - ["monster_base"]=10001, - ["hp"]=103650000, - ["atk"]=1710000, - ["atk_times"]=3, - ["hurt_skill"]={ - 20001, - 20002, - 20003 - }, - ["monster_exp"]=18000 - }, - [8301]={ - ["monster_base"]=10013, - ["hp"]=109890000, - ["atk"]=1760000, - ["atk_times"]=3, - ["hurt_skill"]={ - 20034, - 20035, - 20036 - }, - ["monster_exp"]=21000 - }, - [8401]={ - ["monster_base"]=10044, - ["hp"]=119100000, - ["atk"]=1820000, - ["atk_times"]=3, - ["hurt_skill"]={ - 20127, - 20128, - 20129 - }, - ["monster_exp"]=22000 - }, - [8501]={ - ["monster_base"]=20022, - ["is_boss"]=1, - ["hp"]=216510000, - ["atk"]=1820000, - ["atk_times"]=4, - ["hurt_skill"]={ - 30064, - 30065, - 30066 - }, - ["skill"]={ - 10023 - }, - ["passive_skill"]={ - 10013 - }, ["monster_exp"]=24000 }, [8601]={ ["monster_base"]=10041, ["hp"]=156820000, - ["atk"]=2060000, + ["atk"]=1800000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -1126,7 +1123,7 @@ local monster_chapter = { [8701]={ ["monster_base"]=10001, ["hp"]=166910000, - ["atk"]=2150000, + ["atk"]=1850000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -1138,7 +1135,7 @@ local monster_chapter = { [8801]={ ["monster_base"]=10042, ["hp"]=183550000, - ["atk"]=2210000, + ["atk"]=1910000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -1150,7 +1147,7 @@ local monster_chapter = { [8901]={ ["monster_base"]=10044, ["hp"]=200480000, - ["atk"]=2260000, + ["atk"]=1970000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -1163,7 +1160,7 @@ local monster_chapter = { ["monster_base"]=30019, ["is_boss"]=2, ["hp"]=324920000, - ["atk"]=3150000, + ["atk"]=2710000, ["atk_times"]=4, ["hurt_skill"]={ 40029, @@ -1183,7 +1180,7 @@ local monster_chapter = { [9101]={ ["monster_base"]=10041, ["hp"]=31430000, - ["atk"]=1380000, + ["atk"]=1170000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -1195,7 +1192,7 @@ local monster_chapter = { [9201]={ ["monster_base"]=10001, ["hp"]=44230000, - ["atk"]=1440000, + ["atk"]=1240000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -1207,7 +1204,7 @@ local monster_chapter = { [9301]={ ["monster_base"]=10013, ["hp"]=49760000, - ["atk"]=1520000, + ["atk"]=1300000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -1219,7 +1216,7 @@ local monster_chapter = { [9401]={ ["monster_base"]=10044, ["hp"]=66350000, - ["atk"]=1580000, + ["atk"]=1360000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -1232,7 +1229,7 @@ local monster_chapter = { ["monster_base"]=20026, ["is_boss"]=1, ["hp"]=92250000, - ["atk"]=1780000, + ["atk"]=1570000, ["atk_times"]=4, ["hurt_skill"]={ 30076, @@ -1250,7 +1247,7 @@ local monster_chapter = { [9601]={ ["monster_base"]=10001, ["hp"]=62860000, - ["atk"]=1660000, + ["atk"]=1440000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -1262,7 +1259,7 @@ local monster_chapter = { [9701]={ ["monster_base"]=10042, ["hp"]=70130000, - ["atk"]=1860000, + ["atk"]=1630000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -1274,7 +1271,7 @@ local monster_chapter = { [9801]={ ["monster_base"]=10005, ["hp"]=81190000, - ["atk"]=1720000, + ["atk"]=1510000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -1286,7 +1283,7 @@ local monster_chapter = { [9901]={ ["monster_base"]=10013, ["hp"]=92250000, - ["atk"]=1950000, + ["atk"]=1700000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -1299,7 +1296,7 @@ local monster_chapter = { ["monster_base"]=20022, ["is_boss"]=1, ["hp"]=174600000, - ["atk"]=1950000, + ["atk"]=1900000, ["atk_times"]=4, ["hurt_skill"]={ 30064, @@ -1317,7 +1314,7 @@ local monster_chapter = { [10101]={ ["monster_base"]=10001, ["hp"]=100690000, - ["atk"]=1830000, + ["atk"]=1770000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -1329,7 +1326,7 @@ local monster_chapter = { [10201]={ ["monster_base"]=10042, ["hp"]=114070000, - ["atk"]=1920000, + ["atk"]=1820000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -1341,7 +1338,7 @@ local monster_chapter = { [10301]={ ["monster_base"]=10013, ["hp"]=121060000, - ["atk"]=1970000, + ["atk"]=1900000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -1353,7 +1350,7 @@ local monster_chapter = { [10401]={ ["monster_base"]=10001, ["hp"]=130950000, - ["atk"]=2030000, + ["atk"]=1970000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -1363,28 +1360,28 @@ local monster_chapter = { ["monster_exp"]=22000 }, [10501]={ - ["monster_base"]=20023, + ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=238040000, - ["atk"]=2000000, + ["atk"]=1970000, ["atk_times"]=4, ["hurt_skill"]={ - 30067, - 30068, - 30069 + 30040, + 30041, + 30042 }, ["skill"]={ - 10063 + 10016 }, ["passive_skill"]={ - 10013 + 10010 }, ["monster_exp"]=24000 }, [10601]={ ["monster_base"]=10042, ["hp"]=161510000, - ["atk"]=2140000, + ["atk"]=2040000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -1396,7 +1393,7 @@ local monster_chapter = { [10701]={ ["monster_base"]=10044, ["hp"]=171980000, - ["atk"]=2230000, + ["atk"]=2090000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -1408,7 +1405,7 @@ local monster_chapter = { [10801]={ ["monster_base"]=10013, ["hp"]=189150000, - ["atk"]=2280000, + ["atk"]=2160000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -1420,7 +1417,7 @@ local monster_chapter = { [10901]={ ["monster_base"]=10041, ["hp"]=206610000, - ["atk"]=2340000, + ["atk"]=2230000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -1433,7 +1430,7 @@ local monster_chapter = { ["monster_base"]=20025, ["is_boss"]=2, ["hp"]=355890000, - ["atk"]=3410000, + ["atk"]=3060000, ["atk_times"]=4, ["hurt_skill"]={ 30073, @@ -1451,7 +1448,7 @@ local monster_chapter = { [11101]={ ["monster_base"]=10010, ["hp"]=34970000, - ["atk"]=1600000, + ["atk"]=1320000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -1463,7 +1460,7 @@ local monster_chapter = { [11201]={ ["monster_base"]=10009, ["hp"]=49070000, - ["atk"]=1680000, + ["atk"]=1400000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -1475,7 +1472,7 @@ local monster_chapter = { [11301]={ ["monster_base"]=10038, ["hp"]=55270000, - ["atk"]=1770000, + ["atk"]=1470000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -1487,7 +1484,7 @@ local monster_chapter = { [11401]={ ["monster_base"]=10039, ["hp"]=73600000, - ["atk"]=1850000, + ["atk"]=1530000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -1500,7 +1497,7 @@ local monster_chapter = { ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=102370000, - ["atk"]=2010000, + ["atk"]=1770000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -1515,7 +1512,7 @@ local monster_chapter = { [11601]={ ["monster_base"]=10013, ["hp"]=69650000, - ["atk"]=1900000, + ["atk"]=1620000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -1527,7 +1524,7 @@ local monster_chapter = { [11701]={ ["monster_base"]=10016, ["hp"]=77830000, - ["atk"]=2150000, + ["atk"]=1840000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -1539,7 +1536,7 @@ local monster_chapter = { [11801]={ ["monster_base"]=10015, ["hp"]=89960000, - ["atk"]=1990000, + ["atk"]=1700000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -1551,7 +1548,7 @@ local monster_chapter = { [11901]={ ["monster_base"]=10017, ["hp"]=102370000, - ["atk"]=2240000, + ["atk"]=1910000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -1564,7 +1561,7 @@ local monster_chapter = { ["monster_base"]=20007, ["is_boss"]=1, ["hp"]=193450000, - ["atk"]=2210000, + ["atk"]=2140000, ["atk_times"]=4, ["hurt_skill"]={ 30019, @@ -1582,7 +1579,7 @@ local monster_chapter = { [12101]={ ["monster_base"]=10018, ["hp"]=111670000, - ["atk"]=2130000, + ["atk"]=1990000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -1594,7 +1591,7 @@ local monster_chapter = { [12201]={ ["monster_base"]=10003, ["hp"]=126340000, - ["atk"]=2180000, + ["atk"]=2050000, ["atk_times"]=3, ["hurt_skill"]={ 20007, @@ -1606,7 +1603,7 @@ local monster_chapter = { [12301]={ ["monster_base"]=10006, ["hp"]=134230000, - ["atk"]=2260000, + ["atk"]=2140000, ["atk_times"]=3, ["hurt_skill"]={ 20016, @@ -1618,7 +1615,7 @@ local monster_chapter = { [12401]={ ["monster_base"]=10014, ["hp"]=145230000, - ["atk"]=2320000, + ["atk"]=2220000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -1628,28 +1625,25 @@ local monster_chapter = { ["monster_exp"]=22000 }, [12501]={ - ["monster_base"]=20025, + ["monster_base"]=20001, ["is_boss"]=1, ["hp"]=276360000, - ["atk"]=2400000, + ["atk"]=2220000, ["atk_times"]=4, ["hurt_skill"]={ - 30073, - 30074, - 30075 + 30001, + 30002, + 30003 }, ["skill"]={ - 10062 - }, - ["passive_skill"]={ - 10013 + 10020 }, ["monster_exp"]=24000 }, [12601]={ ["monster_base"]=10030, ["hp"]=183020000, - ["atk"]=2510000, + ["atk"]=2300000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -1661,7 +1655,7 @@ local monster_chapter = { [12701]={ ["monster_base"]=10032, ["hp"]=194860000, - ["atk"]=2590000, + ["atk"]=2350000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -1673,7 +1667,7 @@ local monster_chapter = { [12801]={ ["monster_base"]=10031, ["hp"]=214320000, - ["atk"]=2680000, + ["atk"]=2430000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -1685,7 +1679,7 @@ local monster_chapter = { [12901]={ ["monster_base"]=10033, ["hp"]=234060000, - ["atk"]=2730000, + ["atk"]=2510000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -1698,7 +1692,7 @@ local monster_chapter = { ["monster_base"]=20005, ["is_boss"]=2, ["hp"]=369980000, - ["atk"]=3640000, + ["atk"]=3440000, ["atk_times"]=4, ["hurt_skill"]={ 30013, @@ -1716,7 +1710,7 @@ local monster_chapter = { [13101]={ ["monster_base"]=10030, ["hp"]=38780000, - ["atk"]=1810000, + ["atk"]=1470000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -1728,7 +1722,7 @@ local monster_chapter = { [13201]={ ["monster_base"]=10033, ["hp"]=54130000, - ["atk"]=1890000, + ["atk"]=1560000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -1740,7 +1734,7 @@ local monster_chapter = { [13301]={ ["monster_base"]=10019, ["hp"]=61100000, - ["atk"]=1970000, + ["atk"]=1640000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -1752,7 +1746,7 @@ local monster_chapter = { [13401]={ ["monster_base"]=10012, ["hp"]=76450000, - ["atk"]=1940000, + ["atk"]=1710000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -1765,7 +1759,7 @@ local monster_chapter = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=113000000, - ["atk"]=2240000, + ["atk"]=1970000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -1783,7 +1777,7 @@ local monster_chapter = { [13601]={ ["monster_base"]=10017, ["hp"]=77000000, - ["atk"]=2160000, + ["atk"]=1810000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -1795,7 +1789,7 @@ local monster_chapter = { [13701]={ ["monster_base"]=10013, ["hp"]=85930000, - ["atk"]=2400000, + ["atk"]=2050000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -1807,7 +1801,7 @@ local monster_chapter = { [13801]={ ["monster_base"]=10032, ["hp"]=99320000, - ["atk"]=2240000, + ["atk"]=1900000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -1819,7 +1813,7 @@ local monster_chapter = { [13901]={ ["monster_base"]=10033, ["hp"]=113000000, - ["atk"]=2510000, + ["atk"]=2130000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -1829,77 +1823,10 @@ local monster_chapter = { ["monster_exp"]=12000 }, [14001]={ - ["monster_base"]=20005, - ["is_boss"]=1, - ["hp"]=213440000, - ["atk"]=2460000, - ["atk_times"]=4, - ["hurt_skill"]={ - 30013, - 30014, - 30015 - }, - ["skill"]={ - 10024 - }, - ["passive_skill"]={ - 10012 - }, - ["monster_exp"]=12000 - }, - [14101]={ - ["monster_base"]=10031, - ["hp"]=123320000, - ["atk"]=2380000, - ["atk_times"]=3, - ["hurt_skill"]={ - 20088, - 20089, - 20090 - }, - ["monster_exp"]=16000 - }, - [14201]={ - ["monster_base"]=10034, - ["hp"]=139500000, - ["atk"]=2460000, - ["atk_times"]=3, - ["hurt_skill"]={ - 20097, - 20098, - 20099 - }, - ["monster_exp"]=18000 - }, - [14301]={ - ["monster_base"]=10003, - ["hp"]=148150000, - ["atk"]=2540000, - ["atk_times"]=3, - ["hurt_skill"]={ - 20007, - 20008, - 20009 - }, - ["monster_exp"]=21000 - }, - [14401]={ - ["monster_base"]=10014, - ["hp"]=160430000, - ["atk"]=2590000, - ["atk_times"]=3, - ["hurt_skill"]={ - 20037, - 20038, - 20039 - }, - ["monster_exp"]=22000 - }, - [14501]={ ["monster_base"]=20026, ["is_boss"]=1, - ["hp"]=304390000, - ["atk"]=2650000, + ["hp"]=213440000, + ["atk"]=2380000, ["atk_times"]=4, ["hurt_skill"]={ 30076, @@ -1912,12 +1839,76 @@ local monster_chapter = { ["passive_skill"]={ 10013 }, + ["monster_exp"]=12000 + }, + [14101]={ + ["monster_base"]=10031, + ["hp"]=123320000, + ["atk"]=2220000, + ["atk_times"]=3, + ["hurt_skill"]={ + 20088, + 20089, + 20090 + }, + ["monster_exp"]=16000 + }, + [14201]={ + ["monster_base"]=10034, + ["hp"]=139500000, + ["atk"]=2280000, + ["atk_times"]=3, + ["hurt_skill"]={ + 20097, + 20098, + 20099 + }, + ["monster_exp"]=18000 + }, + [14301]={ + ["monster_base"]=10003, + ["hp"]=148150000, + ["atk"]=2380000, + ["atk_times"]=3, + ["hurt_skill"]={ + 20007, + 20008, + 20009 + }, + ["monster_exp"]=21000 + }, + [14401]={ + ["monster_base"]=10014, + ["hp"]=160430000, + ["atk"]=2470000, + ["atk_times"]=3, + ["hurt_skill"]={ + 20037, + 20038, + 20039 + }, + ["monster_exp"]=22000 + }, + [14501]={ + ["monster_base"]=20004, + ["is_boss"]=1, + ["hp"]=304390000, + ["atk"]=2470000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30010, + 30011, + 30012 + }, + ["skill"]={ + 10015 + }, ["monster_exp"]=24000 }, [14601]={ ["monster_base"]=10015, ["hp"]=201720000, - ["atk"]=2780000, + ["atk"]=2560000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -1929,7 +1920,7 @@ local monster_chapter = { [14701]={ ["monster_base"]=10016, ["hp"]=214830000, - ["atk"]=2890000, + ["atk"]=2620000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -1941,7 +1932,7 @@ local monster_chapter = { [14801]={ ["monster_base"]=10030, ["hp"]=236030000, - ["atk"]=2970000, + ["atk"]=2710000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -1953,7 +1944,7 @@ local monster_chapter = { [14901]={ ["monster_base"]=10035, ["hp"]=257800000, - ["atk"]=3020000, + ["atk"]=2800000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -1966,7 +1957,7 @@ local monster_chapter = { ["monster_base"]=30012, ["is_boss"]=2, ["hp"]=407620000, - ["atk"]=4000000, + ["atk"]=3830000, ["atk_times"]=4, ["hurt_skill"]={ 40005, @@ -1983,7 +1974,7 @@ local monster_chapter = { [15101]={ ["monster_base"]=10034, ["hp"]=42410000, - ["atk"]=2000000, + ["atk"]=1600000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -1995,7 +1986,7 @@ local monster_chapter = { [15201]={ ["monster_base"]=10032, ["hp"]=59150000, - ["atk"]=2110000, + ["atk"]=1700000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -2007,7 +1998,7 @@ local monster_chapter = { [15301]={ ["monster_base"]=10002, ["hp"]=66960000, - ["atk"]=2190000, + ["atk"]=1790000, ["atk_times"]=3, ["hurt_skill"]={ 20004, @@ -2019,7 +2010,7 @@ local monster_chapter = { [15401]={ ["monster_base"]=10005, ["hp"]=89000000, - ["atk"]=2300000, + ["atk"]=1860000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -2032,7 +2023,7 @@ local monster_chapter = { ["monster_base"]=20007, ["is_boss"]=1, ["hp"]=123600000, - ["atk"]=2460000, + ["atk"]=2140000, ["atk_times"]=4, ["hurt_skill"]={ 30019, @@ -2050,7 +2041,7 @@ local monster_chapter = { [15601]={ ["monster_base"]=10001, ["hp"]=84260000, - ["atk"]=2380000, + ["atk"]=1970000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -2062,7 +2053,7 @@ local monster_chapter = { [15701]={ ["monster_base"]=10007, ["hp"]=94020000, - ["atk"]=2670000, + ["atk"]=2230000, ["atk_times"]=3, ["hurt_skill"]={ 20019, @@ -2074,7 +2065,7 @@ local monster_chapter = { [15801]={ ["monster_base"]=10040, ["hp"]=108530000, - ["atk"]=2480000, + ["atk"]=2070000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -2086,7 +2077,7 @@ local monster_chapter = { [15901]={ ["monster_base"]=10039, ["hp"]=123600000, - ["atk"]=2750000, + ["atk"]=2320000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -2099,7 +2090,7 @@ local monster_chapter = { ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=242450000, - ["atk"]=2800000, + ["atk"]=2590000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -2114,7 +2105,7 @@ local monster_chapter = { [16101]={ ["monster_base"]=10039, ["hp"]=140060000, - ["atk"]=2720000, + ["atk"]=2420000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -2126,7 +2117,7 @@ local monster_chapter = { [16201]={ ["monster_base"]=10038, ["hp"]=158470000, - ["atk"]=2800000, + ["atk"]=2480000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -2138,7 +2129,7 @@ local monster_chapter = { [16301]={ ["monster_base"]=10014, ["hp"]=168240000, - ["atk"]=2910000, + ["atk"]=2590000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -2150,7 +2141,7 @@ local monster_chapter = { [16401]={ ["monster_base"]=10019, ["hp"]=182190000, - ["atk"]=2990000, + ["atk"]=2690000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -2163,7 +2154,7 @@ local monster_chapter = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=353210000, - ["atk"]=3100000, + ["atk"]=2690000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -2181,7 +2172,7 @@ local monster_chapter = { [16601]={ ["monster_base"]=10016, ["hp"]=243290000, - ["atk"]=3390000, + ["atk"]=2780000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -2193,7 +2184,7 @@ local monster_chapter = { [16701]={ ["monster_base"]=10005, ["hp"]=259190000, - ["atk"]=3500000, + ["atk"]=2850000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -2205,7 +2196,7 @@ local monster_chapter = { [16801]={ ["monster_base"]=10040, ["hp"]=284580000, - ["atk"]=3580000, + ["atk"]=2950000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -2217,7 +2208,7 @@ local monster_chapter = { [16901]={ ["monster_base"]=10039, ["hp"]=310810000, - ["atk"]=3680000, + ["atk"]=3050000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -2230,7 +2221,7 @@ local monster_chapter = { ["monster_base"]=20017, ["is_boss"]=2, ["hp"]=545450000, - ["atk"]=5340000, + ["atk"]=4160000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -2245,7 +2236,7 @@ local monster_chapter = { [17101]={ ["monster_base"]=10038, ["hp"]=50510000, - ["atk"]=2400000, + ["atk"]=1670000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -2257,7 +2248,7 @@ local monster_chapter = { [17201]={ ["monster_base"]=10040, ["hp"]=70380000, - ["atk"]=2530000, + ["atk"]=1780000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -2269,7 +2260,7 @@ local monster_chapter = { [17301]={ ["monster_base"]=10010, ["hp"]=79490000, - ["atk"]=2640000, + ["atk"]=1870000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -2281,7 +2272,7 @@ local monster_chapter = { [17401]={ ["monster_base"]=10039, ["hp"]=105710000, - ["atk"]=2740000, + ["atk"]=1940000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -2294,7 +2285,7 @@ local monster_chapter = { ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=146830000, - ["atk"]=2920000, + ["atk"]=2230000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -2309,7 +2300,7 @@ local monster_chapter = { [17601]={ ["monster_base"]=10030, ["hp"]=100190000, - ["atk"]=2840000, + ["atk"]=2060000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -2321,7 +2312,7 @@ local monster_chapter = { [17701]={ ["monster_base"]=10035, ["hp"]=111500000, - ["atk"]=3180000, + ["atk"]=2330000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -2333,7 +2324,7 @@ local monster_chapter = { [17801]={ ["monster_base"]=10039, ["hp"]=128890000, - ["atk"]=2950000, + ["atk"]=2160000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -2345,7 +2336,7 @@ local monster_chapter = { [17901]={ ["monster_base"]=10010, ["hp"]=146830000, - ["atk"]=3290000, + ["atk"]=2420000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -2358,7 +2349,7 @@ local monster_chapter = { ["monster_base"]=20017, ["is_boss"]=1, ["hp"]=276830000, - ["atk"]=3210000, + ["atk"]=2700000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -2373,7 +2364,7 @@ local monster_chapter = { [18101]={ ["monster_base"]=10013, ["hp"]=159800000, - ["atk"]=3110000, + ["atk"]=2530000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -2385,7 +2376,7 @@ local monster_chapter = { [18201]={ ["monster_base"]=10016, ["hp"]=181060000, - ["atk"]=3210000, + ["atk"]=2590000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -2397,7 +2388,7 @@ local monster_chapter = { [18301]={ ["monster_base"]=10015, ["hp"]=192100000, - ["atk"]=3310000, + ["atk"]=2700000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -2409,7 +2400,7 @@ local monster_chapter = { [18401]={ ["monster_base"]=10017, ["hp"]=208100000, - ["atk"]=3420000, + ["atk"]=2810000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -2422,7 +2413,7 @@ local monster_chapter = { ["monster_base"]=20007, ["is_boss"]=1, ["hp"]=377020000, - ["atk"]=3290000, + ["atk"]=2810000, ["atk_times"]=4, ["hurt_skill"]={ 30019, @@ -2440,7 +2431,7 @@ local monster_chapter = { [18601]={ ["monster_base"]=10032, ["hp"]=249780000, - ["atk"]=3500000, + ["atk"]=2900000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -2452,7 +2443,7 @@ local monster_chapter = { [18701]={ ["monster_base"]=10034, ["hp"]=266340000, - ["atk"]=3600000, + ["atk"]=2970000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -2464,7 +2455,7 @@ local monster_chapter = { [18801]={ ["monster_base"]=10035, ["hp"]=292280000, - ["atk"]=3710000, + ["atk"]=3080000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -2476,7 +2467,7 @@ local monster_chapter = { [18901]={ ["monster_base"]=10033, ["hp"]=319330000, - ["atk"]=3780000, + ["atk"]=3180000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -2489,7 +2480,7 @@ local monster_chapter = { ["monster_base"]=20003, ["is_boss"]=2, ["hp"]=504800000, - ["atk"]=4930000, + ["atk"]=4340000, ["atk_times"]=4, ["hurt_skill"]={ 30007, @@ -2509,7 +2500,7 @@ local monster_chapter = { [19101]={ ["monster_base"]=10020, ["hp"]=54410000, - ["atk"]=2670000, + ["atk"]=1740000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -2521,7 +2512,7 @@ local monster_chapter = { [19201]={ ["monster_base"]=10038, ["hp"]=75610000, - ["atk"]=2800000, + ["atk"]=1850000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -2533,7 +2524,7 @@ local monster_chapter = { [19301]={ ["monster_base"]=10021, ["hp"]=85370000, - ["atk"]=2910000, + ["atk"]=1950000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -2545,7 +2536,7 @@ local monster_chapter = { [19401]={ ["monster_base"]=10040, ["hp"]=113550000, - ["atk"]=3040000, + ["atk"]=2020000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -2558,7 +2549,7 @@ local monster_chapter = { ["monster_base"]=20017, ["is_boss"]=1, ["hp"]=157640000, - ["atk"]=3230000, + ["atk"]=2320000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -2573,7 +2564,7 @@ local monster_chapter = { [19601]={ ["monster_base"]=10022, ["hp"]=107690000, - ["atk"]=3150000, + ["atk"]=2140000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -2585,7 +2576,7 @@ local monster_chapter = { [19701]={ ["monster_base"]=10004, ["hp"]=119690000, - ["atk"]=3500000, + ["atk"]=2420000, ["atk_times"]=3, ["hurt_skill"]={ 20010, @@ -2597,7 +2588,7 @@ local monster_chapter = { [19801]={ ["monster_base"]=10023, ["hp"]=138380000, - ["atk"]=3280000, + ["atk"]=2250000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -2609,7 +2600,7 @@ local monster_chapter = { [19901]={ ["monster_base"]=10007, ["hp"]=157640000, - ["atk"]=3630000, + ["atk"]=2520000, ["atk_times"]=3, ["hurt_skill"]={ 20019, @@ -2622,7 +2613,7 @@ local monster_chapter = { ["monster_base"]=20007, ["is_boss"]=1, ["hp"]=297140000, - ["atk"]=3520000, + ["atk"]=2810000, ["atk_times"]=4, ["hurt_skill"]={ 30019, @@ -2640,7 +2631,7 @@ local monster_chapter = { [20101]={ ["monster_base"]=10048, ["hp"]=171590000, - ["atk"]=3440000, + ["atk"]=2630000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -2652,7 +2643,7 @@ local monster_chapter = { [20201]={ ["monster_base"]=10023, ["hp"]=194460000, - ["atk"]=3550000, + ["atk"]=2690000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -2664,7 +2655,7 @@ local monster_chapter = { [20301]={ ["monster_base"]=10006, ["hp"]=206180000, - ["atk"]=3660000, + ["atk"]=2810000, ["atk_times"]=3, ["hurt_skill"]={ 20016, @@ -2676,7 +2667,7 @@ local monster_chapter = { [20401]={ ["monster_base"]=10047, ["hp"]=223480000, - ["atk"]=3760000, + ["atk"]=2920000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -2689,7 +2680,7 @@ local monster_chapter = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=404830000, - ["atk"]=3630000, + ["atk"]=2920000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -2707,7 +2698,7 @@ local monster_chapter = { [20601]={ ["monster_base"]=10021, ["hp"]=268120000, - ["atk"]=3840000, + ["atk"]=3020000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -2719,7 +2710,7 @@ local monster_chapter = { [20701]={ ["monster_base"]=10006, ["hp"]=285980000, - ["atk"]=3950000, + ["atk"]=3090000, ["atk_times"]=3, ["hurt_skill"]={ 20016, @@ -2731,7 +2722,7 @@ local monster_chapter = { [20801]={ ["monster_base"]=10048, ["hp"]=313880000, - ["atk"]=4090000, + ["atk"]=3200000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -2743,7 +2734,7 @@ local monster_chapter = { [20901]={ ["monster_base"]=10023, ["hp"]=342890000, - ["atk"]=4170000, + ["atk"]=3310000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -2756,7 +2747,7 @@ local monster_chapter = { ["monster_base"]=30014, ["is_boss"]=2, ["hp"]=541820000, - ["atk"]=5390000, + ["atk"]=4510000, ["atk_times"]=4, ["hurt_skill"]={ 40009, @@ -2772,7 +2763,7 @@ local monster_chapter = { [21101]={ ["monster_base"]=10024, ["hp"]=57200000, - ["atk"]=2860000, + ["atk"]=1840000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -2784,7 +2775,7 @@ local monster_chapter = { [21201]={ ["monster_base"]=10006, ["hp"]=79240000, - ["atk"]=2990000, + ["atk"]=1960000, ["atk_times"]=3, ["hurt_skill"]={ 20016, @@ -2796,7 +2787,7 @@ local monster_chapter = { [21301]={ ["monster_base"]=10007, ["hp"]=89560000, - ["atk"]=3120000, + ["atk"]=2060000, ["atk_times"]=3, ["hurt_skill"]={ 20019, @@ -2808,7 +2799,7 @@ local monster_chapter = { [21401]={ ["monster_base"]=10023, ["hp"]=118850000, - ["atk"]=3230000, + ["atk"]=2140000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -2821,7 +2812,7 @@ local monster_chapter = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=165170000, - ["atk"]=3420000, + ["atk"]=2450000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -2839,7 +2830,7 @@ local monster_chapter = { [21601]={ ["monster_base"]=10048, ["hp"]=112720000, - ["atk"]=3360000, + ["atk"]=2260000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -2851,7 +2842,7 @@ local monster_chapter = { [21701]={ ["monster_base"]=10025, ["hp"]=125270000, - ["atk"]=3740000, + ["atk"]=2560000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -2863,7 +2854,7 @@ local monster_chapter = { [21801]={ ["monster_base"]=10004, ["hp"]=144800000, - ["atk"]=3470000, + ["atk"]=2380000, ["atk_times"]=3, ["hurt_skill"]={ 20010, @@ -2875,7 +2866,7 @@ local monster_chapter = { [21901]={ ["monster_base"]=10022, ["hp"]=165170000, - ["atk"]=3840000, + ["atk"]=2660000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -2888,7 +2879,7 @@ local monster_chapter = { ["monster_base"]=20005, ["is_boss"]=1, ["hp"]=311090000, - ["atk"]=3740000, + ["atk"]=2970000, ["atk_times"]=4, ["hurt_skill"]={ 30013, @@ -2906,7 +2897,7 @@ local monster_chapter = { [22101]={ ["monster_base"]=10047, ["hp"]=179680000, - ["atk"]=3660000, + ["atk"]=2780000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -2918,7 +2909,7 @@ local monster_chapter = { [22201]={ ["monster_base"]=10026, ["hp"]=203670000, - ["atk"]=3790000, + ["atk"]=2840000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -2930,7 +2921,7 @@ local monster_chapter = { [22301]={ ["monster_base"]=10006, ["hp"]=215950000, - ["atk"]=3900000, + ["atk"]=2970000, ["atk_times"]=3, ["hurt_skill"]={ 20016, @@ -2942,7 +2933,7 @@ local monster_chapter = { [22401]={ ["monster_base"]=10040, ["hp"]=234080000, - ["atk"]=4010000, + ["atk"]=3090000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -2955,7 +2946,7 @@ local monster_chapter = { ["monster_base"]=20017, ["is_boss"]=1, ["hp"]=423800000, - ["atk"]=3840000, + ["atk"]=3090000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -2970,7 +2961,7 @@ local monster_chapter = { [22601]={ ["monster_base"]=10020, ["hp"]=280670000, - ["atk"]=4090000, + ["atk"]=3190000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -2982,7 +2973,7 @@ local monster_chapter = { [22701]={ ["monster_base"]=10010, ["hp"]=299370000, - ["atk"]=4190000, + ["atk"]=3270000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -2994,7 +2985,7 @@ local monster_chapter = { [22801]={ ["monster_base"]=10038, ["hp"]=328380000, - ["atk"]=4330000, + ["atk"]=3380000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -3006,7 +2997,7 @@ local monster_chapter = { [22901]={ ["monster_base"]=10027, ["hp"]=358790000, - ["atk"]=4430000, + ["atk"]=3500000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -3019,7 +3010,7 @@ local monster_chapter = { ["monster_base"]=20008, ["is_boss"]=2, ["hp"]=566930000, - ["atk"]=5690000, + ["atk"]=4760000, ["atk_times"]=4, ["hurt_skill"]={ 30022, @@ -3037,7 +3028,7 @@ local monster_chapter = { [23101]={ ["monster_base"]=10005, ["hp"]=62220000, - ["atk"]=3150000, + ["atk"]=1910000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -3049,7 +3040,7 @@ local monster_chapter = { [23201]={ ["monster_base"]=10022, ["hp"]=86210000, - ["atk"]=3310000, + ["atk"]=2030000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -3061,7 +3052,7 @@ local monster_chapter = { [23301]={ ["monster_base"]=10005, ["hp"]=97370000, - ["atk"]=3440000, + ["atk"]=2130000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -3073,7 +3064,7 @@ local monster_chapter = { [23401]={ ["monster_base"]=10026, ["hp"]=129180000, - ["atk"]=3550000, + ["atk"]=2220000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -3086,7 +3077,7 @@ local monster_chapter = { ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=179400000, - ["atk"]=3760000, + ["atk"]=2540000, ["atk_times"]=4, ["hurt_skill"]={ 30040, @@ -3104,7 +3095,7 @@ local monster_chapter = { [23601]={ ["monster_base"]=10022, ["hp"]=122480000, - ["atk"]=3710000, + ["atk"]=2340000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -3116,7 +3107,7 @@ local monster_chapter = { [23701]={ ["monster_base"]=10026, ["hp"]=135870000, - ["atk"]=4110000, + ["atk"]=2650000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -3128,7 +3119,7 @@ local monster_chapter = { [23801]={ ["monster_base"]=10032, ["hp"]=157080000, - ["atk"]=3840000, + ["atk"]=2460000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -3140,7 +3131,7 @@ local monster_chapter = { [23901]={ ["monster_base"]=10044, ["hp"]=179400000, - ["atk"]=4250000, + ["atk"]=2750000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -3153,7 +3144,7 @@ local monster_chapter = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=337590000, - ["atk"]=4110000, + ["atk"]=3070000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -3171,7 +3162,7 @@ local monster_chapter = { [24101]={ ["monster_base"]=10001, ["hp"]=195020000, - ["atk"]=4030000, + ["atk"]=2880000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -3183,7 +3174,7 @@ local monster_chapter = { [24201]={ ["monster_base"]=10022, ["hp"]=220970000, - ["atk"]=4170000, + ["atk"]=2940000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -3195,7 +3186,7 @@ local monster_chapter = { [24301]={ ["monster_base"]=10044, ["hp"]=234360000, - ["atk"]=4270000, + ["atk"]=3070000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -3207,7 +3198,7 @@ local monster_chapter = { [24401]={ ["monster_base"]=10019, ["hp"]=253890000, - ["atk"]=4410000, + ["atk"]=3200000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -3220,7 +3211,7 @@ local monster_chapter = { ["monster_base"]=20001, ["is_boss"]=1, ["hp"]=459790000, - ["atk"]=4220000, + ["atk"]=3200000, ["atk_times"]=4, ["hurt_skill"]={ 30001, @@ -3235,7 +3226,7 @@ local monster_chapter = { [24601]={ ["monster_base"]=10013, ["hp"]=304670000, - ["atk"]=4490000, + ["atk"]=3300000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -3247,7 +3238,7 @@ local monster_chapter = { [24701]={ ["monster_base"]=10005, ["hp"]=324760000, - ["atk"]=4620000, + ["atk"]=3380000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -3259,7 +3250,7 @@ local monster_chapter = { [24801]={ ["monster_base"]=10026, ["hp"]=356280000, - ["atk"]=4750000, + ["atk"]=3500000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -3271,7 +3262,7 @@ local monster_chapter = { [24901]={ ["monster_base"]=10032, ["hp"]=389210000, - ["atk"]=4860000, + ["atk"]=3620000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -3284,7 +3275,7 @@ local monster_chapter = { ["monster_base"]=20006, ["is_boss"]=2, ["hp"]=614920000, - ["atk"]=6220000, + ["atk"]=4920000, ["atk_times"]=4, ["hurt_skill"]={ 30016, @@ -3302,7 +3293,7 @@ local monster_chapter = { [25101]={ ["monster_base"]=10044, ["hp"]=63890000, - ["atk"]=3280000, + ["atk"]=1980000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -3314,7 +3305,7 @@ local monster_chapter = { [25201]={ ["monster_base"]=10013, ["hp"]=88720000, - ["atk"]=3440000, + ["atk"]=2100000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -3326,7 +3317,7 @@ local monster_chapter = { [25301]={ ["monster_base"]=10001, ["hp"]=100160000, - ["atk"]=3580000, + ["atk"]=2200000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -3338,7 +3329,7 @@ local monster_chapter = { [25401]={ ["monster_base"]=10026, ["hp"]=132800000, - ["atk"]=3710000, + ["atk"]=2300000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -3351,7 +3342,7 @@ local monster_chapter = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=184420000, - ["atk"]=3900000, + ["atk"]=2630000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -3369,7 +3360,7 @@ local monster_chapter = { [25601]={ ["monster_base"]=10022, ["hp"]=125830000, - ["atk"]=3870000, + ["atk"]=2420000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -3381,7 +3372,7 @@ local monster_chapter = { [25701]={ ["monster_base"]=10044, ["hp"]=139500000, - ["atk"]=4270000, + ["atk"]=2740000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -3393,7 +3384,7 @@ local monster_chapter = { [25801]={ ["monster_base"]=10032, ["hp"]=161540000, - ["atk"]=4010000, + ["atk"]=2540000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -3405,7 +3396,7 @@ local monster_chapter = { [25901]={ ["monster_base"]=10019, ["hp"]=184420000, - ["atk"]=4410000, + ["atk"]=2840000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -3418,7 +3409,7 @@ local monster_chapter = { ["monster_base"]=20008, ["is_boss"]=1, ["hp"]=346800000, - ["atk"]=4250000, + ["atk"]=3170000, ["atk_times"]=4, ["hurt_skill"]={ 30022, @@ -3436,7 +3427,7 @@ local monster_chapter = { [26101]={ ["monster_base"]=10026, ["hp"]=200320000, - ["atk"]=4190000, + ["atk"]=2980000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -3448,7 +3439,7 @@ local monster_chapter = { [26201]={ ["monster_base"]=10001, ["hp"]=227110000, - ["atk"]=4330000, + ["atk"]=3040000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -3460,7 +3451,7 @@ local monster_chapter = { [26301]={ ["monster_base"]=10044, ["hp"]=240780000, - ["atk"]=4460000, + ["atk"]=3170000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -3472,7 +3463,7 @@ local monster_chapter = { [26401]={ ["monster_base"]=10013, ["hp"]=260870000, - ["atk"]=4590000, + ["atk"]=3310000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -3485,7 +3476,7 @@ local monster_chapter = { ["monster_base"]=20002, ["is_boss"]=1, ["hp"]=472070000, - ["atk"]=4380000, + ["atk"]=3310000, ["atk_times"]=4, ["hurt_skill"]={ 30004, @@ -3500,7 +3491,7 @@ local monster_chapter = { [26601]={ ["monster_base"]=10001, ["hp"]=313040000, - ["atk"]=4670000, + ["atk"]=3410000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -3512,7 +3503,7 @@ local monster_chapter = { [26701]={ ["monster_base"]=10032, ["hp"]=333680000, - ["atk"]=4810000, + ["atk"]=3490000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -3524,7 +3515,7 @@ local monster_chapter = { [26801]={ ["monster_base"]=10022, ["hp"]=366050000, - ["atk"]=4940000, + ["atk"]=3620000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -3536,7 +3527,7 @@ local monster_chapter = { [26901]={ ["monster_base"]=10005, ["hp"]=399810000, - ["atk"]=5050000, + ["atk"]=3740000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -3549,7 +3540,7 @@ local monster_chapter = { ["monster_base"]=20021, ["is_boss"]=2, ["hp"]=631380000, - ["atk"]=6430000, + ["atk"]=5080000, ["atk_times"]=4, ["hurt_skill"]={ 30061, @@ -3568,7 +3559,7 @@ local monster_chapter = { [27101]={ ["monster_base"]=10022, ["hp"]=67070000, - ["atk"]=3510000, + ["atk"]=2090000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -3580,7 +3571,7 @@ local monster_chapter = { [27201]={ ["monster_base"]=10044, ["hp"]=93010000, - ["atk"]=3670000, + ["atk"]=2220000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -3592,7 +3583,7 @@ local monster_chapter = { [27301]={ ["monster_base"]=10032, ["hp"]=104880000, - ["atk"]=3800000, + ["atk"]=2320000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -3604,7 +3595,7 @@ local monster_chapter = { [27401]={ ["monster_base"]=10019, ["hp"]=139100000, - ["atk"]=3930000, + ["atk"]=2430000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -3617,7 +3608,7 @@ local monster_chapter = { ["monster_base"]=20008, ["is_boss"]=1, ["hp"]=192920000, - ["atk"]=4120000, + ["atk"]=2780000, ["atk_times"]=4, ["hurt_skill"]={ 30022, @@ -3635,7 +3626,7 @@ local monster_chapter = { [27601]={ ["monster_base"]=10005, ["hp"]=131650000, - ["atk"]=4090000, + ["atk"]=2550000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -3647,7 +3638,7 @@ local monster_chapter = { [27701]={ ["monster_base"]=10022, ["hp"]=146000000, - ["atk"]=4510000, + ["atk"]=2890000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -3659,7 +3650,7 @@ local monster_chapter = { [27801]={ ["monster_base"]=10005, ["hp"]=169190000, - ["atk"]=4220000, + ["atk"]=2680000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -3671,7 +3662,7 @@ local monster_chapter = { [27901]={ ["monster_base"]=10026, ["hp"]=192920000, - ["atk"]=4670000, + ["atk"]=3000000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -3684,7 +3675,7 @@ local monster_chapter = { ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=362940000, - ["atk"]=4490000, + ["atk"]=3340000, ["atk_times"]=4, ["hurt_skill"]={ 30040, @@ -3702,7 +3693,7 @@ local monster_chapter = { [28101]={ ["monster_base"]=10013, ["hp"]=209760000, - ["atk"]=4460000, + ["atk"]=3140000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -3714,7 +3705,7 @@ local monster_chapter = { [28201]={ ["monster_base"]=10005, ["hp"]=237640000, - ["atk"]=4590000, + ["atk"]=3210000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -3726,7 +3717,7 @@ local monster_chapter = { [28301]={ ["monster_base"]=10026, ["hp"]=251990000, - ["atk"]=4700000, + ["atk"]=3340000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -3738,7 +3729,7 @@ local monster_chapter = { [28401]={ ["monster_base"]=10032, ["hp"]=272960000, - ["atk"]=4860000, + ["atk"]=3490000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -3751,7 +3742,7 @@ local monster_chapter = { ["monster_base"]=20006, ["is_boss"]=1, ["hp"]=494040000, - ["atk"]=4620000, + ["atk"]=3490000, ["atk_times"]=4, ["hurt_skill"]={ 30016, @@ -3769,7 +3760,7 @@ local monster_chapter = { [28601]={ ["monster_base"]=10013, ["hp"]=327610000, - ["atk"]=4940000, + ["atk"]=3600000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -3781,7 +3772,7 @@ local monster_chapter = { [28701]={ ["monster_base"]=10005, ["hp"]=349140000, - ["atk"]=5070000, + ["atk"]=3680000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -3793,7 +3784,7 @@ local monster_chapter = { [28801]={ ["monster_base"]=10026, ["hp"]=383090000, - ["atk"]=5230000, + ["atk"]=3820000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -3805,7 +3796,7 @@ local monster_chapter = { [28901]={ ["monster_base"]=10001, ["hp"]=418420000, - ["atk"]=5330000, + ["atk"]=3940000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -3818,7 +3809,7 @@ local monster_chapter = { ["monster_base"]=30010, ["is_boss"]=2, ["hp"]=660740000, - ["atk"]=6760000, + ["atk"]=5360000, ["atk_times"]=4, ["hurt_skill"]={ 40013, @@ -3834,7 +3825,7 @@ local monster_chapter = { [29101]={ ["monster_base"]=10013, ["hp"]=70100000, - ["atk"]=3700000, + ["atk"]=2160000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -3846,7 +3837,7 @@ local monster_chapter = { [29201]={ ["monster_base"]=10005, ["hp"]=97150000, - ["atk"]=3880000, + ["atk"]=2300000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -3858,7 +3849,7 @@ local monster_chapter = { [29301]={ ["monster_base"]=10026, ["hp"]=109300000, - ["atk"]=4040000, + ["atk"]=2400000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -3870,7 +3861,7 @@ local monster_chapter = { [29401]={ ["monster_base"]=10032, ["hp"]=145180000, - ["atk"]=4170000, + ["atk"]=2510000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -3883,7 +3874,7 @@ local monster_chapter = { ["monster_base"]=20006, ["is_boss"]=1, ["hp"]=201200000, - ["atk"]=4330000, + ["atk"]=2870000, ["atk_times"]=4, ["hurt_skill"]={ 30016, @@ -3901,7 +3892,7 @@ local monster_chapter = { [29601]={ ["monster_base"]=10001, ["hp"]=137450000, - ["atk"]=4330000, + ["atk"]=2640000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -3913,7 +3904,7 @@ local monster_chapter = { [29701]={ ["monster_base"]=10032, ["hp"]=152350000, - ["atk"]=4780000, + ["atk"]=2990000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -3925,7 +3916,7 @@ local monster_chapter = { [29801]={ ["monster_base"]=10022, ["hp"]=176360000, - ["atk"]=4460000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -3937,7 +3928,7 @@ local monster_chapter = { [29901]={ ["monster_base"]=10005, ["hp"]=201200000, - ["atk"]=4910000, + ["atk"]=3100000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -3950,7 +3941,7 @@ local monster_chapter = { ["monster_base"]=20021, ["is_boss"]=1, ["hp"]=378400000, - ["atk"]=4730000, + ["atk"]=3450000, ["atk_times"]=4, ["hurt_skill"]={ 30061, @@ -3969,7 +3960,7 @@ local monster_chapter = { [30101]={ ["monster_base"]=10022, ["hp"]=218590000, - ["atk"]=4700000, + ["atk"]=3240000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -3981,7 +3972,7 @@ local monster_chapter = { [30201]={ ["monster_base"]=10004, ["hp"]=247850000, - ["atk"]=4830000, + ["atk"]=3320000, ["atk_times"]=3, ["hurt_skill"]={ 20010, @@ -3993,7 +3984,7 @@ local monster_chapter = { [30301]={ ["monster_base"]=10023, ["hp"]=262750000, - ["atk"]=4960000, + ["atk"]=3450000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -4005,7 +3996,7 @@ local monster_chapter = { [30401]={ ["monster_base"]=10007, ["hp"]=284560000, - ["atk"]=5120000, + ["atk"]=3610000, ["atk_times"]=3, ["hurt_skill"]={ 20019, @@ -4018,7 +4009,7 @@ local monster_chapter = { ["monster_base"]=20007, ["is_boss"]=1, ["hp"]=515020000, - ["atk"]=4860000, + ["atk"]=3610000, ["atk_times"]=4, ["hurt_skill"]={ 30019, @@ -4036,7 +4027,7 @@ local monster_chapter = { [30601]={ ["monster_base"]=10019, ["hp"]=341410000, - ["atk"]=5200000, + ["atk"]=3720000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -4048,7 +4039,7 @@ local monster_chapter = { [30701]={ ["monster_base"]=10023, ["hp"]=364040000, - ["atk"]=5360000, + ["atk"]=3800000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -4060,7 +4051,7 @@ local monster_chapter = { [30801]={ ["monster_base"]=10005, ["hp"]=399370000, - ["atk"]=5490000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -4072,7 +4063,7 @@ local monster_chapter = { [30901]={ ["monster_base"]=10033, ["hp"]=436080000, - ["atk"]=5620000, + ["atk"]=4070000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -4085,7 +4076,7 @@ local monster_chapter = { ["monster_base"]=20016, ["is_boss"]=2, ["hp"]=688620000, - ["atk"]=7080000, + ["atk"]=5530000, ["atk_times"]=4, ["hurt_skill"]={ 30046, @@ -4104,7 +4095,7 @@ local monster_chapter = { [31101]={ ["monster_base"]=10026, ["hp"]=73440000, - ["atk"]=3940000, + ["atk"]=2270000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -4116,7 +4107,7 @@ local monster_chapter = { [31201]={ ["monster_base"]=10001, ["hp"]=101830000, - ["atk"]=4120000, + ["atk"]=2420000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -4128,7 +4119,7 @@ local monster_chapter = { [31301]={ ["monster_base"]=10044, ["hp"]=114660000, - ["atk"]=4280000, + ["atk"]=2520000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -4140,7 +4131,7 @@ local monster_chapter = { [31401]={ ["monster_base"]=10013, ["hp"]=152060000, - ["atk"]=4410000, + ["atk"]=2640000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -4153,7 +4144,7 @@ local monster_chapter = { ["monster_base"]=20002, ["is_boss"]=1, ["hp"]=210760000, - ["atk"]=4590000, + ["atk"]=3020000, ["atk_times"]=4, ["hurt_skill"]={ 30004, @@ -4168,7 +4159,7 @@ local monster_chapter = { [31601]={ ["monster_base"]=10048, ["hp"]=144140000, - ["atk"]=4570000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -4180,7 +4171,7 @@ local monster_chapter = { [31701]={ ["monster_base"]=10006, ["hp"]=159710000, - ["atk"]=5040000, + ["atk"]=3140000, ["atk_times"]=3, ["hurt_skill"]={ 20016, @@ -4192,7 +4183,7 @@ local monster_chapter = { [31801]={ ["monster_base"]=10012, ["hp"]=184820000, - ["atk"]=4720000, + ["atk"]=2910000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -4204,7 +4195,7 @@ local monster_chapter = { [31901]={ ["monster_base"]=10004, ["hp"]=210760000, - ["atk"]=5190000, + ["atk"]=3260000, ["atk_times"]=3, ["hurt_skill"]={ 20010, @@ -4217,7 +4208,7 @@ local monster_chapter = { ["monster_base"]=20004, ["is_boss"]=1, ["hp"]=396120000, - ["atk"]=4990000, + ["atk"]=3620000, ["atk_times"]=4, ["hurt_skill"]={ 30010, @@ -4232,7 +4223,7 @@ local monster_chapter = { [32101]={ ["monster_base"]=10024, ["hp"]=229050000, - ["atk"]=4990000, + ["atk"]=3400000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -4244,7 +4235,7 @@ local monster_chapter = { [32201]={ ["monster_base"]=10044, ["hp"]=259620000, - ["atk"]=5120000, + ["atk"]=3490000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -4256,7 +4247,7 @@ local monster_chapter = { [32301]={ ["monster_base"]=10016, ["hp"]=275180000, - ["atk"]=5250000, + ["atk"]=3620000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -4268,7 +4259,7 @@ local monster_chapter = { [32401]={ ["monster_base"]=10019, ["hp"]=298120000, - ["atk"]=5400000, + ["atk"]=3790000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -4281,7 +4272,7 @@ local monster_chapter = { ["monster_base"]=20008, ["is_boss"]=1, ["hp"]=539180000, - ["atk"]=5120000, + ["atk"]=3790000, ["atk_times"]=4, ["hurt_skill"]={ 30022, @@ -4299,7 +4290,7 @@ local monster_chapter = { [32601]={ ["monster_base"]=10004, ["hp"]=357630000, - ["atk"]=5510000, + ["atk"]=3910000, ["atk_times"]=3, ["hurt_skill"]={ 20010, @@ -4311,7 +4302,7 @@ local monster_chapter = { [32701]={ ["monster_base"]=10006, ["hp"]=381110000, - ["atk"]=5660000, + ["atk"]=3990000, ["atk_times"]=3, ["hurt_skill"]={ 20016, @@ -4323,7 +4314,7 @@ local monster_chapter = { [32801]={ ["monster_base"]=10048, ["hp"]=418240000, - ["atk"]=5790000, + ["atk"]=4150000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -4335,7 +4326,7 @@ local monster_chapter = { [32901]={ ["monster_base"]=10037, ["hp"]=456730000, - ["atk"]=5920000, + ["atk"]=4280000, ["atk_times"]=3, ["hurt_skill"]={ 20106, @@ -4348,7 +4339,7 @@ local monster_chapter = { ["monster_base"]=30020, ["is_boss"]=2, ["hp"]=720990000, - ["atk"]=7460000, + ["atk"]=5810000, ["atk_times"]=4, ["hurt_skill"]={ 40033, @@ -4364,7 +4355,7 @@ local monster_chapter = { [33101]={ ["monster_base"]=10049, ["hp"]=75620000, - ["atk"]=4100000, + ["atk"]=2370000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -4376,7 +4367,7 @@ local monster_chapter = { [33201]={ ["monster_base"]=10005, ["hp"]=104830000, - ["atk"]=4280000, + ["atk"]=2520000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -4388,7 +4379,7 @@ local monster_chapter = { [33301]={ ["monster_base"]=10024, ["hp"]=117940000, - ["atk"]=4440000, + ["atk"]=2630000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -4400,7 +4391,7 @@ local monster_chapter = { [33401]={ ["monster_base"]=10012, ["hp"]=156430000, - ["atk"]=4590000, + ["atk"]=2750000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -4413,7 +4404,7 @@ local monster_chapter = { ["monster_base"]=20006, ["is_boss"]=1, ["hp"]=216760000, - ["atk"]=4750000, + ["atk"]=3150000, ["atk_times"]=4, ["hurt_skill"]={ 30016, @@ -4431,7 +4422,7 @@ local monster_chapter = { [33601]={ ["monster_base"]=10048, ["hp"]=148240000, - ["atk"]=4750000, + ["atk"]=2890000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -4443,7 +4434,7 @@ local monster_chapter = { [33701]={ ["monster_base"]=10049, ["hp"]=164350000, - ["atk"]=5250000, + ["atk"]=3270000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -4455,7 +4446,7 @@ local monster_chapter = { [33801]={ ["monster_base"]=10004, ["hp"]=190010000, - ["atk"]=4930000, + ["atk"]=3030000, ["atk_times"]=3, ["hurt_skill"]={ 20010, @@ -4467,7 +4458,7 @@ local monster_chapter = { [33901]={ ["monster_base"]=10006, ["hp"]=216760000, - ["atk"]=5400000, + ["atk"]=3400000, ["atk_times"]=3, ["hurt_skill"]={ 20016, @@ -4480,7 +4471,7 @@ local monster_chapter = { ["monster_base"]=20007, ["is_boss"]=1, ["hp"]=407040000, - ["atk"]=5170000, + ["atk"]=3770000, ["atk_times"]=4, ["hurt_skill"]={ 30019, @@ -4498,7 +4489,7 @@ local monster_chapter = { [34101]={ ["monster_base"]=10020, ["hp"]=235600000, - ["atk"]=5170000, + ["atk"]=3540000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -4510,7 +4501,7 @@ local monster_chapter = { [34201]={ ["monster_base"]=10024, ["hp"]=266990000, - ["atk"]=5320000, + ["atk"]=3640000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -4522,7 +4513,7 @@ local monster_chapter = { [34301]={ ["monster_base"]=10012, ["hp"]=282830000, - ["atk"]=5450000, + ["atk"]=3770000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -4534,7 +4525,7 @@ local monster_chapter = { [34401]={ ["monster_base"]=10016, ["hp"]=306580000, - ["atk"]=5610000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -4547,7 +4538,7 @@ local monster_chapter = { ["monster_base"]=20002, ["is_boss"]=1, ["hp"]=554190000, - ["atk"]=5300000, + ["atk"]=3950000, ["atk_times"]=4, ["hurt_skill"]={ 30004, @@ -4562,7 +4553,7 @@ local monster_chapter = { [34601]={ ["monster_base"]=10004, ["hp"]=367730000, - ["atk"]=5720000, + ["atk"]=4070000, ["atk_times"]=3, ["hurt_skill"]={ 20010, @@ -4574,7 +4565,7 @@ local monster_chapter = { [34701]={ ["monster_base"]=10012, ["hp"]=391760000, - ["atk"]=5870000, + ["atk"]=4160000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -4586,7 +4577,7 @@ local monster_chapter = { [34801]={ ["monster_base"]=10049, ["hp"]=429980000, - ["atk"]=6030000, + ["atk"]=4320000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -4598,7 +4589,7 @@ local monster_chapter = { [34901]={ ["monster_base"]=10048, ["hp"]=469560000, - ["atk"]=6160000, + ["atk"]=4460000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -4611,7 +4602,7 @@ local monster_chapter = { ["monster_base"]=20009, ["is_boss"]=2, ["hp"]=740920000, - ["atk"]=7700000, + ["atk"]=6050000, ["atk_times"]=4, ["hurt_skill"]={ 30025, @@ -4630,7 +4621,7 @@ local monster_chapter = { [35101]={ ["monster_base"]=10004, ["hp"]=79650000, - ["atk"]=4360000, + ["atk"]=2460000, ["atk_times"]=3, ["hurt_skill"]={ 20010, @@ -4642,7 +4633,7 @@ local monster_chapter = { [35201]={ ["monster_base"]=10020, ["hp"]=110160000, - ["atk"]=4570000, + ["atk"]=2610000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -4654,7 +4645,7 @@ local monster_chapter = { [35301]={ ["monster_base"]=10048, ["hp"]=123930000, - ["atk"]=4720000, + ["atk"]=2730000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -4666,7 +4657,7 @@ local monster_chapter = { [35401]={ ["monster_base"]=10012, ["hp"]=164430000, - ["atk"]=4880000, + ["atk"]=2850000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -4679,7 +4670,7 @@ local monster_chapter = { ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=227610000, - ["atk"]=5030000, + ["atk"]=3260000, ["atk_times"]=4, ["hurt_skill"]={ 30040, @@ -4697,7 +4688,7 @@ local monster_chapter = { [35601]={ ["monster_base"]=10004, ["hp"]=155790000, - ["atk"]=5060000, + ["atk"]=2990000, ["atk_times"]=3, ["hurt_skill"]={ 20010, @@ -4709,7 +4700,7 @@ local monster_chapter = { [35701]={ ["monster_base"]=10012, ["hp"]=172800000, - ["atk"]=5570000, + ["atk"]=3390000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -4721,7 +4712,7 @@ local monster_chapter = { [35801]={ ["monster_base"]=10037, ["hp"]=199530000, - ["atk"]=5210000, + ["atk"]=3140000, ["atk_times"]=3, ["hurt_skill"]={ 20106, @@ -4733,7 +4724,7 @@ local monster_chapter = { [35901]={ ["monster_base"]=10048, ["hp"]=227610000, - ["atk"]=5730000, + ["atk"]=3520000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -4746,7 +4737,7 @@ local monster_chapter = { ["monster_base"]=20009, ["is_boss"]=1, ["hp"]=427410000, - ["atk"]=5470000, + ["atk"]=3900000, ["atk_times"]=4, ["hurt_skill"]={ 30025, @@ -4765,7 +4756,7 @@ local monster_chapter = { [36101]={ ["monster_base"]=10014, ["hp"]=247590000, - ["atk"]=5500000, + ["atk"]=3670000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -4777,7 +4768,7 @@ local monster_chapter = { [36201]={ ["monster_base"]=10027, ["hp"]=280530000, - ["atk"]=5650000, + ["atk"]=3770000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -4789,7 +4780,7 @@ local monster_chapter = { [36301]={ ["monster_base"]=10017, ["hp"]=297000000, - ["atk"]=5780000, + ["atk"]=3900000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -4801,7 +4792,7 @@ local monster_chapter = { [36401]={ ["monster_base"]=10023, ["hp"]=322110000, - ["atk"]=5930000, + ["atk"]=4090000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -4814,7 +4805,7 @@ local monster_chapter = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=582120000, - ["atk"]=5600000, + ["atk"]=4090000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -4832,7 +4823,7 @@ local monster_chapter = { [36601]={ ["monster_base"]=10014, ["hp"]=386370000, - ["atk"]=6060000, + ["atk"]=4220000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -4844,7 +4835,7 @@ local monster_chapter = { [36701]={ ["monster_base"]=10002, ["hp"]=411480000, - ["atk"]=6220000, + ["atk"]=4310000, ["atk_times"]=3, ["hurt_skill"]={ 20004, @@ -4856,7 +4847,7 @@ local monster_chapter = { [36801]={ ["monster_base"]=10029, ["hp"]=451710000, - ["atk"]=6370000, + ["atk"]=4470000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -4868,7 +4859,7 @@ local monster_chapter = { [36901]={ ["monster_base"]=10036, ["hp"]=493290000, - ["atk"]=6530000, + ["atk"]=4620000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -4881,7 +4872,7 @@ local monster_chapter = { ["monster_base"]=30009, ["is_boss"]=2, ["hp"]=778140000, - ["atk"]=8130000, + ["atk"]=6260000, ["atk_times"]=4, ["hurt_skill"]={ 40021, @@ -4897,7 +4888,7 @@ local monster_chapter = { [37101]={ ["monster_base"]=10054, ["hp"]=82890000, - ["atk"]=4590000, + ["atk"]=2530000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -4909,7 +4900,7 @@ local monster_chapter = { [37201]={ ["monster_base"]=10024, ["hp"]=114480000, - ["atk"]=4800000, + ["atk"]=2690000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -4921,7 +4912,7 @@ local monster_chapter = { [37301]={ ["monster_base"]=10012, ["hp"]=128790000, - ["atk"]=4950000, + ["atk"]=2810000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -4933,7 +4924,7 @@ local monster_chapter = { [37401]={ ["monster_base"]=10048, ["hp"]=170910000, - ["atk"]=5110000, + ["atk"]=2930000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -4946,7 +4937,7 @@ local monster_chapter = { ["monster_base"]=20009, ["is_boss"]=1, ["hp"]=236520000, - ["atk"]=5260000, + ["atk"]=3350000, ["atk_times"]=4, ["hurt_skill"]={ 30025, @@ -4965,7 +4956,7 @@ local monster_chapter = { [37601]={ ["monster_base"]=10048, ["hp"]=162000000, - ["atk"]=5290000, + ["atk"]=3080000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -4977,7 +4968,7 @@ local monster_chapter = { [37701]={ ["monster_base"]=10054, ["hp"]=179550000, - ["atk"]=5830000, + ["atk"]=3490000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -4989,7 +4980,7 @@ local monster_chapter = { [37801]={ ["monster_base"]=10012, ["hp"]=207360000, - ["atk"]=5470000, + ["atk"]=3230000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -5001,7 +4992,7 @@ local monster_chapter = { [37901]={ ["monster_base"]=10024, ["hp"]=236520000, - ["atk"]=6010000, + ["atk"]=3620000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -5014,7 +5005,7 @@ local monster_chapter = { ["monster_base"]=20006, ["is_boss"]=1, ["hp"]=443880000, - ["atk"]=5700000, + ["atk"]=4010000, ["atk_times"]=4, ["hurt_skill"]={ 30016, @@ -5032,7 +5023,7 @@ local monster_chapter = { [38101]={ ["monster_base"]=10020, ["hp"]=257310000, - ["atk"]=5750000, + ["atk"]=3770000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -5044,7 +5035,7 @@ local monster_chapter = { [38201]={ ["monster_base"]=10053, ["hp"]=291330000, - ["atk"]=5910000, + ["atk"]=3880000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -5056,7 +5047,7 @@ local monster_chapter = { [38301]={ ["monster_base"]=10006, ["hp"]=308340000, - ["atk"]=6040000, + ["atk"]=4010000, ["atk_times"]=3, ["hurt_skill"]={ 20016, @@ -5068,7 +5059,7 @@ local monster_chapter = { [38401]={ ["monster_base"]=10004, ["hp"]=334530000, - ["atk"]=6220000, + ["atk"]=4210000, ["atk_times"]=3, ["hurt_skill"]={ 20010, @@ -5081,7 +5072,7 @@ local monster_chapter = { ["monster_base"]=20004, ["is_boss"]=1, ["hp"]=604530000, - ["atk"]=5860000, + ["atk"]=4210000, ["atk_times"]=4, ["hurt_skill"]={ 30010, @@ -5096,7 +5087,7 @@ local monster_chapter = { [38601]={ ["monster_base"]=10053, ["hp"]=401220000, - ["atk"]=6350000, + ["atk"]=4340000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -5108,7 +5099,7 @@ local monster_chapter = { [38701]={ ["monster_base"]=10049, ["hp"]=427410000, - ["atk"]=6500000, + ["atk"]=4430000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -5120,7 +5111,7 @@ local monster_chapter = { [38801]={ ["monster_base"]=10020, ["hp"]=468990000, - ["atk"]=6680000, + ["atk"]=4600000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -5132,7 +5123,7 @@ local monster_chapter = { [38901]={ ["monster_base"]=10054, ["hp"]=512190000, - ["atk"]=6810000, + ["atk"]=4750000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -5145,7 +5136,7 @@ local monster_chapter = { ["monster_base"]=20010, ["is_boss"]=2, ["hp"]=808110000, - ["atk"]=8490000, + ["atk"]=6440000, ["atk_times"]=4, ["hurt_skill"]={ 30028, @@ -5166,7 +5157,7 @@ local monster_chapter = { [39101]={ ["monster_base"]=10052, ["hp"]=85050000, - ["atk"]=4750000, + ["atk"]=2610000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -5178,7 +5169,7 @@ local monster_chapter = { [39201]={ ["monster_base"]=10050, ["hp"]=117450000, - ["atk"]=4980000, + ["atk"]=2780000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -5190,7 +5181,7 @@ local monster_chapter = { [39301]={ ["monster_base"]=10010, ["hp"]=132030000, - ["atk"]=5130000, + ["atk"]=2900000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -5202,7 +5193,7 @@ local monster_chapter = { [39401]={ ["monster_base"]=10053, ["hp"]=175230000, - ["atk"]=5310000, + ["atk"]=3020000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -5215,7 +5206,7 @@ local monster_chapter = { ["monster_base"]=20005, ["is_boss"]=1, ["hp"]=242460000, - ["atk"]=5440000, + ["atk"]=3460000, ["atk_times"]=4, ["hurt_skill"]={ 30013, @@ -5233,7 +5224,7 @@ local monster_chapter = { [39601]={ ["monster_base"]=10040, ["hp"]=166050000, - ["atk"]=5500000, + ["atk"]=3180000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -5245,7 +5236,7 @@ local monster_chapter = { [39701]={ ["monster_base"]=10052, ["hp"]=184140000, - ["atk"]=6040000, + ["atk"]=3600000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -5257,7 +5248,7 @@ local monster_chapter = { [39801]={ ["monster_base"]=10054, ["hp"]=212760000, - ["atk"]=5680000, + ["atk"]=3330000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -5269,7 +5260,7 @@ local monster_chapter = { [39901]={ ["monster_base"]=10038, ["hp"]=242460000, - ["atk"]=6220000, + ["atk"]=3740000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -5282,7 +5273,7 @@ local monster_chapter = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=454950000, - ["atk"]=5910000, + ["atk"]=4140000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -5300,7 +5291,7 @@ local monster_chapter = { [40101]={ ["monster_base"]=10009, ["hp"]=263790000, - ["atk"]=5960000, + ["atk"]=3890000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -5312,7 +5303,7 @@ local monster_chapter = { [40201]={ ["monster_base"]=10054, ["hp"]=298620000, - ["atk"]=6110000, + ["atk"]=4000000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -5324,7 +5315,7 @@ local monster_chapter = { [40301]={ ["monster_base"]=10052, ["hp"]=316170000, - ["atk"]=6240000, + ["atk"]=4140000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -5336,7 +5327,7 @@ local monster_chapter = { [40401]={ ["monster_base"]=10050, ["hp"]=342900000, - ["atk"]=6450000, + ["atk"]=4340000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -5349,7 +5340,7 @@ local monster_chapter = { ["monster_base"]=20008, ["is_boss"]=1, ["hp"]=619650000, - ["atk"]=6040000, + ["atk"]=4340000, ["atk_times"]=4, ["hurt_skill"]={ 30022, @@ -5367,7 +5358,7 @@ local monster_chapter = { [40601]={ ["monster_base"]=10038, ["hp"]=411210000, - ["atk"]=6550000, + ["atk"]=4480000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -5379,7 +5370,7 @@ local monster_chapter = { [40701]={ ["monster_base"]=10053, ["hp"]=438210000, - ["atk"]=6730000, + ["atk"]=4570000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -5391,7 +5382,7 @@ local monster_chapter = { [40801]={ ["monster_base"]=10050, ["hp"]=480870000, - ["atk"]=6890000, + ["atk"]=4750000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -5403,7 +5394,7 @@ local monster_chapter = { [40901]={ ["monster_base"]=10040, ["hp"]=525150000, - ["atk"]=7040000, + ["atk"]=4900000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -5416,7 +5407,7 @@ local monster_chapter = { ["monster_base"]=30015, ["is_boss"]=2, ["hp"]=828360000, - ["atk"]=8750000, + ["atk"]=6640000, ["atk_times"]=4, ["hurt_skill"]={ 40025, @@ -5432,7 +5423,7 @@ local monster_chapter = { [41101]={ ["monster_base"]=10043, ["hp"]=87310000, - ["atk"]=4920000, + ["atk"]=2690000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -5444,7 +5435,7 @@ local monster_chapter = { [41201]={ ["monster_base"]=10054, ["hp"]=120420000, - ["atk"]=5150000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -5456,7 +5447,7 @@ local monster_chapter = { [41301]={ ["monster_base"]=10038, ["hp"]=135370000, - ["atk"]=5300000, + ["atk"]=2990000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -5468,7 +5459,7 @@ local monster_chapter = { [41401]={ ["monster_base"]=10053, ["hp"]=179690000, - ["atk"]=5480000, + ["atk"]=3110000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -5481,7 +5472,7 @@ local monster_chapter = { ["monster_base"]=20010, ["is_boss"]=1, ["hp"]=248580000, - ["atk"]=5610000, + ["atk"]=3570000, ["atk_times"]=4, ["hurt_skill"]={ 30028, @@ -5502,7 +5493,7 @@ local monster_chapter = { [41601]={ ["monster_base"]=10038, ["hp"]=170350000, - ["atk"]=5660000, + ["atk"]=3280000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -5514,7 +5505,7 @@ local monster_chapter = { [41701]={ ["monster_base"]=10053, ["hp"]=188770000, - ["atk"]=6220000, + ["atk"]=3710000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -5526,7 +5517,7 @@ local monster_chapter = { [41801]={ ["monster_base"]=10006, ["hp"]=218140000, - ["atk"]=5870000, + ["atk"]=3430000, ["atk_times"]=3, ["hurt_skill"]={ 20016, @@ -5538,7 +5529,7 @@ local monster_chapter = { [41901]={ ["monster_base"]=10004, ["hp"]=248580000, - ["atk"]=6400000, + ["atk"]=3860000, ["atk_times"]=3, ["hurt_skill"]={ 20010, @@ -5551,7 +5542,7 @@ local monster_chapter = { ["monster_base"]=20004, ["is_boss"]=1, ["hp"]=466180000, - ["atk"]=6070000, + ["atk"]=4270000, ["atk_times"]=4, ["hurt_skill"]={ 30010, @@ -5566,7 +5557,7 @@ local monster_chapter = { [42101]={ ["monster_base"]=10052, ["hp"]=270470000, - ["atk"]=6150000, + ["atk"]=4010000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -5578,7 +5569,7 @@ local monster_chapter = { [42201]={ ["monster_base"]=10050, ["hp"]=305980000, - ["atk"]=6320000, + ["atk"]=4120000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -5590,7 +5581,7 @@ local monster_chapter = { [42301]={ ["monster_base"]=10010, ["hp"]=324140000, - ["atk"]=6450000, + ["atk"]=4270000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -5602,7 +5593,7 @@ local monster_chapter = { [42401]={ ["monster_base"]=10039, ["hp"]=351370000, - ["atk"]=6660000, + ["atk"]=4470000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -5615,7 +5606,7 @@ local monster_chapter = { ["monster_base"]=20005, ["is_boss"]=1, ["hp"]=634930000, - ["atk"]=6220000, + ["atk"]=4470000, ["atk_times"]=4, ["hurt_skill"]={ 30013, @@ -5633,7 +5624,7 @@ local monster_chapter = { [42601]={ ["monster_base"]=10040, ["hp"]=421330000, - ["atk"]=6760000, + ["atk"]=4620000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -5645,7 +5636,7 @@ local monster_chapter = { [42701]={ ["monster_base"]=10010, ["hp"]=449090000, - ["atk"]=6940000, + ["atk"]=4710000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -5657,7 +5648,7 @@ local monster_chapter = { [42801]={ ["monster_base"]=10040, ["hp"]=492620000, - ["atk"]=7110000, + ["atk"]=4900000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -5669,7 +5660,7 @@ local monster_chapter = { [42901]={ ["monster_base"]=10009, ["hp"]=538010000, - ["atk"]=7270000, + ["atk"]=5050000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -5682,7 +5673,7 @@ local monster_chapter = { ["monster_base"]=20024, ["is_boss"]=2, ["hp"]=848790000, - ["atk"]=8980000, + ["atk"]=6840000, ["atk_times"]=4, ["hurt_skill"]={ 30070, @@ -5701,7 +5692,7 @@ local monster_chapter = { [43101]={ ["monster_base"]=10009, ["hp"]=91310000, - ["atk"]=5180000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -5713,7 +5704,7 @@ local monster_chapter = { [43201]={ ["monster_base"]=10054, ["hp"]=125760000, - ["atk"]=5430000, + ["atk"]=2960000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -5725,7 +5716,7 @@ local monster_chapter = { [43301]={ ["monster_base"]=10052, ["hp"]=141240000, - ["atk"]=5580000, + ["atk"]=3080000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -5737,7 +5728,7 @@ local monster_chapter = { [43401]={ ["monster_base"]=10050, ["hp"]=187430000, - ["atk"]=5760000, + ["atk"]=3200000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -5750,7 +5741,7 @@ local monster_chapter = { ["monster_base"]=20008, ["is_boss"]=1, ["hp"]=259260000, - ["atk"]=5890000, + ["atk"]=3680000, ["atk_times"]=4, ["hurt_skill"]={ 30022, @@ -5768,7 +5759,7 @@ local monster_chapter = { [43601]={ ["monster_base"]=10044, ["hp"]=177820000, - ["atk"]=5970000, + ["atk"]=3380000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -5780,7 +5771,7 @@ local monster_chapter = { [43701]={ ["monster_base"]=10054, ["hp"]=197050000, - ["atk"]=6550000, + ["atk"]=3820000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -5792,7 +5783,7 @@ local monster_chapter = { [43801]={ ["monster_base"]=10014, ["hp"]=227750000, - ["atk"]=6170000, + ["atk"]=3530000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -5804,7 +5795,7 @@ local monster_chapter = { [43901]={ ["monster_base"]=10018, ["hp"]=259260000, - ["atk"]=6730000, + ["atk"]=3980000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -5817,7 +5808,7 @@ local monster_chapter = { ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=486210000, - ["atk"]=6380000, + ["atk"]=4400000, ["atk_times"]=4, ["hurt_skill"]={ 30040, @@ -5835,7 +5826,7 @@ local monster_chapter = { [44101]={ ["monster_base"]=10009, ["hp"]=282220000, - ["atk"]=6480000, + ["atk"]=4130000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -5847,7 +5838,7 @@ local monster_chapter = { [44201]={ ["monster_base"]=10010, ["hp"]=319330000, - ["atk"]=6660000, + ["atk"]=4240000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -5859,7 +5850,7 @@ local monster_chapter = { [44301]={ ["monster_base"]=10053, ["hp"]=338290000, - ["atk"]=6780000, + ["atk"]=4400000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -5871,7 +5862,7 @@ local monster_chapter = { [44401]={ ["monster_base"]=10039, ["hp"]=366590000, - ["atk"]=6990000, + ["atk"]=4600000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -5884,7 +5875,7 @@ local monster_chapter = { ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=662430000, - ["atk"]=6550000, + ["atk"]=4600000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -5899,7 +5890,7 @@ local monster_chapter = { [44601]={ ["monster_base"]=10052, ["hp"]=439480000, - ["atk"]=7110000, + ["atk"]=4760000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -5911,7 +5902,7 @@ local monster_chapter = { [44701]={ ["monster_base"]=10043, ["hp"]=468590000, - ["atk"]=7290000, + ["atk"]=4850000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -5923,7 +5914,7 @@ local monster_chapter = { [44801]={ ["monster_base"]=10054, ["hp"]=513980000, - ["atk"]=7470000, + ["atk"]=5050000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -5935,7 +5926,7 @@ local monster_chapter = { [44901]={ ["monster_base"]=10050, ["hp"]=561230000, - ["atk"]=7620000, + ["atk"]=5200000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -5948,7 +5939,7 @@ local monster_chapter = { ["monster_base"]=20019, ["is_boss"]=2, ["hp"]=708290000, - ["atk"]=8460000, + ["atk"]=6330000, ["atk_times"]=4, ["hurt_skill"]={ 30055, @@ -5968,7 +5959,7 @@ local monster_chapter = { ["monster_base"]=20010, ["is_boss"]=1, ["hp"]=531220000, - ["atk"]=7520000, + ["atk"]=5630000, ["atk_times"]=4, ["hurt_skill"]={ 30028, @@ -5989,7 +5980,7 @@ local monster_chapter = { [45101]={ ["monster_base"]=10046, ["hp"]=92140000, - ["atk"]=5270000, + ["atk"]=2850000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -6001,7 +5992,7 @@ local monster_chapter = { [45201]={ ["monster_base"]=10043, ["hp"]=126720000, - ["atk"]=5520000, + ["atk"]=3050000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -6013,7 +6004,7 @@ local monster_chapter = { [45301]={ ["monster_base"]=10050, ["hp"]=142300000, - ["atk"]=5700000, + ["atk"]=3170000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -6025,7 +6016,7 @@ local monster_chapter = { [45401]={ ["monster_base"]=10054, ["hp"]=188760000, - ["atk"]=5870000, + ["atk"]=3290000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -6038,7 +6029,7 @@ local monster_chapter = { ["monster_base"]=20010, ["is_boss"]=1, ["hp"]=261100000, - ["atk"]=5950000, + ["atk"]=3790000, ["atk_times"]=4, ["hurt_skill"]={ 30028, @@ -6059,7 +6050,7 @@ local monster_chapter = { [45601]={ ["monster_base"]=10052, ["hp"]=179260000, - ["atk"]=6050000, + ["atk"]=3480000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -6071,7 +6062,7 @@ local monster_chapter = { [45701]={ ["monster_base"]=10045, ["hp"]=198530000, - ["atk"]=6650000, + ["atk"]=3930000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -6083,7 +6074,7 @@ local monster_chapter = { [45801]={ ["monster_base"]=10043, ["hp"]=229420000, - ["atk"]=6270000, + ["atk"]=3630000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -6095,7 +6086,7 @@ local monster_chapter = { [45901]={ ["monster_base"]=10053, ["hp"]=261100000, - ["atk"]=6830000, + ["atk"]=4100000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -6108,7 +6099,7 @@ local monster_chapter = { ["monster_base"]=20005, ["is_boss"]=1, ["hp"]=489720000, - ["atk"]=6480000, + ["atk"]=4530000, ["atk_times"]=4, ["hurt_skill"]={ 30013, @@ -6126,7 +6117,7 @@ local monster_chapter = { [46101]={ ["monster_base"]=10045, ["hp"]=284330000, - ["atk"]=6550000, + ["atk"]=4250000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -6138,7 +6129,7 @@ local monster_chapter = { [46201]={ ["monster_base"]=10052, ["hp"]=321550000, - ["atk"]=6750000, + ["atk"]=4360000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -6150,7 +6141,7 @@ local monster_chapter = { [46301]={ ["monster_base"]=10010, ["hp"]=340820000, - ["atk"]=6880000, + ["atk"]=4530000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -6162,7 +6153,7 @@ local monster_chapter = { [46401]={ ["monster_base"]=10039, ["hp"]=369340000, - ["atk"]=7080000, + ["atk"]=4730000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -6175,7 +6166,7 @@ local monster_chapter = { ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=667130000, - ["atk"]=6630000, + ["atk"]=4730000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -6190,7 +6181,7 @@ local monster_chapter = { [46601]={ ["monster_base"]=10050, ["hp"]=442730000, - ["atk"]=7210000, + ["atk"]=4900000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -6202,7 +6193,7 @@ local monster_chapter = { [46701]={ ["monster_base"]=10043, ["hp"]=472030000, - ["atk"]=7410000, + ["atk"]=4990000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -6214,7 +6205,7 @@ local monster_chapter = { [46801]={ ["monster_base"]=10046, ["hp"]=517700000, - ["atk"]=7590000, + ["atk"]=5200000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -6226,7 +6217,7 @@ local monster_chapter = { [46901]={ ["monster_base"]=10054, ["hp"]=565220000, - ["atk"]=7740000, + ["atk"]=5350000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -6239,7 +6230,7 @@ local monster_chapter = { ["monster_base"]=20020, ["is_boss"]=2, ["hp"]=713220000, - ["atk"]=8550000, + ["atk"]=6510000, ["atk_times"]=4, ["hurt_skill"]={ 30058, @@ -6259,7 +6250,7 @@ local monster_chapter = { ["monster_base"]=20010, ["is_boss"]=1, ["hp"]=534910000, - ["atk"]=7600000, + ["atk"]=5790000, ["atk_times"]=4, ["hurt_skill"]={ 30028, @@ -6280,7 +6271,7 @@ local monster_chapter = { [47101]={ ["monster_base"]=10047, ["hp"]=94250000, - ["atk"]=5440000, + ["atk"]=2940000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -6292,7 +6283,7 @@ local monster_chapter = { [47201]={ ["monster_base"]=10038, ["hp"]=129620000, - ["atk"]=5700000, + ["atk"]=3150000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -6304,7 +6295,7 @@ local monster_chapter = { [47301]={ ["monster_base"]=10021, ["hp"]=145730000, - ["atk"]=5870000, + ["atk"]=3270000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -6316,7 +6307,7 @@ local monster_chapter = { [47401]={ ["monster_base"]=10040, ["hp"]=193250000, - ["atk"]=6050000, + ["atk"]=3390000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -6329,7 +6320,7 @@ local monster_chapter = { ["monster_base"]=20017, ["is_boss"]=1, ["hp"]=267170000, - ["atk"]=6120000, + ["atk"]=3910000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -6344,7 +6335,7 @@ local monster_chapter = { [47601]={ ["monster_base"]=10010, ["hp"]=183480000, - ["atk"]=6250000, + ["atk"]=3590000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -6356,7 +6347,7 @@ local monster_chapter = { [47701]={ ["monster_base"]=10039, ["hp"]=203020000, - ["atk"]=6850000, + ["atk"]=4050000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -6368,7 +6359,7 @@ local monster_chapter = { [47801]={ ["monster_base"]=10040, ["hp"]=234700000, - ["atk"]=6450000, + ["atk"]=3740000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -6380,7 +6371,7 @@ local monster_chapter = { [47901]={ ["monster_base"]=10009, ["hp"]=267170000, - ["atk"]=7060000, + ["atk"]=4230000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -6393,7 +6384,7 @@ local monster_chapter = { ["monster_base"]=20024, ["is_boss"]=1, ["hp"]=500810000, - ["atk"]=6650000, + ["atk"]=4670000, ["atk_times"]=4, ["hurt_skill"]={ 30070, @@ -6412,7 +6403,7 @@ local monster_chapter = { [48101]={ ["monster_base"]=10052, ["hp"]=290930000, - ["atk"]=6750000, + ["atk"]=4380000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -6424,7 +6415,7 @@ local monster_chapter = { [48201]={ ["monster_base"]=10043, ["hp"]=328940000, - ["atk"]=6960000, + ["atk"]=4500000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -6436,7 +6427,7 @@ local monster_chapter = { [48301]={ ["monster_base"]=10050, ["hp"]=348740000, - ["atk"]=7080000, + ["atk"]=4670000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -6448,7 +6439,7 @@ local monster_chapter = { [48401]={ ["monster_base"]=10054, ["hp"]=377780000, - ["atk"]=7310000, + ["atk"]=4880000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -6461,7 +6452,7 @@ local monster_chapter = { ["monster_base"]=20019, ["is_boss"]=1, ["hp"]=682180000, - ["atk"]=6800000, + ["atk"]=4880000, ["atk_times"]=4, ["hurt_skill"]={ 30055, @@ -6479,7 +6470,7 @@ local monster_chapter = { [48601]={ ["monster_base"]=10029, ["hp"]=452760000, - ["atk"]=7430000, + ["atk"]=5050000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -6491,7 +6482,7 @@ local monster_chapter = { [48701]={ ["monster_base"]=10050, ["hp"]=482860000, - ["atk"]=7610000, + ["atk"]=5150000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -6503,7 +6494,7 @@ local monster_chapter = { [48801]={ ["monster_base"]=10043, ["hp"]=529580000, - ["atk"]=7810000, + ["atk"]=5360000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -6515,7 +6506,7 @@ local monster_chapter = { [48901]={ ["monster_base"]=10028, ["hp"]=578160000, - ["atk"]=7960000, + ["atk"]=5520000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -6528,7 +6519,7 @@ local monster_chapter = { ["monster_base"]=20013, ["is_boss"]=2, ["hp"]=911860000, - ["atk"]=9780000, + ["atk"]=7460000, ["atk_times"]=4, ["hurt_skill"]={ 30037, @@ -6544,7 +6535,7 @@ local monster_chapter = { [49101]={ ["monster_base"]=10052, ["hp"]=98400000, - ["atk"]=5750000, + ["atk"]=3030000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -6556,7 +6547,7 @@ local monster_chapter = { [49201]={ ["monster_base"]=10045, ["hp"]=135460000, - ["atk"]=5980000, + ["atk"]=3250000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -6568,7 +6559,7 @@ local monster_chapter = { [49301]={ ["monster_base"]=10043, ["hp"]=152160000, - ["atk"]=6180000, + ["atk"]=3370000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -6580,7 +6571,7 @@ local monster_chapter = { [49401]={ ["monster_base"]=10053, ["hp"]=201750000, - ["atk"]=6370000, + ["atk"]=3490000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -6593,7 +6584,7 @@ local monster_chapter = { ["monster_base"]=20005, ["is_boss"]=1, ["hp"]=279010000, - ["atk"]=6450000, + ["atk"]=4030000, ["atk_times"]=4, ["hurt_skill"]={ 30013, @@ -6611,7 +6602,7 @@ local monster_chapter = { [49601]={ ["monster_base"]=10010, ["hp"]=191570000, - ["atk"]=6570000, + ["atk"]=3700000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -6623,7 +6614,7 @@ local monster_chapter = { [49701]={ ["monster_base"]=10039, ["hp"]=211930000, - ["atk"]=7200000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -6635,7 +6626,7 @@ local monster_chapter = { [49801]={ ["monster_base"]=10040, ["hp"]=245080000, - ["atk"]=6800000, + ["atk"]=3850000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -6647,7 +6638,7 @@ local monster_chapter = { [49901]={ ["monster_base"]=10009, ["hp"]=279010000, - ["atk"]=7400000, + ["atk"]=4360000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -6660,7 +6651,7 @@ local monster_chapter = { ["monster_base"]=20024, ["is_boss"]=1, ["hp"]=522780000, - ["atk"]=6970000, + ["atk"]=4810000, ["atk_times"]=4, ["hurt_skill"]={ 30070, @@ -6679,7 +6670,7 @@ local monster_chapter = { [50101]={ ["monster_base"]=10040, ["hp"]=303800000, - ["atk"]=7100000, + ["atk"]=4510000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -6691,7 +6682,7 @@ local monster_chapter = { [50201]={ ["monster_base"]=10039, ["hp"]=343480000, - ["atk"]=7320000, + ["atk"]=4640000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -6703,7 +6694,7 @@ local monster_chapter = { [50301]={ ["monster_base"]=10010, ["hp"]=364100000, - ["atk"]=7450000, + ["atk"]=4810000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -6715,7 +6706,7 @@ local monster_chapter = { [50401]={ ["monster_base"]=10039, ["hp"]=394370000, - ["atk"]=7670000, + ["atk"]=5030000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -6728,7 +6719,7 @@ local monster_chapter = { ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=712010000, - ["atk"]=7150000, + ["atk"]=5030000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -6743,7 +6734,7 @@ local monster_chapter = { [50601]={ ["monster_base"]=10010, ["hp"]=472670000, - ["atk"]=7820000, + ["atk"]=5200000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -6755,7 +6746,7 @@ local monster_chapter = { [50701]={ ["monster_base"]=10040, ["hp"]=503990000, - ["atk"]=7990000, + ["atk"]=5310000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -6767,7 +6758,7 @@ local monster_chapter = { [50801]={ ["monster_base"]=10038, ["hp"]=552800000, - ["atk"]=8190000, + ["atk"]=5520000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -6779,7 +6770,7 @@ local monster_chapter = { [50901]={ ["monster_base"]=10032, ["hp"]=603430000, - ["atk"]=8370000, + ["atk"]=5690000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -6792,7 +6783,7 @@ local monster_chapter = { ["monster_base"]=20018, ["is_boss"]=2, ["hp"]=951870000, - ["atk"]=10230000, + ["atk"]=7680000, ["atk_times"]=4, ["hurt_skill"]={ 30052, @@ -6811,7 +6802,7 @@ local monster_chapter = { [51101]={ ["monster_base"]=10033, ["hp"]=100490000, - ["atk"]=5900000, + ["atk"]=3120000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -6823,7 +6814,7 @@ local monster_chapter = { [51201]={ ["monster_base"]=10029, ["hp"]=138070000, - ["atk"]=6150000, + ["atk"]=3350000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -6835,7 +6826,7 @@ local monster_chapter = { [51301]={ ["monster_base"]=10031, ["hp"]=155030000, - ["atk"]=6350000, + ["atk"]=3470000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -6847,7 +6838,7 @@ local monster_chapter = { [51401]={ ["monster_base"]=10028, ["hp"]=205670000, - ["atk"]=6550000, + ["atk"]=3590000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -6860,7 +6851,7 @@ local monster_chapter = { ["monster_base"]=20013, ["is_boss"]=1, ["hp"]=284490000, - ["atk"]=6600000, + ["atk"]=4150000, ["atk_times"]=4, ["hurt_skill"]={ 30037, @@ -6876,7 +6867,7 @@ local monster_chapter = { [51601]={ ["monster_base"]=10030, ["hp"]=195230000, - ["atk"]=6750000, + ["atk"]=3810000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -6888,7 +6879,7 @@ local monster_chapter = { [51701]={ ["monster_base"]=10029, ["hp"]=216110000, - ["atk"]=7400000, + ["atk"]=4290000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -6900,7 +6891,7 @@ local monster_chapter = { [51801]={ ["monster_base"]=10033, ["hp"]=249780000, - ["atk"]=6970000, + ["atk"]=3960000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -6912,7 +6903,7 @@ local monster_chapter = { [51901]={ ["monster_base"]=10054, ["hp"]=284490000, - ["atk"]=7590000, + ["atk"]=4490000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -6925,7 +6916,7 @@ local monster_chapter = { ["monster_base"]=20010, ["is_boss"]=1, ["hp"]=532700000, - ["atk"]=7150000, + ["atk"]=4950000, ["atk_times"]=4, ["hurt_skill"]={ 30028, @@ -6946,7 +6937,7 @@ local monster_chapter = { [52101]={ ["monster_base"]=10053, ["hp"]=309550000, - ["atk"]=7300000, + ["atk"]=4640000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -6958,7 +6949,7 @@ local monster_chapter = { [52201]={ ["monster_base"]=10033, ["hp"]=350000000, - ["atk"]=7490000, + ["atk"]=4780000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -6970,7 +6961,7 @@ local monster_chapter = { [52301]={ ["monster_base"]=10029, ["hp"]=371140000, - ["atk"]=7640000, + ["atk"]=4950000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -6982,7 +6973,7 @@ local monster_chapter = { [52401]={ ["monster_base"]=10054, ["hp"]=401940000, - ["atk"]=7870000, + ["atk"]=5180000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -6995,7 +6986,7 @@ local monster_chapter = { ["monster_base"]=20020, ["is_boss"]=1, ["hp"]=725580000, - ["atk"]=7320000, + ["atk"]=5180000, ["atk_times"]=4, ["hurt_skill"]={ 30058, @@ -7013,7 +7004,7 @@ local monster_chapter = { [52601]={ ["monster_base"]=10053, ["hp"]=481550000, - ["atk"]=8020000, + ["atk"]=5350000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -7025,7 +7016,7 @@ local monster_chapter = { [52701]={ ["monster_base"]=10028, ["hp"]=513650000, - ["atk"]=8220000, + ["atk"]=5470000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -7037,7 +7028,7 @@ local monster_chapter = { [52801]={ ["monster_base"]=10046, ["hp"]=563240000, - ["atk"]=8420000, + ["atk"]=5680000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -7049,7 +7040,7 @@ local monster_chapter = { [52901]={ ["monster_base"]=10058, ["hp"]=614920000, - ["atk"]=8570000, + ["atk"]=5860000, ["atk_times"]=3, ["hurt_skill"]={ 20169, @@ -7062,7 +7053,7 @@ local monster_chapter = { ["monster_base"]=20032, ["is_boss"]=2, ["hp"]=969880000, - ["atk"]=10460000, + ["atk"]=7900000, ["atk_times"]=4, ["hurt_skill"]={ 30094, @@ -7084,7 +7075,7 @@ local monster_chapter = { [53101]={ ["monster_base"]=10057, ["hp"]=102570000, - ["atk"]=6080000, + ["atk"]=3210000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -7096,7 +7087,7 @@ local monster_chapter = { [53201]={ ["monster_base"]=10046, ["hp"]=140940000, - ["atk"]=6320000, + ["atk"]=3450000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -7108,7 +7099,7 @@ local monster_chapter = { [53301]={ ["monster_base"]=10052, ["hp"]=158170000, - ["atk"]=6520000, + ["atk"]=3570000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -7120,7 +7111,7 @@ local monster_chapter = { [53401]={ ["monster_base"]=10029, ["hp"]=209840000, - ["atk"]=6720000, + ["atk"]=3690000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -7133,7 +7124,7 @@ local monster_chapter = { ["monster_base"]=20008, ["is_boss"]=1, ["hp"]=290230000, - ["atk"]=6770000, + ["atk"]=4270000, ["atk_times"]=4, ["hurt_skill"]={ 30022, @@ -7151,7 +7142,7 @@ local monster_chapter = { [53601]={ ["monster_base"]=10058, ["hp"]=199140000, - ["atk"]=6950000, + ["atk"]=3920000, ["atk_times"]=3, ["hurt_skill"]={ 20169, @@ -7163,7 +7154,7 @@ local monster_chapter = { [53701]={ ["monster_base"]=10033, ["hp"]=220550000, - ["atk"]=7590000, + ["atk"]=4410000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -7175,7 +7166,7 @@ local monster_chapter = { [53801]={ ["monster_base"]=10044, ["hp"]=255000000, - ["atk"]=7170000, + ["atk"]=4070000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -7187,7 +7178,7 @@ local monster_chapter = { [53901]={ ["monster_base"]=10053, ["hp"]=290230000, - ["atk"]=7790000, + ["atk"]=4620000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -7200,7 +7191,7 @@ local monster_chapter = { ["monster_base"]=20011, ["is_boss"]=1, ["hp"]=543400000, - ["atk"]=7350000, + ["atk"]=5090000, ["atk_times"]=4, ["hurt_skill"]={ 30031, @@ -7215,7 +7206,7 @@ local monster_chapter = { [54101]={ ["monster_base"]=10029, ["hp"]=315810000, - ["atk"]=7490000, + ["atk"]=4770000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -7227,7 +7218,7 @@ local monster_chapter = { [54201]={ ["monster_base"]=10058, ["hp"]=357050000, - ["atk"]=7720000, + ["atk"]=4920000, ["atk_times"]=3, ["hurt_skill"]={ 20169, @@ -7239,7 +7230,7 @@ local monster_chapter = { [54301]={ ["monster_base"]=10052, ["hp"]=378710000, - ["atk"]=7840000, + ["atk"]=5090000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -7251,7 +7242,7 @@ local monster_chapter = { [54401]={ ["monster_base"]=10054, ["hp"]=410030000, - ["atk"]=8090000, + ["atk"]=5330000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -7264,7 +7255,7 @@ local monster_chapter = { ["monster_base"]=20005, ["is_boss"]=1, ["hp"]=740200000, - ["atk"]=7520000, + ["atk"]=5330000, ["atk_times"]=4, ["hurt_skill"]={ 30013, @@ -7282,7 +7273,7 @@ local monster_chapter = { [54601]={ ["monster_base"]=10053, ["hp"]=491200000, - ["atk"]=8220000, + ["atk"]=5500000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -7294,7 +7285,7 @@ local monster_chapter = { [54701]={ ["monster_base"]=10028, ["hp"]=524090000, - ["atk"]=8420000, + ["atk"]=5630000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -7306,7 +7297,7 @@ local monster_chapter = { [54801]={ ["monster_base"]=10046, ["hp"]=574720000, - ["atk"]=8640000, + ["atk"]=5840000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -7318,7 +7309,7 @@ local monster_chapter = { [54901]={ ["monster_base"]=10057, ["hp"]=627440000, - ["atk"]=8790000, + ["atk"]=6030000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -7331,7 +7322,7 @@ local monster_chapter = { ["monster_base"]=20032, ["is_boss"]=2, ["hp"]=791560000, - ["atk"]=9630000, + ["atk"]=7300000, ["atk_times"]=4, ["hurt_skill"]={ 30094, @@ -7355,7 +7346,7 @@ local monster_chapter = { ["monster_base"]=20030, ["is_boss"]=2, ["hp"]=593670000, - ["atk"]=8560000, + ["atk"]=6490000, ["atk_times"]=4, ["hurt_skill"]={ 30088, @@ -7374,7 +7365,7 @@ local monster_chapter = { [55201]={ ["monster_base"]=10056, ["hp"]=106340000, - ["atk"]=6420000, + ["atk"]=3300000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -7386,7 +7377,7 @@ local monster_chapter = { [55301]={ ["monster_base"]=10009, ["hp"]=145860000, - ["atk"]=6670000, + ["atk"]=3550000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -7398,7 +7389,7 @@ local monster_chapter = { [55401]={ ["monster_base"]=10010, ["hp"]=163710000, - ["atk"]=6890000, + ["atk"]=3670000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -7410,7 +7401,7 @@ local monster_chapter = { [55501]={ ["monster_base"]=10039, ["hp"]=217260000, - ["atk"]=7080000, + ["atk"]=3790000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -7423,7 +7414,7 @@ local monster_chapter = { ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=300390000, - ["atk"]=7130000, + ["atk"]=4390000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -7438,7 +7429,7 @@ local monster_chapter = { [55701]={ ["monster_base"]=10009, ["hp"]=206040000, - ["atk"]=7310000, + ["atk"]=4030000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -7450,7 +7441,7 @@ local monster_chapter = { [55801]={ ["monster_base"]=10055, ["hp"]=228230000, - ["atk"]=8000000, + ["atk"]=4530000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -7462,7 +7453,7 @@ local monster_chapter = { [55901]={ ["monster_base"]=10046, ["hp"]=263930000, - ["atk"]=7550000, + ["atk"]=4180000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -7474,7 +7465,7 @@ local monster_chapter = { [56001]={ ["monster_base"]=10057, ["hp"]=300390000, - ["atk"]=8220000, + ["atk"]=4750000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -7487,7 +7478,7 @@ local monster_chapter = { ["monster_base"]=20030, ["is_boss"]=1, ["hp"]=562280000, - ["atk"]=7720000, + ["atk"]=5230000, ["atk_times"]=4, ["hurt_skill"]={ 30088, @@ -7506,7 +7497,7 @@ local monster_chapter = { [56201]={ ["monster_base"]=10058, ["hp"]=326910000, - ["atk"]=7900000, + ["atk"]=4900000, ["atk_times"]=3, ["hurt_skill"]={ 20169, @@ -7518,7 +7509,7 @@ local monster_chapter = { [56301]={ ["monster_base"]=10051, ["hp"]=369500000, - ["atk"]=8120000, + ["atk"]=5060000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -7530,7 +7521,7 @@ local monster_chapter = { [56401]={ ["monster_base"]=10053, ["hp"]=391940000, - ["atk"]=8270000, + ["atk"]=5230000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -7542,7 +7533,7 @@ local monster_chapter = { [56501]={ ["monster_base"]=10055, ["hp"]=424320000, - ["atk"]=8510000, + ["atk"]=5480000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -7555,7 +7546,7 @@ local monster_chapter = { ["monster_base"]=20029, ["is_boss"]=1, ["hp"]=766020000, - ["atk"]=7900000, + ["atk"]=5480000, ["atk_times"]=4, ["hurt_skill"]={ 30085, @@ -7573,7 +7564,7 @@ local monster_chapter = { [56701]={ ["monster_base"]=10058, ["hp"]=508220000, - ["atk"]=8660000, + ["atk"]=5650000, ["atk_times"]=3, ["hurt_skill"]={ 20169, @@ -7585,7 +7576,7 @@ local monster_chapter = { [56801]={ ["monster_base"]=10051, ["hp"]=542390000, - ["atk"]=8860000, + ["atk"]=5790000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -7597,7 +7588,7 @@ local monster_chapter = { [56901]={ ["monster_base"]=10055, ["hp"]=594660000, - ["atk"]=9080000, + ["atk"]=6000000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -7609,7 +7600,7 @@ local monster_chapter = { [57001]={ ["monster_base"]=10057, ["hp"]=649230000, - ["atk"]=9250000, + ["atk"]=6200000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -7622,7 +7613,7 @@ local monster_chapter = { ["monster_base"]=20031, ["is_boss"]=2, ["hp"]=1023830000, - ["atk"]=11240000, + ["atk"]=8340000, ["atk_times"]=4, ["hurt_skill"]={ 30091, @@ -7643,7 +7634,7 @@ local monster_chapter = { [57201]={ ["monster_base"]=10060, ["hp"]=110420000, - ["atk"]=6720000, + ["atk"]=3400000, ["atk_times"]=3, ["hurt_skill"]={ 20175, @@ -7655,7 +7646,7 @@ local monster_chapter = { [57301]={ ["monster_base"]=10046, ["hp"]=151470000, - ["atk"]=6960000, + ["atk"]=3660000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -7667,7 +7658,7 @@ local monster_chapter = { [57401]={ ["monster_base"]=10061, ["hp"]=169830000, - ["atk"]=7210000, + ["atk"]=3780000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -7679,7 +7670,7 @@ local monster_chapter = { [57501]={ ["monster_base"]=10052, ["hp"]=225420000, - ["atk"]=7400000, + ["atk"]=3900000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -7692,7 +7683,7 @@ local monster_chapter = { ["monster_base"]=20017, ["is_boss"]=1, ["hp"]=311610000, - ["atk"]=7430000, + ["atk"]=4520000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -7707,7 +7698,7 @@ local monster_chapter = { [57701]={ ["monster_base"]=10023, ["hp"]=213690000, - ["atk"]=7650000, + ["atk"]=4150000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -7719,7 +7710,7 @@ local monster_chapter = { [57801]={ ["monster_base"]=10060, ["hp"]=236900000, - ["atk"]=8360000, + ["atk"]=4660000, ["atk_times"]=3, ["hurt_skill"]={ 20175, @@ -7731,7 +7722,7 @@ local monster_chapter = { [57901]={ ["monster_base"]=10057, ["hp"]=273870000, - ["atk"]=7870000, + ["atk"]=4300000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -7743,7 +7734,7 @@ local monster_chapter = { [58001]={ ["monster_base"]=10055, ["hp"]=311610000, - ["atk"]=8590000, + ["atk"]=4890000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -7756,7 +7747,7 @@ local monster_chapter = { ["monster_base"]=20031, ["is_boss"]=1, ["hp"]=583190000, - ["atk"]=8040000, + ["atk"]=5380000, ["atk_times"]=4, ["hurt_skill"]={ 30091, @@ -7777,7 +7768,7 @@ local monster_chapter = { [58201]={ ["monster_base"]=10047, ["hp"]=339150000, - ["atk"]=8240000, + ["atk"]=5040000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -7789,7 +7780,7 @@ local monster_chapter = { [58301]={ ["monster_base"]=10052, ["hp"]=383270000, - ["atk"]=8460000, + ["atk"]=5210000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -7801,7 +7792,7 @@ local monster_chapter = { [58401]={ ["monster_base"]=10027, ["hp"]=406730000, - ["atk"]=8610000, + ["atk"]=5380000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -7813,7 +7804,7 @@ local monster_chapter = { [58501]={ ["monster_base"]=10061, ["hp"]=440130000, - ["atk"]=8880000, + ["atk"]=5640000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -7826,7 +7817,7 @@ local monster_chapter = { ["monster_base"]=20029, ["is_boss"]=1, ["hp"]=794580000, - ["atk"]=8240000, + ["atk"]=5640000, ["atk_times"]=4, ["hurt_skill"]={ 30085, @@ -7844,7 +7835,7 @@ local monster_chapter = { [58701]={ ["monster_base"]=10051, ["hp"]=527090000, - ["atk"]=9030000, + ["atk"]=5820000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -7856,7 +7847,7 @@ local monster_chapter = { [58801]={ ["monster_base"]=10027, ["hp"]=562530000, - ["atk"]=9250000, + ["atk"]=5960000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -7868,7 +7859,7 @@ local monster_chapter = { [58901]={ ["monster_base"]=10052, ["hp"]=616850000, - ["atk"]=9470000, + ["atk"]=6180000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -7880,7 +7871,7 @@ local monster_chapter = { [59001]={ ["monster_base"]=10061, ["hp"]=673460000, - ["atk"]=9640000, + ["atk"]=6380000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -7893,7 +7884,7 @@ local monster_chapter = { ["monster_base"]=20034, ["is_boss"]=2, ["hp"]=1062080000, - ["atk"]=11710000, + ["atk"]=8580000, ["atk_times"]=4, ["hurt_skill"]={ 30097, @@ -7913,7 +7904,7 @@ local monster_chapter = { [59201]={ ["monster_base"]=10060, ["hp"]=114160000, - ["atk"]=6970000, + ["atk"]=3590000, ["atk_times"]=3, ["hurt_skill"]={ 20175, @@ -7925,7 +7916,7 @@ local monster_chapter = { [59301]={ ["monster_base"]=10027, ["hp"]=156490000, - ["atk"]=7240000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -7937,7 +7928,7 @@ local monster_chapter = { [59401]={ ["monster_base"]=10051, ["hp"]=175390000, - ["atk"]=7480000, + ["atk"]=3990000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -7949,7 +7940,7 @@ local monster_chapter = { [59501]={ ["monster_base"]=10055, ["hp"]=232850000, - ["atk"]=7700000, + ["atk"]=4120000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -7962,7 +7953,7 @@ local monster_chapter = { ["monster_base"]=20019, ["is_boss"]=1, ["hp"]=321800000, - ["atk"]=7730000, + ["atk"]=4780000, ["atk_times"]=4, ["hurt_skill"]={ 30055, @@ -7980,7 +7971,7 @@ local monster_chapter = { [59701]={ ["monster_base"]=10057, ["hp"]=220750000, - ["atk"]=7950000, + ["atk"]=4380000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -7992,7 +7983,7 @@ local monster_chapter = { [59801]={ ["monster_base"]=10027, ["hp"]=244690000, - ["atk"]=8680000, + ["atk"]=4920000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -8004,7 +7995,7 @@ local monster_chapter = { [59901]={ ["monster_base"]=10052, ["hp"]=283000000, - ["atk"]=8190000, + ["atk"]=4540000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -8016,7 +8007,7 @@ local monster_chapter = { [60001]={ ["monster_base"]=10061, ["hp"]=321800000, - ["atk"]=8890000, + ["atk"]=5170000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -8029,7 +8020,7 @@ local monster_chapter = { ["monster_base"]=20034, ["is_boss"]=1, ["hp"]=602280000, - ["atk"]=8330000, + ["atk"]=5680000, ["atk_times"]=4, ["hurt_skill"]={ 30097, @@ -8049,7 +8040,7 @@ local monster_chapter = { [60201]={ ["monster_base"]=10047, ["hp"]=350280000, - ["atk"]=8550000, + ["atk"]=5320000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -8061,7 +8052,7 @@ local monster_chapter = { [60301]={ ["monster_base"]=10023, ["hp"]=395890000, - ["atk"]=8800000, + ["atk"]=5500000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -8073,7 +8064,7 @@ local monster_chapter = { [60401]={ ["monster_base"]=10046, ["hp"]=420080000, - ["atk"]=8940000, + ["atk"]=5680000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -8085,7 +8076,7 @@ local monster_chapter = { [60501]={ ["monster_base"]=10052, ["hp"]=454610000, - ["atk"]=9230000, + ["atk"]=5960000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -8098,7 +8089,7 @@ local monster_chapter = { ["monster_base"]=20010, ["is_boss"]=1, ["hp"]=820510000, - ["atk"]=8530000, + ["atk"]=5960000, ["atk_times"]=4, ["hurt_skill"]={ 30028, @@ -8119,7 +8110,7 @@ local monster_chapter = { [60701]={ ["monster_base"]=10027, ["hp"]=544320000, - ["atk"]=9380000, + ["atk"]=6150000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -8131,7 +8122,7 @@ local monster_chapter = { [60801]={ ["monster_base"]=10047, ["hp"]=580860000, - ["atk"]=9600000, + ["atk"]=6300000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -8143,7 +8134,7 @@ local monster_chapter = { [60901]={ ["monster_base"]=10057, ["hp"]=637060000, - ["atk"]=9840000, + ["atk"]=6530000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -8155,7 +8146,7 @@ local monster_chapter = { [61001]={ ["monster_base"]=10060, ["hp"]=695520000, - ["atk"]=10010000, + ["atk"]=6740000, ["atk_times"]=3, ["hurt_skill"]={ 20175, @@ -8168,7 +8159,7 @@ local monster_chapter = { ["monster_base"]=20035, ["is_boss"]=2, ["hp"]=1096700000, - ["atk"]=12130000, + ["atk"]=9060000, ["atk_times"]=4, ["hurt_skill"]={ 30100, @@ -8188,7 +8179,7 @@ local monster_chapter = { [61201]={ ["monster_base"]=10062, ["hp"]=119020000, - ["atk"]=7320000, + ["atk"]=3780000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -8200,7 +8191,7 @@ local monster_chapter = { [61301]={ ["monster_base"]=10049, ["hp"]=163100000, - ["atk"]=7580000, + ["atk"]=4080000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -8212,7 +8203,7 @@ local monster_chapter = { [61401]={ ["monster_base"]=10042, ["hp"]=182770000, - ["atk"]=7850000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -8224,7 +8215,7 @@ local monster_chapter = { [61501]={ ["monster_base"]=10026, ["hp"]=242530000, - ["atk"]=8060000, + ["atk"]=4340000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -8237,7 +8228,7 @@ local monster_chapter = { ["monster_base"]=20006, ["is_boss"]=1, ["hp"]=335150000, - ["atk"]=8060000, + ["atk"]=5040000, ["atk_times"]=4, ["hurt_skill"]={ 30016, @@ -8255,7 +8246,7 @@ local monster_chapter = { [61701]={ ["monster_base"]=10064, ["hp"]=229830000, - ["atk"]=8300000, + ["atk"]=4610000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -8267,7 +8258,7 @@ local monster_chapter = { [61801]={ ["monster_base"]=10042, ["hp"]=254730000, - ["atk"]=9070000, + ["atk"]=5180000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -8279,7 +8270,7 @@ local monster_chapter = { [61901]={ ["monster_base"]=10019, ["hp"]=294820000, - ["atk"]=8570000, + ["atk"]=4780000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -8291,7 +8282,7 @@ local monster_chapter = { [62001]={ ["monster_base"]=10062, ["hp"]=335150000, - ["atk"]=9310000, + ["atk"]=5450000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -8304,7 +8295,7 @@ local monster_chapter = { ["monster_base"]=20021, ["is_boss"]=1, ["hp"]=626980000, - ["atk"]=8710000, + ["atk"]=5980000, ["atk_times"]=4, ["hurt_skill"]={ 30061, @@ -8323,7 +8314,7 @@ local monster_chapter = { [62201]={ ["monster_base"]=10013, ["hp"]=364790000, - ["atk"]=8950000, + ["atk"]=5600000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -8335,7 +8326,7 @@ local monster_chapter = { [62301]={ ["monster_base"]=10026, ["hp"]=412340000, - ["atk"]=9220000, + ["atk"]=5790000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -8347,7 +8338,7 @@ local monster_chapter = { [62401]={ ["monster_base"]=10062, ["hp"]=437490000, - ["atk"]=9360000, + ["atk"]=5980000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -8359,7 +8350,7 @@ local monster_chapter = { [62501]={ ["monster_base"]=10044, ["hp"]=473350000, - ["atk"]=9650000, + ["atk"]=6280000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -8372,7 +8363,7 @@ local monster_chapter = { ["monster_base"]=20016, ["is_boss"]=1, ["hp"]=854320000, - ["atk"]=8930000, + ["atk"]=6280000, ["atk_times"]=4, ["hurt_skill"]={ 30046, @@ -8391,7 +8382,7 @@ local monster_chapter = { [62701]={ ["monster_base"]=10062, ["hp"]=566720000, - ["atk"]=9820000, + ["atk"]=6480000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -8403,7 +8394,7 @@ local monster_chapter = { [62801]={ ["monster_base"]=10019, ["hp"]=604820000, - ["atk"]=10030000, + ["atk"]=6640000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -8415,7 +8406,7 @@ local monster_chapter = { [62901]={ ["monster_base"]=10064, ["hp"]=663340000, - ["atk"]=10300000, + ["atk"]=6880000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -8427,7 +8418,7 @@ local monster_chapter = { [63001]={ ["monster_base"]=10013, ["hp"]=724090000, - ["atk"]=10460000, + ["atk"]=7100000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -8440,7 +8431,7 @@ local monster_chapter = { ["monster_base"]=20036, ["is_boss"]=2, ["hp"]=1141670000, - ["atk"]=12650000, + ["atk"]=9540000, ["atk_times"]=4, ["hurt_skill"]={ 30103, @@ -8459,7 +8450,7 @@ local monster_chapter = { [63201]={ ["monster_base"]=10063, ["hp"]=122760000, - ["atk"]=7580000, + ["atk"]=3990000, ["atk_times"]=3, ["hurt_skill"]={ 20184, @@ -8471,7 +8462,7 @@ local monster_chapter = { [63301]={ ["monster_base"]=10064, ["hp"]=168080000, - ["atk"]=7870000, + ["atk"]=4310000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -8483,7 +8474,7 @@ local monster_chapter = { [63401]={ ["monster_base"]=10062, ["hp"]=188490000, - ["atk"]=8140000, + ["atk"]=4440000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -8495,7 +8486,7 @@ local monster_chapter = { [63501]={ ["monster_base"]=10026, ["hp"]=250000000, - ["atk"]=8350000, + ["atk"]=4590000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -8508,7 +8499,7 @@ local monster_chapter = { ["monster_base"]=20021, ["is_boss"]=1, ["hp"]=345610000, - ["atk"]=8350000, + ["atk"]=5320000, ["atk_times"]=4, ["hurt_skill"]={ 30061, @@ -8527,7 +8518,7 @@ local monster_chapter = { [63701]={ ["monster_base"]=10064, ["hp"]=237050000, - ["atk"]=8620000, + ["atk"]=4870000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -8539,7 +8530,7 @@ local monster_chapter = { [63801]={ ["monster_base"]=10062, ["hp"]=262700000, - ["atk"]=9410000, + ["atk"]=5470000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -8551,7 +8542,7 @@ local monster_chapter = { [63901]={ ["monster_base"]=10022, ["hp"]=304030000, - ["atk"]=8880000, + ["atk"]=5050000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -8563,7 +8554,7 @@ local monster_chapter = { [64001]={ ["monster_base"]=10063, ["hp"]=345610000, - ["atk"]=9650000, + ["atk"]=5760000, ["atk_times"]=3, ["hurt_skill"]={ 20184, @@ -8576,7 +8567,7 @@ local monster_chapter = { ["monster_base"]=20036, ["is_boss"]=1, ["hp"]=646160000, - ["atk"]=9020000, + ["atk"]=6320000, ["atk_times"]=4, ["hurt_skill"]={ 30103, @@ -8595,7 +8586,7 @@ local monster_chapter = { [64201]={ ["monster_base"]=10019, ["hp"]=375990000, - ["atk"]=9290000, + ["atk"]=5920000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -8607,7 +8598,7 @@ local monster_chapter = { [64301]={ ["monster_base"]=10026, ["hp"]=425040000, - ["atk"]=9550000, + ["atk"]=6120000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -8619,7 +8610,7 @@ local monster_chapter = { [64401]={ ["monster_base"]=10062, ["hp"]=450940000, - ["atk"]=9700000, + ["atk"]=6320000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -8631,7 +8622,7 @@ local monster_chapter = { [64501]={ ["monster_base"]=10063, ["hp"]=487790000, - ["atk"]=10010000, + ["atk"]=6630000, ["atk_times"]=3, ["hurt_skill"]={ 20184, @@ -8644,7 +8635,7 @@ local monster_chapter = { ["monster_base"]=20006, ["is_boss"]=1, ["hp"]=880460000, - ["atk"]=9240000, + ["atk"]=6630000, ["atk_times"]=4, ["hurt_skill"]={ 30016, @@ -8662,7 +8653,7 @@ local monster_chapter = { [64701]={ ["monster_base"]=10013, ["hp"]=584150000, - ["atk"]=10180000, + ["atk"]=6840000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -8674,7 +8665,7 @@ local monster_chapter = { [64801]={ ["monster_base"]=10062, ["hp"]=623500000, - ["atk"]=10390000, + ["atk"]=7010000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -8686,7 +8677,7 @@ local monster_chapter = { [64901]={ ["monster_base"]=10064, ["hp"]=683750000, - ["atk"]=10660000, + ["atk"]=7270000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -8698,7 +8689,7 @@ local monster_chapter = { [65001]={ ["monster_base"]=10063, ["hp"]=746250000, - ["atk"]=10850000, + ["atk"]=7500000, ["atk_times"]=3, ["hurt_skill"]={ 20184, @@ -8711,7 +8702,7 @@ local monster_chapter = { ["monster_base"]=20037, ["is_boss"]=2, ["hp"]=1176530000, - ["atk"]=13080000, + ["atk"]=10070000, ["atk_times"]=4, ["hurt_skill"]={ 30106, @@ -8731,7 +8722,7 @@ local monster_chapter = { [65201]={ ["monster_base"]=10065, ["hp"]=131470000, - ["atk"]=8160000, + ["atk"]=4310000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -8743,7 +8734,7 @@ local monster_chapter = { [65301]={ ["monster_base"]=10062, ["hp"]=179780000, - ["atk"]=8470000, + ["atk"]=4650000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -8755,7 +8746,7 @@ local monster_chapter = { [65401]={ ["monster_base"]=10064, ["hp"]=201690000, - ["atk"]=8740000, + ["atk"]=4790000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -8767,7 +8758,7 @@ local monster_chapter = { [65501]={ ["monster_base"]=10063, ["hp"]=267430000, - ["atk"]=8980000, + ["atk"]=4960000, ["atk_times"]=3, ["hurt_skill"]={ 20184, @@ -8780,7 +8771,7 @@ local monster_chapter = { ["monster_base"]=20027, ["is_boss"]=1, ["hp"]=369520000, - ["atk"]=8980000, + ["atk"]=5740000, ["atk_times"]=4, ["hurt_skill"]={ 30079, @@ -8795,7 +8786,7 @@ local monster_chapter = { [65701]={ ["monster_base"]=10026, ["hp"]=253480000, - ["atk"]=9260000, + ["atk"]=5260000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -8807,7 +8798,7 @@ local monster_chapter = { [65801]={ ["monster_base"]=10063, ["hp"]=280870000, - ["atk"]=10100000, + ["atk"]=5910000, ["atk_times"]=3, ["hurt_skill"]={ 20184, @@ -8819,7 +8810,7 @@ local monster_chapter = { [65901]={ ["monster_base"]=10062, ["hp"]=325190000, - ["atk"]=9550000, + ["atk"]=5450000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -8831,7 +8822,7 @@ local monster_chapter = { [66001]={ ["monster_base"]=10065, ["hp"]=369520000, - ["atk"]=10370000, + ["atk"]=6220000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -8844,7 +8835,7 @@ local monster_chapter = { ["monster_base"]=20036, ["is_boss"]=1, ["hp"]=690980000, - ["atk"]=9700000, + ["atk"]=6820000, ["atk_times"]=4, ["hurt_skill"]={ 30103, @@ -8863,7 +8854,7 @@ local monster_chapter = { [66201]={ ["monster_base"]=10063, ["hp"]=402140000, - ["atk"]=9980000, + ["atk"]=6390000, ["atk_times"]=3, ["hurt_skill"]={ 20184, @@ -8875,7 +8866,7 @@ local monster_chapter = { [66301]={ ["monster_base"]=10062, ["hp"]=454430000, - ["atk"]=10250000, + ["atk"]=6610000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -8887,7 +8878,7 @@ local monster_chapter = { [66401]={ ["monster_base"]=10022, ["hp"]=482310000, - ["atk"]=10420000, + ["atk"]=6820000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -8899,7 +8890,7 @@ local monster_chapter = { [66501]={ ["monster_base"]=10065, ["hp"]=521660000, - ["atk"]=10750000, + ["atk"]=7160000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -8912,7 +8903,7 @@ local monster_chapter = { ["monster_base"]=20037, ["is_boss"]=1, ["hp"]=941470000, - ["atk"]=9910000, + ["atk"]=7160000, ["atk_times"]=4, ["hurt_skill"]={ 30106, @@ -8932,7 +8923,7 @@ local monster_chapter = { [66701]={ ["monster_base"]=10062, ["hp"]=624490000, - ["atk"]=10920000, + ["atk"]=7380000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -8944,7 +8935,7 @@ local monster_chapter = { [66801]={ ["monster_base"]=10063, ["hp"]=666570000, - ["atk"]=11160000, + ["atk"]=7570000, ["atk_times"]=3, ["hurt_skill"]={ 20184, @@ -8956,7 +8947,7 @@ local monster_chapter = { [66901]={ ["monster_base"]=10026, ["hp"]=731060000, - ["atk"]=11450000, + ["atk"]=7850000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -8968,7 +8959,7 @@ local monster_chapter = { [67001]={ ["monster_base"]=10065, ["hp"]=797800000, - ["atk"]=11640000, + ["atk"]=8100000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -8981,7 +8972,7 @@ local monster_chapter = { ["monster_base"]=20038, ["is_boss"]=2, ["hp"]=1257950000, - ["atk"]=14020000, + ["atk"]=10870000, ["atk_times"]=4, ["hurt_skill"]={ 30109, diff --git a/lua/app/config/monster_daily_challenge.lua b/lua/app/config/monster_daily_challenge.lua index e25526f0..ae07cdef 100644 --- a/lua/app/config/monster_daily_challenge.lua +++ b/lua/app/config/monster_daily_challenge.lua @@ -1,8 +1,8 @@ local monster_daily_challenge = { [102]={ ["monster_base"]=10001, - ["hp"]=21810000, - ["atk"]=690000, + ["hp"]=21820000, + ["atk"]=610000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -14,7 +14,7 @@ local monster_daily_challenge = { [202]={ ["monster_base"]=10002, ["hp"]=30000000, - ["atk"]=750000, + ["atk"]=660000, ["atk_times"]=3, ["hurt_skill"]={ 20004, @@ -25,8 +25,8 @@ local monster_daily_challenge = { }, [302]={ ["monster_base"]=10003, - ["hp"]=32700000, - ["atk"]=780000, + ["hp"]=32730000, + ["atk"]=710000, ["atk_times"]=3, ["hurt_skill"]={ 20007, @@ -37,8 +37,8 @@ local monster_daily_challenge = { }, [402]={ ["monster_base"]=10005, - ["hp"]=40890000, - ["atk"]=840000, + ["hp"]=40910000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -50,8 +50,8 @@ local monster_daily_challenge = { [502]={ ["monster_base"]=20004, ["is_boss"]=1, - ["hp"]=62700000, - ["atk"]=1020000, + ["hp"]=62730000, + ["atk"]=910000, ["atk_times"]=4, ["hurt_skill"]={ 30010, @@ -62,8 +62,8 @@ local monster_daily_challenge = { }, [602]={ ["monster_base"]=10038, - ["hp"]=40890000, - ["atk"]=840000, + ["hp"]=40910000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -74,8 +74,8 @@ local monster_daily_challenge = { }, [702]={ ["monster_base"]=10040, - ["hp"]=46350000, - ["atk"]=900000, + ["hp"]=46360000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -86,8 +86,8 @@ local monster_daily_challenge = { }, [802]={ ["monster_base"]=10010, - ["hp"]=54540000, - ["atk"]=900000, + ["hp"]=54550000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -99,7 +99,7 @@ local monster_daily_challenge = { [902]={ ["monster_base"]=10009, ["hp"]=60000000, - ["atk"]=960000, + ["atk"]=850000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -111,8 +111,8 @@ local monster_daily_challenge = { [1002]={ ["monster_base"]=20017, ["is_boss"]=1, - ["hp"]=114540000, - ["atk"]=1110000, + ["hp"]=114550000, + ["atk"]=980000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -126,8 +126,8 @@ local monster_daily_challenge = { }, [1102]={ ["monster_base"]=10002, - ["hp"]=62700000, - ["atk"]=960000, + ["hp"]=62730000, + ["atk"]=850000, ["atk_times"]=3, ["hurt_skill"]={ 20004, @@ -138,8 +138,8 @@ local monster_daily_challenge = { }, [1202]={ ["monster_base"]=10009, - ["hp"]=76350000, - ["atk"]=1020000, + ["hp"]=76360000, + ["atk"]=910000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -150,8 +150,8 @@ local monster_daily_challenge = { }, [1302]={ ["monster_base"]=10001, - ["hp"]=84540000, - ["atk"]=1080000, + ["hp"]=84550000, + ["atk"]=950000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -162,8 +162,8 @@ local monster_daily_challenge = { }, [1402]={ ["monster_base"]=10039, - ["hp"]=95430000, - ["atk"]=1110000, + ["hp"]=95450000, + ["atk"]=1000000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -175,8 +175,8 @@ local monster_daily_challenge = { [1502]={ ["monster_base"]=20015, ["is_boss"]=1, - ["hp"]=141810000, - ["atk"]=1200000, + ["hp"]=141820000, + ["atk"]=1070000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -193,8 +193,8 @@ local monster_daily_challenge = { }, [1602]={ ["monster_base"]=10031, - ["hp"]=109080000, - ["atk"]=1170000, + ["hp"]=109090000, + ["atk"]=1060000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -206,7 +206,7 @@ local monster_daily_challenge = { [1702]={ ["monster_base"]=10034, ["hp"]=120000000, - ["atk"]=1230000, + ["atk"]=1100000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -217,8 +217,8 @@ local monster_daily_challenge = { }, [1802]={ ["monster_base"]=10032, - ["hp"]=136350000, - ["atk"]=1290000, + ["hp"]=136360000, + ["atk"]=1150000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -230,7 +230,7 @@ local monster_daily_challenge = { [1902]={ ["monster_base"]=10035, ["hp"]=147270000, - ["atk"]=1350000, + ["atk"]=1190000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -242,8 +242,8 @@ local monster_daily_challenge = { [2002]={ ["monster_base"]=20003, ["is_boss"]=2, - ["hp"]=245430000, - ["atk"]=1860000, + ["hp"]=245450000, + ["atk"]=1640000, ["atk_times"]=4, ["hurt_skill"]={ 30007, @@ -262,8 +262,8 @@ local monster_daily_challenge = { }, [2102]={ ["monster_base"]=10030, - ["hp"]=21810000, - ["atk"]=690000, + ["hp"]=21820000, + ["atk"]=610000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -275,7 +275,7 @@ local monster_daily_challenge = { [2202]={ ["monster_base"]=10035, ["hp"]=30000000, - ["atk"]=750000, + ["atk"]=660000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -286,8 +286,8 @@ local monster_daily_challenge = { }, [2302]={ ["monster_base"]=10039, - ["hp"]=32700000, - ["atk"]=780000, + ["hp"]=32730000, + ["atk"]=710000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -298,8 +298,8 @@ local monster_daily_challenge = { }, [2402]={ ["monster_base"]=10010, - ["hp"]=40890000, - ["atk"]=840000, + ["hp"]=40910000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -311,8 +311,8 @@ local monster_daily_challenge = { [2502]={ ["monster_base"]=20007, ["is_boss"]=1, - ["hp"]=62700000, - ["atk"]=1020000, + ["hp"]=62730000, + ["atk"]=910000, ["atk_times"]=4, ["hurt_skill"]={ 30019, @@ -329,8 +329,8 @@ local monster_daily_challenge = { }, [2602]={ ["monster_base"]=10044, - ["hp"]=40890000, - ["atk"]=840000, + ["hp"]=40910000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -341,8 +341,8 @@ local monster_daily_challenge = { }, [2702]={ ["monster_base"]=10038, - ["hp"]=46350000, - ["atk"]=900000, + ["hp"]=46360000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -353,8 +353,8 @@ local monster_daily_challenge = { }, [2802]={ ["monster_base"]=10022, - ["hp"]=54540000, - ["atk"]=900000, + ["hp"]=54550000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -366,7 +366,7 @@ local monster_daily_challenge = { [2902]={ ["monster_base"]=10026, ["hp"]=60000000, - ["atk"]=960000, + ["atk"]=850000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -378,8 +378,8 @@ local monster_daily_challenge = { [3002]={ ["monster_base"]=20014, ["is_boss"]=1, - ["hp"]=114540000, - ["atk"]=1110000, + ["hp"]=114550000, + ["atk"]=980000, ["atk_times"]=4, ["hurt_skill"]={ 30040, @@ -396,8 +396,8 @@ local monster_daily_challenge = { }, [3102]={ ["monster_base"]=10020, - ["hp"]=62700000, - ["atk"]=960000, + ["hp"]=62730000, + ["atk"]=850000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -408,8 +408,8 @@ local monster_daily_challenge = { }, [3202]={ ["monster_base"]=10006, - ["hp"]=76350000, - ["atk"]=1020000, + ["hp"]=76360000, + ["atk"]=910000, ["atk_times"]=3, ["hurt_skill"]={ 20016, @@ -420,8 +420,8 @@ local monster_daily_challenge = { }, [3302]={ ["monster_base"]=10026, - ["hp"]=84540000, - ["atk"]=1080000, + ["hp"]=84550000, + ["atk"]=950000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -432,8 +432,8 @@ local monster_daily_challenge = { }, [3402]={ ["monster_base"]=10014, - ["hp"]=95430000, - ["atk"]=1110000, + ["hp"]=95450000, + ["atk"]=1000000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -445,8 +445,8 @@ local monster_daily_challenge = { [3502]={ ["monster_base"]=20002, ["is_boss"]=1, - ["hp"]=141810000, - ["atk"]=1200000, + ["hp"]=141820000, + ["atk"]=1070000, ["atk_times"]=4, ["hurt_skill"]={ 30004, @@ -460,8 +460,8 @@ local monster_daily_challenge = { }, [3602]={ ["monster_base"]=10008, - ["hp"]=109080000, - ["atk"]=1170000, + ["hp"]=109090000, + ["atk"]=1060000, ["atk_times"]=3, ["hurt_skill"]={ 20022, @@ -473,7 +473,7 @@ local monster_daily_challenge = { [3702]={ ["monster_base"]=10033, ["hp"]=120000000, - ["atk"]=1230000, + ["atk"]=1100000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -484,8 +484,8 @@ local monster_daily_challenge = { }, [3802]={ ["monster_base"]=10014, - ["hp"]=136350000, - ["atk"]=1290000, + ["hp"]=136360000, + ["atk"]=1150000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -497,7 +497,7 @@ local monster_daily_challenge = { [3902]={ ["monster_base"]=10032, ["hp"]=147270000, - ["atk"]=1350000, + ["atk"]=1190000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -509,8 +509,8 @@ local monster_daily_challenge = { [4002]={ ["monster_base"]=20021, ["is_boss"]=2, - ["hp"]=245430000, - ["atk"]=1860000, + ["hp"]=245450000, + ["atk"]=1640000, ["atk_times"]=4, ["hurt_skill"]={ 30061, @@ -528,8 +528,8 @@ local monster_daily_challenge = { }, [4102]={ ["monster_base"]=10044, - ["hp"]=21810000, - ["atk"]=690000, + ["hp"]=21820000, + ["atk"]=610000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -541,7 +541,7 @@ local monster_daily_challenge = { [4202]={ ["monster_base"]=10001, ["hp"]=30000000, - ["atk"]=750000, + ["atk"]=660000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -552,8 +552,8 @@ local monster_daily_challenge = { }, [4302]={ ["monster_base"]=10038, - ["hp"]=32700000, - ["atk"]=780000, + ["hp"]=32730000, + ["atk"]=710000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -564,8 +564,8 @@ local monster_daily_challenge = { }, [4402]={ ["monster_base"]=10022, - ["hp"]=40890000, - ["atk"]=840000, + ["hp"]=40910000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -577,8 +577,8 @@ local monster_daily_challenge = { [4502]={ ["monster_base"]=20007, ["is_boss"]=1, - ["hp"]=62700000, - ["atk"]=1020000, + ["hp"]=62730000, + ["atk"]=910000, ["atk_times"]=4, ["hurt_skill"]={ 30019, @@ -595,8 +595,8 @@ local monster_daily_challenge = { }, [4602]={ ["monster_base"]=10013, - ["hp"]=40890000, - ["atk"]=840000, + ["hp"]=40910000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -607,8 +607,8 @@ local monster_daily_challenge = { }, [4702]={ ["monster_base"]=10005, - ["hp"]=46350000, - ["atk"]=900000, + ["hp"]=46360000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -619,8 +619,8 @@ local monster_daily_challenge = { }, [4802]={ ["monster_base"]=10026, - ["hp"]=54540000, - ["atk"]=900000, + ["hp"]=54550000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -632,7 +632,7 @@ local monster_daily_challenge = { [4902]={ ["monster_base"]=10042, ["hp"]=60000000, - ["atk"]=960000, + ["atk"]=850000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -644,8 +644,8 @@ local monster_daily_challenge = { [5002]={ ["monster_base"]=20006, ["is_boss"]=1, - ["hp"]=114540000, - ["atk"]=1110000, + ["hp"]=114550000, + ["atk"]=980000, ["atk_times"]=4, ["hurt_skill"]={ 30016, @@ -662,8 +662,8 @@ local monster_daily_challenge = { }, [5102]={ ["monster_base"]=10047, - ["hp"]=62700000, - ["atk"]=960000, + ["hp"]=62730000, + ["atk"]=850000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -674,8 +674,8 @@ local monster_daily_challenge = { }, [5202]={ ["monster_base"]=10038, - ["hp"]=76350000, - ["atk"]=1020000, + ["hp"]=76360000, + ["atk"]=910000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -686,8 +686,8 @@ local monster_daily_challenge = { }, [5302]={ ["monster_base"]=10021, - ["hp"]=84540000, - ["atk"]=1080000, + ["hp"]=84550000, + ["atk"]=950000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -698,8 +698,8 @@ local monster_daily_challenge = { }, [5402]={ ["monster_base"]=10040, - ["hp"]=95430000, - ["atk"]=1110000, + ["hp"]=95450000, + ["atk"]=1000000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -711,8 +711,8 @@ local monster_daily_challenge = { [5502]={ ["monster_base"]=20009, ["is_boss"]=1, - ["hp"]=141810000, - ["atk"]=1200000, + ["hp"]=141820000, + ["atk"]=1070000, ["atk_times"]=4, ["hurt_skill"]={ 30025, @@ -730,8 +730,8 @@ local monster_daily_challenge = { }, [5602]={ ["monster_base"]=10019, - ["hp"]=109080000, - ["atk"]=1170000, + ["hp"]=109090000, + ["atk"]=1060000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -743,7 +743,7 @@ local monster_daily_challenge = { [5702]={ ["monster_base"]=10023, ["hp"]=120000000, - ["atk"]=1230000, + ["atk"]=1100000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -754,8 +754,8 @@ local monster_daily_challenge = { }, [5802]={ ["monster_base"]=10008, - ["hp"]=136350000, - ["atk"]=1290000, + ["hp"]=136360000, + ["atk"]=1150000, ["atk_times"]=3, ["hurt_skill"]={ 20022, @@ -767,7 +767,7 @@ local monster_daily_challenge = { [5902]={ ["monster_base"]=10033, ["hp"]=147270000, - ["atk"]=1350000, + ["atk"]=1190000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -779,8 +779,8 @@ local monster_daily_challenge = { [6002]={ ["monster_base"]=20016, ["is_boss"]=2, - ["hp"]=245430000, - ["atk"]=1860000, + ["hp"]=245450000, + ["atk"]=1640000, ["atk_times"]=4, ["hurt_skill"]={ 30046, @@ -798,8 +798,8 @@ local monster_daily_challenge = { }, [6102]={ ["monster_base"]=10001, - ["hp"]=21810000, - ["atk"]=690000, + ["hp"]=21820000, + ["atk"]=610000, ["atk_times"]=3, ["hurt_skill"]={ 20001, @@ -811,7 +811,7 @@ local monster_daily_challenge = { [6202]={ ["monster_base"]=10005, ["hp"]=30000000, - ["atk"]=750000, + ["atk"]=660000, ["atk_times"]=3, ["hurt_skill"]={ 20013, @@ -822,8 +822,8 @@ local monster_daily_challenge = { }, [6302]={ ["monster_base"]=10041, - ["hp"]=32700000, - ["atk"]=780000, + ["hp"]=32730000, + ["atk"]=710000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -834,8 +834,8 @@ local monster_daily_challenge = { }, [6402]={ ["monster_base"]=10013, - ["hp"]=40890000, - ["atk"]=840000, + ["hp"]=40910000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -847,8 +847,8 @@ local monster_daily_challenge = { [6502]={ ["monster_base"]=20026, ["is_boss"]=1, - ["hp"]=62700000, - ["atk"]=1020000, + ["hp"]=62730000, + ["atk"]=910000, ["atk_times"]=4, ["hurt_skill"]={ 30076, @@ -865,8 +865,8 @@ local monster_daily_challenge = { }, [6602]={ ["monster_base"]=10043, - ["hp"]=40890000, - ["atk"]=840000, + ["hp"]=40910000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -877,8 +877,8 @@ local monster_daily_challenge = { }, [6702]={ ["monster_base"]=10047, - ["hp"]=46350000, - ["atk"]=900000, + ["hp"]=46360000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -889,8 +889,8 @@ local monster_daily_challenge = { }, [6802]={ ["monster_base"]=10006, - ["hp"]=54540000, - ["atk"]=900000, + ["hp"]=54550000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20016, @@ -902,7 +902,7 @@ local monster_daily_challenge = { [6902]={ ["monster_base"]=10053, ["hp"]=60000000, - ["atk"]=960000, + ["atk"]=850000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -914,8 +914,8 @@ local monster_daily_challenge = { [7002]={ ["monster_base"]=20010, ["is_boss"]=1, - ["hp"]=114540000, - ["atk"]=1110000, + ["hp"]=114550000, + ["atk"]=980000, ["atk_times"]=4, ["hurt_skill"]={ 30028, @@ -935,8 +935,8 @@ local monster_daily_challenge = { }, [7102]={ ["monster_base"]=10024, - ["hp"]=62700000, - ["atk"]=960000, + ["hp"]=62730000, + ["atk"]=850000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -947,8 +947,8 @@ local monster_daily_challenge = { }, [7202]={ ["monster_base"]=10044, - ["hp"]=76350000, - ["atk"]=1020000, + ["hp"]=76360000, + ["atk"]=910000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -959,8 +959,8 @@ local monster_daily_challenge = { }, [7302]={ ["monster_base"]=10016, - ["hp"]=84540000, - ["atk"]=1080000, + ["hp"]=84550000, + ["atk"]=950000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -971,8 +971,8 @@ local monster_daily_challenge = { }, [7402]={ ["monster_base"]=10019, - ["hp"]=95430000, - ["atk"]=1110000, + ["hp"]=95450000, + ["atk"]=1000000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -984,8 +984,8 @@ local monster_daily_challenge = { [7502]={ ["monster_base"]=20008, ["is_boss"]=1, - ["hp"]=141810000, - ["atk"]=1200000, + ["hp"]=141820000, + ["atk"]=1070000, ["atk_times"]=4, ["hurt_skill"]={ 30022, @@ -1002,8 +1002,8 @@ local monster_daily_challenge = { }, [7602]={ ["monster_base"]=10052, - ["hp"]=109080000, - ["atk"]=1170000, + ["hp"]=109090000, + ["atk"]=1060000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -1015,7 +1015,7 @@ local monster_daily_challenge = { [7702]={ ["monster_base"]=10043, ["hp"]=120000000, - ["atk"]=1230000, + ["atk"]=1100000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -1026,8 +1026,8 @@ local monster_daily_challenge = { }, [7802]={ ["monster_base"]=10050, - ["hp"]=136350000, - ["atk"]=1290000, + ["hp"]=136360000, + ["atk"]=1150000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -1039,7 +1039,7 @@ local monster_daily_challenge = { [7902]={ ["monster_base"]=10054, ["hp"]=147270000, - ["atk"]=1350000, + ["atk"]=1190000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -1051,8 +1051,8 @@ local monster_daily_challenge = { [8002]={ ["monster_base"]=20024, ["is_boss"]=2, - ["hp"]=245430000, - ["atk"]=1860000, + ["hp"]=245450000, + ["atk"]=1640000, ["atk_times"]=4, ["hurt_skill"]={ 30070, @@ -1070,8 +1070,8 @@ local monster_daily_challenge = { }, [8102]={ ["monster_base"]=10045, - ["hp"]=21810000, - ["atk"]=690000, + ["hp"]=21820000, + ["atk"]=610000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -1083,7 +1083,7 @@ local monster_daily_challenge = { [8202]={ ["monster_base"]=10047, ["hp"]=30000000, - ["atk"]=750000, + ["atk"]=660000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -1094,8 +1094,8 @@ local monster_daily_challenge = { }, [8302]={ ["monster_base"]=10010, - ["hp"]=32700000, - ["atk"]=780000, + ["hp"]=32730000, + ["atk"]=710000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -1106,8 +1106,8 @@ local monster_daily_challenge = { }, [8402]={ ["monster_base"]=10039, - ["hp"]=40890000, - ["atk"]=840000, + ["hp"]=40910000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -1119,8 +1119,8 @@ local monster_daily_challenge = { [8502]={ ["monster_base"]=20012, ["is_boss"]=1, - ["hp"]=62700000, - ["atk"]=1020000, + ["hp"]=62730000, + ["atk"]=910000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -1134,8 +1134,8 @@ local monster_daily_challenge = { }, [8602]={ ["monster_base"]=10058, - ["hp"]=40890000, - ["atk"]=840000, + ["hp"]=40910000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20169, @@ -1146,8 +1146,8 @@ local monster_daily_challenge = { }, [8702]={ ["monster_base"]=10024, - ["hp"]=46350000, - ["atk"]=900000, + ["hp"]=46360000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -1158,8 +1158,8 @@ local monster_daily_challenge = { }, [8802]={ ["monster_base"]=10044, - ["hp"]=54540000, - ["atk"]=900000, + ["hp"]=54550000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -1171,7 +1171,7 @@ local monster_daily_challenge = { [8902]={ ["monster_base"]=10056, ["hp"]=60000000, - ["atk"]=960000, + ["atk"]=850000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -1183,8 +1183,8 @@ local monster_daily_challenge = { [9002]={ ["monster_base"]=20011, ["is_boss"]=1, - ["hp"]=114540000, - ["atk"]=1110000, + ["hp"]=114550000, + ["atk"]=980000, ["atk_times"]=4, ["hurt_skill"]={ 30031, @@ -1198,8 +1198,8 @@ local monster_daily_challenge = { }, [9102]={ ["monster_base"]=10022, - ["hp"]=62700000, - ["atk"]=960000, + ["hp"]=62730000, + ["atk"]=850000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -1210,8 +1210,8 @@ local monster_daily_challenge = { }, [9202]={ ["monster_base"]=10040, - ["hp"]=76350000, - ["atk"]=1020000, + ["hp"]=76360000, + ["atk"]=910000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -1222,8 +1222,8 @@ local monster_daily_challenge = { }, [9302]={ ["monster_base"]=10025, - ["hp"]=84540000, - ["atk"]=1080000, + ["hp"]=84550000, + ["atk"]=950000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -1234,8 +1234,8 @@ local monster_daily_challenge = { }, [9402]={ ["monster_base"]=10032, - ["hp"]=95430000, - ["atk"]=1110000, + ["hp"]=95450000, + ["atk"]=1000000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -1247,8 +1247,8 @@ local monster_daily_challenge = { [9502]={ ["monster_base"]=20018, ["is_boss"]=1, - ["hp"]=141810000, - ["atk"]=1200000, + ["hp"]=141820000, + ["atk"]=1070000, ["atk_times"]=4, ["hurt_skill"]={ 30052, @@ -1266,8 +1266,8 @@ local monster_daily_challenge = { }, [9602]={ ["monster_base"]=10048, - ["hp"]=109080000, - ["atk"]=1170000, + ["hp"]=109090000, + ["atk"]=1060000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -1279,7 +1279,7 @@ local monster_daily_challenge = { [9702]={ ["monster_base"]=10029, ["hp"]=120000000, - ["atk"]=1230000, + ["atk"]=1100000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -1290,8 +1290,8 @@ local monster_daily_challenge = { }, [9802]={ ["monster_base"]=10031, - ["hp"]=136350000, - ["atk"]=1290000, + ["hp"]=136360000, + ["atk"]=1150000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -1303,7 +1303,7 @@ local monster_daily_challenge = { [9902]={ ["monster_base"]=10028, ["hp"]=147270000, - ["atk"]=1350000, + ["atk"]=1190000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -1315,8 +1315,8 @@ local monster_daily_challenge = { [10002]={ ["monster_base"]=20013, ["is_boss"]=2, - ["hp"]=245430000, - ["atk"]=1860000, + ["hp"]=245450000, + ["atk"]=1640000, ["atk_times"]=4, ["hurt_skill"]={ 30037, @@ -1331,8 +1331,8 @@ local monster_daily_challenge = { }, [10102]={ ["monster_base"]=10030, - ["hp"]=21810000, - ["atk"]=690000, + ["hp"]=21820000, + ["atk"]=610000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -1344,7 +1344,7 @@ local monster_daily_challenge = { [10202]={ ["monster_base"]=10029, ["hp"]=30000000, - ["atk"]=750000, + ["atk"]=660000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -1355,8 +1355,8 @@ local monster_daily_challenge = { }, [10302]={ ["monster_base"]=10033, - ["hp"]=32700000, - ["atk"]=780000, + ["hp"]=32730000, + ["atk"]=710000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -1367,8 +1367,8 @@ local monster_daily_challenge = { }, [10402]={ ["monster_base"]=10031, - ["hp"]=40890000, - ["atk"]=840000, + ["hp"]=40910000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -1380,8 +1380,8 @@ local monster_daily_challenge = { [10502]={ ["monster_base"]=20025, ["is_boss"]=1, - ["hp"]=62700000, - ["atk"]=1020000, + ["hp"]=62730000, + ["atk"]=910000, ["atk_times"]=4, ["hurt_skill"]={ 30073, @@ -1398,8 +1398,8 @@ local monster_daily_challenge = { }, [10602]={ ["monster_base"]=10053, - ["hp"]=40890000, - ["atk"]=840000, + ["hp"]=40910000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -1410,8 +1410,8 @@ local monster_daily_challenge = { }, [10702]={ ["monster_base"]=10048, - ["hp"]=46350000, - ["atk"]=900000, + ["hp"]=46360000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -1422,8 +1422,8 @@ local monster_daily_challenge = { }, [10802]={ ["monster_base"]=10029, - ["hp"]=54540000, - ["atk"]=900000, + ["hp"]=54550000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -1435,7 +1435,7 @@ local monster_daily_challenge = { [10902]={ ["monster_base"]=10054, ["hp"]=60000000, - ["atk"]=960000, + ["atk"]=850000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -1447,8 +1447,8 @@ local monster_daily_challenge = { [11002]={ ["monster_base"]=20020, ["is_boss"]=1, - ["hp"]=114540000, - ["atk"]=1110000, + ["hp"]=114550000, + ["atk"]=980000, ["atk_times"]=4, ["hurt_skill"]={ 30058, @@ -1465,8 +1465,8 @@ local monster_daily_challenge = { }, [11102]={ ["monster_base"]=10052, - ["hp"]=62700000, - ["atk"]=960000, + ["hp"]=62730000, + ["atk"]=850000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -1477,8 +1477,8 @@ local monster_daily_challenge = { }, [11202]={ ["monster_base"]=10045, - ["hp"]=76350000, - ["atk"]=1020000, + ["hp"]=76360000, + ["atk"]=910000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -1489,8 +1489,8 @@ local monster_daily_challenge = { }, [11302]={ ["monster_base"]=10043, - ["hp"]=84540000, - ["atk"]=1080000, + ["hp"]=84550000, + ["atk"]=950000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -1501,8 +1501,8 @@ local monster_daily_challenge = { }, [11402]={ ["monster_base"]=10053, - ["hp"]=95430000, - ["atk"]=1110000, + ["hp"]=95450000, + ["atk"]=1000000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -1514,8 +1514,8 @@ local monster_daily_challenge = { [11502]={ ["monster_base"]=20029, ["is_boss"]=1, - ["hp"]=141810000, - ["atk"]=1200000, + ["hp"]=141820000, + ["atk"]=1070000, ["atk_times"]=4, ["hurt_skill"]={ 30085, @@ -1532,8 +1532,8 @@ local monster_daily_challenge = { }, [11602]={ ["monster_base"]=10056, - ["hp"]=109080000, - ["atk"]=1170000, + ["hp"]=109090000, + ["atk"]=1060000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -1545,7 +1545,7 @@ local monster_daily_challenge = { [11702]={ ["monster_base"]=10028, ["hp"]=120000000, - ["atk"]=1230000, + ["atk"]=1100000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -1556,8 +1556,8 @@ local monster_daily_challenge = { }, [11802]={ ["monster_base"]=10046, - ["hp"]=136350000, - ["atk"]=1290000, + ["hp"]=136360000, + ["atk"]=1150000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -1569,7 +1569,7 @@ local monster_daily_challenge = { [11902]={ ["monster_base"]=10057, ["hp"]=147270000, - ["atk"]=1350000, + ["atk"]=1190000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -1581,8 +1581,8 @@ local monster_daily_challenge = { [12002]={ ["monster_base"]=20032, ["is_boss"]=2, - ["hp"]=245430000, - ["atk"]=1860000, + ["hp"]=245450000, + ["atk"]=1640000, ["atk_times"]=4, ["hurt_skill"]={ 30094, @@ -1602,8 +1602,8 @@ local monster_daily_challenge = { }, [12102]={ ["monster_base"]=10057, - ["hp"]=21810000, - ["atk"]=690000, + ["hp"]=21820000, + ["atk"]=610000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -1615,7 +1615,7 @@ local monster_daily_challenge = { [12202]={ ["monster_base"]=10046, ["hp"]=30000000, - ["atk"]=750000, + ["atk"]=660000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -1626,8 +1626,8 @@ local monster_daily_challenge = { }, [12302]={ ["monster_base"]=10051, - ["hp"]=32700000, - ["atk"]=780000, + ["hp"]=32730000, + ["atk"]=710000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -1638,8 +1638,8 @@ local monster_daily_challenge = { }, [12402]={ ["monster_base"]=10029, - ["hp"]=40890000, - ["atk"]=840000, + ["hp"]=40910000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -1651,8 +1651,8 @@ local monster_daily_challenge = { [12502]={ ["monster_base"]=20026, ["is_boss"]=1, - ["hp"]=62700000, - ["atk"]=1020000, + ["hp"]=62730000, + ["atk"]=910000, ["atk_times"]=4, ["hurt_skill"]={ 30076, @@ -1669,8 +1669,8 @@ local monster_daily_challenge = { }, [12602]={ ["monster_base"]=10050, - ["hp"]=40890000, - ["atk"]=840000, + ["hp"]=40910000, + ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -1681,8 +1681,8 @@ local monster_daily_challenge = { }, [12702]={ ["monster_base"]=10058, - ["hp"]=46350000, - ["atk"]=900000, + ["hp"]=46360000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20169, @@ -1693,8 +1693,8 @@ local monster_daily_challenge = { }, [12802]={ ["monster_base"]=10052, - ["hp"]=54540000, - ["atk"]=900000, + ["hp"]=54550000, + ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -1706,7 +1706,7 @@ local monster_daily_challenge = { [12902]={ ["monster_base"]=10054, ["hp"]=60000000, - ["atk"]=960000, + ["atk"]=850000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -1718,8 +1718,8 @@ local monster_daily_challenge = { [13002]={ ["monster_base"]=20005, ["is_boss"]=1, - ["hp"]=114540000, - ["atk"]=1110000, + ["hp"]=114550000, + ["atk"]=980000, ["atk_times"]=4, ["hurt_skill"]={ 30013, @@ -1736,8 +1736,8 @@ local monster_daily_challenge = { }, [13102]={ ["monster_base"]=10009, - ["hp"]=62700000, - ["atk"]=960000, + ["hp"]=62730000, + ["atk"]=850000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -1748,8 +1748,8 @@ local monster_daily_challenge = { }, [13202]={ ["monster_base"]=10055, - ["hp"]=76350000, - ["atk"]=1020000, + ["hp"]=76360000, + ["atk"]=910000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -1760,8 +1760,8 @@ local monster_daily_challenge = { }, [13302]={ ["monster_base"]=10046, - ["hp"]=84540000, - ["atk"]=1080000, + ["hp"]=84550000, + ["atk"]=950000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -1772,8 +1772,8 @@ local monster_daily_challenge = { }, [13402]={ ["monster_base"]=10042, - ["hp"]=95430000, - ["atk"]=1110000, + ["hp"]=95450000, + ["atk"]=1000000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -1785,8 +1785,8 @@ local monster_daily_challenge = { [13502]={ ["monster_base"]=20030, ["is_boss"]=1, - ["hp"]=141810000, - ["atk"]=1200000, + ["hp"]=141820000, + ["atk"]=1070000, ["atk_times"]=4, ["hurt_skill"]={ 30088, @@ -1804,8 +1804,8 @@ local monster_daily_challenge = { }, [13602]={ ["monster_base"]=10058, - ["hp"]=109080000, - ["atk"]=1170000, + ["hp"]=109090000, + ["atk"]=1060000, ["atk_times"]=3, ["hurt_skill"]={ 20169, @@ -1817,7 +1817,7 @@ local monster_daily_challenge = { [13702]={ ["monster_base"]=10051, ["hp"]=120000000, - ["atk"]=1230000, + ["atk"]=1100000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -1828,8 +1828,8 @@ local monster_daily_challenge = { }, [13802]={ ["monster_base"]=10055, - ["hp"]=136350000, - ["atk"]=1290000, + ["hp"]=136360000, + ["atk"]=1150000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -1841,7 +1841,7 @@ local monster_daily_challenge = { [13902]={ ["monster_base"]=10057, ["hp"]=147270000, - ["atk"]=1350000, + ["atk"]=1190000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -1853,8 +1853,8 @@ local monster_daily_challenge = { [14002]={ ["monster_base"]=20031, ["is_boss"]=2, - ["hp"]=245430000, - ["atk"]=1860000, + ["hp"]=245450000, + ["atk"]=1640000, ["atk_times"]=4, ["hurt_skill"]={ 30091, diff --git a/lua/app/config/monster_dungeon_armor.lua b/lua/app/config/monster_dungeon_armor.lua index 7a1e15bd..0103a741 100644 --- a/lua/app/config/monster_dungeon_armor.lua +++ b/lua/app/config/monster_dungeon_armor.lua @@ -2,7 +2,7 @@ local monster_dungeon_armor = { [107]={ ["monster_base"]=10022, ["hp"]=76340000, - ["atk"]=2000000, + ["atk"]=1760000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -14,7 +14,7 @@ local monster_dungeon_armor = { [207]={ ["monster_base"]=10043, ["hp"]=113830000, - ["atk"]=2190000, + ["atk"]=1970000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -26,7 +26,7 @@ local monster_dungeon_armor = { [307]={ ["monster_base"]=10033, ["hp"]=142400000, - ["atk"]=2300000, + ["atk"]=2050000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -38,7 +38,7 @@ local monster_dungeon_armor = { [407]={ ["monster_base"]=10048, ["hp"]=150430000, - ["atk"]=2670000, + ["atk"]=2450000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -51,7 +51,7 @@ local monster_dungeon_armor = { ["monster_base"]=20004, ["is_boss"]=1, ["hp"]=290940000, - ["atk"]=2800000, + ["atk"]=2640000, ["atk_times"]=4, ["hurt_skill"]={ 30010, @@ -66,7 +66,7 @@ local monster_dungeon_armor = { [607]={ ["monster_base"]=10051, ["hp"]=185400000, - ["atk"]=2750000, + ["atk"]=2550000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -78,7 +78,7 @@ local monster_dungeon_armor = { [707]={ ["monster_base"]=10046, ["hp"]=203090000, - ["atk"]=2720000, + ["atk"]=2640000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -90,7 +90,7 @@ local monster_dungeon_armor = { [807]={ ["monster_base"]=10003, ["hp"]=237710000, - ["atk"]=2800000, + ["atk"]=2600000, ["atk_times"]=2, ["hurt_skill"]={ 20007, @@ -102,7 +102,7 @@ local monster_dungeon_armor = { [907]={ ["monster_base"]=10058, ["hp"]=273290000, - ["atk"]=2990000, + ["atk"]=2740000, ["atk_times"]=3, ["hurt_skill"]={ 20169, @@ -115,7 +115,7 @@ local monster_dungeon_armor = { ["monster_base"]=20012, ["is_boss"]=2, ["hp"]=494490000, - ["atk"]=3100000, + ["atk"]=2740000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -130,7 +130,7 @@ local monster_dungeon_armor = { [1107]={ ["monster_base"]=10017, ["hp"]=76340000, - ["atk"]=2000000, + ["atk"]=1760000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -142,7 +142,7 @@ local monster_dungeon_armor = { [1207]={ ["monster_base"]=10009, ["hp"]=113830000, - ["atk"]=2190000, + ["atk"]=1970000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -154,7 +154,7 @@ local monster_dungeon_armor = { [1307]={ ["monster_base"]=10019, ["hp"]=142400000, - ["atk"]=2300000, + ["atk"]=2050000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -166,7 +166,7 @@ local monster_dungeon_armor = { [1407]={ ["monster_base"]=10039, ["hp"]=150430000, - ["atk"]=2670000, + ["atk"]=2450000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -179,7 +179,7 @@ local monster_dungeon_armor = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=290940000, - ["atk"]=2800000, + ["atk"]=2640000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -197,7 +197,7 @@ local monster_dungeon_armor = { [1607]={ ["monster_base"]=10048, ["hp"]=185400000, - ["atk"]=2750000, + ["atk"]=2550000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -209,7 +209,7 @@ local monster_dungeon_armor = { [1707]={ ["monster_base"]=10017, ["hp"]=203090000, - ["atk"]=2720000, + ["atk"]=2640000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -221,7 +221,7 @@ local monster_dungeon_armor = { [1807]={ ["monster_base"]=10009, ["hp"]=237710000, - ["atk"]=2800000, + ["atk"]=2600000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -233,7 +233,7 @@ local monster_dungeon_armor = { [1907]={ ["monster_base"]=10039, ["hp"]=273290000, - ["atk"]=2990000, + ["atk"]=2740000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -246,7 +246,7 @@ local monster_dungeon_armor = { ["monster_base"]=20011, ["is_boss"]=2, ["hp"]=494490000, - ["atk"]=3100000, + ["atk"]=2740000, ["atk_times"]=4, ["hurt_skill"]={ 30031, @@ -261,7 +261,7 @@ local monster_dungeon_armor = { [2107]={ ["monster_base"]=10046, ["hp"]=76340000, - ["atk"]=2000000, + ["atk"]=1760000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -273,7 +273,7 @@ local monster_dungeon_armor = { [2207]={ ["monster_base"]=10005, ["hp"]=113830000, - ["atk"]=2190000, + ["atk"]=1970000, ["atk_times"]=2, ["hurt_skill"]={ 20013, @@ -285,7 +285,7 @@ local monster_dungeon_armor = { [2307]={ ["monster_base"]=10044, ["hp"]=142400000, - ["atk"]=2300000, + ["atk"]=2050000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -297,7 +297,7 @@ local monster_dungeon_armor = { [2407]={ ["monster_base"]=10052, ["hp"]=150430000, - ["atk"]=2670000, + ["atk"]=2450000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -310,7 +310,7 @@ local monster_dungeon_armor = { ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=290940000, - ["atk"]=2800000, + ["atk"]=2640000, ["atk_times"]=4, ["hurt_skill"]={ 30040, @@ -325,7 +325,7 @@ local monster_dungeon_armor = { [2607]={ ["monster_base"]=10060, ["hp"]=185400000, - ["atk"]=2750000, + ["atk"]=2550000, ["atk_times"]=3, ["hurt_skill"]={ 20175, @@ -337,7 +337,7 @@ local monster_dungeon_armor = { [2707]={ ["monster_base"]=10051, ["hp"]=203090000, - ["atk"]=2720000, + ["atk"]=2640000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -349,7 +349,7 @@ local monster_dungeon_armor = { [2807]={ ["monster_base"]=10036, ["hp"]=237710000, - ["atk"]=2800000, + ["atk"]=2600000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -361,7 +361,7 @@ local monster_dungeon_armor = { [2907]={ ["monster_base"]=10029, ["hp"]=273290000, - ["atk"]=2990000, + ["atk"]=2740000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -374,7 +374,7 @@ local monster_dungeon_armor = { ["monster_base"]=20029, ["is_boss"]=2, ["hp"]=494490000, - ["atk"]=3100000, + ["atk"]=2740000, ["atk_times"]=4, ["hurt_skill"]={ 30085, @@ -389,7 +389,7 @@ local monster_dungeon_armor = { [3107]={ ["monster_base"]=10029, ["hp"]=76340000, - ["atk"]=2000000, + ["atk"]=1760000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -401,7 +401,7 @@ local monster_dungeon_armor = { [3207]={ ["monster_base"]=10061, ["hp"]=113830000, - ["atk"]=2190000, + ["atk"]=1970000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -413,7 +413,7 @@ local monster_dungeon_armor = { [3307]={ ["monster_base"]=10041, ["hp"]=142400000, - ["atk"]=2300000, + ["atk"]=2050000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -425,7 +425,7 @@ local monster_dungeon_armor = { [3407]={ ["monster_base"]=10020, ["hp"]=150430000, - ["atk"]=2670000, + ["atk"]=2450000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -438,7 +438,7 @@ local monster_dungeon_armor = { ["monster_base"]=20002, ["is_boss"]=1, ["hp"]=290940000, - ["atk"]=2800000, + ["atk"]=2640000, ["atk_times"]=4, ["hurt_skill"]={ 30004, @@ -453,7 +453,7 @@ local monster_dungeon_armor = { [3607]={ ["monster_base"]=10035, ["hp"]=185400000, - ["atk"]=2750000, + ["atk"]=2550000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -465,7 +465,7 @@ local monster_dungeon_armor = { [3707]={ ["monster_base"]=10018, ["hp"]=203090000, - ["atk"]=2720000, + ["atk"]=2640000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -477,7 +477,7 @@ local monster_dungeon_armor = { [3807]={ ["monster_base"]=10049, ["hp"]=237710000, - ["atk"]=2800000, + ["atk"]=2600000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -489,7 +489,7 @@ local monster_dungeon_armor = { [3907]={ ["monster_base"]=10014, ["hp"]=273290000, - ["atk"]=2990000, + ["atk"]=2740000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -502,7 +502,7 @@ local monster_dungeon_armor = { ["monster_base"]=20023, ["is_boss"]=2, ["hp"]=494490000, - ["atk"]=3100000, + ["atk"]=2740000, ["atk_times"]=4, ["hurt_skill"]={ 30067, @@ -520,7 +520,7 @@ local monster_dungeon_armor = { [4107]={ ["monster_base"]=10004, ["hp"]=76340000, - ["atk"]=2000000, + ["atk"]=1760000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -532,7 +532,7 @@ local monster_dungeon_armor = { [4207]={ ["monster_base"]=10055, ["hp"]=113830000, - ["atk"]=2190000, + ["atk"]=1970000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -544,7 +544,7 @@ local monster_dungeon_armor = { [4307]={ ["monster_base"]=10010, ["hp"]=142400000, - ["atk"]=2300000, + ["atk"]=2050000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -556,7 +556,7 @@ local monster_dungeon_armor = { [4407]={ ["monster_base"]=10015, ["hp"]=150430000, - ["atk"]=2670000, + ["atk"]=2450000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -569,7 +569,7 @@ local monster_dungeon_armor = { ["monster_base"]=20007, ["is_boss"]=1, ["hp"]=290940000, - ["atk"]=2800000, + ["atk"]=2640000, ["atk_times"]=4, ["hurt_skill"]={ 30019, @@ -587,7 +587,7 @@ local monster_dungeon_armor = { [4607]={ ["monster_base"]=10031, ["hp"]=185400000, - ["atk"]=2750000, + ["atk"]=2550000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -599,7 +599,7 @@ local monster_dungeon_armor = { [4707]={ ["monster_base"]=10038, ["hp"]=203090000, - ["atk"]=2720000, + ["atk"]=2640000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -611,7 +611,7 @@ local monster_dungeon_armor = { [4807]={ ["monster_base"]=10025, ["hp"]=237710000, - ["atk"]=2800000, + ["atk"]=2600000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -623,7 +623,7 @@ local monster_dungeon_armor = { [4907]={ ["monster_base"]=10007, ["hp"]=273290000, - ["atk"]=2990000, + ["atk"]=2740000, ["atk_times"]=2, ["hurt_skill"]={ 20019, @@ -636,7 +636,7 @@ local monster_dungeon_armor = { ["monster_base"]=20025, ["is_boss"]=2, ["hp"]=494490000, - ["atk"]=3100000, + ["atk"]=2740000, ["atk_times"]=4, ["hurt_skill"]={ 30073, @@ -654,7 +654,7 @@ local monster_dungeon_armor = { [5107]={ ["monster_base"]=10049, ["hp"]=76340000, - ["atk"]=2000000, + ["atk"]=1760000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -666,7 +666,7 @@ local monster_dungeon_armor = { [5207]={ ["monster_base"]=10008, ["hp"]=113830000, - ["atk"]=2190000, + ["atk"]=1970000, ["atk_times"]=2, ["hurt_skill"]={ 20022, @@ -678,7 +678,7 @@ local monster_dungeon_armor = { [5307]={ ["monster_base"]=10050, ["hp"]=142400000, - ["atk"]=2300000, + ["atk"]=2050000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -690,7 +690,7 @@ local monster_dungeon_armor = { [5407]={ ["monster_base"]=10051, ["hp"]=150430000, - ["atk"]=2670000, + ["atk"]=2450000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -703,7 +703,7 @@ local monster_dungeon_armor = { ["monster_base"]=20001, ["is_boss"]=1, ["hp"]=290940000, - ["atk"]=2800000, + ["atk"]=2640000, ["atk_times"]=4, ["hurt_skill"]={ 30001, @@ -718,7 +718,7 @@ local monster_dungeon_armor = { [5607]={ ["monster_base"]=10036, ["hp"]=185400000, - ["atk"]=2750000, + ["atk"]=2550000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -730,7 +730,7 @@ local monster_dungeon_armor = { [5707]={ ["monster_base"]=10030, ["hp"]=203090000, - ["atk"]=2720000, + ["atk"]=2640000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -742,7 +742,7 @@ local monster_dungeon_armor = { [5807]={ ["monster_base"]=10055, ["hp"]=237710000, - ["atk"]=2800000, + ["atk"]=2600000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -754,7 +754,7 @@ local monster_dungeon_armor = { [5907]={ ["monster_base"]=10062, ["hp"]=273290000, - ["atk"]=2990000, + ["atk"]=2740000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -767,7 +767,7 @@ local monster_dungeon_armor = { ["monster_base"]=20005, ["is_boss"]=2, ["hp"]=494490000, - ["atk"]=3100000, + ["atk"]=2740000, ["atk_times"]=4, ["hurt_skill"]={ 30013, @@ -785,7 +785,7 @@ local monster_dungeon_armor = { [6107]={ ["monster_base"]=10054, ["hp"]=97940000, - ["atk"]=2670000, + ["atk"]=1910000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -797,7 +797,7 @@ local monster_dungeon_armor = { [6207]={ ["monster_base"]=10007, ["hp"]=145130000, - ["atk"]=2910000, + ["atk"]=2150000, ["atk_times"]=2, ["hurt_skill"]={ 20019, @@ -809,7 +809,7 @@ local monster_dungeon_armor = { [6307]={ ["monster_base"]=10035, ["hp"]=181680000, - ["atk"]=3040000, + ["atk"]=2220000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -821,7 +821,7 @@ local monster_dungeon_armor = { [6407]={ ["monster_base"]=10037, ["hp"]=191500000, - ["atk"]=3500000, + ["atk"]=2660000, ["atk_times"]=3, ["hurt_skill"]={ 20106, @@ -834,7 +834,7 @@ local monster_dungeon_armor = { ["monster_base"]=20011, ["is_boss"]=1, ["hp"]=356570000, - ["atk"]=3520000, + ["atk"]=2870000, ["atk_times"]=4, ["hurt_skill"]={ 30031, @@ -849,7 +849,7 @@ local monster_dungeon_armor = { [6607]={ ["monster_base"]=10004, ["hp"]=236460000, - ["atk"]=3630000, + ["atk"]=2770000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -861,7 +861,7 @@ local monster_dungeon_armor = { [6707]={ ["monster_base"]=10060, ["hp"]=248810000, - ["atk"]=3440000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20175, @@ -873,7 +873,7 @@ local monster_dungeon_armor = { [6807]={ ["monster_base"]=10036, ["hp"]=291690000, - ["atk"]=3550000, + ["atk"]=2820000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -885,7 +885,7 @@ local monster_dungeon_armor = { [6907]={ ["monster_base"]=10057, ["hp"]=335220000, - ["atk"]=3760000, + ["atk"]=2980000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -898,7 +898,7 @@ local monster_dungeon_armor = { ["monster_base"]=20017, ["is_boss"]=2, ["hp"]=566760000, - ["atk"]=3630000, + ["atk"]=2980000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -913,7 +913,7 @@ local monster_dungeon_armor = { [7107]={ ["monster_base"]=10045, ["hp"]=97940000, - ["atk"]=2670000, + ["atk"]=1910000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -925,7 +925,7 @@ local monster_dungeon_armor = { [7207]={ ["monster_base"]=10015, ["hp"]=145130000, - ["atk"]=2910000, + ["atk"]=2150000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -937,7 +937,7 @@ local monster_dungeon_armor = { [7307]={ ["monster_base"]=10025, ["hp"]=181680000, - ["atk"]=3040000, + ["atk"]=2220000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -949,7 +949,7 @@ local monster_dungeon_armor = { [7407]={ ["monster_base"]=10035, ["hp"]=191500000, - ["atk"]=3500000, + ["atk"]=2660000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -962,7 +962,7 @@ local monster_dungeon_armor = { ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=356570000, - ["atk"]=3520000, + ["atk"]=2870000, ["atk_times"]=4, ["hurt_skill"]={ 30040, @@ -977,7 +977,7 @@ local monster_dungeon_armor = { [7607]={ ["monster_base"]=10040, ["hp"]=236460000, - ["atk"]=3630000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -989,7 +989,7 @@ local monster_dungeon_armor = { [7707]={ ["monster_base"]=10002, ["hp"]=248810000, - ["atk"]=3440000, + ["atk"]=2870000, ["atk_times"]=2, ["hurt_skill"]={ 20004, @@ -1001,7 +1001,7 @@ local monster_dungeon_armor = { [7807]={ ["monster_base"]=10047, ["hp"]=291690000, - ["atk"]=3550000, + ["atk"]=2820000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -1013,7 +1013,7 @@ local monster_dungeon_armor = { [7907]={ ["monster_base"]=10034, ["hp"]=335220000, - ["atk"]=3760000, + ["atk"]=2980000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -1026,7 +1026,7 @@ local monster_dungeon_armor = { ["monster_base"]=30014, ["is_boss"]=2, ["hp"]=566760000, - ["atk"]=3630000, + ["atk"]=2980000, ["atk_times"]=4, ["hurt_skill"]={ 40009, @@ -1042,7 +1042,7 @@ local monster_dungeon_armor = { [8107]={ ["monster_base"]=10005, ["hp"]=97940000, - ["atk"]=2670000, + ["atk"]=1910000, ["atk_times"]=2, ["hurt_skill"]={ 20013, @@ -1054,7 +1054,7 @@ local monster_dungeon_armor = { [8207]={ ["monster_base"]=10037, ["hp"]=145130000, - ["atk"]=2910000, + ["atk"]=2150000, ["atk_times"]=3, ["hurt_skill"]={ 20106, @@ -1066,7 +1066,7 @@ local monster_dungeon_armor = { [8307]={ ["monster_base"]=10022, ["hp"]=181680000, - ["atk"]=3040000, + ["atk"]=2220000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -1078,7 +1078,7 @@ local monster_dungeon_armor = { [8407]={ ["monster_base"]=10012, ["hp"]=191500000, - ["atk"]=3500000, + ["atk"]=2660000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -1091,7 +1091,7 @@ local monster_dungeon_armor = { ["monster_base"]=20008, ["is_boss"]=1, ["hp"]=356570000, - ["atk"]=3520000, + ["atk"]=2870000, ["atk_times"]=4, ["hurt_skill"]={ 30022, @@ -1109,7 +1109,7 @@ local monster_dungeon_armor = { [8607]={ ["monster_base"]=10029, ["hp"]=236460000, - ["atk"]=3630000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -1121,7 +1121,7 @@ local monster_dungeon_armor = { [8707]={ ["monster_base"]=10030, ["hp"]=248810000, - ["atk"]=3440000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -1133,7 +1133,7 @@ local monster_dungeon_armor = { [8807]={ ["monster_base"]=10021, ["hp"]=291690000, - ["atk"]=3550000, + ["atk"]=2820000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -1145,7 +1145,7 @@ local monster_dungeon_armor = { [8907]={ ["monster_base"]=10024, ["hp"]=335220000, - ["atk"]=3760000, + ["atk"]=2980000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -1158,7 +1158,7 @@ local monster_dungeon_armor = { ["monster_base"]=30012, ["is_boss"]=2, ["hp"]=566760000, - ["atk"]=3630000, + ["atk"]=2980000, ["atk_times"]=4, ["hurt_skill"]={ 40005, @@ -1175,7 +1175,7 @@ local monster_dungeon_armor = { [9107]={ ["monster_base"]=10039, ["hp"]=97940000, - ["atk"]=2670000, + ["atk"]=1910000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -1187,7 +1187,7 @@ local monster_dungeon_armor = { [9207]={ ["monster_base"]=10061, ["hp"]=145130000, - ["atk"]=2910000, + ["atk"]=2150000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -1199,7 +1199,7 @@ local monster_dungeon_armor = { [9307]={ ["monster_base"]=10048, ["hp"]=181680000, - ["atk"]=3040000, + ["atk"]=2220000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -1211,7 +1211,7 @@ local monster_dungeon_armor = { [9407]={ ["monster_base"]=10027, ["hp"]=191500000, - ["atk"]=3500000, + ["atk"]=2660000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -1224,7 +1224,7 @@ local monster_dungeon_armor = { ["monster_base"]=20006, ["is_boss"]=1, ["hp"]=356570000, - ["atk"]=3520000, + ["atk"]=2870000, ["atk_times"]=4, ["hurt_skill"]={ 30016, @@ -1242,7 +1242,7 @@ local monster_dungeon_armor = { [9607]={ ["monster_base"]=10031, ["hp"]=236460000, - ["atk"]=3630000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -1254,7 +1254,7 @@ local monster_dungeon_armor = { [9707]={ ["monster_base"]=10041, ["hp"]=248810000, - ["atk"]=3440000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -1266,7 +1266,7 @@ local monster_dungeon_armor = { [9807]={ ["monster_base"]=10040, ["hp"]=291690000, - ["atk"]=3550000, + ["atk"]=2820000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -1278,7 +1278,7 @@ local monster_dungeon_armor = { [9907]={ ["monster_base"]=10017, ["hp"]=335220000, - ["atk"]=3760000, + ["atk"]=2980000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -1291,7 +1291,7 @@ local monster_dungeon_armor = { ["monster_base"]=20021, ["is_boss"]=2, ["hp"]=566760000, - ["atk"]=3630000, + ["atk"]=2980000, ["atk_times"]=4, ["hurt_skill"]={ 30061, @@ -1310,7 +1310,7 @@ local monster_dungeon_armor = { [10107]={ ["monster_base"]=10039, ["hp"]=97940000, - ["atk"]=2670000, + ["atk"]=1910000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -1322,7 +1322,7 @@ local monster_dungeon_armor = { [10207]={ ["monster_base"]=10053, ["hp"]=145130000, - ["atk"]=2910000, + ["atk"]=2150000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -1334,7 +1334,7 @@ local monster_dungeon_armor = { [10307]={ ["monster_base"]=10002, ["hp"]=181680000, - ["atk"]=3040000, + ["atk"]=2220000, ["atk_times"]=2, ["hurt_skill"]={ 20004, @@ -1346,7 +1346,7 @@ local monster_dungeon_armor = { [10407]={ ["monster_base"]=10063, ["hp"]=191500000, - ["atk"]=3500000, + ["atk"]=2660000, ["atk_times"]=3, ["hurt_skill"]={ 20184, @@ -1359,7 +1359,7 @@ local monster_dungeon_armor = { ["monster_base"]=20016, ["is_boss"]=1, ["hp"]=356570000, - ["atk"]=3520000, + ["atk"]=2870000, ["atk_times"]=4, ["hurt_skill"]={ 30046, @@ -1378,7 +1378,7 @@ local monster_dungeon_armor = { [10607]={ ["monster_base"]=10061, ["hp"]=236460000, - ["atk"]=3630000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -1390,7 +1390,7 @@ local monster_dungeon_armor = { [10707]={ ["monster_base"]=10050, ["hp"]=248810000, - ["atk"]=3440000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -1402,7 +1402,7 @@ local monster_dungeon_armor = { [10807]={ ["monster_base"]=10033, ["hp"]=291690000, - ["atk"]=3550000, + ["atk"]=2820000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -1414,7 +1414,7 @@ local monster_dungeon_armor = { [10907]={ ["monster_base"]=10057, ["hp"]=335220000, - ["atk"]=3760000, + ["atk"]=2980000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -1427,7 +1427,7 @@ local monster_dungeon_armor = { ["monster_base"]=30020, ["is_boss"]=2, ["hp"]=566760000, - ["atk"]=3630000, + ["atk"]=2980000, ["atk_times"]=4, ["hurt_skill"]={ 40033, @@ -1443,7 +1443,7 @@ local monster_dungeon_armor = { [11107]={ ["monster_base"]=10034, ["hp"]=97940000, - ["atk"]=2670000, + ["atk"]=1910000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -1455,7 +1455,7 @@ local monster_dungeon_armor = { [11207]={ ["monster_base"]=10056, ["hp"]=145130000, - ["atk"]=2910000, + ["atk"]=2150000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -1467,7 +1467,7 @@ local monster_dungeon_armor = { [11307]={ ["monster_base"]=10037, ["hp"]=181680000, - ["atk"]=3040000, + ["atk"]=2220000, ["atk_times"]=3, ["hurt_skill"]={ 20106, @@ -1479,7 +1479,7 @@ local monster_dungeon_armor = { [11407]={ ["monster_base"]=10042, ["hp"]=191500000, - ["atk"]=3500000, + ["atk"]=2660000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -1492,7 +1492,7 @@ local monster_dungeon_armor = { ["monster_base"]=30010, ["is_boss"]=1, ["hp"]=356570000, - ["atk"]=3520000, + ["atk"]=2870000, ["atk_times"]=4, ["hurt_skill"]={ 40013, @@ -1508,7 +1508,7 @@ local monster_dungeon_armor = { [11607]={ ["monster_base"]=10062, ["hp"]=236460000, - ["atk"]=3630000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -1520,7 +1520,7 @@ local monster_dungeon_armor = { [11707]={ ["monster_base"]=10042, ["hp"]=248810000, - ["atk"]=3440000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -1532,7 +1532,7 @@ local monster_dungeon_armor = { [11807]={ ["monster_base"]=10008, ["hp"]=291690000, - ["atk"]=3550000, + ["atk"]=2820000, ["atk_times"]=2, ["hurt_skill"]={ 20022, @@ -1544,7 +1544,7 @@ local monster_dungeon_armor = { [11907]={ ["monster_base"]=10023, ["hp"]=335220000, - ["atk"]=3760000, + ["atk"]=2980000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -1557,7 +1557,7 @@ local monster_dungeon_armor = { ["monster_base"]=20003, ["is_boss"]=2, ["hp"]=566760000, - ["atk"]=3630000, + ["atk"]=2980000, ["atk_times"]=4, ["hurt_skill"]={ 30007, @@ -1577,7 +1577,7 @@ local monster_dungeon_armor = { [12107]={ ["monster_base"]=10062, ["hp"]=132190000, - ["atk"]=3940000, + ["atk"]=2500000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -1589,7 +1589,7 @@ local monster_dungeon_armor = { [12207]={ ["monster_base"]=10008, ["hp"]=194920000, - ["atk"]=4280000, + ["atk"]=2770000, ["atk_times"]=2, ["hurt_skill"]={ 20022, @@ -1601,7 +1601,7 @@ local monster_dungeon_armor = { [12307]={ ["monster_base"]=10065, ["hp"]=243300000, - ["atk"]=4410000, + ["atk"]=2900000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -1613,7 +1613,7 @@ local monster_dungeon_armor = { [12407]={ ["monster_base"]=10013, ["hp"]=255540000, - ["atk"]=5040000, + ["atk"]=3450000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -1626,7 +1626,7 @@ local monster_dungeon_armor = { ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=475340000, - ["atk"]=4990000, + ["atk"]=3690000, ["atk_times"]=4, ["hurt_skill"]={ 30040, @@ -1641,7 +1641,7 @@ local monster_dungeon_armor = { [12607]={ ["monster_base"]=10020, ["hp"]=316140000, - ["atk"]=5190000, + ["atk"]=3590000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -1653,7 +1653,7 @@ local monster_dungeon_armor = { [12707]={ ["monster_base"]=10047, ["hp"]=332120000, - ["atk"]=4990000, + ["atk"]=3710000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -1665,7 +1665,7 @@ local monster_dungeon_armor = { [12807]={ ["monster_base"]=10065, ["hp"]=389430000, - ["atk"]=5120000, + ["atk"]=3660000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -1677,7 +1677,7 @@ local monster_dungeon_armor = { [12907]={ ["monster_base"]=10063, ["hp"]=447180000, - ["atk"]=5400000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20184, @@ -1690,7 +1690,7 @@ local monster_dungeon_armor = { ["monster_base"]=20005, ["is_boss"]=2, ["hp"]=754850000, - ["atk"]=5120000, + ["atk"]=3870000, ["atk_times"]=4, ["hurt_skill"]={ 30013, @@ -1708,7 +1708,7 @@ local monster_dungeon_armor = { [13107]={ ["monster_base"]=10033, ["hp"]=132190000, - ["atk"]=3940000, + ["atk"]=2500000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -1720,7 +1720,7 @@ local monster_dungeon_armor = { [13207]={ ["monster_base"]=10020, ["hp"]=194920000, - ["atk"]=4280000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -1732,7 +1732,7 @@ local monster_dungeon_armor = { [13307]={ ["monster_base"]=10057, ["hp"]=243300000, - ["atk"]=4410000, + ["atk"]=2900000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -1744,7 +1744,7 @@ local monster_dungeon_armor = { [13407]={ ["monster_base"]=10006, ["hp"]=255540000, - ["atk"]=5040000, + ["atk"]=3450000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -1757,7 +1757,7 @@ local monster_dungeon_armor = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=475340000, - ["atk"]=4990000, + ["atk"]=3690000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -1775,7 +1775,7 @@ local monster_dungeon_armor = { [13607]={ ["monster_base"]=10048, ["hp"]=316140000, - ["atk"]=5190000, + ["atk"]=3590000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -1787,7 +1787,7 @@ local monster_dungeon_armor = { [13707]={ ["monster_base"]=10020, ["hp"]=332120000, - ["atk"]=4990000, + ["atk"]=3710000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -1799,7 +1799,7 @@ local monster_dungeon_armor = { [13807]={ ["monster_base"]=10041, ["hp"]=389430000, - ["atk"]=5120000, + ["atk"]=3660000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -1811,7 +1811,7 @@ local monster_dungeon_armor = { [13907]={ ["monster_base"]=10006, ["hp"]=447180000, - ["atk"]=5400000, + ["atk"]=3870000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -1824,7 +1824,7 @@ local monster_dungeon_armor = { ["monster_base"]=30012, ["is_boss"]=2, ["hp"]=754850000, - ["atk"]=5120000, + ["atk"]=3870000, ["atk_times"]=4, ["hurt_skill"]={ 40005, @@ -1841,7 +1841,7 @@ local monster_dungeon_armor = { [14107]={ ["monster_base"]=10001, ["hp"]=132190000, - ["atk"]=3940000, + ["atk"]=2500000, ["atk_times"]=2, ["hurt_skill"]={ 20001, @@ -1853,7 +1853,7 @@ local monster_dungeon_armor = { [14207]={ ["monster_base"]=10016, ["hp"]=194920000, - ["atk"]=4280000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -1865,7 +1865,7 @@ local monster_dungeon_armor = { [14307]={ ["monster_base"]=10041, ["hp"]=243300000, - ["atk"]=4410000, + ["atk"]=2900000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -1877,7 +1877,7 @@ local monster_dungeon_armor = { [14407]={ ["monster_base"]=10053, ["hp"]=255540000, - ["atk"]=5040000, + ["atk"]=3450000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -1890,7 +1890,7 @@ local monster_dungeon_armor = { ["monster_base"]=20002, ["is_boss"]=1, ["hp"]=475340000, - ["atk"]=4990000, + ["atk"]=3690000, ["atk_times"]=4, ["hurt_skill"]={ 30004, @@ -1905,7 +1905,7 @@ local monster_dungeon_armor = { [14607]={ ["monster_base"]=10054, ["hp"]=316140000, - ["atk"]=5190000, + ["atk"]=3590000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -1917,7 +1917,7 @@ local monster_dungeon_armor = { [14707]={ ["monster_base"]=10018, ["hp"]=332120000, - ["atk"]=4990000, + ["atk"]=3710000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -1929,7 +1929,7 @@ local monster_dungeon_armor = { [14807]={ ["monster_base"]=10050, ["hp"]=389430000, - ["atk"]=5120000, + ["atk"]=3660000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -1941,7 +1941,7 @@ local monster_dungeon_armor = { [14907]={ ["monster_base"]=10041, ["hp"]=447180000, - ["atk"]=5400000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -1954,7 +1954,7 @@ local monster_dungeon_armor = { ["monster_base"]=20017, ["is_boss"]=2, ["hp"]=754850000, - ["atk"]=5120000, + ["atk"]=3870000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -1969,7 +1969,7 @@ local monster_dungeon_armor = { [15107]={ ["monster_base"]=10051, ["hp"]=132190000, - ["atk"]=3940000, + ["atk"]=2500000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -1981,7 +1981,7 @@ local monster_dungeon_armor = { [15207]={ ["monster_base"]=10018, ["hp"]=194920000, - ["atk"]=4280000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -1993,7 +1993,7 @@ local monster_dungeon_armor = { [15307]={ ["monster_base"]=10040, ["hp"]=243300000, - ["atk"]=4410000, + ["atk"]=2900000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -2005,7 +2005,7 @@ local monster_dungeon_armor = { [15407]={ ["monster_base"]=10032, ["hp"]=255540000, - ["atk"]=5040000, + ["atk"]=3450000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -2018,7 +2018,7 @@ local monster_dungeon_armor = { ["monster_base"]=20001, ["is_boss"]=1, ["hp"]=475340000, - ["atk"]=4990000, + ["atk"]=3690000, ["atk_times"]=4, ["hurt_skill"]={ 30001, @@ -2033,7 +2033,7 @@ local monster_dungeon_armor = { [15607]={ ["monster_base"]=10041, ["hp"]=316140000, - ["atk"]=5190000, + ["atk"]=3590000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -2045,7 +2045,7 @@ local monster_dungeon_armor = { [15707]={ ["monster_base"]=10053, ["hp"]=332120000, - ["atk"]=4990000, + ["atk"]=3710000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -2057,7 +2057,7 @@ local monster_dungeon_armor = { [15807]={ ["monster_base"]=10024, ["hp"]=389430000, - ["atk"]=5120000, + ["atk"]=3660000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -2069,7 +2069,7 @@ local monster_dungeon_armor = { [15907]={ ["monster_base"]=10038, ["hp"]=447180000, - ["atk"]=5400000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -2082,7 +2082,7 @@ local monster_dungeon_armor = { ["monster_base"]=20016, ["is_boss"]=2, ["hp"]=754850000, - ["atk"]=5120000, + ["atk"]=3870000, ["atk_times"]=4, ["hurt_skill"]={ 30046, @@ -2101,7 +2101,7 @@ local monster_dungeon_armor = { [16107]={ ["monster_base"]=10016, ["hp"]=132190000, - ["atk"]=3940000, + ["atk"]=2500000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -2113,7 +2113,7 @@ local monster_dungeon_armor = { [16207]={ ["monster_base"]=10006, ["hp"]=194920000, - ["atk"]=4280000, + ["atk"]=2770000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -2125,7 +2125,7 @@ local monster_dungeon_armor = { [16307]={ ["monster_base"]=10021, ["hp"]=243300000, - ["atk"]=4410000, + ["atk"]=2900000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -2137,7 +2137,7 @@ local monster_dungeon_armor = { [16407]={ ["monster_base"]=10018, ["hp"]=255540000, - ["atk"]=5040000, + ["atk"]=3450000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -2150,7 +2150,7 @@ local monster_dungeon_armor = { ["monster_base"]=20010, ["is_boss"]=1, ["hp"]=475340000, - ["atk"]=4990000, + ["atk"]=3690000, ["atk_times"]=4, ["hurt_skill"]={ 30028, @@ -2171,7 +2171,7 @@ local monster_dungeon_armor = { [16607]={ ["monster_base"]=10052, ["hp"]=316140000, - ["atk"]=5190000, + ["atk"]=3590000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -2183,7 +2183,7 @@ local monster_dungeon_armor = { [16707]={ ["monster_base"]=10039, ["hp"]=332120000, - ["atk"]=4990000, + ["atk"]=3710000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -2195,7 +2195,7 @@ local monster_dungeon_armor = { [16807]={ ["monster_base"]=10055, ["hp"]=389430000, - ["atk"]=5120000, + ["atk"]=3660000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -2207,7 +2207,7 @@ local monster_dungeon_armor = { [16907]={ ["monster_base"]=10031, ["hp"]=447180000, - ["atk"]=5400000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -2220,7 +2220,7 @@ local monster_dungeon_armor = { ["monster_base"]=30015, ["is_boss"]=2, ["hp"]=754850000, - ["atk"]=5120000, + ["atk"]=3870000, ["atk_times"]=4, ["hurt_skill"]={ 40025, @@ -2236,7 +2236,7 @@ local monster_dungeon_armor = { [17107]={ ["monster_base"]=10027, ["hp"]=132190000, - ["atk"]=3940000, + ["atk"]=2500000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -2248,7 +2248,7 @@ local monster_dungeon_armor = { [17207]={ ["monster_base"]=10040, ["hp"]=194920000, - ["atk"]=4280000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -2260,7 +2260,7 @@ local monster_dungeon_armor = { [17307]={ ["monster_base"]=10013, ["hp"]=243300000, - ["atk"]=4410000, + ["atk"]=2900000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -2272,7 +2272,7 @@ local monster_dungeon_armor = { [17407]={ ["monster_base"]=10053, ["hp"]=255540000, - ["atk"]=5040000, + ["atk"]=3450000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -2285,7 +2285,7 @@ local monster_dungeon_armor = { ["monster_base"]=30020, ["is_boss"]=1, ["hp"]=475340000, - ["atk"]=4990000, + ["atk"]=3690000, ["atk_times"]=4, ["hurt_skill"]={ 40033, @@ -2301,7 +2301,7 @@ local monster_dungeon_armor = { [17607]={ ["monster_base"]=10019, ["hp"]=316140000, - ["atk"]=5190000, + ["atk"]=3590000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -2313,7 +2313,7 @@ local monster_dungeon_armor = { [17707]={ ["monster_base"]=10018, ["hp"]=332120000, - ["atk"]=4990000, + ["atk"]=3710000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -2325,7 +2325,7 @@ local monster_dungeon_armor = { [17807]={ ["monster_base"]=10013, ["hp"]=389430000, - ["atk"]=5120000, + ["atk"]=3660000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -2337,7 +2337,7 @@ local monster_dungeon_armor = { [17907]={ ["monster_base"]=10023, ["hp"]=447180000, - ["atk"]=5400000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -2350,7 +2350,7 @@ local monster_dungeon_armor = { ["monster_base"]=20009, ["is_boss"]=2, ["hp"]=754850000, - ["atk"]=5120000, + ["atk"]=3870000, ["atk_times"]=4, ["hurt_skill"]={ 30025, @@ -2369,7 +2369,7 @@ local monster_dungeon_armor = { [18107]={ ["monster_base"]=10043, ["hp"]=143370000, - ["atk"]=4360000, + ["atk"]=2710000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -2381,7 +2381,7 @@ local monster_dungeon_armor = { [18207]={ ["monster_base"]=10055, ["hp"]=210680000, - ["atk"]=4720000, + ["atk"]=3000000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -2393,7 +2393,7 @@ local monster_dungeon_armor = { [18307]={ ["monster_base"]=10026, ["hp"]=263090000, - ["atk"]=4880000, + ["atk"]=3140000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -2405,7 +2405,7 @@ local monster_dungeon_armor = { [18407]={ ["monster_base"]=10023, ["hp"]=276480000, - ["atk"]=5570000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -2418,7 +2418,7 @@ local monster_dungeon_armor = { ["monster_base"]=30009, ["is_boss"]=1, ["hp"]=512890000, - ["atk"]=5470000, + ["atk"]=3980000, ["atk_times"]=4, ["hurt_skill"]={ 40021, @@ -2434,7 +2434,7 @@ local monster_dungeon_armor = { [18607]={ ["monster_base"]=10006, ["hp"]=341420000, - ["atk"]=5730000, + ["atk"]=3870000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -2446,7 +2446,7 @@ local monster_dungeon_armor = { [18707]={ ["monster_base"]=10057, ["hp"]=359010000, - ["atk"]=5500000, + ["atk"]=4000000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -2458,7 +2458,7 @@ local monster_dungeon_armor = { [18807]={ ["monster_base"]=10004, ["hp"]=420800000, - ["atk"]=5650000, + ["atk"]=3960000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -2470,7 +2470,7 @@ local monster_dungeon_armor = { [18907]={ ["monster_base"]=10048, ["hp"]=483170000, - ["atk"]=5930000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -2483,7 +2483,7 @@ local monster_dungeon_armor = { ["monster_base"]=20010, ["is_boss"]=2, ["hp"]=814970000, - ["atk"]=5600000, + ["atk"]=4170000, ["atk_times"]=4, ["hurt_skill"]={ 30028, @@ -2504,7 +2504,7 @@ local monster_dungeon_armor = { [19107]={ ["monster_base"]=10010, ["hp"]=143370000, - ["atk"]=4360000, + ["atk"]=2710000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -2516,7 +2516,7 @@ local monster_dungeon_armor = { [19207]={ ["monster_base"]=10057, ["hp"]=210680000, - ["atk"]=4720000, + ["atk"]=3000000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -2528,7 +2528,7 @@ local monster_dungeon_armor = { [19307]={ ["monster_base"]=10045, ["hp"]=263090000, - ["atk"]=4880000, + ["atk"]=3140000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -2540,7 +2540,7 @@ local monster_dungeon_armor = { [19407]={ ["monster_base"]=10032, ["hp"]=276480000, - ["atk"]=5570000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -2553,7 +2553,7 @@ local monster_dungeon_armor = { ["monster_base"]=20017, ["is_boss"]=1, ["hp"]=512890000, - ["atk"]=5470000, + ["atk"]=3980000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -2568,7 +2568,7 @@ local monster_dungeon_armor = { [19607]={ ["monster_base"]=10010, ["hp"]=341420000, - ["atk"]=5730000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -2580,7 +2580,7 @@ local monster_dungeon_armor = { [19707]={ ["monster_base"]=10029, ["hp"]=359010000, - ["atk"]=5500000, + ["atk"]=4000000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -2592,7 +2592,7 @@ local monster_dungeon_armor = { [19807]={ ["monster_base"]=10042, ["hp"]=420800000, - ["atk"]=5650000, + ["atk"]=3960000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -2604,7 +2604,7 @@ local monster_dungeon_armor = { [19907]={ ["monster_base"]=10007, ["hp"]=483170000, - ["atk"]=5930000, + ["atk"]=4170000, ["atk_times"]=2, ["hurt_skill"]={ 20019, @@ -2617,7 +2617,7 @@ local monster_dungeon_armor = { ["monster_base"]=20019, ["is_boss"]=2, ["hp"]=814970000, - ["atk"]=5600000, + ["atk"]=4170000, ["atk_times"]=4, ["hurt_skill"]={ 30055, @@ -2636,7 +2636,7 @@ local monster_dungeon_armor = { [20107]={ ["monster_base"]=10012, ["hp"]=143370000, - ["atk"]=4360000, + ["atk"]=2710000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -2648,7 +2648,7 @@ local monster_dungeon_armor = { [20207]={ ["monster_base"]=10053, ["hp"]=210680000, - ["atk"]=4720000, + ["atk"]=3000000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -2660,7 +2660,7 @@ local monster_dungeon_armor = { [20307]={ ["monster_base"]=10022, ["hp"]=263090000, - ["atk"]=4880000, + ["atk"]=3140000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -2672,7 +2672,7 @@ local monster_dungeon_armor = { [20407]={ ["monster_base"]=10058, ["hp"]=276480000, - ["atk"]=5570000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20169, @@ -2685,7 +2685,7 @@ local monster_dungeon_armor = { ["monster_base"]=30014, ["is_boss"]=1, ["hp"]=512890000, - ["atk"]=5470000, + ["atk"]=3980000, ["atk_times"]=4, ["hurt_skill"]={ 40009, @@ -2701,7 +2701,7 @@ local monster_dungeon_armor = { [20607]={ ["monster_base"]=10023, ["hp"]=341420000, - ["atk"]=5730000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -2713,7 +2713,7 @@ local monster_dungeon_armor = { [20707]={ ["monster_base"]=10046, ["hp"]=359010000, - ["atk"]=5500000, + ["atk"]=4000000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -2725,7 +2725,7 @@ local monster_dungeon_armor = { [20807]={ ["monster_base"]=10008, ["hp"]=420800000, - ["atk"]=5650000, + ["atk"]=3960000, ["atk_times"]=2, ["hurt_skill"]={ 20022, @@ -2737,7 +2737,7 @@ local monster_dungeon_armor = { [20907]={ ["monster_base"]=10056, ["hp"]=483170000, - ["atk"]=5930000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -2750,7 +2750,7 @@ local monster_dungeon_armor = { ["monster_base"]=20020, ["is_boss"]=2, ["hp"]=814970000, - ["atk"]=5600000, + ["atk"]=4170000, ["atk_times"]=4, ["hurt_skill"]={ 30058, @@ -2769,7 +2769,7 @@ local monster_dungeon_armor = { [21107]={ ["monster_base"]=10055, ["hp"]=143370000, - ["atk"]=4360000, + ["atk"]=2710000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -2781,7 +2781,7 @@ local monster_dungeon_armor = { [21207]={ ["monster_base"]=10025, ["hp"]=210680000, - ["atk"]=4720000, + ["atk"]=3000000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -2793,7 +2793,7 @@ local monster_dungeon_armor = { [21307]={ ["monster_base"]=10049, ["hp"]=263090000, - ["atk"]=4880000, + ["atk"]=3140000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -2805,7 +2805,7 @@ local monster_dungeon_armor = { [21407]={ ["monster_base"]=10051, ["hp"]=276480000, - ["atk"]=5570000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -2818,7 +2818,7 @@ local monster_dungeon_armor = { ["monster_base"]=20017, ["is_boss"]=1, ["hp"]=512890000, - ["atk"]=5470000, + ["atk"]=3980000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -2833,7 +2833,7 @@ local monster_dungeon_armor = { [21607]={ ["monster_base"]=10026, ["hp"]=341420000, - ["atk"]=5730000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -2845,7 +2845,7 @@ local monster_dungeon_armor = { [21707]={ ["monster_base"]=10006, ["hp"]=359010000, - ["atk"]=5500000, + ["atk"]=4000000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -2857,7 +2857,7 @@ local monster_dungeon_armor = { [21807]={ ["monster_base"]=10005, ["hp"]=420800000, - ["atk"]=5650000, + ["atk"]=3960000, ["atk_times"]=2, ["hurt_skill"]={ 20013, @@ -2869,7 +2869,7 @@ local monster_dungeon_armor = { [21907]={ ["monster_base"]=10009, ["hp"]=483170000, - ["atk"]=5930000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -2882,7 +2882,7 @@ local monster_dungeon_armor = { ["monster_base"]=20018, ["is_boss"]=2, ["hp"]=814970000, - ["atk"]=5600000, + ["atk"]=4170000, ["atk_times"]=4, ["hurt_skill"]={ 30052, @@ -2901,7 +2901,7 @@ local monster_dungeon_armor = { [22107]={ ["monster_base"]=10003, ["hp"]=143370000, - ["atk"]=4360000, + ["atk"]=2710000, ["atk_times"]=2, ["hurt_skill"]={ 20007, @@ -2913,7 +2913,7 @@ local monster_dungeon_armor = { [22207]={ ["monster_base"]=10026, ["hp"]=210680000, - ["atk"]=4720000, + ["atk"]=3000000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -2925,7 +2925,7 @@ local monster_dungeon_armor = { [22307]={ ["monster_base"]=10049, ["hp"]=263090000, - ["atk"]=4880000, + ["atk"]=3140000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -2937,7 +2937,7 @@ local monster_dungeon_armor = { [22407]={ ["monster_base"]=10024, ["hp"]=276480000, - ["atk"]=5570000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -2950,7 +2950,7 @@ local monster_dungeon_armor = { ["monster_base"]=30010, ["is_boss"]=1, ["hp"]=512890000, - ["atk"]=5470000, + ["atk"]=3980000, ["atk_times"]=4, ["hurt_skill"]={ 40013, @@ -2966,7 +2966,7 @@ local monster_dungeon_armor = { [22607]={ ["monster_base"]=10048, ["hp"]=341420000, - ["atk"]=5730000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -2978,7 +2978,7 @@ local monster_dungeon_armor = { [22707]={ ["monster_base"]=10004, ["hp"]=359010000, - ["atk"]=5500000, + ["atk"]=4000000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -2990,7 +2990,7 @@ local monster_dungeon_armor = { [22807]={ ["monster_base"]=10014, ["hp"]=420800000, - ["atk"]=5650000, + ["atk"]=3960000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -3002,7 +3002,7 @@ local monster_dungeon_armor = { [22907]={ ["monster_base"]=10055, ["hp"]=483170000, - ["atk"]=5930000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -3015,7 +3015,7 @@ local monster_dungeon_armor = { ["monster_base"]=20013, ["is_boss"]=2, ["hp"]=814970000, - ["atk"]=5600000, + ["atk"]=4170000, ["atk_times"]=4, ["hurt_skill"]={ 30037, @@ -3031,7 +3031,7 @@ local monster_dungeon_armor = { [23107]={ ["monster_base"]=10019, ["hp"]=143370000, - ["atk"]=4360000, + ["atk"]=2710000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -3043,7 +3043,7 @@ local monster_dungeon_armor = { [23207]={ ["monster_base"]=10048, ["hp"]=210680000, - ["atk"]=4720000, + ["atk"]=3000000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -3055,7 +3055,7 @@ local monster_dungeon_armor = { [23307]={ ["monster_base"]=10028, ["hp"]=263090000, - ["atk"]=4880000, + ["atk"]=3140000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -3067,7 +3067,7 @@ local monster_dungeon_armor = { [23407]={ ["monster_base"]=10014, ["hp"]=276480000, - ["atk"]=5570000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -3080,7 +3080,7 @@ local monster_dungeon_armor = { ["monster_base"]=20009, ["is_boss"]=1, ["hp"]=512890000, - ["atk"]=5470000, + ["atk"]=3980000, ["atk_times"]=4, ["hurt_skill"]={ 30025, @@ -3099,7 +3099,7 @@ local monster_dungeon_armor = { [23607]={ ["monster_base"]=10012, ["hp"]=341420000, - ["atk"]=5730000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -3111,7 +3111,7 @@ local monster_dungeon_armor = { [23707]={ ["monster_base"]=10065, ["hp"]=359010000, - ["atk"]=5500000, + ["atk"]=4000000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -3123,7 +3123,7 @@ local monster_dungeon_armor = { [23807]={ ["monster_base"]=10018, ["hp"]=420800000, - ["atk"]=5650000, + ["atk"]=3960000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -3135,7 +3135,7 @@ local monster_dungeon_armor = { [23907]={ ["monster_base"]=10014, ["hp"]=483170000, - ["atk"]=5930000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -3148,7 +3148,7 @@ local monster_dungeon_armor = { ["monster_base"]=20024, ["is_boss"]=2, ["hp"]=814970000, - ["atk"]=5600000, + ["atk"]=4170000, ["atk_times"]=4, ["hurt_skill"]={ 30070, @@ -3167,7 +3167,7 @@ local monster_dungeon_armor = { [24107]={ ["monster_base"]=10019, ["hp"]=153090000, - ["atk"]=4750000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -3179,7 +3179,7 @@ local monster_dungeon_armor = { [24207]={ ["monster_base"]=10013, ["hp"]=224450000, - ["atk"]=5130000, + ["atk"]=3190000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -3191,7 +3191,7 @@ local monster_dungeon_armor = { [24307]={ ["monster_base"]=10001, ["hp"]=280370000, - ["atk"]=5310000, + ["atk"]=3320000, ["atk_times"]=2, ["hurt_skill"]={ 20001, @@ -3203,7 +3203,7 @@ local monster_dungeon_armor = { [24407]={ ["monster_base"]=10031, ["hp"]=294620000, - ["atk"]=6040000, + ["atk"]=3960000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -3216,7 +3216,7 @@ local monster_dungeon_armor = { ["monster_base"]=30015, ["is_boss"]=1, ["hp"]=545940000, - ["atk"]=5910000, + ["atk"]=4220000, ["atk_times"]=4, ["hurt_skill"]={ 40025, @@ -3232,7 +3232,7 @@ local monster_dungeon_armor = { [24607]={ ["monster_base"]=10019, ["hp"]=363690000, - ["atk"]=6220000, + ["atk"]=4110000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -3244,7 +3244,7 @@ local monster_dungeon_armor = { [24707]={ ["monster_base"]=10063, ["hp"]=382500000, - ["atk"]=5960000, + ["atk"]=4240000, ["atk_times"]=3, ["hurt_skill"]={ 20184, @@ -3256,7 +3256,7 @@ local monster_dungeon_armor = { [24807]={ ["monster_base"]=10016, ["hp"]=447930000, - ["atk"]=6110000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -3268,7 +3268,7 @@ local monster_dungeon_armor = { [24907]={ ["monster_base"]=10024, ["hp"]=514350000, - ["atk"]=6450000, + ["atk"]=4430000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -3281,7 +3281,7 @@ local monster_dungeon_armor = { ["monster_base"]=20032, ["is_boss"]=2, ["hp"]=867510000, - ["atk"]=6040000, + ["atk"]=4430000, ["atk_times"]=4, ["hurt_skill"]={ 30094, @@ -3303,7 +3303,7 @@ local monster_dungeon_armor = { [25107]={ ["monster_base"]=10040, ["hp"]=153090000, - ["atk"]=4750000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -3315,7 +3315,7 @@ local monster_dungeon_armor = { [25207]={ ["monster_base"]=10056, ["hp"]=224450000, - ["atk"]=5130000, + ["atk"]=3190000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -3327,7 +3327,7 @@ local monster_dungeon_armor = { [25307]={ ["monster_base"]=10038, ["hp"]=280370000, - ["atk"]=5310000, + ["atk"]=3320000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -3339,7 +3339,7 @@ local monster_dungeon_armor = { [25407]={ ["monster_base"]=10005, ["hp"]=294620000, - ["atk"]=6040000, + ["atk"]=3960000, ["atk_times"]=2, ["hurt_skill"]={ 20013, @@ -3352,7 +3352,7 @@ local monster_dungeon_armor = { ["monster_base"]=20007, ["is_boss"]=1, ["hp"]=545940000, - ["atk"]=5910000, + ["atk"]=4220000, ["atk_times"]=4, ["hurt_skill"]={ 30019, @@ -3370,7 +3370,7 @@ local monster_dungeon_armor = { [25607]={ ["monster_base"]=10035, ["hp"]=363690000, - ["atk"]=6220000, + ["atk"]=4110000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -3382,7 +3382,7 @@ local monster_dungeon_armor = { [25707]={ ["monster_base"]=10026, ["hp"]=382500000, - ["atk"]=5960000, + ["atk"]=4240000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -3394,7 +3394,7 @@ local monster_dungeon_armor = { [25807]={ ["monster_base"]=10025, ["hp"]=447930000, - ["atk"]=6110000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -3406,7 +3406,7 @@ local monster_dungeon_armor = { [25907]={ ["monster_base"]=10034, ["hp"]=514350000, - ["atk"]=6450000, + ["atk"]=4430000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -3419,7 +3419,7 @@ local monster_dungeon_armor = { ["monster_base"]=20003, ["is_boss"]=2, ["hp"]=867510000, - ["atk"]=6040000, + ["atk"]=4430000, ["atk_times"]=4, ["hurt_skill"]={ 30007, @@ -3439,7 +3439,7 @@ local monster_dungeon_armor = { [26107]={ ["monster_base"]=10036, ["hp"]=153090000, - ["atk"]=4750000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -3451,7 +3451,7 @@ local monster_dungeon_armor = { [26207]={ ["monster_base"]=10014, ["hp"]=224450000, - ["atk"]=5130000, + ["atk"]=3190000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -3463,7 +3463,7 @@ local monster_dungeon_armor = { [26307]={ ["monster_base"]=10046, ["hp"]=280370000, - ["atk"]=5310000, + ["atk"]=3320000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -3475,7 +3475,7 @@ local monster_dungeon_armor = { [26407]={ ["monster_base"]=10041, ["hp"]=294620000, - ["atk"]=6040000, + ["atk"]=3960000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -3488,7 +3488,7 @@ local monster_dungeon_armor = { ["monster_base"]=30010, ["is_boss"]=1, ["hp"]=545940000, - ["atk"]=5910000, + ["atk"]=4220000, ["atk_times"]=4, ["hurt_skill"]={ 40013, @@ -3504,7 +3504,7 @@ local monster_dungeon_armor = { [26607]={ ["monster_base"]=10006, ["hp"]=363690000, - ["atk"]=6220000, + ["atk"]=4110000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -3516,7 +3516,7 @@ local monster_dungeon_armor = { [26707]={ ["monster_base"]=10036, ["hp"]=382500000, - ["atk"]=5960000, + ["atk"]=4240000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -3528,7 +3528,7 @@ local monster_dungeon_armor = { [26807]={ ["monster_base"]=10004, ["hp"]=447930000, - ["atk"]=6110000, + ["atk"]=4200000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -3540,7 +3540,7 @@ local monster_dungeon_armor = { [26907]={ ["monster_base"]=10031, ["hp"]=514350000, - ["atk"]=6450000, + ["atk"]=4430000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -3553,7 +3553,7 @@ local monster_dungeon_armor = { ["monster_base"]=20016, ["is_boss"]=2, ["hp"]=867510000, - ["atk"]=6040000, + ["atk"]=4430000, ["atk_times"]=4, ["hurt_skill"]={ 30046, @@ -3572,7 +3572,7 @@ local monster_dungeon_armor = { [27107]={ ["monster_base"]=10018, ["hp"]=153090000, - ["atk"]=4750000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -3584,7 +3584,7 @@ local monster_dungeon_armor = { [27207]={ ["monster_base"]=10044, ["hp"]=224450000, - ["atk"]=5130000, + ["atk"]=3190000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -3596,7 +3596,7 @@ local monster_dungeon_armor = { [27307]={ ["monster_base"]=10033, ["hp"]=280370000, - ["atk"]=5310000, + ["atk"]=3320000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -3608,7 +3608,7 @@ local monster_dungeon_armor = { [27407]={ ["monster_base"]=10028, ["hp"]=294620000, - ["atk"]=6040000, + ["atk"]=3960000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -3621,7 +3621,7 @@ local monster_dungeon_armor = { ["monster_base"]=20019, ["is_boss"]=1, ["hp"]=545940000, - ["atk"]=5910000, + ["atk"]=4220000, ["atk_times"]=4, ["hurt_skill"]={ 30055, @@ -3640,7 +3640,7 @@ local monster_dungeon_armor = { [27607]={ ["monster_base"]=10016, ["hp"]=363690000, - ["atk"]=6220000, + ["atk"]=4110000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -3652,7 +3652,7 @@ local monster_dungeon_armor = { [27707]={ ["monster_base"]=10044, ["hp"]=382500000, - ["atk"]=5960000, + ["atk"]=4240000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -3664,7 +3664,7 @@ local monster_dungeon_armor = { [27807]={ ["monster_base"]=10021, ["hp"]=447930000, - ["atk"]=6110000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -3676,7 +3676,7 @@ local monster_dungeon_armor = { [27907]={ ["monster_base"]=10030, ["hp"]=514350000, - ["atk"]=6450000, + ["atk"]=4430000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -3689,7 +3689,7 @@ local monster_dungeon_armor = { ["monster_base"]=20020, ["is_boss"]=2, ["hp"]=867510000, - ["atk"]=6040000, + ["atk"]=4430000, ["atk_times"]=4, ["hurt_skill"]={ 30058, @@ -3708,7 +3708,7 @@ local monster_dungeon_armor = { [28107]={ ["monster_base"]=10024, ["hp"]=153090000, - ["atk"]=4750000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -3720,7 +3720,7 @@ local monster_dungeon_armor = { [28207]={ ["monster_base"]=10064, ["hp"]=224450000, - ["atk"]=5130000, + ["atk"]=3190000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -3732,7 +3732,7 @@ local monster_dungeon_armor = { [28307]={ ["monster_base"]=10047, ["hp"]=280370000, - ["atk"]=5310000, + ["atk"]=3320000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -3744,7 +3744,7 @@ local monster_dungeon_armor = { [28407]={ ["monster_base"]=10008, ["hp"]=294620000, - ["atk"]=6040000, + ["atk"]=3960000, ["atk_times"]=2, ["hurt_skill"]={ 20022, @@ -3757,7 +3757,7 @@ local monster_dungeon_armor = { ["monster_base"]=20019, ["is_boss"]=1, ["hp"]=545940000, - ["atk"]=5910000, + ["atk"]=4220000, ["atk_times"]=4, ["hurt_skill"]={ 30055, @@ -3776,7 +3776,7 @@ local monster_dungeon_armor = { [28607]={ ["monster_base"]=10056, ["hp"]=363690000, - ["atk"]=6220000, + ["atk"]=4110000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -3788,7 +3788,7 @@ local monster_dungeon_armor = { [28707]={ ["monster_base"]=10045, ["hp"]=382500000, - ["atk"]=5960000, + ["atk"]=4240000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -3800,7 +3800,7 @@ local monster_dungeon_armor = { [28807]={ ["monster_base"]=10016, ["hp"]=447930000, - ["atk"]=6110000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -3812,7 +3812,7 @@ local monster_dungeon_armor = { [28907]={ ["monster_base"]=10064, ["hp"]=514350000, - ["atk"]=6450000, + ["atk"]=4430000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -3825,7 +3825,7 @@ local monster_dungeon_armor = { ["monster_base"]=20013, ["is_boss"]=2, ["hp"]=867510000, - ["atk"]=6040000, + ["atk"]=4430000, ["atk_times"]=4, ["hurt_skill"]={ 30037, @@ -3841,7 +3841,7 @@ local monster_dungeon_armor = { [29107]={ ["monster_base"]=10032, ["hp"]=153090000, - ["atk"]=4750000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -3853,7 +3853,7 @@ local monster_dungeon_armor = { [29207]={ ["monster_base"]=10004, ["hp"]=224450000, - ["atk"]=5130000, + ["atk"]=3190000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -3865,7 +3865,7 @@ local monster_dungeon_armor = { [29307]={ ["monster_base"]=10014, ["hp"]=280370000, - ["atk"]=5310000, + ["atk"]=3320000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -3877,7 +3877,7 @@ local monster_dungeon_armor = { [29407]={ ["monster_base"]=10006, ["hp"]=294620000, - ["atk"]=6040000, + ["atk"]=3960000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -3890,7 +3890,7 @@ local monster_dungeon_armor = { ["monster_base"]=20031, ["is_boss"]=1, ["hp"]=545940000, - ["atk"]=5910000, + ["atk"]=4220000, ["atk_times"]=4, ["hurt_skill"]={ 30091, @@ -3911,7 +3911,7 @@ local monster_dungeon_armor = { [29607]={ ["monster_base"]=10015, ["hp"]=363690000, - ["atk"]=6220000, + ["atk"]=4110000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -3923,7 +3923,7 @@ local monster_dungeon_armor = { [29707]={ ["monster_base"]=10026, ["hp"]=382500000, - ["atk"]=5960000, + ["atk"]=4240000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -3935,7 +3935,7 @@ local monster_dungeon_armor = { [29807]={ ["monster_base"]=10007, ["hp"]=447930000, - ["atk"]=6110000, + ["atk"]=4200000, ["atk_times"]=2, ["hurt_skill"]={ 20019, @@ -3947,7 +3947,7 @@ local monster_dungeon_armor = { [29907]={ ["monster_base"]=10064, ["hp"]=514350000, - ["atk"]=6450000, + ["atk"]=4430000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -3960,7 +3960,7 @@ local monster_dungeon_armor = { ["monster_base"]=20032, ["is_boss"]=2, ["hp"]=867510000, - ["atk"]=6040000, + ["atk"]=4430000, ["atk_times"]=4, ["hurt_skill"]={ 30094, @@ -3982,7 +3982,7 @@ local monster_dungeon_armor = { [30107]={ ["monster_base"]=10019, ["hp"]=164360000, - ["atk"]=5180000, + ["atk"]=3050000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -3994,7 +3994,7 @@ local monster_dungeon_armor = { [30207]={ ["monster_base"]=10035, ["hp"]=240110000, - ["atk"]=5580000, + ["atk"]=3390000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -4006,7 +4006,7 @@ local monster_dungeon_armor = { [30307]={ ["monster_base"]=10057, ["hp"]=299890000, - ["atk"]=5760000, + ["atk"]=3520000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -4018,7 +4018,7 @@ local monster_dungeon_armor = { [30407]={ ["monster_base"]=10051, ["hp"]=315280000, - ["atk"]=6550000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -4031,7 +4031,7 @@ local monster_dungeon_armor = { ["monster_base"]=20020, ["is_boss"]=1, ["hp"]=583450000, - ["atk"]=6380000, + ["atk"]=4490000, ["atk_times"]=4, ["hurt_skill"]={ 30058, @@ -4050,7 +4050,7 @@ local monster_dungeon_armor = { [30607]={ ["monster_base"]=10062, ["hp"]=388890000, - ["atk"]=6730000, + ["atk"]=4380000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -4062,7 +4062,7 @@ local monster_dungeon_armor = { [30707]={ ["monster_base"]=10056, ["hp"]=409220000, - ["atk"]=6480000, + ["atk"]=4500000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -4074,7 +4074,7 @@ local monster_dungeon_armor = { [30807]={ ["monster_base"]=10054, ["hp"]=479000000, - ["atk"]=6660000, + ["atk"]=4450000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -4086,7 +4086,7 @@ local monster_dungeon_armor = { [30907]={ ["monster_base"]=10060, ["hp"]=549890000, - ["atk"]=6990000, + ["atk"]=4690000, ["atk_times"]=3, ["hurt_skill"]={ 20175, @@ -4099,7 +4099,7 @@ local monster_dungeon_armor = { ["monster_base"]=20013, ["is_boss"]=2, ["hp"]=927400000, - ["atk"]=6550000, + ["atk"]=4690000, ["atk_times"]=4, ["hurt_skill"]={ 30037, @@ -4115,7 +4115,7 @@ local monster_dungeon_armor = { [31107]={ ["monster_base"]=10058, ["hp"]=164360000, - ["atk"]=5180000, + ["atk"]=3050000, ["atk_times"]=3, ["hurt_skill"]={ 20169, @@ -4127,7 +4127,7 @@ local monster_dungeon_armor = { [31207]={ ["monster_base"]=10027, ["hp"]=240110000, - ["atk"]=5580000, + ["atk"]=3390000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -4139,7 +4139,7 @@ local monster_dungeon_armor = { [31307]={ ["monster_base"]=10025, ["hp"]=299890000, - ["atk"]=5760000, + ["atk"]=3520000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -4151,7 +4151,7 @@ local monster_dungeon_armor = { [31407]={ ["monster_base"]=10007, ["hp"]=315280000, - ["atk"]=6550000, + ["atk"]=4200000, ["atk_times"]=2, ["hurt_skill"]={ 20019, @@ -4164,7 +4164,7 @@ local monster_dungeon_armor = { ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=583450000, - ["atk"]=6380000, + ["atk"]=4490000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -4179,7 +4179,7 @@ local monster_dungeon_armor = { [31607]={ ["monster_base"]=10024, ["hp"]=388890000, - ["atk"]=6730000, + ["atk"]=4380000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -4191,7 +4191,7 @@ local monster_dungeon_armor = { [31707]={ ["monster_base"]=10030, ["hp"]=409220000, - ["atk"]=6480000, + ["atk"]=4500000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -4203,7 +4203,7 @@ local monster_dungeon_armor = { [31807]={ ["monster_base"]=10048, ["hp"]=479000000, - ["atk"]=6660000, + ["atk"]=4450000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -4215,7 +4215,7 @@ local monster_dungeon_armor = { [31907]={ ["monster_base"]=10001, ["hp"]=549890000, - ["atk"]=6990000, + ["atk"]=4690000, ["atk_times"]=2, ["hurt_skill"]={ 20001, @@ -4228,7 +4228,7 @@ local monster_dungeon_armor = { ["monster_base"]=20034, ["is_boss"]=2, ["hp"]=927400000, - ["atk"]=6550000, + ["atk"]=4690000, ["atk_times"]=4, ["hurt_skill"]={ 30097, @@ -4248,7 +4248,7 @@ local monster_dungeon_armor = { [32107]={ ["monster_base"]=10061, ["hp"]=164360000, - ["atk"]=5180000, + ["atk"]=3050000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -4260,7 +4260,7 @@ local monster_dungeon_armor = { [32207]={ ["monster_base"]=10017, ["hp"]=240110000, - ["atk"]=5580000, + ["atk"]=3390000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -4272,7 +4272,7 @@ local monster_dungeon_armor = { [32307]={ ["monster_base"]=10064, ["hp"]=299890000, - ["atk"]=5760000, + ["atk"]=3520000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -4284,7 +4284,7 @@ local monster_dungeon_armor = { [32407]={ ["monster_base"]=10027, ["hp"]=315280000, - ["atk"]=6550000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -4297,7 +4297,7 @@ local monster_dungeon_armor = { ["monster_base"]=20008, ["is_boss"]=1, ["hp"]=583450000, - ["atk"]=6380000, + ["atk"]=4490000, ["atk_times"]=4, ["hurt_skill"]={ 30022, @@ -4315,7 +4315,7 @@ local monster_dungeon_armor = { [32607]={ ["monster_base"]=10005, ["hp"]=388890000, - ["atk"]=6730000, + ["atk"]=4380000, ["atk_times"]=2, ["hurt_skill"]={ 20013, @@ -4327,7 +4327,7 @@ local monster_dungeon_armor = { [32707]={ ["monster_base"]=10032, ["hp"]=409220000, - ["atk"]=6480000, + ["atk"]=4500000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -4339,7 +4339,7 @@ local monster_dungeon_armor = { [32807]={ ["monster_base"]=10056, ["hp"]=479000000, - ["atk"]=6660000, + ["atk"]=4450000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -4351,7 +4351,7 @@ local monster_dungeon_armor = { [32907]={ ["monster_base"]=10053, ["hp"]=549890000, - ["atk"]=6990000, + ["atk"]=4690000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -4364,7 +4364,7 @@ local monster_dungeon_armor = { ["monster_base"]=20035, ["is_boss"]=2, ["hp"]=927400000, - ["atk"]=6550000, + ["atk"]=4690000, ["atk_times"]=4, ["hurt_skill"]={ 30100, @@ -4384,7 +4384,7 @@ local monster_dungeon_armor = { [33107]={ ["monster_base"]=10004, ["hp"]=164360000, - ["atk"]=5180000, + ["atk"]=3050000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -4396,7 +4396,7 @@ local monster_dungeon_armor = { [33207]={ ["monster_base"]=10064, ["hp"]=240110000, - ["atk"]=5580000, + ["atk"]=3390000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -4408,7 +4408,7 @@ local monster_dungeon_armor = { [33307]={ ["monster_base"]=10050, ["hp"]=299890000, - ["atk"]=5760000, + ["atk"]=3520000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -4420,7 +4420,7 @@ local monster_dungeon_armor = { [33407]={ ["monster_base"]=10012, ["hp"]=315280000, - ["atk"]=6550000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -4433,7 +4433,7 @@ local monster_dungeon_armor = { ["monster_base"]=20021, ["is_boss"]=1, ["hp"]=583450000, - ["atk"]=6380000, + ["atk"]=4490000, ["atk_times"]=4, ["hurt_skill"]={ 30061, @@ -4452,7 +4452,7 @@ local monster_dungeon_armor = { [33607]={ ["monster_base"]=10024, ["hp"]=388890000, - ["atk"]=6730000, + ["atk"]=4380000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -4464,7 +4464,7 @@ local monster_dungeon_armor = { [33707]={ ["monster_base"]=10052, ["hp"]=409220000, - ["atk"]=6480000, + ["atk"]=4500000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -4476,7 +4476,7 @@ local monster_dungeon_armor = { [33807]={ ["monster_base"]=10012, ["hp"]=479000000, - ["atk"]=6660000, + ["atk"]=4450000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -4488,7 +4488,7 @@ local monster_dungeon_armor = { [33907]={ ["monster_base"]=10006, ["hp"]=549890000, - ["atk"]=6990000, + ["atk"]=4690000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -4501,7 +4501,7 @@ local monster_dungeon_armor = { ["monster_base"]=20036, ["is_boss"]=2, ["hp"]=927400000, - ["atk"]=6550000, + ["atk"]=4690000, ["atk_times"]=4, ["hurt_skill"]={ 30103, @@ -4520,7 +4520,7 @@ local monster_dungeon_armor = { [34107]={ ["monster_base"]=10002, ["hp"]=164360000, - ["atk"]=5180000, + ["atk"]=3050000, ["atk_times"]=2, ["hurt_skill"]={ 20004, @@ -4532,7 +4532,7 @@ local monster_dungeon_armor = { [34207]={ ["monster_base"]=10060, ["hp"]=240110000, - ["atk"]=5580000, + ["atk"]=3390000, ["atk_times"]=3, ["hurt_skill"]={ 20175, @@ -4544,7 +4544,7 @@ local monster_dungeon_armor = { [34307]={ ["monster_base"]=10065, ["hp"]=299890000, - ["atk"]=5760000, + ["atk"]=3520000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -4556,7 +4556,7 @@ local monster_dungeon_armor = { [34407]={ ["monster_base"]=10037, ["hp"]=315280000, - ["atk"]=6550000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20106, @@ -4569,7 +4569,7 @@ local monster_dungeon_armor = { ["monster_base"]=20006, ["is_boss"]=1, ["hp"]=583450000, - ["atk"]=6380000, + ["atk"]=4490000, ["atk_times"]=4, ["hurt_skill"]={ 30016, @@ -4587,7 +4587,7 @@ local monster_dungeon_armor = { [34607]={ ["monster_base"]=10012, ["hp"]=388890000, - ["atk"]=6730000, + ["atk"]=4380000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -4599,7 +4599,7 @@ local monster_dungeon_armor = { [34707]={ ["monster_base"]=10049, ["hp"]=409220000, - ["atk"]=6480000, + ["atk"]=4500000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -4611,7 +4611,7 @@ local monster_dungeon_armor = { [34807]={ ["monster_base"]=10020, ["hp"]=479000000, - ["atk"]=6660000, + ["atk"]=4450000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -4623,7 +4623,7 @@ local monster_dungeon_armor = { [34907]={ ["monster_base"]=10043, ["hp"]=549890000, - ["atk"]=6990000, + ["atk"]=4690000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -4636,7 +4636,7 @@ local monster_dungeon_armor = { ["monster_base"]=20037, ["is_boss"]=2, ["hp"]=927400000, - ["atk"]=6550000, + ["atk"]=4690000, ["atk_times"]=4, ["hurt_skill"]={ 30106, @@ -4656,7 +4656,7 @@ local monster_dungeon_armor = { [35107]={ ["monster_base"]=10041, ["hp"]=164360000, - ["atk"]=5180000, + ["atk"]=3050000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -4668,7 +4668,7 @@ local monster_dungeon_armor = { [35207]={ ["monster_base"]=10014, ["hp"]=240110000, - ["atk"]=5580000, + ["atk"]=3390000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -4680,7 +4680,7 @@ local monster_dungeon_armor = { [35307]={ ["monster_base"]=10047, ["hp"]=299890000, - ["atk"]=5760000, + ["atk"]=3520000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -4692,7 +4692,7 @@ local monster_dungeon_armor = { [35407]={ ["monster_base"]=10062, ["hp"]=315280000, - ["atk"]=6550000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -4705,7 +4705,7 @@ local monster_dungeon_armor = { ["monster_base"]=20027, ["is_boss"]=1, ["hp"]=583450000, - ["atk"]=6380000, + ["atk"]=4490000, ["atk_times"]=4, ["hurt_skill"]={ 30079, @@ -4720,7 +4720,7 @@ local monster_dungeon_armor = { [35607]={ ["monster_base"]=10005, ["hp"]=388890000, - ["atk"]=6730000, + ["atk"]=4380000, ["atk_times"]=2, ["hurt_skill"]={ 20013, @@ -4732,7 +4732,7 @@ local monster_dungeon_armor = { [35707]={ ["monster_base"]=10004, ["hp"]=409220000, - ["atk"]=6480000, + ["atk"]=4500000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -4744,7 +4744,7 @@ local monster_dungeon_armor = { [35807]={ ["monster_base"]=10039, ["hp"]=479000000, - ["atk"]=6660000, + ["atk"]=4450000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -4756,7 +4756,7 @@ local monster_dungeon_armor = { [35907]={ ["monster_base"]=10032, ["hp"]=549890000, - ["atk"]=6990000, + ["atk"]=4690000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -4769,7 +4769,7 @@ local monster_dungeon_armor = { ["monster_base"]=20038, ["is_boss"]=2, ["hp"]=927400000, - ["atk"]=6550000, + ["atk"]=4690000, ["atk_times"]=4, ["hurt_skill"]={ 30109, @@ -4791,7 +4791,7 @@ local monster_dungeon_armor = { [36107]={ ["monster_base"]=10057, ["hp"]=169650000, - ["atk"]=5440000, + ["atk"]=3230000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -4803,7 +4803,7 @@ local monster_dungeon_armor = { [36207]={ ["monster_base"]=10061, ["hp"]=247740000, - ["atk"]=5870000, + ["atk"]=3600000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -4815,7 +4815,7 @@ local monster_dungeon_armor = { [36307]={ ["monster_base"]=10040, ["hp"]=309200000, - ["atk"]=6050000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -4827,7 +4827,7 @@ local monster_dungeon_armor = { [36407]={ ["monster_base"]=10047, ["hp"]=324830000, - ["atk"]=6850000, + ["atk"]=4460000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -4840,7 +4840,7 @@ local monster_dungeon_armor = { ["monster_base"]=20004, ["is_boss"]=1, ["hp"]=600970000, - ["atk"]=6650000, + ["atk"]=4760000, ["atk_times"]=4, ["hurt_skill"]={ 30010, @@ -4855,7 +4855,7 @@ local monster_dungeon_armor = { [36607]={ ["monster_base"]=10028, ["hp"]=400760000, - ["atk"]=7060000, + ["atk"]=4650000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -4867,7 +4867,7 @@ local monster_dungeon_armor = { [36707]={ ["monster_base"]=10004, ["hp"]=421850000, - ["atk"]=6750000, + ["atk"]=4770000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -4879,7 +4879,7 @@ local monster_dungeon_armor = { [36807]={ ["monster_base"]=10002, ["hp"]=493410000, - ["atk"]=6960000, + ["atk"]=4730000, ["atk_times"]=2, ["hurt_skill"]={ 20004, @@ -4891,7 +4891,7 @@ local monster_dungeon_armor = { [36907]={ ["monster_base"]=10062, ["hp"]=566670000, - ["atk"]=7310000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -4904,7 +4904,7 @@ local monster_dungeon_armor = { ["monster_base"]=20012, ["is_boss"]=2, ["hp"]=955050000, - ["atk"]=6800000, + ["atk"]=4980000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -4919,7 +4919,7 @@ local monster_dungeon_armor = { [37107]={ ["monster_base"]=10001, ["hp"]=169650000, - ["atk"]=5440000, + ["atk"]=3230000, ["atk_times"]=2, ["hurt_skill"]={ 20001, @@ -4931,7 +4931,7 @@ local monster_dungeon_armor = { [37207]={ ["monster_base"]=10054, ["hp"]=247740000, - ["atk"]=5870000, + ["atk"]=3600000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -4943,7 +4943,7 @@ local monster_dungeon_armor = { [37307]={ ["monster_base"]=10023, ["hp"]=309200000, - ["atk"]=6050000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -4955,7 +4955,7 @@ local monster_dungeon_armor = { [37407]={ ["monster_base"]=10008, ["hp"]=324830000, - ["atk"]=6850000, + ["atk"]=4460000, ["atk_times"]=2, ["hurt_skill"]={ 20022, @@ -4968,7 +4968,7 @@ local monster_dungeon_armor = { ["monster_base"]=20022, ["is_boss"]=1, ["hp"]=600970000, - ["atk"]=6650000, + ["atk"]=4760000, ["atk_times"]=4, ["hurt_skill"]={ 30064, @@ -4986,7 +4986,7 @@ local monster_dungeon_armor = { [37607]={ ["monster_base"]=10034, ["hp"]=400760000, - ["atk"]=7060000, + ["atk"]=4650000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -4998,7 +4998,7 @@ local monster_dungeon_armor = { [37707]={ ["monster_base"]=10035, ["hp"]=421850000, - ["atk"]=6750000, + ["atk"]=4770000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -5010,7 +5010,7 @@ local monster_dungeon_armor = { [37807]={ ["monster_base"]=10004, ["hp"]=493410000, - ["atk"]=6960000, + ["atk"]=4730000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -5022,7 +5022,7 @@ local monster_dungeon_armor = { [37907]={ ["monster_base"]=10029, ["hp"]=566670000, - ["atk"]=7310000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -5035,7 +5035,7 @@ local monster_dungeon_armor = { ["monster_base"]=20003, ["is_boss"]=2, ["hp"]=955050000, - ["atk"]=6800000, + ["atk"]=4980000, ["atk_times"]=4, ["hurt_skill"]={ 30007, @@ -5055,7 +5055,7 @@ local monster_dungeon_armor = { [38107]={ ["monster_base"]=10004, ["hp"]=169650000, - ["atk"]=5440000, + ["atk"]=3230000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -5067,7 +5067,7 @@ local monster_dungeon_armor = { [38207]={ ["monster_base"]=10056, ["hp"]=247740000, - ["atk"]=5870000, + ["atk"]=3600000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -5079,7 +5079,7 @@ local monster_dungeon_armor = { [38307]={ ["monster_base"]=10057, ["hp"]=309200000, - ["atk"]=6050000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -5091,7 +5091,7 @@ local monster_dungeon_armor = { [38407]={ ["monster_base"]=10043, ["hp"]=324830000, - ["atk"]=6850000, + ["atk"]=4460000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -5104,7 +5104,7 @@ local monster_dungeon_armor = { ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=600970000, - ["atk"]=6650000, + ["atk"]=4760000, ["atk_times"]=4, ["hurt_skill"]={ 30040, @@ -5119,7 +5119,7 @@ local monster_dungeon_armor = { [38607]={ ["monster_base"]=10009, ["hp"]=400760000, - ["atk"]=7060000, + ["atk"]=4650000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -5131,7 +5131,7 @@ local monster_dungeon_armor = { [38707]={ ["monster_base"]=10030, ["hp"]=421850000, - ["atk"]=6750000, + ["atk"]=4770000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -5143,7 +5143,7 @@ local monster_dungeon_armor = { [38807]={ ["monster_base"]=10048, ["hp"]=493410000, - ["atk"]=6960000, + ["atk"]=4730000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -5155,7 +5155,7 @@ local monster_dungeon_armor = { [38907]={ ["monster_base"]=10041, ["hp"]=566670000, - ["atk"]=7310000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -5168,7 +5168,7 @@ local monster_dungeon_armor = { ["monster_base"]=20005, ["is_boss"]=2, ["hp"]=955050000, - ["atk"]=6800000, + ["atk"]=4980000, ["atk_times"]=4, ["hurt_skill"]={ 30013, @@ -5186,7 +5186,7 @@ local monster_dungeon_armor = { [39107]={ ["monster_base"]=10003, ["hp"]=169650000, - ["atk"]=5440000, + ["atk"]=3230000, ["atk_times"]=2, ["hurt_skill"]={ 20007, @@ -5198,7 +5198,7 @@ local monster_dungeon_armor = { [39207]={ ["monster_base"]=10056, ["hp"]=247740000, - ["atk"]=5870000, + ["atk"]=3600000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -5210,7 +5210,7 @@ local monster_dungeon_armor = { [39307]={ ["monster_base"]=10062, ["hp"]=309200000, - ["atk"]=6050000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -5222,7 +5222,7 @@ local monster_dungeon_armor = { [39407]={ ["monster_base"]=10057, ["hp"]=324830000, - ["atk"]=6850000, + ["atk"]=4460000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -5235,7 +5235,7 @@ local monster_dungeon_armor = { ["monster_base"]=30009, ["is_boss"]=1, ["hp"]=600970000, - ["atk"]=6650000, + ["atk"]=4760000, ["atk_times"]=4, ["hurt_skill"]={ 40021, @@ -5251,7 +5251,7 @@ local monster_dungeon_armor = { [39607]={ ["monster_base"]=10048, ["hp"]=400760000, - ["atk"]=7060000, + ["atk"]=4650000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -5263,7 +5263,7 @@ local monster_dungeon_armor = { [39707]={ ["monster_base"]=10004, ["hp"]=421850000, - ["atk"]=6750000, + ["atk"]=4770000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -5275,7 +5275,7 @@ local monster_dungeon_armor = { [39807]={ ["monster_base"]=10031, ["hp"]=493410000, - ["atk"]=6960000, + ["atk"]=4730000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -5287,7 +5287,7 @@ local monster_dungeon_armor = { [39907]={ ["monster_base"]=10040, ["hp"]=566670000, - ["atk"]=7310000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -5300,7 +5300,7 @@ local monster_dungeon_armor = { ["monster_base"]=20025, ["is_boss"]=2, ["hp"]=955050000, - ["atk"]=6800000, + ["atk"]=4980000, ["atk_times"]=4, ["hurt_skill"]={ 30073, @@ -5318,7 +5318,7 @@ local monster_dungeon_armor = { [40107]={ ["monster_base"]=10056, ["hp"]=169650000, - ["atk"]=5440000, + ["atk"]=3230000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -5330,7 +5330,7 @@ local monster_dungeon_armor = { [40207]={ ["monster_base"]=10021, ["hp"]=247740000, - ["atk"]=5870000, + ["atk"]=3600000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -5342,7 +5342,7 @@ local monster_dungeon_armor = { [40307]={ ["monster_base"]=10015, ["hp"]=309200000, - ["atk"]=6050000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -5354,7 +5354,7 @@ local monster_dungeon_armor = { [40407]={ ["monster_base"]=10044, ["hp"]=324830000, - ["atk"]=6850000, + ["atk"]=4460000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -5367,7 +5367,7 @@ local monster_dungeon_armor = { ["monster_base"]=30015, ["is_boss"]=1, ["hp"]=600970000, - ["atk"]=6650000, + ["atk"]=4760000, ["atk_times"]=4, ["hurt_skill"]={ 40025, @@ -5383,7 +5383,7 @@ local monster_dungeon_armor = { [40607]={ ["monster_base"]=10055, ["hp"]=400760000, - ["atk"]=7060000, + ["atk"]=4650000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -5395,7 +5395,7 @@ local monster_dungeon_armor = { [40707]={ ["monster_base"]=10003, ["hp"]=421850000, - ["atk"]=6750000, + ["atk"]=4770000, ["atk_times"]=2, ["hurt_skill"]={ 20007, @@ -5407,7 +5407,7 @@ local monster_dungeon_armor = { [40807]={ ["monster_base"]=10031, ["hp"]=493410000, - ["atk"]=6960000, + ["atk"]=4730000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -5419,7 +5419,7 @@ local monster_dungeon_armor = { [40907]={ ["monster_base"]=10004, ["hp"]=566670000, - ["atk"]=7310000, + ["atk"]=4980000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -5432,7 +5432,7 @@ local monster_dungeon_armor = { ["monster_base"]=20037, ["is_boss"]=2, ["hp"]=955050000, - ["atk"]=6800000, + ["atk"]=4980000, ["atk_times"]=4, ["hurt_skill"]={ 30106, @@ -5452,7 +5452,7 @@ local monster_dungeon_armor = { [41107]={ ["monster_base"]=10019, ["hp"]=169650000, - ["atk"]=5440000, + ["atk"]=3230000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -5464,7 +5464,7 @@ local monster_dungeon_armor = { [41207]={ ["monster_base"]=10017, ["hp"]=247740000, - ["atk"]=5870000, + ["atk"]=3600000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -5476,7 +5476,7 @@ local monster_dungeon_armor = { [41307]={ ["monster_base"]=10055, ["hp"]=309200000, - ["atk"]=6050000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -5488,7 +5488,7 @@ local monster_dungeon_armor = { [41407]={ ["monster_base"]=10013, ["hp"]=324830000, - ["atk"]=6850000, + ["atk"]=4460000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -5501,7 +5501,7 @@ local monster_dungeon_armor = { ["monster_base"]=20030, ["is_boss"]=1, ["hp"]=600970000, - ["atk"]=6650000, + ["atk"]=4760000, ["atk_times"]=4, ["hurt_skill"]={ 30088, @@ -5520,7 +5520,7 @@ local monster_dungeon_armor = { [41607]={ ["monster_base"]=10042, ["hp"]=400760000, - ["atk"]=7060000, + ["atk"]=4650000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -5532,7 +5532,7 @@ local monster_dungeon_armor = { [41707]={ ["monster_base"]=10025, ["hp"]=421850000, - ["atk"]=6750000, + ["atk"]=4770000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -5544,7 +5544,7 @@ local monster_dungeon_armor = { [41807]={ ["monster_base"]=10002, ["hp"]=493410000, - ["atk"]=6960000, + ["atk"]=4730000, ["atk_times"]=2, ["hurt_skill"]={ 20004, @@ -5556,7 +5556,7 @@ local monster_dungeon_armor = { [41907]={ ["monster_base"]=10034, ["hp"]=566670000, - ["atk"]=7310000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -5569,7 +5569,7 @@ local monster_dungeon_armor = { ["monster_base"]=20032, ["is_boss"]=2, ["hp"]=955050000, - ["atk"]=6800000, + ["atk"]=4980000, ["atk_times"]=4, ["hurt_skill"]={ 30094, @@ -5591,7 +5591,7 @@ local monster_dungeon_armor = { [42107]={ ["monster_base"]=10022, ["hp"]=180880000, - ["atk"]=5900000, + ["atk"]=3430000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -5603,7 +5603,7 @@ local monster_dungeon_armor = { [42207]={ ["monster_base"]=10020, ["hp"]=263550000, - ["atk"]=6350000, + ["atk"]=3820000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -5615,7 +5615,7 @@ local monster_dungeon_armor = { [42307]={ ["monster_base"]=10024, ["hp"]=329070000, - ["atk"]=6550000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -5627,7 +5627,7 @@ local monster_dungeon_armor = { [42407]={ ["monster_base"]=10045, ["hp"]=345780000, - ["atk"]=7400000, + ["atk"]=4720000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -5640,7 +5640,7 @@ local monster_dungeon_armor = { ["monster_base"]=20027, ["is_boss"]=1, ["hp"]=639240000, - ["atk"]=7150000, + ["atk"]=5050000, ["atk_times"]=4, ["hurt_skill"]={ 30079, @@ -5655,7 +5655,7 @@ local monster_dungeon_armor = { [42607]={ ["monster_base"]=10002, ["hp"]=426740000, - ["atk"]=7590000, + ["atk"]=4940000, ["atk_times"]=2, ["hurt_skill"]={ 20004, @@ -5667,7 +5667,7 @@ local monster_dungeon_armor = { [42707]={ ["monster_base"]=10008, ["hp"]=448850000, - ["atk"]=7300000, + ["atk"]=5060000, ["atk_times"]=2, ["hurt_skill"]={ 20022, @@ -5679,7 +5679,7 @@ local monster_dungeon_armor = { [42807]={ ["monster_base"]=10019, ["hp"]=525000000, - ["atk"]=7490000, + ["atk"]=5020000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -5691,7 +5691,7 @@ local monster_dungeon_armor = { [42907]={ ["monster_base"]=10048, ["hp"]=602910000, - ["atk"]=7870000, + ["atk"]=5280000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -5704,7 +5704,7 @@ local monster_dungeon_armor = { ["monster_base"]=20034, ["is_boss"]=2, ["hp"]=1015810000, - ["atk"]=7320000, + ["atk"]=5280000, ["atk_times"]=4, ["hurt_skill"]={ 30097, @@ -5724,7 +5724,7 @@ local monster_dungeon_armor = { [43107]={ ["monster_base"]=10003, ["hp"]=180880000, - ["atk"]=5900000, + ["atk"]=3430000, ["atk_times"]=2, ["hurt_skill"]={ 20007, @@ -5736,7 +5736,7 @@ local monster_dungeon_armor = { [43207]={ ["monster_base"]=10016, ["hp"]=263550000, - ["atk"]=6350000, + ["atk"]=3820000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -5748,7 +5748,7 @@ local monster_dungeon_armor = { [43307]={ ["monster_base"]=10057, ["hp"]=329070000, - ["atk"]=6550000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -5760,7 +5760,7 @@ local monster_dungeon_armor = { [43407]={ ["monster_base"]=10023, ["hp"]=345780000, - ["atk"]=7400000, + ["atk"]=4720000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -5773,7 +5773,7 @@ local monster_dungeon_armor = { ["monster_base"]=30012, ["is_boss"]=1, ["hp"]=639240000, - ["atk"]=7150000, + ["atk"]=5050000, ["atk_times"]=4, ["hurt_skill"]={ 40005, @@ -5790,7 +5790,7 @@ local monster_dungeon_armor = { [43607]={ ["monster_base"]=10040, ["hp"]=426740000, - ["atk"]=7590000, + ["atk"]=4940000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -5802,7 +5802,7 @@ local monster_dungeon_armor = { [43707]={ ["monster_base"]=10041, ["hp"]=448850000, - ["atk"]=7300000, + ["atk"]=5060000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -5814,7 +5814,7 @@ local monster_dungeon_armor = { [43807]={ ["monster_base"]=10032, ["hp"]=525000000, - ["atk"]=7490000, + ["atk"]=5020000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -5826,7 +5826,7 @@ local monster_dungeon_armor = { [43907]={ ["monster_base"]=10020, ["hp"]=602910000, - ["atk"]=7870000, + ["atk"]=5280000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -5839,7 +5839,7 @@ local monster_dungeon_armor = { ["monster_base"]=20009, ["is_boss"]=2, ["hp"]=1015810000, - ["atk"]=7320000, + ["atk"]=5280000, ["atk_times"]=4, ["hurt_skill"]={ 30025, @@ -5858,7 +5858,7 @@ local monster_dungeon_armor = { [44107]={ ["monster_base"]=10027, ["hp"]=180880000, - ["atk"]=5900000, + ["atk"]=3430000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -5870,7 +5870,7 @@ local monster_dungeon_armor = { [44207]={ ["monster_base"]=10014, ["hp"]=263550000, - ["atk"]=6350000, + ["atk"]=3820000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -5882,7 +5882,7 @@ local monster_dungeon_armor = { [44307]={ ["monster_base"]=10042, ["hp"]=329070000, - ["atk"]=6550000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -5894,7 +5894,7 @@ local monster_dungeon_armor = { [44407]={ ["monster_base"]=10054, ["hp"]=345780000, - ["atk"]=7400000, + ["atk"]=4720000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -5907,7 +5907,7 @@ local monster_dungeon_armor = { ["monster_base"]=30010, ["is_boss"]=1, ["hp"]=639240000, - ["atk"]=7150000, + ["atk"]=5050000, ["atk_times"]=4, ["hurt_skill"]={ 40013, @@ -5923,7 +5923,7 @@ local monster_dungeon_armor = { [44607]={ ["monster_base"]=10024, ["hp"]=426740000, - ["atk"]=7590000, + ["atk"]=4940000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -5935,7 +5935,7 @@ local monster_dungeon_armor = { [44707]={ ["monster_base"]=10022, ["hp"]=448850000, - ["atk"]=7300000, + ["atk"]=5060000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -5947,7 +5947,7 @@ local monster_dungeon_armor = { [44807]={ ["monster_base"]=10034, ["hp"]=525000000, - ["atk"]=7490000, + ["atk"]=5020000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -5959,7 +5959,7 @@ local monster_dungeon_armor = { [44907]={ ["monster_base"]=10017, ["hp"]=602910000, - ["atk"]=7870000, + ["atk"]=5280000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -5972,7 +5972,7 @@ local monster_dungeon_armor = { ["monster_base"]=20036, ["is_boss"]=2, ["hp"]=1015810000, - ["atk"]=7320000, + ["atk"]=5280000, ["atk_times"]=4, ["hurt_skill"]={ 30103, @@ -5991,7 +5991,7 @@ local monster_dungeon_armor = { [45107]={ ["monster_base"]=10009, ["hp"]=180880000, - ["atk"]=5900000, + ["atk"]=3430000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -6003,7 +6003,7 @@ local monster_dungeon_armor = { [45207]={ ["monster_base"]=10036, ["hp"]=263550000, - ["atk"]=6350000, + ["atk"]=3820000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -6015,7 +6015,7 @@ local monster_dungeon_armor = { [45307]={ ["monster_base"]=10029, ["hp"]=329070000, - ["atk"]=6550000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -6027,7 +6027,7 @@ local monster_dungeon_armor = { [45407]={ ["monster_base"]=10031, ["hp"]=345780000, - ["atk"]=7400000, + ["atk"]=4720000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -6040,7 +6040,7 @@ local monster_dungeon_armor = { ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=639240000, - ["atk"]=7150000, + ["atk"]=5050000, ["atk_times"]=4, ["hurt_skill"]={ 30040, @@ -6055,7 +6055,7 @@ local monster_dungeon_armor = { [45607]={ ["monster_base"]=10022, ["hp"]=426740000, - ["atk"]=7590000, + ["atk"]=4940000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -6067,7 +6067,7 @@ local monster_dungeon_armor = { [45707]={ ["monster_base"]=10017, ["hp"]=448850000, - ["atk"]=7300000, + ["atk"]=5060000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -6079,7 +6079,7 @@ local monster_dungeon_armor = { [45807]={ ["monster_base"]=10041, ["hp"]=525000000, - ["atk"]=7490000, + ["atk"]=5020000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -6091,7 +6091,7 @@ local monster_dungeon_armor = { [45907]={ ["monster_base"]=10004, ["hp"]=602910000, - ["atk"]=7870000, + ["atk"]=5280000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -6104,7 +6104,7 @@ local monster_dungeon_armor = { ["monster_base"]=20026, ["is_boss"]=2, ["hp"]=1015810000, - ["atk"]=7320000, + ["atk"]=5280000, ["atk_times"]=4, ["hurt_skill"]={ 30076, @@ -6122,7 +6122,7 @@ local monster_dungeon_armor = { [46107]={ ["monster_base"]=10040, ["hp"]=180880000, - ["atk"]=5900000, + ["atk"]=3430000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -6134,7 +6134,7 @@ local monster_dungeon_armor = { [46207]={ ["monster_base"]=10013, ["hp"]=263550000, - ["atk"]=6350000, + ["atk"]=3820000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -6146,7 +6146,7 @@ local monster_dungeon_armor = { [46307]={ ["monster_base"]=10014, ["hp"]=329070000, - ["atk"]=6550000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -6158,7 +6158,7 @@ local monster_dungeon_armor = { [46407]={ ["monster_base"]=10021, ["hp"]=345780000, - ["atk"]=7400000, + ["atk"]=4720000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -6171,7 +6171,7 @@ local monster_dungeon_armor = { ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=639240000, - ["atk"]=7150000, + ["atk"]=5050000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -6186,7 +6186,7 @@ local monster_dungeon_armor = { [46607]={ ["monster_base"]=10017, ["hp"]=426740000, - ["atk"]=7590000, + ["atk"]=4940000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -6198,7 +6198,7 @@ local monster_dungeon_armor = { [46707]={ ["monster_base"]=10012, ["hp"]=448850000, - ["atk"]=7300000, + ["atk"]=5060000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -6210,7 +6210,7 @@ local monster_dungeon_armor = { [46807]={ ["monster_base"]=10065, ["hp"]=525000000, - ["atk"]=7490000, + ["atk"]=5020000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -6222,7 +6222,7 @@ local monster_dungeon_armor = { [46907]={ ["monster_base"]=10044, ["hp"]=602910000, - ["atk"]=7870000, + ["atk"]=5280000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -6235,7 +6235,7 @@ local monster_dungeon_armor = { ["monster_base"]=20021, ["is_boss"]=2, ["hp"]=1015810000, - ["atk"]=7320000, + ["atk"]=5280000, ["atk_times"]=4, ["hurt_skill"]={ 30061, @@ -6254,7 +6254,7 @@ local monster_dungeon_armor = { [47107]={ ["monster_base"]=10026, ["hp"]=180880000, - ["atk"]=5900000, + ["atk"]=3430000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -6266,7 +6266,7 @@ local monster_dungeon_armor = { [47207]={ ["monster_base"]=10021, ["hp"]=263550000, - ["atk"]=6350000, + ["atk"]=3820000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -6278,7 +6278,7 @@ local monster_dungeon_armor = { [47307]={ ["monster_base"]=10036, ["hp"]=329070000, - ["atk"]=6550000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -6290,7 +6290,7 @@ local monster_dungeon_armor = { [47407]={ ["monster_base"]=10009, ["hp"]=345780000, - ["atk"]=7400000, + ["atk"]=4720000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -6303,7 +6303,7 @@ local monster_dungeon_armor = { ["monster_base"]=20017, ["is_boss"]=1, ["hp"]=639240000, - ["atk"]=7150000, + ["atk"]=5050000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -6318,7 +6318,7 @@ local monster_dungeon_armor = { [47607]={ ["monster_base"]=10035, ["hp"]=426740000, - ["atk"]=7590000, + ["atk"]=4940000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -6330,7 +6330,7 @@ local monster_dungeon_armor = { [47707]={ ["monster_base"]=10027, ["hp"]=448850000, - ["atk"]=7300000, + ["atk"]=5060000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -6342,7 +6342,7 @@ local monster_dungeon_armor = { [47807]={ ["monster_base"]=10005, ["hp"]=525000000, - ["atk"]=7490000, + ["atk"]=5020000, ["atk_times"]=2, ["hurt_skill"]={ 20013, @@ -6354,7 +6354,7 @@ local monster_dungeon_armor = { [47907]={ ["monster_base"]=10037, ["hp"]=602910000, - ["atk"]=7870000, + ["atk"]=5280000, ["atk_times"]=3, ["hurt_skill"]={ 20106, @@ -6367,7 +6367,7 @@ local monster_dungeon_armor = { ["monster_base"]=20034, ["is_boss"]=2, ["hp"]=1015810000, - ["atk"]=7320000, + ["atk"]=5280000, ["atk_times"]=4, ["hurt_skill"]={ 30097, @@ -6387,7 +6387,7 @@ local monster_dungeon_armor = { [48107]={ ["monster_base"]=10044, ["hp"]=191410000, - ["atk"]=6420000, + ["atk"]=3630000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -6399,7 +6399,7 @@ local monster_dungeon_armor = { [48207]={ ["monster_base"]=10027, ["hp"]=278310000, - ["atk"]=6890000, + ["atk"]=4040000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -6411,7 +6411,7 @@ local monster_dungeon_armor = { [48307]={ ["monster_base"]=10064, ["hp"]=347620000, - ["atk"]=7080000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -6423,7 +6423,7 @@ local monster_dungeon_armor = { [48407]={ ["monster_base"]=10042, ["hp"]=365170000, - ["atk"]=8000000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -6436,7 +6436,7 @@ local monster_dungeon_armor = { ["monster_base"]=30012, ["is_boss"]=1, ["hp"]=674740000, - ["atk"]=7720000, + ["atk"]=5330000, ["atk_times"]=4, ["hurt_skill"]={ 40005, @@ -6453,7 +6453,7 @@ local monster_dungeon_armor = { [48607]={ ["monster_base"]=10001, ["hp"]=450590000, - ["atk"]=8220000, + ["atk"]=5230000, ["atk_times"]=2, ["hurt_skill"]={ 20001, @@ -6465,7 +6465,7 @@ local monster_dungeon_armor = { [48707]={ ["monster_base"]=10050, ["hp"]=474020000, - ["atk"]=7900000, + ["atk"]=5340000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -6477,7 +6477,7 @@ local monster_dungeon_armor = { [48807]={ ["monster_base"]=10003, ["hp"]=554250000, - ["atk"]=8120000, + ["atk"]=5310000, ["atk_times"]=2, ["hurt_skill"]={ 20007, @@ -6489,7 +6489,7 @@ local monster_dungeon_armor = { [48907]={ ["monster_base"]=10057, ["hp"]=636480000, - ["atk"]=8510000, + ["atk"]=5590000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -6502,7 +6502,7 @@ local monster_dungeon_armor = { ["monster_base"]=20035, ["is_boss"]=2, ["hp"]=1072430000, - ["atk"]=7900000, + ["atk"]=5590000, ["atk_times"]=4, ["hurt_skill"]={ 30100, @@ -6522,7 +6522,7 @@ local monster_dungeon_armor = { [49107]={ ["monster_base"]=10056, ["hp"]=191410000, - ["atk"]=6420000, + ["atk"]=3630000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -6534,7 +6534,7 @@ local monster_dungeon_armor = { [49207]={ ["monster_base"]=10054, ["hp"]=278310000, - ["atk"]=6890000, + ["atk"]=4040000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -6546,7 +6546,7 @@ local monster_dungeon_armor = { [49307]={ ["monster_base"]=10024, ["hp"]=347620000, - ["atk"]=7080000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -6558,7 +6558,7 @@ local monster_dungeon_armor = { [49407]={ ["monster_base"]=10013, ["hp"]=365170000, - ["atk"]=8000000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -6571,7 +6571,7 @@ local monster_dungeon_armor = { ["monster_base"]=30019, ["is_boss"]=1, ["hp"]=674740000, - ["atk"]=7720000, + ["atk"]=5330000, ["atk_times"]=4, ["hurt_skill"]={ 40029, @@ -6591,7 +6591,7 @@ local monster_dungeon_armor = { [49607]={ ["monster_base"]=10017, ["hp"]=450590000, - ["atk"]=8220000, + ["atk"]=5230000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -6603,7 +6603,7 @@ local monster_dungeon_armor = { [49707]={ ["monster_base"]=10006, ["hp"]=474020000, - ["atk"]=7900000, + ["atk"]=5340000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -6615,7 +6615,7 @@ local monster_dungeon_armor = { [49807]={ ["monster_base"]=10028, ["hp"]=554250000, - ["atk"]=8120000, + ["atk"]=5310000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -6627,7 +6627,7 @@ local monster_dungeon_armor = { [49907]={ ["monster_base"]=10057, ["hp"]=636480000, - ["atk"]=8510000, + ["atk"]=5590000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -6640,7 +6640,7 @@ local monster_dungeon_armor = { ["monster_base"]=20023, ["is_boss"]=2, ["hp"]=1072430000, - ["atk"]=7900000, + ["atk"]=5590000, ["atk_times"]=4, ["hurt_skill"]={ 30067, @@ -6658,7 +6658,7 @@ local monster_dungeon_armor = { [50107]={ ["monster_base"]=10054, ["hp"]=191410000, - ["atk"]=6420000, + ["atk"]=3630000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -6670,7 +6670,7 @@ local monster_dungeon_armor = { [50207]={ ["monster_base"]=10025, ["hp"]=278310000, - ["atk"]=6890000, + ["atk"]=4040000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -6682,7 +6682,7 @@ local monster_dungeon_armor = { [50307]={ ["monster_base"]=10010, ["hp"]=347620000, - ["atk"]=7080000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -6694,7 +6694,7 @@ local monster_dungeon_armor = { [50407]={ ["monster_base"]=10064, ["hp"]=365170000, - ["atk"]=8000000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -6707,7 +6707,7 @@ local monster_dungeon_armor = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=674740000, - ["atk"]=7720000, + ["atk"]=5330000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -6725,7 +6725,7 @@ local monster_dungeon_armor = { [50607]={ ["monster_base"]=10007, ["hp"]=450590000, - ["atk"]=8220000, + ["atk"]=5230000, ["atk_times"]=2, ["hurt_skill"]={ 20019, @@ -6737,7 +6737,7 @@ local monster_dungeon_armor = { [50707]={ ["monster_base"]=10040, ["hp"]=474020000, - ["atk"]=7900000, + ["atk"]=5340000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -6749,7 +6749,7 @@ local monster_dungeon_armor = { [50807]={ ["monster_base"]=10018, ["hp"]=554250000, - ["atk"]=8120000, + ["atk"]=5310000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -6761,7 +6761,7 @@ local monster_dungeon_armor = { [50907]={ ["monster_base"]=10043, ["hp"]=636480000, - ["atk"]=8510000, + ["atk"]=5590000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -6774,7 +6774,7 @@ local monster_dungeon_armor = { ["monster_base"]=20020, ["is_boss"]=2, ["hp"]=1072430000, - ["atk"]=7900000, + ["atk"]=5590000, ["atk_times"]=4, ["hurt_skill"]={ 30058, @@ -6793,7 +6793,7 @@ local monster_dungeon_armor = { [51107]={ ["monster_base"]=10004, ["hp"]=191410000, - ["atk"]=6420000, + ["atk"]=3630000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -6805,7 +6805,7 @@ local monster_dungeon_armor = { [51207]={ ["monster_base"]=10033, ["hp"]=278310000, - ["atk"]=6890000, + ["atk"]=4040000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -6817,7 +6817,7 @@ local monster_dungeon_armor = { [51307]={ ["monster_base"]=10064, ["hp"]=347620000, - ["atk"]=7080000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -6829,7 +6829,7 @@ local monster_dungeon_armor = { [51407]={ ["monster_base"]=10062, ["hp"]=365170000, - ["atk"]=8000000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -6842,7 +6842,7 @@ local monster_dungeon_armor = { ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=674740000, - ["atk"]=7720000, + ["atk"]=5330000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -6857,7 +6857,7 @@ local monster_dungeon_armor = { [51607]={ ["monster_base"]=10014, ["hp"]=450590000, - ["atk"]=8220000, + ["atk"]=5230000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -6869,7 +6869,7 @@ local monster_dungeon_armor = { [51707]={ ["monster_base"]=10064, ["hp"]=474020000, - ["atk"]=7900000, + ["atk"]=5340000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -6881,7 +6881,7 @@ local monster_dungeon_armor = { [51807]={ ["monster_base"]=10036, ["hp"]=554250000, - ["atk"]=8120000, + ["atk"]=5310000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -6893,7 +6893,7 @@ local monster_dungeon_armor = { [51907]={ ["monster_base"]=10013, ["hp"]=636480000, - ["atk"]=8510000, + ["atk"]=5590000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -6906,7 +6906,7 @@ local monster_dungeon_armor = { ["monster_base"]=20024, ["is_boss"]=2, ["hp"]=1072430000, - ["atk"]=7900000, + ["atk"]=5590000, ["atk_times"]=4, ["hurt_skill"]={ 30070, @@ -6925,7 +6925,7 @@ local monster_dungeon_armor = { [52107]={ ["monster_base"]=10006, ["hp"]=191410000, - ["atk"]=6420000, + ["atk"]=3630000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -6937,7 +6937,7 @@ local monster_dungeon_armor = { [52207]={ ["monster_base"]=10026, ["hp"]=278310000, - ["atk"]=6890000, + ["atk"]=4040000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -6949,7 +6949,7 @@ local monster_dungeon_armor = { [52307]={ ["monster_base"]=10029, ["hp"]=347620000, - ["atk"]=7080000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -6961,7 +6961,7 @@ local monster_dungeon_armor = { [52407]={ ["monster_base"]=10009, ["hp"]=365170000, - ["atk"]=8000000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -6974,7 +6974,7 @@ local monster_dungeon_armor = { ["monster_base"]=20027, ["is_boss"]=1, ["hp"]=674740000, - ["atk"]=7720000, + ["atk"]=5330000, ["atk_times"]=4, ["hurt_skill"]={ 30079, @@ -6989,7 +6989,7 @@ local monster_dungeon_armor = { [52607]={ ["monster_base"]=10035, ["hp"]=450590000, - ["atk"]=8220000, + ["atk"]=5230000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -7001,7 +7001,7 @@ local monster_dungeon_armor = { [52707]={ ["monster_base"]=10043, ["hp"]=474020000, - ["atk"]=7900000, + ["atk"]=5340000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -7013,7 +7013,7 @@ local monster_dungeon_armor = { [52807]={ ["monster_base"]=10030, ["hp"]=554250000, - ["atk"]=8120000, + ["atk"]=5310000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -7025,7 +7025,7 @@ local monster_dungeon_armor = { [52907]={ ["monster_base"]=10009, ["hp"]=636480000, - ["atk"]=8510000, + ["atk"]=5590000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -7038,7 +7038,7 @@ local monster_dungeon_armor = { ["monster_base"]=20021, ["is_boss"]=2, ["hp"]=1072430000, - ["atk"]=7900000, + ["atk"]=5590000, ["atk_times"]=4, ["hurt_skill"]={ 30061, @@ -7057,7 +7057,7 @@ local monster_dungeon_armor = { [53107]={ ["monster_base"]=10057, ["hp"]=191410000, - ["atk"]=6420000, + ["atk"]=3630000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -7069,7 +7069,7 @@ local monster_dungeon_armor = { [53207]={ ["monster_base"]=10006, ["hp"]=278310000, - ["atk"]=6890000, + ["atk"]=4040000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -7081,7 +7081,7 @@ local monster_dungeon_armor = { [53307]={ ["monster_base"]=10051, ["hp"]=347620000, - ["atk"]=7080000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -7093,7 +7093,7 @@ local monster_dungeon_armor = { [53407]={ ["monster_base"]=10019, ["hp"]=365170000, - ["atk"]=8000000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -7106,7 +7106,7 @@ local monster_dungeon_armor = { ["monster_base"]=30009, ["is_boss"]=1, ["hp"]=674740000, - ["atk"]=7720000, + ["atk"]=5330000, ["atk_times"]=4, ["hurt_skill"]={ 40021, @@ -7122,7 +7122,7 @@ local monster_dungeon_armor = { [53607]={ ["monster_base"]=10024, ["hp"]=450590000, - ["atk"]=8220000, + ["atk"]=5230000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -7134,7 +7134,7 @@ local monster_dungeon_armor = { [53707]={ ["monster_base"]=10001, ["hp"]=474020000, - ["atk"]=7900000, + ["atk"]=5340000, ["atk_times"]=2, ["hurt_skill"]={ 20001, @@ -7146,7 +7146,7 @@ local monster_dungeon_armor = { [53807]={ ["monster_base"]=10015, ["hp"]=554250000, - ["atk"]=8120000, + ["atk"]=5310000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -7158,7 +7158,7 @@ local monster_dungeon_armor = { [53907]={ ["monster_base"]=10035, ["hp"]=636480000, - ["atk"]=8510000, + ["atk"]=5590000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -7171,7 +7171,7 @@ local monster_dungeon_armor = { ["monster_base"]=20038, ["is_boss"]=2, ["hp"]=1072430000, - ["atk"]=7900000, + ["atk"]=5590000, ["atk_times"]=4, ["hurt_skill"]={ 30109, @@ -7193,7 +7193,7 @@ local monster_dungeon_armor = { [54107]={ ["monster_base"]=10045, ["hp"]=205490000, - ["atk"]=6970000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -7205,7 +7205,7 @@ local monster_dungeon_armor = { [54207]={ ["monster_base"]=10012, ["hp"]=298160000, - ["atk"]=7480000, + ["atk"]=4390000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -7217,7 +7217,7 @@ local monster_dungeon_armor = { [54307]={ ["monster_base"]=10035, ["hp"]=372560000, - ["atk"]=7700000, + ["atk"]=4530000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -7229,7 +7229,7 @@ local monster_dungeon_armor = { [54407]={ ["monster_base"]=10004, ["hp"]=391500000, - ["atk"]=8680000, + ["atk"]=5410000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -7242,7 +7242,7 @@ local monster_dungeon_armor = { ["monster_base"]=20025, ["is_boss"]=1, ["hp"]=722740000, - ["atk"]=8330000, + ["atk"]=5790000, ["atk_times"]=4, ["hurt_skill"]={ 30073, @@ -7260,7 +7260,7 @@ local monster_dungeon_armor = { [54607]={ ["monster_base"]=10012, ["hp"]=482700000, - ["atk"]=8890000, + ["atk"]=5690000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -7272,7 +7272,7 @@ local monster_dungeon_armor = { [54707]={ ["monster_base"]=10009, ["hp"]=507910000, - ["atk"]=8550000, + ["atk"]=5800000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -7284,7 +7284,7 @@ local monster_dungeon_armor = { [54807]={ ["monster_base"]=10021, ["hp"]=593840000, - ["atk"]=8800000, + ["atk"]=5780000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -7296,7 +7296,7 @@ local monster_dungeon_armor = { [54907]={ ["monster_base"]=10029, ["hp"]=681920000, - ["atk"]=9230000, + ["atk"]=6080000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -7309,7 +7309,7 @@ local monster_dungeon_armor = { ["monster_base"]=20036, ["is_boss"]=2, ["hp"]=1148710000, - ["atk"]=8530000, + ["atk"]=6080000, ["atk_times"]=4, ["hurt_skill"]={ 30103, @@ -7328,7 +7328,7 @@ local monster_dungeon_armor = { [55107]={ ["monster_base"]=10065, ["hp"]=205490000, - ["atk"]=6970000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -7340,7 +7340,7 @@ local monster_dungeon_armor = { [55207]={ ["monster_base"]=10008, ["hp"]=298160000, - ["atk"]=7480000, + ["atk"]=4390000, ["atk_times"]=2, ["hurt_skill"]={ 20022, @@ -7352,7 +7352,7 @@ local monster_dungeon_armor = { [55307]={ ["monster_base"]=10024, ["hp"]=372560000, - ["atk"]=7700000, + ["atk"]=4530000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -7364,7 +7364,7 @@ local monster_dungeon_armor = { [55407]={ ["monster_base"]=10038, ["hp"]=391500000, - ["atk"]=8680000, + ["atk"]=5410000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -7377,7 +7377,7 @@ local monster_dungeon_armor = { ["monster_base"]=30020, ["is_boss"]=1, ["hp"]=722740000, - ["atk"]=8330000, + ["atk"]=5790000, ["atk_times"]=4, ["hurt_skill"]={ 40033, @@ -7393,7 +7393,7 @@ local monster_dungeon_armor = { [55607]={ ["monster_base"]=10048, ["hp"]=482700000, - ["atk"]=8890000, + ["atk"]=5690000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -7405,7 +7405,7 @@ local monster_dungeon_armor = { [55707]={ ["monster_base"]=10023, ["hp"]=507910000, - ["atk"]=8550000, + ["atk"]=5800000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -7417,7 +7417,7 @@ local monster_dungeon_armor = { [55807]={ ["monster_base"]=10017, ["hp"]=593840000, - ["atk"]=8800000, + ["atk"]=5780000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -7429,7 +7429,7 @@ local monster_dungeon_armor = { [55907]={ ["monster_base"]=10041, ["hp"]=681920000, - ["atk"]=9230000, + ["atk"]=6080000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -7442,7 +7442,7 @@ local monster_dungeon_armor = { ["monster_base"]=20018, ["is_boss"]=2, ["hp"]=1148710000, - ["atk"]=8530000, + ["atk"]=6080000, ["atk_times"]=4, ["hurt_skill"]={ 30052, @@ -7461,7 +7461,7 @@ local monster_dungeon_armor = { [56107]={ ["monster_base"]=10024, ["hp"]=205490000, - ["atk"]=6970000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -7473,7 +7473,7 @@ local monster_dungeon_armor = { [56207]={ ["monster_base"]=10006, ["hp"]=298160000, - ["atk"]=7480000, + ["atk"]=4390000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -7485,7 +7485,7 @@ local monster_dungeon_armor = { [56307]={ ["monster_base"]=10040, ["hp"]=372560000, - ["atk"]=7700000, + ["atk"]=4530000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -7497,7 +7497,7 @@ local monster_dungeon_armor = { [56407]={ ["monster_base"]=10061, ["hp"]=391500000, - ["atk"]=8680000, + ["atk"]=5410000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -7510,7 +7510,7 @@ local monster_dungeon_armor = { ["monster_base"]=20005, ["is_boss"]=1, ["hp"]=722740000, - ["atk"]=8330000, + ["atk"]=5790000, ["atk_times"]=4, ["hurt_skill"]={ 30013, @@ -7528,7 +7528,7 @@ local monster_dungeon_armor = { [56607]={ ["monster_base"]=10009, ["hp"]=482700000, - ["atk"]=8890000, + ["atk"]=5690000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -7540,7 +7540,7 @@ local monster_dungeon_armor = { [56707]={ ["monster_base"]=10015, ["hp"]=507910000, - ["atk"]=8550000, + ["atk"]=5800000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -7552,7 +7552,7 @@ local monster_dungeon_armor = { [56807]={ ["monster_base"]=10018, ["hp"]=593840000, - ["atk"]=8800000, + ["atk"]=5780000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -7564,7 +7564,7 @@ local monster_dungeon_armor = { [56907]={ ["monster_base"]=10040, ["hp"]=681920000, - ["atk"]=9230000, + ["atk"]=6080000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -7577,7 +7577,7 @@ local monster_dungeon_armor = { ["monster_base"]=20025, ["is_boss"]=2, ["hp"]=1148710000, - ["atk"]=8530000, + ["atk"]=6080000, ["atk_times"]=4, ["hurt_skill"]={ 30073, @@ -7595,7 +7595,7 @@ local monster_dungeon_armor = { [57107]={ ["monster_base"]=10013, ["hp"]=205490000, - ["atk"]=6970000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -7607,7 +7607,7 @@ local monster_dungeon_armor = { [57207]={ ["monster_base"]=10060, ["hp"]=298160000, - ["atk"]=7480000, + ["atk"]=4390000, ["atk_times"]=3, ["hurt_skill"]={ 20175, @@ -7619,7 +7619,7 @@ local monster_dungeon_armor = { [57307]={ ["monster_base"]=10019, ["hp"]=372560000, - ["atk"]=7700000, + ["atk"]=4530000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -7631,7 +7631,7 @@ local monster_dungeon_armor = { [57407]={ ["monster_base"]=10004, ["hp"]=391500000, - ["atk"]=8680000, + ["atk"]=5410000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -7644,7 +7644,7 @@ local monster_dungeon_armor = { ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=722740000, - ["atk"]=8330000, + ["atk"]=5790000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -7659,7 +7659,7 @@ local monster_dungeon_armor = { [57607]={ ["monster_base"]=10061, ["hp"]=482700000, - ["atk"]=8890000, + ["atk"]=5690000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -7671,7 +7671,7 @@ local monster_dungeon_armor = { [57707]={ ["monster_base"]=10046, ["hp"]=507910000, - ["atk"]=8550000, + ["atk"]=5800000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -7683,7 +7683,7 @@ local monster_dungeon_armor = { [57807]={ ["monster_base"]=10039, ["hp"]=593840000, - ["atk"]=8800000, + ["atk"]=5780000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -7695,7 +7695,7 @@ local monster_dungeon_armor = { [57907]={ ["monster_base"]=10027, ["hp"]=681920000, - ["atk"]=9230000, + ["atk"]=6080000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -7708,7 +7708,7 @@ local monster_dungeon_armor = { ["monster_base"]=20019, ["is_boss"]=2, ["hp"]=1148710000, - ["atk"]=8530000, + ["atk"]=6080000, ["atk_times"]=4, ["hurt_skill"]={ 30055, @@ -7727,7 +7727,7 @@ local monster_dungeon_armor = { [58107]={ ["monster_base"]=10037, ["hp"]=205490000, - ["atk"]=6970000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20106, @@ -7739,7 +7739,7 @@ local monster_dungeon_armor = { [58207]={ ["monster_base"]=10034, ["hp"]=298160000, - ["atk"]=7480000, + ["atk"]=4390000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -7751,7 +7751,7 @@ local monster_dungeon_armor = { [58307]={ ["monster_base"]=10022, ["hp"]=372560000, - ["atk"]=7700000, + ["atk"]=4530000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -7763,7 +7763,7 @@ local monster_dungeon_armor = { [58407]={ ["monster_base"]=10029, ["hp"]=391500000, - ["atk"]=8680000, + ["atk"]=5410000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -7776,7 +7776,7 @@ local monster_dungeon_armor = { ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=722740000, - ["atk"]=8330000, + ["atk"]=5790000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -7794,7 +7794,7 @@ local monster_dungeon_armor = { [58607]={ ["monster_base"]=10017, ["hp"]=482700000, - ["atk"]=8890000, + ["atk"]=5690000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -7806,7 +7806,7 @@ local monster_dungeon_armor = { [58707]={ ["monster_base"]=10065, ["hp"]=507910000, - ["atk"]=8550000, + ["atk"]=5800000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -7818,7 +7818,7 @@ local monster_dungeon_armor = { [58807]={ ["monster_base"]=10016, ["hp"]=593840000, - ["atk"]=8800000, + ["atk"]=5780000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -7830,7 +7830,7 @@ local monster_dungeon_armor = { [58907]={ ["monster_base"]=10064, ["hp"]=681920000, - ["atk"]=9230000, + ["atk"]=6080000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -7843,7 +7843,7 @@ local monster_dungeon_armor = { ["monster_base"]=20024, ["is_boss"]=2, ["hp"]=1148710000, - ["atk"]=8530000, + ["atk"]=6080000, ["atk_times"]=4, ["hurt_skill"]={ 30070, @@ -7862,7 +7862,7 @@ local monster_dungeon_armor = { [59107]={ ["monster_base"]=10022, ["hp"]=205490000, - ["atk"]=6970000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -7874,7 +7874,7 @@ local monster_dungeon_armor = { [59207]={ ["monster_base"]=10028, ["hp"]=298160000, - ["atk"]=7480000, + ["atk"]=4390000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -7886,7 +7886,7 @@ local monster_dungeon_armor = { [59307]={ ["monster_base"]=10006, ["hp"]=372560000, - ["atk"]=7700000, + ["atk"]=4530000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -7898,7 +7898,7 @@ local monster_dungeon_armor = { [59407]={ ["monster_base"]=10041, ["hp"]=391500000, - ["atk"]=8680000, + ["atk"]=5410000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -7911,7 +7911,7 @@ local monster_dungeon_armor = { ["monster_base"]=20002, ["is_boss"]=1, ["hp"]=722740000, - ["atk"]=8330000, + ["atk"]=5790000, ["atk_times"]=4, ["hurt_skill"]={ 30004, @@ -7926,7 +7926,7 @@ local monster_dungeon_armor = { [59607]={ ["monster_base"]=10040, ["hp"]=482700000, - ["atk"]=8890000, + ["atk"]=5690000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -7938,7 +7938,7 @@ local monster_dungeon_armor = { [59707]={ ["monster_base"]=10052, ["hp"]=507910000, - ["atk"]=8550000, + ["atk"]=5800000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -7950,7 +7950,7 @@ local monster_dungeon_armor = { [59807]={ ["monster_base"]=10017, ["hp"]=593840000, - ["atk"]=8800000, + ["atk"]=5780000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -7962,7 +7962,7 @@ local monster_dungeon_armor = { [59907]={ ["monster_base"]=10064, ["hp"]=681920000, - ["atk"]=9230000, + ["atk"]=6080000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -7975,7 +7975,7 @@ local monster_dungeon_armor = { ["monster_base"]=20031, ["is_boss"]=2, ["hp"]=1148710000, - ["atk"]=8530000, + ["atk"]=6080000, ["atk_times"]=4, ["hurt_skill"]={ 30091, diff --git a/lua/app/config/monster_dungeon_equip.lua b/lua/app/config/monster_dungeon_equip.lua index c3123cce..ec959e5b 100644 --- a/lua/app/config/monster_dungeon_equip.lua +++ b/lua/app/config/monster_dungeon_equip.lua @@ -2,7 +2,7 @@ local monster_dungeon_equip = { [106]={ ["monster_base"]=10056, ["hp"]=76930000, - ["atk"]=1600000, + ["atk"]=1390000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -17,7 +17,7 @@ local monster_dungeon_equip = { [206]={ ["monster_base"]=10045, ["hp"]=93400000, - ["atk"]=2150000, + ["atk"]=1930000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -32,7 +32,7 @@ local monster_dungeon_equip = { [306]={ ["monster_base"]=10028, ["hp"]=153020000, - ["atk"]=2260000, + ["atk"]=2140000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -47,7 +47,7 @@ local monster_dungeon_equip = { [406]={ ["monster_base"]=10003, ["hp"]=203320000, - ["atk"]=2320000, + ["atk"]=2220000, ["atk_times"]=2, ["hurt_skill"]={ 20007, @@ -63,7 +63,7 @@ local monster_dungeon_equip = { ["monster_base"]=20041, ["is_boss"]=2, ["hp"]=386900000, - ["atk"]=2400000, + ["atk"]=2260000, ["atk_times"]=4, ["hurt_skill"]={ 30126, @@ -83,7 +83,7 @@ local monster_dungeon_equip = { [606]={ ["monster_base"]=10060, ["hp"]=85320000, - ["atk"]=1810000, + ["atk"]=1540000, ["atk_times"]=3, ["hurt_skill"]={ 20175, @@ -98,7 +98,7 @@ local monster_dungeon_equip = { [706]={ ["monster_base"]=10055, ["hp"]=103120000, - ["atk"]=2400000, + ["atk"]=2150000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -113,7 +113,7 @@ local monster_dungeon_equip = { [806]={ ["monster_base"]=10027, ["hp"]=168890000, - ["atk"]=2540000, + ["atk"]=2380000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -128,7 +128,7 @@ local monster_dungeon_equip = { [906]={ ["monster_base"]=10064, ["hp"]=224600000, - ["atk"]=2590000, + ["atk"]=2470000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -144,7 +144,7 @@ local monster_dungeon_equip = { ["monster_base"]=20040, ["is_boss"]=2, ["hp"]=426150000, - ["atk"]=2650000, + ["atk"]=2520000, ["atk_times"]=4, ["hurt_skill"]={ 30114, @@ -163,7 +163,7 @@ local monster_dungeon_equip = { [1106]={ ["monster_base"]=10015, ["hp"]=93300000, - ["atk"]=2000000, + ["atk"]=1680000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -178,7 +178,7 @@ local monster_dungeon_equip = { [1206]={ ["monster_base"]=10025, ["hp"]=112820000, - ["atk"]=2670000, + ["atk"]=2340000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -193,7 +193,7 @@ local monster_dungeon_equip = { [1306]={ ["monster_base"]=10030, ["hp"]=191790000, - ["atk"]=2910000, + ["atk"]=2590000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -208,7 +208,7 @@ local monster_dungeon_equip = { [1406]={ ["monster_base"]=10018, ["hp"]=255070000, - ["atk"]=2990000, + ["atk"]=2690000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -224,7 +224,7 @@ local monster_dungeon_equip = { ["monster_base"]=20039, ["is_boss"]=2, ["hp"]=494490000, - ["atk"]=3100000, + ["atk"]=2740000, ["atk_times"]=4, ["hurt_skill"]={ 30117, @@ -243,7 +243,7 @@ local monster_dungeon_equip = { [1606]={ ["monster_base"]=10004, ["hp"]=119700000, - ["atk"]=2670000, + ["atk"]=1830000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -258,7 +258,7 @@ local monster_dungeon_equip = { [1706]={ ["monster_base"]=10049, ["hp"]=143630000, - ["atk"]=3500000, + ["atk"]=2540000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -273,7 +273,7 @@ local monster_dungeon_equip = { [1806]={ ["monster_base"]=10037, ["hp"]=235050000, - ["atk"]=3660000, + ["atk"]=2810000, ["atk_times"]=3, ["hurt_skill"]={ 20106, @@ -288,7 +288,7 @@ local monster_dungeon_equip = { [1906]={ ["monster_base"]=10016, ["hp"]=312870000, - ["atk"]=3760000, + ["atk"]=2920000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -304,7 +304,7 @@ local monster_dungeon_equip = { ["monster_base"]=20043, ["is_boss"]=2, ["hp"]=566760000, - ["atk"]=3630000, + ["atk"]=2980000, ["atk_times"]=4, ["hurt_skill"]={ 30120, @@ -324,7 +324,7 @@ local monster_dungeon_equip = { [2106]={ ["monster_base"]=10022, ["hp"]=136880000, - ["atk"]=3150000, + ["atk"]=2010000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -339,7 +339,7 @@ local monster_dungeon_equip = { [2206]={ ["monster_base"]=10032, ["hp"]=163040000, - ["atk"]=4110000, + ["atk"]=2780000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -354,7 +354,7 @@ local monster_dungeon_equip = { [2306]={ ["monster_base"]=10013, ["hp"]=267170000, - ["atk"]=4270000, + ["atk"]=3070000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -369,7 +369,7 @@ local monster_dungeon_equip = { [2406]={ ["monster_base"]=10001, ["hp"]=355450000, - ["atk"]=4410000, + ["atk"]=3200000, ["atk_times"]=2, ["hurt_skill"]={ 20001, @@ -385,7 +385,7 @@ local monster_dungeon_equip = { ["monster_base"]=20042, ["is_boss"]=2, ["hp"]=643710000, - ["atk"]=4220000, + ["atk"]=3260000, ["atk_times"]=4, ["hurt_skill"]={ 30123, @@ -404,7 +404,7 @@ local monster_dungeon_equip = { [2606]={ ["monster_base"]=10045, ["hp"]=147550000, - ["atk"]=3510000, + ["atk"]=2190000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -419,7 +419,7 @@ local monster_dungeon_equip = { [2706]={ ["monster_base"]=10056, ["hp"]=175200000, - ["atk"]=4510000, + ["atk"]=3030000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -434,7 +434,7 @@ local monster_dungeon_equip = { [2806]={ ["monster_base"]=10003, ["hp"]=287270000, - ["atk"]=4700000, + ["atk"]=3340000, ["atk_times"]=2, ["hurt_skill"]={ 20007, @@ -449,7 +449,7 @@ local monster_dungeon_equip = { [2906]={ ["monster_base"]=10028, ["hp"]=382140000, - ["atk"]=4860000, + ["atk"]=3490000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -465,7 +465,7 @@ local monster_dungeon_equip = { ["monster_base"]=20041, ["is_boss"]=2, ["hp"]=691660000, - ["atk"]=4620000, + ["atk"]=3560000, ["atk_times"]=4, ["hurt_skill"]={ 30126, @@ -485,7 +485,7 @@ local monster_dungeon_equip = { [3106]={ ["monster_base"]=10052, ["hp"]=161570000, - ["atk"]=3940000, + ["atk"]=2380000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -500,7 +500,7 @@ local monster_dungeon_equip = { [3206]={ ["monster_base"]=10062, ["hp"]=191650000, - ["atk"]=5040000, + ["atk"]=3300000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -515,7 +515,7 @@ local monster_dungeon_equip = { [3306]={ ["monster_base"]=10036, ["hp"]=313710000, - ["atk"]=5250000, + ["atk"]=3620000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -530,7 +530,7 @@ local monster_dungeon_equip = { [3406]={ ["monster_base"]=10061, ["hp"]=417370000, - ["atk"]=5400000, + ["atk"]=3790000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -546,7 +546,7 @@ local monster_dungeon_equip = { ["monster_base"]=20040, ["is_boss"]=2, ["hp"]=754850000, - ["atk"]=5120000, + ["atk"]=3870000, ["atk_times"]=4, ["hurt_skill"]={ 30129, @@ -565,7 +565,7 @@ local monster_dungeon_equip = { [3606]={ ["monster_base"]=10030, ["hp"]=175230000, - ["atk"]=4360000, + ["atk"]=2580000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -580,7 +580,7 @@ local monster_dungeon_equip = { [3706]={ ["monster_base"]=10015, ["hp"]=207360000, - ["atk"]=5570000, + ["atk"]=3560000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -595,7 +595,7 @@ local monster_dungeon_equip = { [3806]={ ["monster_base"]=10025, ["hp"]=338580000, - ["atk"]=5780000, + ["atk"]=3900000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -610,7 +610,7 @@ local monster_dungeon_equip = { [3906]={ ["monster_base"]=10034, ["hp"]=450950000, - ["atk"]=5930000, + ["atk"]=4090000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -626,7 +626,7 @@ local monster_dungeon_equip = { ["monster_base"]=20039, ["is_boss"]=2, ["hp"]=814970000, - ["atk"]=5600000, + ["atk"]=4170000, ["atk_times"]=4, ["hurt_skill"]={ 30117, @@ -645,7 +645,7 @@ local monster_dungeon_equip = { [4106]={ ["monster_base"]=10054, ["hp"]=182360000, - ["atk"]=4590000, + ["atk"]=2660000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -660,7 +660,7 @@ local monster_dungeon_equip = { [4206]={ ["monster_base"]=10037, ["hp"]=215460000, - ["atk"]=5830000, + ["atk"]=3660000, ["atk_times"]=3, ["hurt_skill"]={ 20106, @@ -675,7 +675,7 @@ local monster_dungeon_equip = { [4306]={ ["monster_base"]=10012, ["hp"]=351510000, - ["atk"]=6040000, + ["atk"]=4010000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -690,7 +690,7 @@ local monster_dungeon_equip = { [4406]={ ["monster_base"]=10049, ["hp"]=468340000, - ["atk"]=6220000, + ["atk"]=4210000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -706,7 +706,7 @@ local monster_dungeon_equip = { ["monster_base"]=20043, ["is_boss"]=2, ["hp"]=846340000, - ["atk"]=5860000, + ["atk"]=4290000, ["atk_times"]=4, ["hurt_skill"]={ 30120, @@ -726,7 +726,7 @@ local monster_dungeon_equip = { [4606]={ ["monster_base"]=10042, ["hp"]=187110000, - ["atk"]=4750000, + ["atk"]=2740000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -741,7 +741,7 @@ local monster_dungeon_equip = { [4706]={ ["monster_base"]=10026, ["hp"]=220970000, - ["atk"]=6040000, + ["atk"]=3780000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -756,7 +756,7 @@ local monster_dungeon_equip = { [4806]={ ["monster_base"]=10019, ["hp"]=360430000, - ["atk"]=6240000, + ["atk"]=4140000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -771,7 +771,7 @@ local monster_dungeon_equip = { [4906]={ ["monster_base"]=10001, ["hp"]=480060000, - ["atk"]=6450000, + ["atk"]=4340000, ["atk_times"]=2, ["hurt_skill"]={ 20001, @@ -787,7 +787,7 @@ local monster_dungeon_equip = { ["monster_base"]=20042, ["is_boss"]=2, ["hp"]=867510000, - ["atk"]=6040000, + ["atk"]=4430000, ["atk_times"]=4, ["hurt_skill"]={ 30132, @@ -806,7 +806,7 @@ local monster_dungeon_equip = { [5106]={ ["monster_base"]=10045, ["hp"]=200880000, - ["atk"]=5180000, + ["atk"]=2910000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -821,7 +821,7 @@ local monster_dungeon_equip = { [5206]={ ["monster_base"]=10056, ["hp"]=236460000, - ["atk"]=6550000, + ["atk"]=4010000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -836,7 +836,7 @@ local monster_dungeon_equip = { [5306]={ ["monster_base"]=10003, ["hp"]=385650000, - ["atk"]=6780000, + ["atk"]=4400000, ["atk_times"]=2, ["hurt_skill"]={ 20007, @@ -851,7 +851,7 @@ local monster_dungeon_equip = { [5406]={ ["monster_base"]=10028, ["hp"]=513230000, - ["atk"]=6990000, + ["atk"]=4600000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -867,7 +867,7 @@ local monster_dungeon_equip = { ["monster_base"]=20041, ["is_boss"]=2, ["hp"]=927400000, - ["atk"]=6550000, + ["atk"]=4690000, ["atk_times"]=4, ["hurt_skill"]={ 30126, @@ -887,7 +887,7 @@ local monster_dungeon_equip = { [5606]={ ["monster_base"]=10029, ["hp"]=202710000, - ["atk"]=5270000, + ["atk"]=2990000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -902,7 +902,7 @@ local monster_dungeon_equip = { [5706]={ ["monster_base"]=10055, ["hp"]=238240000, - ["atk"]=6650000, + ["atk"]=4130000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -917,7 +917,7 @@ local monster_dungeon_equip = { [5806]={ ["monster_base"]=10051, ["hp"]=388530000, - ["atk"]=6880000, + ["atk"]=4530000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -932,7 +932,7 @@ local monster_dungeon_equip = { [5906]={ ["monster_base"]=10064, ["hp"]=517080000, - ["atk"]=7080000, + ["atk"]=4730000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -948,7 +948,7 @@ local monster_dungeon_equip = { ["monster_base"]=20040, ["is_boss"]=2, ["hp"]=933980000, - ["atk"]=6630000, + ["atk"]=4820000, ["atk_times"]=4, ["hurt_skill"]={ 30135, @@ -967,7 +967,7 @@ local monster_dungeon_equip = { [6106]={ ["monster_base"]=10015, ["hp"]=216480000, - ["atk"]=5750000, + ["atk"]=3180000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -982,7 +982,7 @@ local monster_dungeon_equip = { [6206]={ ["monster_base"]=10025, ["hp"]=254320000, - ["atk"]=7200000, + ["atk"]=4380000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -997,7 +997,7 @@ local monster_dungeon_equip = { [6306]={ ["monster_base"]=10021, ["hp"]=415070000, - ["atk"]=7450000, + ["atk"]=4810000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -1012,7 +1012,7 @@ local monster_dungeon_equip = { [6406]={ ["monster_base"]=10034, ["hp"]=552120000, - ["atk"]=7670000, + ["atk"]=5030000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -1028,7 +1028,7 @@ local monster_dungeon_equip = { ["monster_base"]=20039, ["is_boss"]=2, ["hp"]=996810000, - ["atk"]=7150000, + ["atk"]=5130000, ["atk_times"]=4, ["hurt_skill"]={ 30117, @@ -1047,7 +1047,7 @@ local monster_dungeon_equip = { [6606]={ ["monster_base"]=10049, ["hp"]=221080000, - ["atk"]=5900000, + ["atk"]=3280000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -1062,7 +1062,7 @@ local monster_dungeon_equip = { [6706]={ ["monster_base"]=10006, ["hp"]=259330000, - ["atk"]=7400000, + ["atk"]=4500000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -1077,7 +1077,7 @@ local monster_dungeon_equip = { [6806]={ ["monster_base"]=10054, ["hp"]=423100000, - ["atk"]=7640000, + ["atk"]=4950000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -1092,7 +1092,7 @@ local monster_dungeon_equip = { [6906]={ ["monster_base"]=10024, ["hp"]=562720000, - ["atk"]=7870000, + ["atk"]=5180000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -1108,7 +1108,7 @@ local monster_dungeon_equip = { ["monster_base"]=20043, ["is_boss"]=2, ["hp"]=1015810000, - ["atk"]=7320000, + ["atk"]=5280000, ["atk_times"]=4, ["hurt_skill"]={ 30120, @@ -1128,7 +1128,7 @@ local monster_dungeon_equip = { [7106]={ ["monster_base"]=10019, ["hp"]=225650000, - ["atk"]=6080000, + ["atk"]=3370000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -1143,7 +1143,7 @@ local monster_dungeon_equip = { [7206]={ ["monster_base"]=10035, ["hp"]=264660000, - ["atk"]=7590000, + ["atk"]=4630000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -1158,7 +1158,7 @@ local monster_dungeon_equip = { [7306]={ ["monster_base"]=10026, ["hp"]=431730000, - ["atk"]=7840000, + ["atk"]=5090000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -1173,7 +1173,7 @@ local monster_dungeon_equip = { [7406]={ ["monster_base"]=10041, ["hp"]=574040000, - ["atk"]=8090000, + ["atk"]=5330000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -1189,7 +1189,7 @@ local monster_dungeon_equip = { ["monster_base"]=20042, ["is_boss"]=2, ["hp"]=1036280000, - ["atk"]=7520000, + ["atk"]=5440000, ["atk_times"]=4, ["hurt_skill"]={ 30138, @@ -1208,7 +1208,7 @@ local monster_dungeon_equip = { [7606]={ ["monster_base"]=10053, ["hp"]=233950000, - ["atk"]=6420000, + ["atk"]=3470000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -1223,7 +1223,7 @@ local monster_dungeon_equip = { [7706]={ ["monster_base"]=10043, ["hp"]=273880000, - ["atk"]=8000000, + ["atk"]=4760000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -1238,7 +1238,7 @@ local monster_dungeon_equip = { [7806]={ ["monster_base"]=10033, ["hp"]=446810000, - ["atk"]=8270000, + ["atk"]=5230000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -1253,7 +1253,7 @@ local monster_dungeon_equip = { [7906]={ ["monster_base"]=10028, ["hp"]=594050000, - ["atk"]=8510000, + ["atk"]=5480000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -1269,7 +1269,7 @@ local monster_dungeon_equip = { ["monster_base"]=20041, ["is_boss"]=2, ["hp"]=1072430000, - ["atk"]=7900000, + ["atk"]=5590000, ["atk_times"]=4, ["hurt_skill"]={ 30126, @@ -1289,7 +1289,7 @@ local monster_dungeon_equip = { [8106]={ ["monster_base"]=10036, ["hp"]=132000000, - ["atk"]=990000, + ["atk"]=870000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -1304,7 +1304,7 @@ local monster_dungeon_equip = { [8206]={ ["monster_base"]=10017, ["hp"]=284280000, - ["atk"]=8360000, + ["atk"]=4890000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -1319,7 +1319,7 @@ local monster_dungeon_equip = { [8306]={ ["monster_base"]=10023, ["hp"]=463670000, - ["atk"]=8610000, + ["atk"]=5380000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -1334,7 +1334,7 @@ local monster_dungeon_equip = { [8406]={ ["monster_base"]=10051, ["hp"]=616180000, - ["atk"]=8880000, + ["atk"]=5640000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -1350,7 +1350,7 @@ local monster_dungeon_equip = { ["monster_base"]=20040, ["is_boss"]=2, ["hp"]=1112410000, - ["atk"]=8240000, + ["atk"]=5750000, ["atk_times"]=4, ["hurt_skill"]={ 30141, @@ -1369,7 +1369,7 @@ local monster_dungeon_equip = { [8606]={ ["monster_base"]=10021, ["hp"]=251150000, - ["atk"]=6970000, + ["atk"]=3770000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -1384,7 +1384,7 @@ local monster_dungeon_equip = { [8706]={ ["monster_base"]=10034, ["hp"]=293630000, - ["atk"]=8680000, + ["atk"]=5170000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -1399,7 +1399,7 @@ local monster_dungeon_equip = { [8806]={ ["monster_base"]=10030, ["hp"]=478890000, - ["atk"]=8940000, + ["atk"]=5680000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -1414,7 +1414,7 @@ local monster_dungeon_equip = { [8906]={ ["monster_base"]=10018, ["hp"]=636450000, - ["atk"]=9230000, + ["atk"]=5960000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -1430,7 +1430,7 @@ local monster_dungeon_equip = { ["monster_base"]=20039, ["is_boss"]=2, ["hp"]=1148710000, - ["atk"]=8530000, + ["atk"]=6080000, ["atk_times"]=4, ["hurt_skill"]={ 30117, @@ -1449,7 +1449,7 @@ local monster_dungeon_equip = { [9106]={ ["monster_base"]=10016, ["hp"]=261840000, - ["atk"]=7320000, + ["atk"]=3970000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -1464,7 +1464,7 @@ local monster_dungeon_equip = { [9206]={ ["monster_base"]=10054, ["hp"]=305680000, - ["atk"]=9070000, + ["atk"]=5440000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -1479,7 +1479,7 @@ local monster_dungeon_equip = { [9306]={ ["monster_base"]=10006, ["hp"]=498740000, - ["atk"]=9360000, + ["atk"]=5980000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -1494,7 +1494,7 @@ local monster_dungeon_equip = { [9406]={ ["monster_base"]=10020, ["hp"]=662690000, - ["atk"]=9650000, + ["atk"]=6280000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -1510,7 +1510,7 @@ local monster_dungeon_equip = { ["monster_base"]=20043, ["is_boss"]=2, ["hp"]=1196050000, - ["atk"]=8930000, + ["atk"]=6410000, ["atk_times"]=4, ["hurt_skill"]={ 30120, @@ -1530,7 +1530,7 @@ local monster_dungeon_equip = { [9606]={ ["monster_base"]=10031, ["hp"]=270070000, - ["atk"]=7580000, + ["atk"]=4190000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -1545,7 +1545,7 @@ local monster_dungeon_equip = { [9706]={ ["monster_base"]=10035, ["hp"]=315240000, - ["atk"]=9410000, + ["atk"]=5740000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -1560,7 +1560,7 @@ local monster_dungeon_equip = { [9806]={ ["monster_base"]=10019, ["hp"]=514070000, - ["atk"]=9700000, + ["atk"]=6320000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -1575,7 +1575,7 @@ local monster_dungeon_equip = { [9906]={ ["monster_base"]=10013, ["hp"]=682910000, - ["atk"]=10010000, + ["atk"]=6630000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -1591,7 +1591,7 @@ local monster_dungeon_equip = { ["monster_base"]=20042, ["is_boss"]=2, ["hp"]=1232640000, - ["atk"]=9240000, + ["atk"]=6760000, ["atk_times"]=4, ["hurt_skill"]={ 30144, diff --git a/lua/app/config/skill.lua b/lua/app/config/skill.lua index 2996c54b..0d3f2a6f 100644 --- a/lua/app/config/skill.lua +++ b/lua/app/config/skill.lua @@ -2210,9 +2210,6 @@ local skill = { ["fx_self_mirror"]=400003 }, [2300220]={ - ["buff_id"]={ - "dmg_addition_all_add" - }, ["energy"]=10, ["link"]=1, ["position"]=2, @@ -3453,9 +3450,6 @@ local skill = { ["fx_self_mirror"]=400038 }, [3300220]={ - ["buff_id"]={ - "dmg_addition_all_add" - }, ["energy"]=10, ["link"]=1, ["position"]=3, @@ -3802,9 +3796,6 @@ local skill = { ["fx_self_mirror"]=400093 }, [3400120]={ - ["buff_id"]={ - "dmg_addition_all_add" - }, ["energy"]=10, ["link"]=1, ["position"]=3, diff --git a/lua/app/config/strings/cn/global.lua b/lua/app/config/strings/cn/global.lua index ac728e4e..e445ca26 100644 --- a/lua/app/config/strings/cn/global.lua +++ b/lua/app/config/strings/cn/global.lua @@ -419,7 +419,7 @@ local localization_global = ["DUNGEON_ARMOR_FUND_2"] = "时空裂隙基金Ⅱ", ["DUNGEON_ARMOR_DESC_15"] = "请先购买本基金", ["DUNGEON_ARMOR_DESC_16"] = "超值", - ["MOP_UP_DESC_3"] = "足够", + ["MOP_UP_DESC_3"] = "不足", ["DUNGEON_ARMOR_DESC_17"] = "本关今日剩余次数:{0}", ["NAVER_SETTING_DESC"] = "Naver", ["EQUIP_DESC_26"] = "4件防具 +{0}:", diff --git a/lua/app/config/strings/en/global.lua b/lua/app/config/strings/en/global.lua index 6430b4d5..bab0904c 100644 --- a/lua/app/config/strings/en/global.lua +++ b/lua/app/config/strings/en/global.lua @@ -419,7 +419,7 @@ local localization_global = ["DUNGEON_ARMOR_FUND_2"] = "Time Rift Fund Ⅱ", ["DUNGEON_ARMOR_DESC_15"] = "Please purchase the fund first", ["DUNGEON_ARMOR_DESC_16"] = "Super Value", - ["MOP_UP_DESC_3"] = "Enough", + ["MOP_UP_DESC_3"] = "Insufficient", ["DUNGEON_ARMOR_DESC_17"] = "Stage attempts left today: {0}", ["NAVER_SETTING_DESC"] = "Naver", ["EQUIP_DESC_26"] = "4-pc Armor +{0}:", diff --git a/lua/app/config/strings/es/global.lua b/lua/app/config/strings/es/global.lua index d10865c5..eff300f9 100644 --- a/lua/app/config/strings/es/global.lua +++ b/lua/app/config/strings/es/global.lua @@ -11,7 +11,7 @@ local localization_global = ["BTN_TEXT_CANCEL"] = "Cancelar", ["BTN_TEXT_OK"] = "Confirmar", ["BATTLE_DESC_1"] = "Quieres salir del combate?", - ["ITEM_NOT_ENOUGH"] = "Insuficiente {0} ", + ["ITEM_NOT_ENOUGH"] = "Insuficiente {0}", ["START_DESC"] = "Iniciar", ["ELEMENT_NAME_1"] = "elemento rojo", ["ELEMENT_NAME_2"] = "elemento dorado", @@ -419,7 +419,7 @@ local localization_global = ["DUNGEON_ARMOR_FUND_2"] = "Fondo de Grieta de Tiempo Ⅱ", ["DUNGEON_ARMOR_DESC_15"] = "Compra primero el fondo actual", ["DUNGEON_ARMOR_DESC_16"] = "De valor", - ["MOP_UP_DESC_3"] = "Suficiente", + ["MOP_UP_DESC_3"] = "Insuficiente", ["DUNGEON_ARMOR_DESC_17"] = "Quedan {0} chances hoy", ["NAVER_SETTING_DESC"] = "Naver", ["EQUIP_DESC_26"] = "4 armaduras +{0}:", diff --git a/lua/app/config/strings/id/global.lua b/lua/app/config/strings/id/global.lua index fa326f10..2f9fa2f9 100644 --- a/lua/app/config/strings/id/global.lua +++ b/lua/app/config/strings/id/global.lua @@ -419,7 +419,7 @@ local localization_global = ["DUNGEON_ARMOR_FUND_2"] = "Dana Celah Waktu Ⅱ", ["DUNGEON_ARMOR_DESC_15"] = "Silakan beli Dana dahulu", ["DUNGEON_ARMOR_DESC_16"] = "Bernilai", - ["MOP_UP_DESC_3"] = "Mencukupi", + ["MOP_UP_DESC_3"] = "Tidak cukup", ["DUNGEON_ARMOR_DESC_17"] = "Sisa level hari ini: {0}", ["NAVER_SETTING_DESC"] = "Naver", ["EQUIP_DESC_26"] = "4 buah Armor +{0}:", diff --git a/lua/app/config/strings/ja/global.lua b/lua/app/config/strings/ja/global.lua index f451b5a5..a6555154 100644 --- a/lua/app/config/strings/ja/global.lua +++ b/lua/app/config/strings/ja/global.lua @@ -419,7 +419,7 @@ local localization_global = ["DUNGEON_ARMOR_FUND_2"] = "時空の裂け目ファンドⅡ", ["DUNGEON_ARMOR_DESC_15"] = "先にファンドを購入してください", ["DUNGEON_ARMOR_DESC_16"] = "超お得", - ["MOP_UP_DESC_3"] = "充足", + ["MOP_UP_DESC_3"] = "が足りない", ["DUNGEON_ARMOR_DESC_17"] = "本日残り回数:{0}", ["NAVER_SETTING_DESC"] = "Naver", ["EQUIP_DESC_26"] = "防具4つ+{0}:", diff --git a/lua/app/config/strings/ko/global.lua b/lua/app/config/strings/ko/global.lua index 6d7ad51d..bb7be5b0 100644 --- a/lua/app/config/strings/ko/global.lua +++ b/lua/app/config/strings/ko/global.lua @@ -419,7 +419,7 @@ local localization_global = ["DUNGEON_ARMOR_FUND_2"] = "시공간의 균열 펀드 Ⅱ", ["DUNGEON_ARMOR_DESC_15"] = "먼저 이 펀드를 구매해 주세요", ["DUNGEON_ARMOR_DESC_16"] = "최고 가성비", - ["MOP_UP_DESC_3"] = "충분합니다", + ["MOP_UP_DESC_3"] = "부족", ["DUNGEON_ARMOR_DESC_17"] = "이번 챕터 오늘 남은 횟수: {0}", ["NAVER_SETTING_DESC"] = "Naver", ["EQUIP_DESC_26"] = "방어구 4개 +{0}:", diff --git a/lua/app/config/strings/pt/global.lua b/lua/app/config/strings/pt/global.lua index 13f1f45a..8fd5a545 100644 --- a/lua/app/config/strings/pt/global.lua +++ b/lua/app/config/strings/pt/global.lua @@ -419,7 +419,7 @@ local localization_global = ["DUNGEON_ARMOR_FUND_2"] = "Fundo da Fenda Espaço-temporal Ⅱ", ["DUNGEON_ARMOR_DESC_15"] = "Compre o fundo primeiro.", ["DUNGEON_ARMOR_DESC_16"] = "Oferta", - ["MOP_UP_DESC_3"] = "Suficiente", + ["MOP_UP_DESC_3"] = "Insuficiente", ["DUNGEON_ARMOR_DESC_17"] = "Tentativas para essa fase por hoje: {0}", ["NAVER_SETTING_DESC"] = "Naver", ["EQUIP_DESC_26"] = "4 armaduras + {0}:", diff --git a/lua/app/config/strings/th/global.lua b/lua/app/config/strings/th/global.lua index a75691b8..90916870 100644 --- a/lua/app/config/strings/th/global.lua +++ b/lua/app/config/strings/th/global.lua @@ -419,7 +419,7 @@ local localization_global = ["DUNGEON_ARMOR_FUND_2"] = "กองทุนรอยแยกกาลอวกาศⅡ", ["DUNGEON_ARMOR_DESC_15"] = "โปรดซื้อกองทุนก่อน", ["DUNGEON_ARMOR_DESC_16"] = "สุดคุ้ม", - ["MOP_UP_DESC_3"] = "เพียงพอ", + ["MOP_UP_DESC_3"] = "ไม่เพียงพอ", ["DUNGEON_ARMOR_DESC_17"] = "จำนวนที่เหลือของด่านนี้ในวันนี้: {0}", ["NAVER_SETTING_DESC"] = "Naver", ["EQUIP_DESC_26"] = "เกราะ 4 ชิ้น +{0}:", diff --git a/lua/app/config/strings/vi/global.lua b/lua/app/config/strings/vi/global.lua index acae3fc6..28e9d4a2 100644 --- a/lua/app/config/strings/vi/global.lua +++ b/lua/app/config/strings/vi/global.lua @@ -419,7 +419,7 @@ local localization_global = ["DUNGEON_ARMOR_FUND_2"] = "Quỹ Khe Nứt Không Gian Ⅱ", ["DUNGEON_ARMOR_DESC_15"] = "Hãy mua quỹ trước", ["DUNGEON_ARMOR_DESC_16"] = "Siêu hời", - ["MOP_UP_DESC_3"] = "Đủ", + ["MOP_UP_DESC_3"] = "Không đủ", ["DUNGEON_ARMOR_DESC_17"] = "Lượt ải còn: {0}", ["NAVER_SETTING_DESC"] = "Naver", ["EQUIP_DESC_26"] = "4 món phòng cụ +{0}:", diff --git a/lua/app/config/strings/zh/global.lua b/lua/app/config/strings/zh/global.lua index 43b40f31..e5764818 100644 --- a/lua/app/config/strings/zh/global.lua +++ b/lua/app/config/strings/zh/global.lua @@ -419,7 +419,7 @@ local localization_global = ["DUNGEON_ARMOR_FUND_2"] = "時空裂隙基金Ⅱ", ["DUNGEON_ARMOR_DESC_15"] = "請先購買本基金", ["DUNGEON_ARMOR_DESC_16"] = "超值", - ["MOP_UP_DESC_3"] = "足夠", + ["MOP_UP_DESC_3"] = "不足", ["DUNGEON_ARMOR_DESC_17"] = "本關今日剩餘次數:{0}", ["NAVER_SETTING_DESC"] = "Naver", ["EQUIP_DESC_26"] = "4件防具+{0}:", diff --git a/lua/app/config/task_daily_challenge.lua b/lua/app/config/task_daily_challenge.lua index 95c974b2..b644d0ad 100644 --- a/lua/app/config/task_daily_challenge.lua +++ b/lua/app/config/task_daily_challenge.lua @@ -204,7 +204,7 @@ local task_daily_challenge = { }, [8]={ ["rand_type"]=2, - ["param"]=3000, + ["param"]=2500, ["reward"]={ { ["type"]=1, diff --git a/lua/app/module/dungeon_weapon/dungeon_weapon_manager.lua b/lua/app/module/dungeon_weapon/dungeon_weapon_manager.lua index 924215fd..4a16675c 100644 --- a/lua/app/module/dungeon_weapon/dungeon_weapon_manager.lua +++ b/lua/app/module/dungeon_weapon/dungeon_weapon_manager.lua @@ -20,6 +20,14 @@ function DungeonWeaponManager:reqFight(chapterId) end local weaponData = DataManager.DungeonData:getDungeonDataByType(ModuleManager.MODULE_KEY.DUNGEON_WEAPON) + if weaponData:canFarmChapter(chapterId) then + if not DataManager.DungeonData:isEnoughHp(ModuleManager.MODULE_KEY.DUNGEON_WEAPON) then + GFunc.showItemNotEnough(GConst.ItemConst.ITEM_ID_VIT) + ModuleManager.CommerceManager:showBuyVitUI() + return + end + end + if not weaponData:canFightChapter(chapterId) then return end @@ -101,6 +109,13 @@ end function DungeonWeaponManager:reqSweep(chapterId, target) local weaponData = DataManager.DungeonData:getDungeonDataByType(ModuleManager.MODULE_KEY.DUNGEON_WEAPON) + -- 体力 + if not DataManager.DungeonData:isEnoughHp(ModuleManager.MODULE_KEY.DUNGEON_WEAPON) then + GFunc.showItemNotEnough(GConst.ItemConst.ITEM_ID_VIT) + ModuleManager.CommerceManager:showBuyVitUI() + return + end + -- 判断次数 if weaponData:getRemianFarmCount() <= 0 then GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.DUNGEON_WEAPON_DESC_13)) diff --git a/lua/app/ui/dungeon_weapon/cell/chapter_layer_cell.lua b/lua/app/ui/dungeon_weapon/cell/chapter_layer_cell.lua index 32be31fb..494a9510 100644 --- a/lua/app/ui/dungeon_weapon/cell/chapter_layer_cell.lua +++ b/lua/app/ui/dungeon_weapon/cell/chapter_layer_cell.lua @@ -15,6 +15,10 @@ function ChapterLayerCell:refresh(id) local fightDesc = uiMap["chapter_layer_cell.bg.fight_btn.desc"] local introdutionBtn = uiMap["chapter_layer_cell.bg.introduction_btn"] local introdutionBtnTx = uiMap["chapter_layer_cell.bg.introduction_btn.desc"] + local iconBg = uiMap["chapter_layer_cell.bg.fight_btn.icon_bg"] + local iconBgDesc = uiMap["chapter_layer_cell.bg.fight_btn.icon_bg.desc"] + local iconBgIcon = uiMap["chapter_layer_cell.bg.fight_btn.icon_bg.icon"] + local iconBgNum = uiMap["chapter_layer_cell.bg.fight_btn.icon_bg.num"] if not self.rewardCells then self.rewardCells = {} @@ -23,6 +27,7 @@ function ChapterLayerCell:refresh(id) end end local weaponData = DataManager.DungeonData:getDungeonDataByType(ModuleManager.MODULE_KEY.DUNGEON_WEAPON) + fightDesc:setText(I18N:getGlobalText(I18N.GlobalConst.TASK_CHALLENGE)) unlockDesc:setText(GConst.EMPTY_STRING) introdutionBtnTx:setText(I18N:getGlobalText(I18N.GlobalConst.DUNGEON_WEAPON_DESC_7)) title:setText(I18N:getGlobalText(I18N.GlobalConst.DUNGEON_WEAPON_DESC_6, id)) @@ -31,7 +36,9 @@ function ChapterLayerCell:refresh(id) bossBanner:setVisible(true) end) bossMask:setTexture("assets/arts/textures/background/dungeon_equip/" .. config.icon .. ".png") - if weaponData:canFarmChapter(id) then -- 可扫荡 + if weaponData:canFarmChapter(id) and weaponData:getRemianFarmCount() > 0 then -- 可扫荡 切有扫荡次数 + iconBg:setVisible(true) + fightDesc:setVisible(false) mask:setVisible(false) bossMask:setVisible(false) rewardsNode:setActive(true) @@ -40,7 +47,9 @@ function ChapterLayerCell:refresh(id) fightBtn:setActive(true) fightBtn:setSprite(GConst.ATLAS_PATH.COMMON, FIGHT_BTN[2]) - fightDesc:setText(I18N:getGlobalText(I18N.GlobalConst.SMASH)) + iconBgDesc:setText(I18N:getGlobalText(I18N.GlobalConst.SMASH)) + iconBgNum:setText(GFunc.getRewardNum(weaponData:getChallengeHpCost())) + GFunc.centerImgAndTx(iconBgIcon, iconBgNum, 10) for i = 1, 3 do if config.item_show[i] then self.rewardCells[i]:refreshByConfig(config.item_show[i]) @@ -55,30 +64,59 @@ function ChapterLayerCell:refresh(id) end) rewardsNode:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_HORIZONTAL_OR_VERTICAL_LAYOUT):RefreshLayout() elseif weaponData:canFightChapter(id) then -- 可挑战 - mask:setVisible(false) - bossMask:setVisible(false) - rewardsNode:setActive(true) - self.rewardCells[4]:getBaseObject():setActive(true) - introdutionBtn:setActive(true) - fightBtn:setActive(true) - - fightBtn:setSprite(GConst.ATLAS_PATH.COMMON, FIGHT_BTN[1]) - fightDesc:setText(I18N:getGlobalText(I18N.GlobalConst.TASK_CHALLENGE)) - for i = 1, 3 do - if config.item_show[i] then - self.rewardCells[i]:refreshByConfig(config.item_show[i]) - self.rewardCells[i]:hideCountTx() - self.rewardCells[i]:getBaseObject():setActive(true) - else - self.rewardCells[i]:getBaseObject():setActive(false) + if weaponData:canFarmChapter(id) then -- 没扫荡次数 + iconBg:setVisible(true) + fightDesc:setVisible(false) + mask:setVisible(false) + bossMask:setVisible(false) + rewardsNode:setActive(true) + self.rewardCells[4]:getBaseObject():setActive(false) + introdutionBtn:setActive(false) + fightBtn:setActive(true) + + fightBtn:setSprite(GConst.ATLAS_PATH.COMMON, FIGHT_BTN[1]) + iconBgDesc:setText(I18N:getGlobalText(I18N.GlobalConst.TASK_CHALLENGE)) + iconBgNum:setText(GFunc.getRewardNum(weaponData:getChallengeHpCost())) + GFunc.centerImgAndTx(iconBgIcon, iconBgNum, 10) + for i = 1, 3 do + if config.item_show[i] then + self.rewardCells[i]:refreshByConfig(config.item_show[i]) + self.rewardCells[i]:hideCountTx() + self.rewardCells[i]:getBaseObject():setActive(true) + else + self.rewardCells[i]:getBaseObject():setActive(false) + end end + fightBtn:addClickListener(function() + ModuleManager.DungeonWeaponManager:reqFight(id) + end) + rewardsNode:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_HORIZONTAL_OR_VERTICAL_LAYOUT):RefreshLayout() + else + iconBg:setVisible(false) + fightDesc:setVisible(true) + mask:setVisible(false) + bossMask:setVisible(false) + rewardsNode:setActive(true) + self.rewardCells[4]:getBaseObject():setActive(true) + introdutionBtn:setActive(true) + fightBtn:setActive(true) + fightBtn:setSprite(GConst.ATLAS_PATH.COMMON, FIGHT_BTN[1]) + for i = 1, 3 do + if config.item_show[i] then + self.rewardCells[i]:refreshByConfig(config.item_show[i]) + self.rewardCells[i]:hideCountTx() + self.rewardCells[i]:getBaseObject():setActive(true) + else + self.rewardCells[i]:getBaseObject():setActive(false) + end + end + self.rewardCells[4]:refreshByConfig(config.first_reward) + self.rewardCells[4]:showFirstPass(true) + fightBtn:addClickListener(function() + ModuleManager.DungeonWeaponManager:reqFight(id) + end) + rewardsNode:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_HORIZONTAL_OR_VERTICAL_LAYOUT):RefreshLayout() end - self.rewardCells[4]:refreshByConfig(config.first_reward) - self.rewardCells[4]:showFirstPass(true) - fightBtn:addClickListener(function() - ModuleManager.DungeonWeaponManager:reqFight(id) - end) - rewardsNode:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_HORIZONTAL_OR_VERTICAL_LAYOUT):RefreshLayout() else -- 不可挑战 mask:setVisible(true) bossMask:setVisible(true) diff --git a/lua/app/userdata/dungeon/dungeon_weapon_entity.lua b/lua/app/userdata/dungeon/dungeon_weapon_entity.lua index 4f6c42d7..c407e845 100644 --- a/lua/app/userdata/dungeon/dungeon_weapon_entity.lua +++ b/lua/app/userdata/dungeon/dungeon_weapon_entity.lua @@ -207,4 +207,8 @@ function DungeonWeaponEntity:getChapterFightCount(chapterId) return self.totalChallengeCount[chapterId] or 0 end +function DungeonWeaponEntity:getChallengeHpCost() + return GFunc.getConstReward("dungeon_equip_cost") +end + return DungeonWeaponEntity \ No newline at end of file From b581328fd674e8efc6afbc7ce01aac77f52a0aee Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Thu, 3 Aug 2023 11:08:19 +0800 Subject: [PATCH 23/44] =?UTF-8?q?=E6=AD=A6=E5=99=A8=E5=89=AF=E6=9C=AC?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=BD=93=E5=8A=9B=E6=B6=88=E8=80=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/config/chapter_dungeon_equip.lua | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/lua/app/config/chapter_dungeon_equip.lua b/lua/app/config/chapter_dungeon_equip.lua index b9b2b4ab..0ee49470 100644 --- a/lua/app/config/chapter_dungeon_equip.lua +++ b/lua/app/config/chapter_dungeon_equip.lua @@ -8,7 +8,11 @@ local chapter_dungeon_equip = { 1 }, ["monster"]={ - 101, + 106, + 206, + 306, + 406, + 506 }, ["first_reward"]={ ["type"]=1, @@ -77,7 +81,11 @@ local chapter_dungeon_equip = { 2 }, ["monster"]={ - 101, + 606, + 706, + 806, + 906, + 1006 }, ["first_reward"]={ ["type"]=1, @@ -146,7 +154,11 @@ local chapter_dungeon_equip = { 3 }, ["monster"]={ - 101, + 1106, + 1206, + 1306, + 1406, + 1506 }, ["first_reward"]={ ["type"]=1, @@ -229,7 +241,11 @@ local chapter_dungeon_equip = { 4 }, ["monster"]={ - 101, + 1606, + 1706, + 1806, + 1906, + 2006 }, ["first_reward"]={ ["type"]=1, From 66838d4dad1f9f8467f91fa557b8b8e3fccbd5f5 Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Thu, 3 Aug 2023 11:30:10 +0800 Subject: [PATCH 24/44] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=B8=8A=E6=8A=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/ui/shop/shop_comp.lua | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/lua/app/ui/shop/shop_comp.lua b/lua/app/ui/shop/shop_comp.lua index f15219ef..3936fd91 100644 --- a/lua/app/ui/shop/shop_comp.lua +++ b/lua/app/ui/shop/shop_comp.lua @@ -237,6 +237,27 @@ function ShopComp:postEnterPage() if actId and actId > 0 then BIReport:postPayUIShow(BIReport.GIFT_TYPE.COIN_GIFT, actId) end + -- 竞技场 + local actId = DataManager.ArenaData:getGiftId() + if actId and actId > 0 then + BIReport:postPayUIShow(BIReport.GIFT_TYPE.ARENA_GIFT, actId) + end + -- 武器副本 + local actIdInfo = DataManager.ShopData:getGift(PayManager.PURCHARSE_ACT_TYPE.WEAPON_GIFT) + if actIdInfo then + local actGiftId = actIdInfo.id + if actGiftId and actGiftId > 0 then + BIReport:postPayUIShow(BIReport.GIFT_TYPE.WEAPON_GIFT, actGiftId) + end + end + -- 防具副本 + local actIdInfo = DataManager.ShopData:getGift(PayManager.PURCHARSE_ACT_TYPE.ARMOR_GIFT) + if actIdInfo then + local actGiftId = actIdInfo.id + if actGiftId and actGiftId > 0 then + BIReport:postPayUIShow(BIReport.GIFT_TYPE.ARMOR_GIFT, actGiftId) + end + end else -- 找到所有的钻石项目 BIReport:postPayUIShow(BIReport.GIFT_TYPE.MALL_TREASURE, 2) -- 约定上报第一个付费项 From a47f18db0712880bb6465a684a0559501eebbdfb Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Thu, 3 Aug 2023 14:20:16 +0800 Subject: [PATCH 25/44] =?UTF-8?q?=E6=97=A5=E5=BF=97=E4=B8=8A=E6=8A=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/common/bi_report.lua | 10 +++++++++- lua/app/module/activity/activity_manager.lua | 4 ++-- lua/app/module/arena/arena_manager.lua | 4 ++-- lua/app/module/shop/shop_manager.lua | 18 ++++++++--------- lua/app/ui/activity/gold_pig/gold_pig_ui.lua | 5 +++-- lua/app/ui/arena/arena_pop_gift_ui.lua | 3 ++- lua/app/ui/arena/bounty_main_ui.lua | 2 +- lua/app/ui/bounty/bounty_main_ui.lua | 2 +- lua/app/ui/fund/growth_fund_ui.lua | 2 +- .../cell/side_bar_arena_gift_cell.lua | 2 +- .../cell/side_bar_armor_gift_cell.lua | 2 +- .../cell/side_bar_beginner_gift_cell.lua | 2 +- .../cell/side_bar_first_recharge_cell.lua | 2 +- .../main_city/cell/side_bar_gold_pig_cell.lua | 2 +- .../cell/side_bar_grow_up_gift_cell.lua | 2 +- .../cell/side_bar_introduct_gift_cell.lua | 2 +- .../cell/side_bar_weapon_gift_cell.lua | 2 +- lua/app/ui/main_city/component/main_comp.lua | 7 ++++++- lua/app/ui/main_city/main_city_ui.lua | 20 +++++++++++++------ lua/app/ui/shop/cell/arena_gift_sell_cell.lua | 2 +- lua/app/ui/shop/first_recharge_pop_ui.lua | 5 +++-- lua/app/ui/shop/gift_pop_ui.lua | 3 ++- lua/app/ui/shop/introduct_pop_ui.lua | 5 +++-- lua/app/ui/shop/shop_comp.lua | 18 ++++++++--------- lua/app/userdata/shop/shop_data.lua | 2 +- 25 files changed, 77 insertions(+), 51 deletions(-) diff --git a/lua/app/common/bi_report.lua b/lua/app/common/bi_report.lua index 6efda7e7..c1519b1c 100644 --- a/lua/app/common/bi_report.lua +++ b/lua/app/common/bi_report.lua @@ -250,6 +250,13 @@ BIReport.ARENA_OPT_TYPE = { SETTLEMENT = "Settlement", } +BIReport.PAY_UI_SHOW_TYPE = { + LOGIN_POP = "LoginPop", + TRIGGER_POP = "TriggerPop", + CLICK_SHOW = "ClickShow", + SHOP_SHOW = "ShopShow", +} + -- b6 local EVENT_NAME_EXIT = "client_exit" local EVENT_NAME_FIGHT = "client_fight" @@ -1391,10 +1398,11 @@ end -- 内购相关界面展示,包括弹出/主动打开(如果是打开商城页签,钻石礼包只上报id2,章节礼包只上报首个可购买章节id) -- giftType为BIReport.GIFT_TYPE -function BIReport:postPayUIShow(giftType, giftId) +function BIReport:postPayUIShow(giftType, giftId, showType) local args = { gift_type = giftType, gift_id = giftId, + show_type = showType } self:report(EVENT_NAME_PAY_UI_SHOW, args) end diff --git a/lua/app/module/activity/activity_manager.lua b/lua/app/module/activity/activity_manager.lua index 6ff79b79..9e85fbdd 100644 --- a/lua/app/module/activity/activity_manager.lua +++ b/lua/app/module/activity/activity_manager.lua @@ -1,7 +1,7 @@ local ActivityManager = class("ActivityManager", BaseModule) -function ActivityManager:showGoldPigUI() - UIManager:showUI("app/ui/activity/gold_pig/gold_pig_ui") +function ActivityManager:showGoldPigUI(showType) + UIManager:showUI("app/ui/activity/gold_pig/gold_pig_ui", {showType = showType}) end function ActivityManager:buyGoldPig(id) diff --git a/lua/app/module/arena/arena_manager.lua b/lua/app/module/arena/arena_manager.lua index 82cec391..dcaeb600 100644 --- a/lua/app/module/arena/arena_manager.lua +++ b/lua/app/module/arena/arena_manager.lua @@ -225,8 +225,8 @@ function ArenaManager:rspAdBoxReward(result) end end -function ArenaManager:showGiftPopUI() - UIManager:showUI("app/ui/arena/arena_pop_gift_ui") +function ArenaManager:showGiftPopUI(showType) + UIManager:showUI("app/ui/arena/arena_pop_gift_ui", {showType = showType}) end return ArenaManager \ No newline at end of file diff --git a/lua/app/module/shop/shop_manager.lua b/lua/app/module/shop/shop_manager.lua index d5e5d6d7..44c63e4c 100644 --- a/lua/app/module/shop/shop_manager.lua +++ b/lua/app/module/shop/shop_manager.lua @@ -32,40 +32,40 @@ function ShopManager:showBoxLevelUpUI(params) end -- 触发弹窗礼包 -function ShopManager:triggerGiftPopUI(actType, actId) +function ShopManager:triggerGiftPopUI(actType, actId, showType) -- 入门礼包不在通用触发条件内 if (actType == PayManager.PURCHARSE_TYPE.ACT_GIFT and actId == GConst.ShopConst.INTRODUCT_GIFT_ID) then - self:showGiftPopUI(actType, actId, false) + self:showGiftPopUI(actType, actId, false, showType) DataManager.ShopData:removePopUpGift(actType, actId) else if ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.ACT_GIFT_SHOW_OPEN, true) then - self:showGiftPopUI(actType, actId, false) + self:showGiftPopUI(actType, actId, false, showType) DataManager.ShopData:removePopUpGift(actType, actId) end end end -function ShopManager:showGiftPopUI(actType, actId, onlySelf) +function ShopManager:showGiftPopUI(actType, actId, onlySelf, showType) if GFunc.isShenhe() then return end if actType == PayManager.PURCHARSE_TYPE.ACT_GIFT and actId == GConst.ShopConst.FIRST_RECHARGE_ID then - UIManager:showUI("app/ui/shop/first_recharge_pop_ui") + UIManager:showUI("app/ui/shop/first_recharge_pop_ui", {showType = showType}) elseif actType == PayManager.PURCHARSE_TYPE.ACT_GIFT and actId == GConst.ShopConst.INTRODUCT_GIFT_ID then - UIManager:showUI("app/ui/shop/introduct_pop_ui") + UIManager:showUI("app/ui/shop/introduct_pop_ui", {showType = showType}) else - UIManager:showUI("app/ui/shop/gift_pop_ui", {type = actType, id = actId, onlySelf = onlySelf}) + UIManager:showUI("app/ui/shop/gift_pop_ui", {type = actType, id = actId, onlySelf = onlySelf, showType = showType}) end end -- 触发金币弹窗礼包 function ShopManager:triggerCoinGiftPopUI(actId) - self:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, actId) + self:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, actId, BIReport.PAY_UI_SHOW_TYPE.TRIGGER_POP) end -- 触发成长礼包 function ShopManager:triggerGrowUpGiftPopUI(actId) - self:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.GROW_UP_GIFT_NEW, actId) + self:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.GROW_UP_GIFT_NEW, actId, BIReport.PAY_UI_SHOW_TYPE.TRIGGER_POP) end -- 购买每日特惠商品 diff --git a/lua/app/ui/activity/gold_pig/gold_pig_ui.lua b/lua/app/ui/activity/gold_pig/gold_pig_ui.lua index c2b5221a..d221115d 100644 --- a/lua/app/ui/activity/gold_pig/gold_pig_ui.lua +++ b/lua/app/ui/activity/gold_pig/gold_pig_ui.lua @@ -8,8 +8,9 @@ function GoldPigUI:getPrefabPath() return "assets/prefabs/ui/activity/gold_pig/gold_pig_ui.prefab" end -function GoldPigUI:ctor() +function GoldPigUI:ctor(params) self.goldPigId = DataManager.GoldPigData:getId() + self.showType = params.showType end function GoldPigUI:onLoadRootComplete() @@ -55,7 +56,7 @@ function GoldPigUI:onLoadRootComplete() end end) - BIReport:postPayUIShow(BIReport.GIFT_TYPE.GOLD_PIG) + BIReport:postPayUIShow(BIReport.GIFT_TYPE.GOLD_PIG, self.goldPigId, self.showType) self.timeTx = uiMap["gold_pig_ui.bg.time_bg.time_tx"] local isFull = DataManager.GoldPigData:getIsFull() diff --git a/lua/app/ui/arena/arena_pop_gift_ui.lua b/lua/app/ui/arena/arena_pop_gift_ui.lua index 49269e54..5b1468ee 100644 --- a/lua/app/ui/arena/arena_pop_gift_ui.lua +++ b/lua/app/ui/arena/arena_pop_gift_ui.lua @@ -14,6 +14,7 @@ function GiftPopUI:ctor(params) self.actType = PayManager.PURCHARSE_TYPE.ACT_GIFT self.actId = DataManager.ArenaData:getGiftId() + self.showType = params.showType DataManager.ArenaData:cleaShowPopGift() end @@ -103,7 +104,7 @@ function GiftPopUI:refresh() -- 上报 local giftType = PayManager:getGiftType(self.actType, self.actId) - BIReport:postPayUIShow(giftType, self.actId) + BIReport:postPayUIShow(giftType, self.actId, self.showType) self:updateTime() end diff --git a/lua/app/ui/arena/bounty_main_ui.lua b/lua/app/ui/arena/bounty_main_ui.lua index e2a43b79..bd21990a 100644 --- a/lua/app/ui/arena/bounty_main_ui.lua +++ b/lua/app/ui/arena/bounty_main_ui.lua @@ -63,7 +63,7 @@ function BountyMainUI:onLoadRootComplete() end, 1) self:updateTime() - BIReport:postPayUIShow(BIReport.GIFT_TYPE.ARENA_BOUNTY) + BIReport:postPayUIShow(BIReport.GIFT_TYPE.ARENA_BOUNTY, nil, BIReport.PAY_UI_SHOW_TYPE.CLICK_SHOW) end function BountyMainUI:initTitle() diff --git a/lua/app/ui/bounty/bounty_main_ui.lua b/lua/app/ui/bounty/bounty_main_ui.lua index ed271ad4..5cddd491 100644 --- a/lua/app/ui/bounty/bounty_main_ui.lua +++ b/lua/app/ui/bounty/bounty_main_ui.lua @@ -63,7 +63,7 @@ function BountyMainUI:onLoadRootComplete() end, 1) self:updateTime() - BIReport:postPayUIShow(BIReport.GIFT_TYPE.BOUNTY) + BIReport:postPayUIShow(BIReport.GIFT_TYPE.BOUNTY, nil, BIReport.PAY_UI_SHOW_TYPE.CLICK_SHOW) end function BountyMainUI:initTitle() diff --git a/lua/app/ui/fund/growth_fund_ui.lua b/lua/app/ui/fund/growth_fund_ui.lua index c2104ca9..901d4fd5 100644 --- a/lua/app/ui/fund/growth_fund_ui.lua +++ b/lua/app/ui/fund/growth_fund_ui.lua @@ -69,7 +69,7 @@ function GrowthFundUI:onLoadRootComplete() self:initPayBtns() self:initRewards() self:bindData() - BIReport:postPayUIShow(BIReport.GIFT_TYPE.GROWTH_FUND) + BIReport:postPayUIShow(BIReport.GIFT_TYPE.GROWTH_FUND, nil, BIReport.PAY_UI_SHOW_TYPE.CLICK_SHOW) end function GrowthFundUI:initTitle() diff --git a/lua/app/ui/main_city/cell/side_bar_arena_gift_cell.lua b/lua/app/ui/main_city/cell/side_bar_arena_gift_cell.lua index ee860b82..809877a3 100644 --- a/lua/app/ui/main_city/cell/side_bar_arena_gift_cell.lua +++ b/lua/app/ui/main_city/cell/side_bar_arena_gift_cell.lua @@ -18,7 +18,7 @@ function SideBarArenaGiftCell:getSpineName() end function SideBarArenaGiftCell:onClick() - ModuleManager.ArenaManager:showGiftPopUI() + ModuleManager.ArenaManager:showGiftPopUI(BIReport.PAY_UI_SHOW_TYPE.CLICK_SHOW) end function SideBarArenaGiftCell:getIsShowRedPoint() diff --git a/lua/app/ui/main_city/cell/side_bar_armor_gift_cell.lua b/lua/app/ui/main_city/cell/side_bar_armor_gift_cell.lua index e19f4155..8e19d62e 100644 --- a/lua/app/ui/main_city/cell/side_bar_armor_gift_cell.lua +++ b/lua/app/ui/main_city/cell/side_bar_armor_gift_cell.lua @@ -13,7 +13,7 @@ end function SideBarArmorGiftCell:onClick() local gift = DataManager.ShopData:getGift(GIFT_TYPE) if gift then - ModuleManager.ShopManager:showGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, gift.id, true) + ModuleManager.ShopManager:showGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, gift.id, true, BIReport.PAY_UI_SHOW_TYPE.CLICK_SHOW) end end diff --git a/lua/app/ui/main_city/cell/side_bar_beginner_gift_cell.lua b/lua/app/ui/main_city/cell/side_bar_beginner_gift_cell.lua index ab8fcf0d..7388fb47 100644 --- a/lua/app/ui/main_city/cell/side_bar_beginner_gift_cell.lua +++ b/lua/app/ui/main_city/cell/side_bar_beginner_gift_cell.lua @@ -14,7 +14,7 @@ function SideBarBeginnerGiftCell:getSpineName() end function SideBarBeginnerGiftCell:onClick() - ModuleManager.ShopManager:showGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, GConst.ShopConst.BEGINNER_GIFT_ID, true) + ModuleManager.ShopManager:showGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, GConst.ShopConst.BEGINNER_GIFT_ID, true, BIReport.PAY_UI_SHOW_TYPE.CLICK_SHOW) end function SideBarBeginnerGiftCell:getIsShowRedPoint() diff --git a/lua/app/ui/main_city/cell/side_bar_first_recharge_cell.lua b/lua/app/ui/main_city/cell/side_bar_first_recharge_cell.lua index 38ffd9ed..f56e887e 100644 --- a/lua/app/ui/main_city/cell/side_bar_first_recharge_cell.lua +++ b/lua/app/ui/main_city/cell/side_bar_first_recharge_cell.lua @@ -18,7 +18,7 @@ function SideBarFirstRechargeCell:getIsShowRedPoint() end function SideBarFirstRechargeCell:onClick() - ModuleManager.ShopManager:showGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, GConst.ShopConst.FIRST_RECHARGE_ID, true) + ModuleManager.ShopManager:showGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, GConst.ShopConst.FIRST_RECHARGE_ID, true, BIReport.PAY_UI_SHOW_TYPE.CLICK_SHOW) end return SideBarFirstRechargeCell \ No newline at end of file diff --git a/lua/app/ui/main_city/cell/side_bar_gold_pig_cell.lua b/lua/app/ui/main_city/cell/side_bar_gold_pig_cell.lua index 11e4782c..00c26405 100644 --- a/lua/app/ui/main_city/cell/side_bar_gold_pig_cell.lua +++ b/lua/app/ui/main_city/cell/side_bar_gold_pig_cell.lua @@ -14,7 +14,7 @@ function SideBarGoldPigCell:getSpineName() end function SideBarGoldPigCell:onClick() - ModuleManager.ActivityManager:showGoldPigUI() + ModuleManager.ActivityManager:showGoldPigUI(BIReport.PAY_UI_SHOW_TYPE.CLICK_SHOW) end function SideBarGoldPigCell:onRefresh() diff --git a/lua/app/ui/main_city/cell/side_bar_grow_up_gift_cell.lua b/lua/app/ui/main_city/cell/side_bar_grow_up_gift_cell.lua index 09eabbb1..c3beb0f0 100644 --- a/lua/app/ui/main_city/cell/side_bar_grow_up_gift_cell.lua +++ b/lua/app/ui/main_city/cell/side_bar_grow_up_gift_cell.lua @@ -12,7 +12,7 @@ end function SideBarGrowUpGiftCell:onClick() local gift = DataManager.ShopData:getGrowUpGift() if gift then - ModuleManager.ShopManager:showGiftPopUI(PayManager.PURCHARSE_TYPE.GROW_UP_GIFT_NEW, gift.current_grow_up_id, true) + ModuleManager.ShopManager:showGiftPopUI(PayManager.PURCHARSE_TYPE.GROW_UP_GIFT_NEW, gift.current_grow_up_id, true, BIReport.PAY_UI_SHOW_TYPE.CLICK_SHOW) end end diff --git a/lua/app/ui/main_city/cell/side_bar_introduct_gift_cell.lua b/lua/app/ui/main_city/cell/side_bar_introduct_gift_cell.lua index 5907dfa7..0784f4d4 100644 --- a/lua/app/ui/main_city/cell/side_bar_introduct_gift_cell.lua +++ b/lua/app/ui/main_city/cell/side_bar_introduct_gift_cell.lua @@ -14,7 +14,7 @@ function SideBarIntroductGiftCell:getSpineName() end function SideBarIntroductGiftCell:onClick() - ModuleManager.ShopManager:showGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, GConst.ShopConst.INTRODUCT_GIFT_ID, true) + ModuleManager.ShopManager:showGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, GConst.ShopConst.INTRODUCT_GIFT_ID, true, BIReport.PAY_UI_SHOW_TYPE.CLICK_SHOW) end function SideBarIntroductGiftCell:getIsShowRedPoint() diff --git a/lua/app/ui/main_city/cell/side_bar_weapon_gift_cell.lua b/lua/app/ui/main_city/cell/side_bar_weapon_gift_cell.lua index 6c7191a4..4759a55f 100644 --- a/lua/app/ui/main_city/cell/side_bar_weapon_gift_cell.lua +++ b/lua/app/ui/main_city/cell/side_bar_weapon_gift_cell.lua @@ -13,7 +13,7 @@ end function SideBarWeaponGiftCell:onClick() local gift = DataManager.ShopData:getGift(GIFT_TYPE) if gift then - ModuleManager.ShopManager:showGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, gift.id, true) + ModuleManager.ShopManager:showGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, gift.id, true, BIReport.PAY_UI_SHOW_TYPE.CLICK_SHOW) end end diff --git a/lua/app/ui/main_city/component/main_comp.lua b/lua/app/ui/main_city/component/main_comp.lua index 99e93112..fe352ddc 100644 --- a/lua/app/ui/main_city/component/main_comp.lua +++ b/lua/app/ui/main_city/component/main_comp.lua @@ -85,7 +85,12 @@ function MainComp:refreshModule(selectModule) if self.curModuleType == GConst.MainCityConst.MAIN_MODULE.ARENA then if DataManager.ArenaData:needShowPopGift() and DataManager.ArenaData:getGiftId() then - ModuleManager.ArenaManager:showGiftPopUI() + local showType = BIReport.PAY_UI_SHOW_TYPE.TRIGGER_POP + local mainUI = UIManager:getUIByIndex(UIManager.UI_PATH.MAINCITY_UI) + if mainUI and mainUI.isFirstEnter then + showType = BIReport.PAY_UI_SHOW_TYPE.LOGIN_POP + end + ModuleManager.ArenaManager:showGiftPopUI(showType) end elseif self.curModuleType == GConst.MainCityConst.MAIN_MODULE.DUNGEON then if DataManager.TutorialData:getIsInTutorial() then diff --git a/lua/app/ui/main_city/main_city_ui.lua b/lua/app/ui/main_city/main_city_ui.lua index a15d2c29..d378a556 100644 --- a/lua/app/ui/main_city/main_city_ui.lua +++ b/lua/app/ui/main_city/main_city_ui.lua @@ -1020,7 +1020,11 @@ function MainCityUI:checkMainPop() -- 金猪满了后下次进主城要弹出来 if DataManager.GoldPigData:getPopFlag() then DataManager.GoldPigData:markPop() - ModuleManager.ActivityManager:showGoldPigUI() + local showType = BIReport.PAY_UI_SHOW_TYPE.TRIGGER_POP + if self.isFirstEnter then + showType = BIReport.PAY_UI_SHOW_TYPE.LOGIN_POP + end + ModuleManager.ActivityManager:showGoldPigUI(showType) end end @@ -1077,6 +1081,10 @@ end -- 检查礼包(首充(作废)/入门/章节/新手/助力/成长/金币顺序) function MainCityUI:checkGift() + local showType = BIReport.PAY_UI_SHOW_TYPE.TRIGGER_POP + if self.isFirstEnter then + showType = BIReport.PAY_UI_SHOW_TYPE.LOGIN_POP + end -- 审核模式不弹礼包 if GFunc.isShenhe() then return @@ -1143,7 +1151,7 @@ function MainCityUI:checkGift() -- end -- 入门礼包 if introductGiftIds and #introductGiftIds > 0 then - ModuleManager.ShopManager:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, introductGiftIds[1]) + ModuleManager.ShopManager:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, introductGiftIds[1], showType) return true end ---- 试玩弹窗在章节礼包前 @@ -1154,22 +1162,22 @@ function MainCityUI:checkGift() end -- 章节礼包 if chapterPopUpGifts and #chapterPopUpGifts > 0 then - ModuleManager.ShopManager:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.CHAPTER_GIFT, chapterPopUpGifts[1]) + ModuleManager.ShopManager:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.CHAPTER_GIFT, chapterPopUpGifts[1], showType) return true end -- 新手礼包 if beginnerGiftIds and #beginnerGiftIds > 0 then - ModuleManager.ShopManager:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, beginnerGiftIds[1]) + ModuleManager.ShopManager:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, beginnerGiftIds[1], showType) return true end -- 助力礼包 if levelUpGiftIds and #levelUpGiftIds then - ModuleManager.ShopManager:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, levelUpGiftIds[1]) + ModuleManager.ShopManager:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, levelUpGiftIds[1], showType) return true end -- 成长礼包 if growUpPopUpGifts and #growUpPopUpGifts > 0 then - ModuleManager.ShopManager:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.GROW_UP_GIFT_NEW, growUpPopUpGifts[1]) + ModuleManager.ShopManager:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.GROW_UP_GIFT_NEW, growUpPopUpGifts[1], showType) return true end end diff --git a/lua/app/ui/shop/cell/arena_gift_sell_cell.lua b/lua/app/ui/shop/cell/arena_gift_sell_cell.lua index e42274fa..a6a5d683 100644 --- a/lua/app/ui/shop/cell/arena_gift_sell_cell.lua +++ b/lua/app/ui/shop/cell/arena_gift_sell_cell.lua @@ -98,7 +98,7 @@ end function ArenaGiftSellCell:onClickGift(id) -- PayManager:purchasePackage(id, PayManager.PURCHARSE_TYPE.ACT_GIFT) - ModuleManager.ArenaManager:showGiftPopUI() + ModuleManager.ArenaManager:showGiftPopUI(BIReport.PAY_UI_SHOW_TYPE.CLICK_SHOW) end return ArenaGiftSellCell \ No newline at end of file diff --git a/lua/app/ui/shop/first_recharge_pop_ui.lua b/lua/app/ui/shop/first_recharge_pop_ui.lua index 53452ebe..a1d05882 100644 --- a/lua/app/ui/shop/first_recharge_pop_ui.lua +++ b/lua/app/ui/shop/first_recharge_pop_ui.lua @@ -1,7 +1,8 @@ local FirstRechargePopUI = class("FirstRechargePopUI", BaseUI) local MAX_ITEM_NUM = 3 -function FirstRechargePopUI:ctor() +function FirstRechargePopUI:ctor(params) + self.showType = params.showType end function FirstRechargePopUI:isFullScreen() @@ -49,7 +50,7 @@ function FirstRechargePopUI:onLoadRootComplete() self:refresh() -- 上报 - BIReport:postPayUIShow(BIReport.GIFT_TYPE.FIRST_RECHARGE, GConst.ShopConst.FIRST_RECHARGE_ID) + BIReport:postPayUIShow(BIReport.GIFT_TYPE.FIRST_RECHARGE, GConst.ShopConst.FIRST_RECHARGE_ID, self.showType) end function FirstRechargePopUI:_bind() diff --git a/lua/app/ui/shop/gift_pop_ui.lua b/lua/app/ui/shop/gift_pop_ui.lua index 38b9b365..ffe14e45 100644 --- a/lua/app/ui/shop/gift_pop_ui.lua +++ b/lua/app/ui/shop/gift_pop_ui.lua @@ -47,6 +47,7 @@ function GiftPopUI:ctor(params) self.actType = params.type self.actId = params.id self.onlySelf = params.onlySelf -- 有此标记时 关闭直接关闭界面 + self.showType = params.showType self.buyCount = DataManager.ShopData:getGiftBoughtNum(self.actType, self.actId) -- 触发时该礼包的购买数量 end @@ -178,7 +179,7 @@ function GiftPopUI:refresh(needCheck) -- 上报 local giftType = PayManager:getGiftType(self.actType, self.actId) - BIReport:postPayUIShow(giftType, self.actId) + BIReport:postPayUIShow(giftType, self.actId, self.showType) self:updateTime() end diff --git a/lua/app/ui/shop/introduct_pop_ui.lua b/lua/app/ui/shop/introduct_pop_ui.lua index fbe5623e..73c63875 100644 --- a/lua/app/ui/shop/introduct_pop_ui.lua +++ b/lua/app/ui/shop/introduct_pop_ui.lua @@ -1,7 +1,8 @@ local IntroductPopUI = class("IntroductPopUI", BaseUI) local MAX_ITEM_NUM = 3 -function IntroductPopUI:ctor() +function IntroductPopUI:ctor(params) + self.showType = params.showType end function IntroductPopUI:isFullScreen() @@ -52,7 +53,7 @@ function IntroductPopUI:onLoadRootComplete() self:refresh() -- 上报 - BIReport:postPayUIShow(BIReport.GIFT_TYPE.INTRODUCTORY_GIFT, GConst.ShopConst.INTRODUCT_GIFT_ID) + BIReport:postPayUIShow(BIReport.GIFT_TYPE.INTRODUCTORY_GIFT, GConst.ShopConst.INTRODUCT_GIFT_ID, self.showType) end function IntroductPopUI:_bind() diff --git a/lua/app/ui/shop/shop_comp.lua b/lua/app/ui/shop/shop_comp.lua index 3936fd91..2da48776 100644 --- a/lua/app/ui/shop/shop_comp.lua +++ b/lua/app/ui/shop/shop_comp.lua @@ -214,40 +214,40 @@ function ShopComp:postEnterPage() -- 章节 local actIdList = DataManager.ShopData:getActChapterStoreCanBuyActIds() if actIdList and #actIdList > 0 then - BIReport:postPayUIShow(BIReport.GIFT_TYPE.ACT_CHAPTER_STORE, actIdList[1]) -- 约定上报第一个付费项 + BIReport:postPayUIShow(BIReport.GIFT_TYPE.ACT_CHAPTER_STORE, actIdList[1], BIReport.PAY_UI_SHOW_TYPE.SHOP_SHOW) -- 约定上报第一个付费项 end -- 新手 if not DataManager.ShopData:getBeginnerGiftHasBuy() then - BIReport:postPayUIShow(BIReport.GIFT_TYPE.BEGINNER_GIFT, GConst.ShopConst.BEGINNER_GIFT_ID) + BIReport:postPayUIShow(BIReport.GIFT_TYPE.BEGINNER_GIFT, GConst.ShopConst.BEGINNER_GIFT_ID, BIReport.PAY_UI_SHOW_TYPE.SHOP_SHOW) end -- 助力 local actIdList = DataManager.ShopData:getLevelUpGiftActIds() if actIdList and #actIdList > 0 then for _, id in ipairs(actIdList) do - BIReport:postPayUIShow(BIReport.GIFT_TYPE.LEVEL_UP_GIFT, id) + BIReport:postPayUIShow(BIReport.GIFT_TYPE.LEVEL_UP_GIFT, id, BIReport.PAY_UI_SHOW_TYPE.SHOP_SHOW) end end -- 成长 local act = DataManager.ShopData:getGrowUpGift() if act then - BIReport:postPayUIShow(BIReport.GIFT_TYPE.GROW_UP_GIFT_NEW, act.current_grow_up_id) + BIReport:postPayUIShow(BIReport.GIFT_TYPE.GROW_UP_GIFT_NEW, act.current_grow_up_id, BIReport.PAY_UI_SHOW_TYPE.SHOP_SHOW) end -- 金币 local actId = DataManager.ShopData:getValidCoinGiftId() if actId and actId > 0 then - BIReport:postPayUIShow(BIReport.GIFT_TYPE.COIN_GIFT, actId) + BIReport:postPayUIShow(BIReport.GIFT_TYPE.COIN_GIFT, actId, BIReport.PAY_UI_SHOW_TYPE.SHOP_SHOW) end -- 竞技场 local actId = DataManager.ArenaData:getGiftId() if actId and actId > 0 then - BIReport:postPayUIShow(BIReport.GIFT_TYPE.ARENA_GIFT, actId) + BIReport:postPayUIShow(BIReport.GIFT_TYPE.ARENA_GIFT, actId, BIReport.PAY_UI_SHOW_TYPE.SHOP_SHOW) end -- 武器副本 local actIdInfo = DataManager.ShopData:getGift(PayManager.PURCHARSE_ACT_TYPE.WEAPON_GIFT) if actIdInfo then local actGiftId = actIdInfo.id if actGiftId and actGiftId > 0 then - BIReport:postPayUIShow(BIReport.GIFT_TYPE.WEAPON_GIFT, actGiftId) + BIReport:postPayUIShow(BIReport.GIFT_TYPE.WEAPON_GIFT, actGiftId, BIReport.PAY_UI_SHOW_TYPE.SHOP_SHOW) end end -- 防具副本 @@ -255,12 +255,12 @@ function ShopComp:postEnterPage() if actIdInfo then local actGiftId = actIdInfo.id if actGiftId and actGiftId > 0 then - BIReport:postPayUIShow(BIReport.GIFT_TYPE.ARMOR_GIFT, actGiftId) + BIReport:postPayUIShow(BIReport.GIFT_TYPE.ARMOR_GIFT, actGiftId, BIReport.PAY_UI_SHOW_TYPE.SHOP_SHOW) end end else -- 找到所有的钻石项目 - BIReport:postPayUIShow(BIReport.GIFT_TYPE.MALL_TREASURE, 2) -- 约定上报第一个付费项 + BIReport:postPayUIShow(BIReport.GIFT_TYPE.MALL_TREASURE, 2, BIReport.PAY_UI_SHOW_TYPE.SHOP_SHOW) -- 约定上报第一个付费项 end end diff --git a/lua/app/userdata/shop/shop_data.lua b/lua/app/userdata/shop/shop_data.lua index f58bc69e..2a3a1351 100644 --- a/lua/app/userdata/shop/shop_data.lua +++ b/lua/app/userdata/shop/shop_data.lua @@ -889,7 +889,7 @@ function ShopData:checkPopGift(actGiftType) for _, actId in ipairs(gifts) do local cfgInfo = self:getActGiftConfig()[actId] if cfgInfo and cfgInfo.type == actGiftType then - ModuleManager.ShopManager:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, actId) + ModuleManager.ShopManager:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, actId, BIReport.PAY_UI_SHOW_TYPE.TRIGGER_POP) end end end From bcb336d34499a1a8368addc546b08a78db305d8c Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Thu, 3 Aug 2023 16:09:58 +0800 Subject: [PATCH 26/44] =?UTF-8?q?=E4=B8=8D=E8=BF=87=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../module/battle/controller/battle_base_controller.lua | 8 ++++++-- lua/app/module/battle/helper/battle_formula.lua | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/lua/app/module/battle/controller/battle_base_controller.lua b/lua/app/module/battle/controller/battle_base_controller.lua index 294f157d..d7b59561 100644 --- a/lua/app/module/battle/controller/battle_base_controller.lua +++ b/lua/app/module/battle/controller/battle_base_controller.lua @@ -249,7 +249,7 @@ function BattleBaseController:onLinkChange() local dmgSkillId for index, info in ipairs(sequence) do local entity = self.battleData:getGridEntity(info.posId) - if not mainElementType then + if not mainElementType or not dmgSkillId then local skillId = entity:getSkillId() if not skillId and not mainElementType then mainElementType = entity:getElementType() @@ -3075,9 +3075,13 @@ function BattleBaseController:calExpectedInjury(mainElementType, count, skillId) return 0 end local atkUnitComp = atkCompMap[mainElementType] - if not atkUnitComp then + if mainElementType and not atkUnitComp then return 0 end + if not mainElementType or not atkUnitComp then + count = 0 + atkUnitComp = self:getCurActionTeam():getMainUnit() + end local dmg = BattleFormula:getExpectedDamageResult(atkUnitComp, count, self:getCurOtherActionUnitComp(), skillId, atkCompMap) return dmg end diff --git a/lua/app/module/battle/helper/battle_formula.lua b/lua/app/module/battle/helper/battle_formula.lua index de66c004..6db1e3fb 100644 --- a/lua/app/module/battle/helper/battle_formula.lua +++ b/lua/app/module/battle/helper/battle_formula.lua @@ -30,7 +30,7 @@ function BattleFormula:getExpectedDamageResult(unitComp, count, targetUnitComp, local atk = atkCompMap[matchType].unitEntity:getAtk() local dmg = 0 for _, effect in ipairs(skillConfig.effect) do - local buffConfig = ConfigManager:getConfigWithOtherKey("buff", effect.type) + local buffConfig = ConfigManager:getConfigWithOtherKey("buff", "name")[effect.type] if buffConfig and buffConfig.formula == 1 then -- 伤害公式 dmg = dmg + effect.num * atk end From 5922e927a4a3279078d9c3655cdfd458176ec21f Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Thu, 3 Aug 2023 16:23:53 +0800 Subject: [PATCH 27/44] bug --- lua/app/module/battle/helper/battle_formula.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/app/module/battle/helper/battle_formula.lua b/lua/app/module/battle/helper/battle_formula.lua index 6db1e3fb..6d12373b 100644 --- a/lua/app/module/battle/helper/battle_formula.lua +++ b/lua/app/module/battle/helper/battle_formula.lua @@ -36,7 +36,7 @@ function BattleFormula:getExpectedDamageResult(unitComp, count, targetUnitComp, end end local coefficient = math.max(DEFAULT_FACTOR - targetUnitComp.unitEntity:getDecDmg(atkMatchType), 0) - result = result + (dmg * coefficient // DEFAULT_FACTOR) + result = result + (dmg * coefficient // DEFAULT_FACTOR) // DEFAULT_FACTOR end end end From fdfeae8819f8e6d55d5538287b53b0554b72ce43 Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Thu, 3 Aug 2023 16:53:47 +0800 Subject: [PATCH 28/44] =?UTF-8?q?bug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/ui/tips/battle_board_skill_tips.lua | 2 +- lua/app/userdata/battle/skill/battle_board_skill_entity.lua | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lua/app/ui/tips/battle_board_skill_tips.lua b/lua/app/ui/tips/battle_board_skill_tips.lua index 297873dc..ee27bdf2 100644 --- a/lua/app/ui/tips/battle_board_skill_tips.lua +++ b/lua/app/ui/tips/battle_board_skill_tips.lua @@ -48,7 +48,7 @@ function BattleBoardSkillTips:onLoadRootComplete() self.originLocalPosition = tipsBgTransform.localPosition self.bg:addClickListener(function() - local cfg = ConfigManager:getConfig("skill")[self.boardSkillEntity:getSkillId()] + local cfg = ConfigManager:getConfig("skill")[self.boardSkillEntity:getOriginId()] if cfg.buff_id and #cfg.buff_id > 0 then ModuleManager.TipsManager:showSkillTips(self.bg, cfg.buff_id) end diff --git a/lua/app/userdata/battle/skill/battle_board_skill_entity.lua b/lua/app/userdata/battle/skill/battle_board_skill_entity.lua index ff7fc749..d6006f28 100644 --- a/lua/app/userdata/battle/skill/battle_board_skill_entity.lua +++ b/lua/app/userdata/battle/skill/battle_board_skill_entity.lua @@ -15,6 +15,7 @@ function BattleBoardSkillEntity:ctor(skillId, side) self.skillEffectNumAdd = {} -- 技能效果参数增加 type = 7 用于技能替换时生效 self.skillRoundAdd = {} -- 技能效果回合增加 type = 8 用于技能替换时生效 self.skillRatioAdd = {} -- 技能效果概率增加 type = 16 用于技能替换时生效 + self.originSkillId = skillId self.upSkillIdMap = {} self.getUpSkillKind = 0 @@ -51,6 +52,10 @@ function BattleBoardSkillEntity:getUnlockId() return self.unlockId end +function BattleBoardSkillEntity:getOriginId() + return self.originSkillId or self:getSkillId() +end + function BattleBoardSkillEntity:getNeedEnergy() if not self.config then return 1 From 5f2269f687730b4a252be23815ff216ac11f0e19 Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Thu, 3 Aug 2023 18:10:35 +0800 Subject: [PATCH 29/44] =?UTF-8?q?=E4=BB=98=E8=B4=B9=E9=A1=B9=E4=B8=8A?= =?UTF-8?q?=E6=8A=A5=E5=BC=82=E5=B8=B8=E9=97=AE=E9=A2=98=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/userdata/player/player_data.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/app/userdata/player/player_data.lua b/lua/app/userdata/player/player_data.lua index 083754da..0515c52b 100644 --- a/lua/app/userdata/player/player_data.lua +++ b/lua/app/userdata/player/player_data.lua @@ -23,7 +23,7 @@ function PlayerData:init(data) if stat.pay_counts then for id, count in pairs(stat.pay_counts) do if RECHARGE_CFG[id] then - self.data.payAmount = self.data.payAmount + (RECHARGE_CFG[id].price or 0) + self.data.payAmount = self.data.payAmount + (RECHARGE_CFG[id].price or 0) * count self.data.payCount = self.data.payCount + count end end From 84e1e14d7956077b0925752a2f097263d0f31892 Mon Sep 17 00:00:00 2001 From: Fang Date: Fri, 4 Aug 2023 10:53:00 +0800 Subject: [PATCH 30/44] =?UTF-8?q?=E8=A3=85=E5=A4=87=E6=9D=90=E6=96=99?= =?UTF-8?q?=E5=89=AF=E6=9C=AC=E6=89=AB=E8=8D=A1=E6=8E=92=E5=BA=8F=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/config/arena_rank.lua | 72 +++++++++++++++--------------- lua/app/config/skill.lua | 3 -- lua/app/config/skill_rogue.lua | 12 +++++ lua/app/config/strings/cn/item.lua | 4 +- lua/app/config/strings/en/item.lua | 9 ++-- lua/app/config/strings/es/item.lua | 9 ++-- lua/app/config/strings/id/item.lua | 9 ++-- lua/app/config/strings/ja/item.lua | 9 ++-- lua/app/config/strings/ko/item.lua | 9 ++-- lua/app/config/strings/pt/item.lua | 9 ++-- lua/app/config/strings/th/item.lua | 9 ++-- lua/app/config/strings/vi/item.lua | 9 ++-- lua/app/config/strings/zh/item.lua | 9 ++-- lua/app/ui/dungeon/item_get_ui.lua | 3 -- 14 files changed, 104 insertions(+), 71 deletions(-) diff --git a/lua/app/config/arena_rank.lua b/lua/app/config/arena_rank.lua index 87b1a066..ce390927 100644 --- a/lua/app/config/arena_rank.lua +++ b/lua/app/config/arena_rank.lua @@ -1047,8 +1047,8 @@ local arena_rank = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=1, ["num_for_nothing"]="Vw==" } @@ -1221,8 +1221,8 @@ local arena_rank = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=1, ["num_for_nothing"]="Vw==" } @@ -1395,8 +1395,8 @@ local arena_rank = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=2, ["num_for_nothing"]="VA==" } @@ -1569,8 +1569,8 @@ local arena_rank = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=3, ["num_for_nothing"]="VQ==" } @@ -1743,8 +1743,8 @@ local arena_rank = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=4, ["num_for_nothing"]="Ug==" } @@ -1917,8 +1917,8 @@ local arena_rank = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=5, ["num_for_nothing"]="Uw==" } @@ -3103,8 +3103,8 @@ local arena_rank = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=1, ["num_for_nothing"]="Vw==" } @@ -3277,8 +3277,8 @@ local arena_rank = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=1, ["num_for_nothing"]="Vw==" } @@ -3451,8 +3451,8 @@ local arena_rank = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=2, ["num_for_nothing"]="VA==" } @@ -3625,8 +3625,8 @@ local arena_rank = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=3, ["num_for_nothing"]="VQ==" } @@ -3799,8 +3799,8 @@ local arena_rank = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=4, ["num_for_nothing"]="Ug==" } @@ -3973,8 +3973,8 @@ local arena_rank = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=5, ["num_for_nothing"]="Uw==" } @@ -5145,8 +5145,8 @@ local arena_rank = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=1, ["num_for_nothing"]="Vw==" } @@ -5317,8 +5317,8 @@ local arena_rank = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=1, ["num_for_nothing"]="Vw==" } @@ -5489,8 +5489,8 @@ local arena_rank = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=2, ["num_for_nothing"]="VA==" } @@ -5661,8 +5661,8 @@ local arena_rank = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=3, ["num_for_nothing"]="VQ==" } @@ -5833,8 +5833,8 @@ local arena_rank = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=4, ["num_for_nothing"]="Ug==" } @@ -6005,8 +6005,8 @@ local arena_rank = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", + ["id"]=47, + ["id_for_nothing"]="Ug8=", ["num"]=5, ["num_for_nothing"]="Uw==" } diff --git a/lua/app/config/skill.lua b/lua/app/config/skill.lua index 0d3f2a6f..2b719dd7 100644 --- a/lua/app/config/skill.lua +++ b/lua/app/config/skill.lua @@ -5661,9 +5661,6 @@ local skill = { ["fx_self_mirror"]=400066 }, [5200120]={ - ["buff_id"]={ - "shield" - }, ["energy"]=10, ["link"]=1, ["position"]=5, diff --git a/lua/app/config/skill_rogue.lua b/lua/app/config/skill_rogue.lua index e6b302c4..5448cfd7 100644 --- a/lua/app/config/skill_rogue.lua +++ b/lua/app/config/skill_rogue.lua @@ -1832,6 +1832,9 @@ local skill_rogue = { ["icon"]="143" }, [2400102]={ + ["buff_id"]={ + "stun" + }, ["limit_times"]=1, ["weight"]=3000, ["qlt"]=3, @@ -1849,6 +1852,9 @@ local skill_rogue = { ["icon"]="144" }, [2400103]={ + ["buff_id"]={ + "stun" + }, ["unlock"]=2400102, ["cover_unlock"]=2400102, ["limit_times"]=1, @@ -1985,6 +1991,9 @@ local skill_rogue = { ["icon"]="205" }, [2400204]={ + ["buff_id"]={ + "weaken" + }, ["limit_times"]=1, ["weight"]=3000, ["qlt"]=4, @@ -2022,6 +2031,9 @@ local skill_rogue = { ["icon"]="207" }, [2400206]={ + ["buff_id"]={ + "weaken" + }, ["unlock"]=2400204, ["cover_unlock"]=2400206, ["limit_times"]=1, diff --git a/lua/app/config/strings/cn/item.lua b/lua/app/config/strings/cn/item.lua index 4d4469d9..1fea07dd 100644 --- a/lua/app/config/strings/cn/item.lua +++ b/lua/app/config/strings/cn/item.lua @@ -172,8 +172,8 @@ local item = { ["desc"]="开启后可获得以下材料" }, [44]={ - ["name"]="勇气洋葱头2", - ["desc"]="S1竞技战令头像,愿你像洋葱头勇往直前!" + ["name"]="刀妹锋芒", + ["desc"]="S2竞技战令头像,刀起刀落胜利就来了。" }, [45]={ ["name"]="S2赛季白银头像框", diff --git a/lua/app/config/strings/en/item.lua b/lua/app/config/strings/en/item.lua index 78c36733..255e8b2e 100644 --- a/lua/app/config/strings/en/item.lua +++ b/lua/app/config/strings/en/item.lua @@ -172,13 +172,16 @@ local item = { ["desc"]="Open to obtain following materials" }, [44]={ - + ["name"]="Blade Maid's Edge", + ["desc"]="S2 Arena Battle Pass Avatar. Victory comes as blades dance." }, [45]={ - + ["name"]="S2 Silver Avatar Frame", + ["desc"]="S2 Silver Arena Avatar Frame. Proof of your strength." }, [46]={ - + ["name"]="S2 Gold Avatar Frame", + ["desc"]="S2 Gold Arena Avatar Frame, shining with heroic radiance." }, [47]={ diff --git a/lua/app/config/strings/es/item.lua b/lua/app/config/strings/es/item.lua index a68aaf5d..e7060593 100644 --- a/lua/app/config/strings/es/item.lua +++ b/lua/app/config/strings/es/item.lua @@ -172,13 +172,16 @@ local item = { ["desc"]="Abre para obtener los siguientes materiales" }, [44]={ - + ["name"]="Filo de Chica con Daga", + ["desc"]="Avatar de Pase de Batalla de Arena S2. La victoria llega entre cuchilladas." }, [45]={ - + ["name"]="Marco de avatar de plata Temporada S2", + ["desc"]="Marco de avatar de plata de Arena S2, prueba de fuerza." }, [46]={ - + ["name"]="Marco de avatar de oro Temporada S2", + ["desc"]="Marco de avatar de oro de Arena S1, gloria del héroe." }, [47]={ diff --git a/lua/app/config/strings/id/item.lua b/lua/app/config/strings/id/item.lua index e00a26fc..c6f47c76 100644 --- a/lua/app/config/strings/id/item.lua +++ b/lua/app/config/strings/id/item.lua @@ -172,13 +172,16 @@ local item = { ["desc"]="Buka untuk mendapatkan material berikut:" }, [44]={ - + ["name"]="Tombak Gadis Pedang", + ["desc"]="Avatar Battle Pass Arena S2. Kemenangan datang saat pedang diayunkan." }, [45]={ - + ["name"]="Bingkai Avatar Silver Musim S2", + ["desc"]="Bingkai Avatar Silver Arena S2. Bukti Kekuatan." }, [46]={ - + ["name"]="Bingkai Avatar Emas Musim S2", + ["desc"]="Bingkai Avatar Emas Arena S2.Pahlawan mulia." }, [47]={ diff --git a/lua/app/config/strings/ja/item.lua b/lua/app/config/strings/ja/item.lua index 5ab34438..1d380036 100644 --- a/lua/app/config/strings/ja/item.lua +++ b/lua/app/config/strings/ja/item.lua @@ -172,13 +172,16 @@ local item = { ["desc"]="開けると、以下の材料を獲得できる" }, [44]={ - + ["name"]="ブレードメイドの活躍", + ["desc"]="S2闘技場戦令アイコン。いつの間にか勝利が訪れる。" }, [45]={ - + ["name"]="S2シーズンシルバーフレーム", + ["desc"]="S2闘技場シルバーフレーム。実力の証。" }, [46]={ - + ["name"]="S2シーズンゴールドフレーム", + ["desc"]="S2闘技場ゴールドフレーム。ヒーローの輝き。" }, [47]={ diff --git a/lua/app/config/strings/ko/item.lua b/lua/app/config/strings/ko/item.lua index 3990267a..137837ef 100644 --- a/lua/app/config/strings/ko/item.lua +++ b/lua/app/config/strings/ko/item.lua @@ -172,13 +172,16 @@ local item = { ["desc"]="오픈 후 다음의 재료를 획득할 수 있습니다." }, [44]={ - + ["name"]="블레이드 엣지", + ["desc"]="S2 아레나 배틀 패스 아이콘, 휘날리는 칼 속에서 승리를 거머쥡니다." }, [45]={ - + ["name"]="S2 시즌 실버 아이콘 프레임", + ["desc"]="S2 아레나 실버 아이콘 프레임, 강인함의 증명입니다." }, [46]={ - + ["name"]="S2 시즌 골드 아이콘 프레임", + ["desc"]="S2 아레나 골드 아이콘 프레임, 영웅의 눈부신 업적입니다." }, [47]={ diff --git a/lua/app/config/strings/pt/item.lua b/lua/app/config/strings/pt/item.lua index 6af1901e..9f826efe 100644 --- a/lua/app/config/strings/pt/item.lua +++ b/lua/app/config/strings/pt/item.lua @@ -172,13 +172,16 @@ local item = { ["desc"]="Concede os seguintes materiais." }, [44]={ - + ["name"]="Gume da Senhorita dos Gumes", + ["desc"]="Avatar da Ordem de Batalha da S2, a vitória vem com um movimento da lâmina." }, [45]={ - + ["name"]="Moldura de Avatar de Prata da S2", + ["desc"]="Moldura de avatar de prata da Arena S2, uma testemunha da força." }, [46]={ - + ["name"]="Moldura de Avatar de Ouro da S2", + ["desc"]="Moldura de avatar de ouro da Arena S2, o brilho de um herói." }, [47]={ diff --git a/lua/app/config/strings/th/item.lua b/lua/app/config/strings/th/item.lua index b2eb2878..2293f510 100644 --- a/lua/app/config/strings/th/item.lua +++ b/lua/app/config/strings/th/item.lua @@ -172,13 +172,16 @@ local item = { ["desc"]="หลังเปิดจะได้รับวัสดุต่อไปนี้" }, [44]={ - + ["name"]="พลังแห่งสาวดาบ", + ["desc"]="อวตารของป้ายรบอารีน่า S2 ชัยชนะจะมาถึงเมื่อดาบขึ้นและดาบตก" }, [45]={ - + ["name"]="กรอบรูปเงินซีซั่น S2", + ["desc"]="กรอบรูปเงินของอารีน่า S2 พิสูจน์ของพลังงาน" }, [46]={ - + ["name"]="กรอบรูปทองซีซั่น S2", + ["desc"]="กรอบรูปทองของอารีน่า S2 ความรุ่งโรจน์ของฮีโร่" }, [47]={ diff --git a/lua/app/config/strings/vi/item.lua b/lua/app/config/strings/vi/item.lua index 9f056fbd..f31b4794 100644 --- a/lua/app/config/strings/vi/item.lua +++ b/lua/app/config/strings/vi/item.lua @@ -172,13 +172,16 @@ local item = { ["desc"]="Mở được nhận vật liệu sau" }, [44]={ - + ["name"]="Tài Năng Irelia", + ["desc"]="Avatar Chiến Lệnh S2, vung đao chiến thắng." }, [45]={ - + ["name"]="Khung Avatar Bạc S2", + ["desc"]="Khung Avatar Bạc Đấu Trường S2, biểu tượng sức mạnh." }, [46]={ - + ["name"]="Khung Avatar Vàng S2", + ["desc"]="Khung Avatar Vàng Đấu Trường S2, anh hùng tỏa sáng." }, [47]={ diff --git a/lua/app/config/strings/zh/item.lua b/lua/app/config/strings/zh/item.lua index d5c2a6ef..448b9a99 100644 --- a/lua/app/config/strings/zh/item.lua +++ b/lua/app/config/strings/zh/item.lua @@ -172,13 +172,16 @@ local item = { ["desc"]="開啟後可獲得以下材料" }, [44]={ - + ["name"]="刀妹鋒芒", + ["desc"]="S2競技戰令頭像,刀起刀落勝利就來了。" }, [45]={ - + ["name"]="S2賽季白銀頭像框", + ["desc"]="S2競技場白銀頭像框,力量的證明。" }, [46]={ - + ["name"]="S2賽季黃金頭像框", + ["desc"]="S2競技場黃金頭像框,英雄的光輝。" }, [47]={ diff --git a/lua/app/ui/dungeon/item_get_ui.lua b/lua/app/ui/dungeon/item_get_ui.lua index 160a817d..81de430b 100644 --- a/lua/app/ui/dungeon/item_get_ui.lua +++ b/lua/app/ui/dungeon/item_get_ui.lua @@ -82,9 +82,6 @@ function ItemGetUI:onRefresh() table.insert(lock, id) end end - table.sort(farm, function(a, b) return a > b end) - table.sort(unlock, function(a, b) return a > b end) - table.sort(lock, function(a, b) return a > b end) unlock = table.addArray(farm, unlock) self.wayList = table.addArray(unlock, lock) From f3e42849161e110dc7798afd2778b2219edffac9 Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Fri, 4 Aug 2023 11:28:51 +0800 Subject: [PATCH 31/44] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=80=E4=B8=8B?= =?UTF-8?q?=E4=B8=8A=E6=8A=A5=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/common/bi_report.lua | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/lua/app/common/bi_report.lua b/lua/app/common/bi_report.lua index c1519b1c..8aad66d5 100644 --- a/lua/app/common/bi_report.lua +++ b/lua/app/common/bi_report.lua @@ -1475,7 +1475,12 @@ function BIReport:postAppLovinAdRevenue(msg) self:postAdjustAdRevenueAppLovinMAX(args.revenue, args.network_name, args.ad_unit_identifier, args.placement) end local args2 = { - applovin_revenue = args.revenue + ad_platform = "applovin", + ad_source = args.network_name, + ad_unit_name = args.ad_unit_identifier, + ad_format = args.ad_format, + currency = "USD", + value = args.revenue, } self:postFirebaseLog("ad_impression", args2) self:logAppsFlyerAdRevenue(3, args.network_name, args.revenue, args) @@ -1494,7 +1499,12 @@ function BIReport:postIronSourceAdRevenue(msg) end if args.revenue then local args2 = { - ironsource_revenue = args.revenue + ad_platform = "ironSource", + ad_source = args.network_name, + ad_unit_name = args.ad_unit_identifier, + ad_format = args.ad_format, + currency = "USD", + value = args.revenue } self:postFirebaseLog("ad_impression", args2) self:logAppsFlyerAdRevenue(2, args.network_name, args.revenue, args) From 3753255d9367b9226d71f32c3fe499e8d7b9f254 Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Fri, 4 Aug 2023 11:33:43 +0800 Subject: [PATCH 32/44] =?UTF-8?q?=E6=98=BE=E7=A4=BAbug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../userdata/dungeon/dungeon_armor_entity.lua | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/lua/app/userdata/dungeon/dungeon_armor_entity.lua b/lua/app/userdata/dungeon/dungeon_armor_entity.lua index 0697e22e..73e9dd95 100644 --- a/lua/app/userdata/dungeon/dungeon_armor_entity.lua +++ b/lua/app/userdata/dungeon/dungeon_armor_entity.lua @@ -331,14 +331,21 @@ function DungeonArmorEntity:formatTaskByController(battleBaseController, chapter totalRound = totalRound + round end + local config = ConfigManager:getConfig("task_dungeon_armor") taskProgress = { - [0] = pass, - [1] = hpp, - [2] = bossRoundCount, - [3] = totalRound, - [4] = hpp, - [5] = hpp, + [0] = pass } + if config then + for id, info in pairs(config) do + if info.type == 1 then + taskProgress[id] = hpp + elseif info.type == 2 then + taskProgress[id] = bossRoundCount + elseif info.type == 3 then + taskProgress[id] = totalRound + end + end + end return taskProgress end From 8266b13b9a17864b54b673969e9e947947808ebb Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Fri, 4 Aug 2023 14:24:01 +0800 Subject: [PATCH 33/44] =?UTF-8?q?=E6=A3=8B=E7=9B=98=E6=9C=BA=E5=88=B6?= =?UTF-8?q?=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/common/bi_report.lua | 14 ++++++- .../config/chapter_board_daily_challenge.lua | 2 +- lua/app/config/grid_type.lua | 42 +++++++++++++++++-- .../controller/battle_base_controller.lua | 2 +- .../userdata/battle/battle_grid_entity.lua | 4 ++ 5 files changed, 57 insertions(+), 7 deletions(-) diff --git a/lua/app/common/bi_report.lua b/lua/app/common/bi_report.lua index 6efda7e7..8ba3a3df 100644 --- a/lua/app/common/bi_report.lua +++ b/lua/app/common/bi_report.lua @@ -1467,7 +1467,12 @@ function BIReport:postAppLovinAdRevenue(msg) self:postAdjustAdRevenueAppLovinMAX(args.revenue, args.network_name, args.ad_unit_identifier, args.placement) end local args2 = { - applovin_revenue = args.revenue + ad_platform = "applovin", + ad_source = args.network_name, + ad_unit_name = args.ad_unit_identifier, + ad_format = args.ad_format, + currency = "USD", + value = args.revenue, } self:postFirebaseLog("ad_impression", args2) self:logAppsFlyerAdRevenue(3, args.network_name, args.revenue, args) @@ -1486,7 +1491,12 @@ function BIReport:postIronSourceAdRevenue(msg) end if args.revenue then local args2 = { - ironsource_revenue = args.revenue + ad_platform = "ironSource", + ad_source = args.network_name, + ad_unit_name = args.ad_unit_identifier, + ad_format = args.ad_format, + currency = "USD", + value = args.revenue } self:postFirebaseLog("ad_impression", args2) self:logAppsFlyerAdRevenue(2, args.network_name, args.revenue, args) diff --git a/lua/app/config/chapter_board_daily_challenge.lua b/lua/app/config/chapter_board_daily_challenge.lua index b6666eb8..7305b572 100644 --- a/lua/app/config/chapter_board_daily_challenge.lua +++ b/lua/app/config/chapter_board_daily_challenge.lua @@ -4359,7 +4359,7 @@ local chapter_board_daily_challenge = { }, { 34, - 0 + 3 }, { 34, diff --git a/lua/app/config/grid_type.lua b/lua/app/config/grid_type.lua index f085926f..5a6895df 100644 --- a/lua/app/config/grid_type.lua +++ b/lua/app/config/grid_type.lua @@ -5,7 +5,8 @@ local grid_type = { [1]={ ["icon"]="battle_hinder_1", ["cant_link"]=1, - ["element_invalid"]=1 + ["element_invalid"]=1, + ["cant_upset"]=1 }, [2]={ ["icon"]="battle_obstacle_stone_2", @@ -17,6 +18,7 @@ local grid_type = { ["break_count"]=1, ["cant_link"]=1, ["element_invalid"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_za_b01" }, [3]={ @@ -29,6 +31,7 @@ local grid_type = { ["break_count"]=1, ["cant_link"]=1, ["element_invalid"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_za_b01" }, [4]={ @@ -39,6 +42,7 @@ local grid_type = { 3 }, ["break_count"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_za_b03" }, [5]={ @@ -51,6 +55,7 @@ local grid_type = { ["break_count"]=1, ["break_stay_element"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_za_b02" }, [6]={ @@ -69,6 +74,7 @@ local grid_type = { ["break_count"]=1, ["cant_link"]=1, ["element_invalid"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_zhuqiantk_b01" }, [8]={ @@ -81,6 +87,7 @@ local grid_type = { ["break_count"]=1, ["cant_link"]=1, ["element_invalid"]=1, + ["cant_upset"]=1, ["effect"]=1, ["effect_sfx"]="sfx_piece_huojian_b01", ["sfx_flow"]=1, @@ -99,6 +106,7 @@ local grid_type = { ["break_count"]=1, ["cant_link"]=1, ["element_invalid"]=1, + ["cant_upset"]=1, ["effect"]=1, ["effect_sfx"]="sfx_piece_huojian_b01", ["sfx_flow"]=1, @@ -117,6 +125,7 @@ local grid_type = { ["break_count"]=1, ["cant_link"]=1, ["element_invalid"]=1, + ["cant_upset"]=1, ["effect"]=1, ["effect_sfx"]="sfx_piece_huojian_b01", ["sfx_flow"]=1, @@ -135,6 +144,7 @@ local grid_type = { ["break_count"]=1, ["cant_link"]=1, ["element_invalid"]=1, + ["cant_upset"]=1, ["effect"]=1, ["effect_sfx"]="sfx_piece_huojian_b01", ["sfx_flow"]=1, @@ -154,6 +164,7 @@ local grid_type = { ["break_stay_element"]=1, ["can_fall"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_kucao_b01" }, [13]={ @@ -168,6 +179,7 @@ local grid_type = { ["can_fall"]=1, ["cant_link"]=1, ["element_invalid"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_guodong_b01", ["effect"]=5, ["effect_sfx"]="sfx_piece_guodong_b02", @@ -186,6 +198,7 @@ local grid_type = { ["bftc_time"]=0.4, ["cant_link"]=1, ["element_invalid"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_shendeng_b01", ["effect"]=3, ["effect_trigger"]=2 @@ -207,6 +220,7 @@ local grid_type = { ["bftc_time"]=0.3, ["cant_link"]=1, ["element_invalid"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_baoxiang_b01", ["effect"]=4, ["effect_trigger"]=2 @@ -224,7 +238,8 @@ local grid_type = { ["spine_change"]="idle1_1", ["break_count"]=1, ["cant_link"]=1, - ["element_invalid"]=1 + ["element_invalid"]=1, + ["cant_upset"]=1 }, [17]={ ["icon"]="battle_obstacle_chest_1", @@ -239,7 +254,8 @@ local grid_type = { ["spine_change"]="idle1", ["break_count"]=1, ["cant_link"]=1, - ["element_invalid"]=1 + ["element_invalid"]=1, + ["cant_upset"]=1 }, [18]={ ["icon"]="battle_obstacle_stump_1", @@ -251,6 +267,7 @@ local grid_type = { ["break_count"]=1, ["cant_link"]=1, ["element_invalid"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_muzhuang_b01" }, [19]={ @@ -263,6 +280,7 @@ local grid_type = { ["break_count"]=1, ["cant_link"]=1, ["element_invalid"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_muzhuang_b01" }, [20]={ @@ -275,6 +293,7 @@ local grid_type = { ["break_count"]=1, ["cant_link"]=1, ["element_invalid"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_muzhuang_b01" }, [21]={ @@ -289,6 +308,7 @@ local grid_type = { ["can_fall"]=1, ["cant_link"]=1, ["element_invalid"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_shuipao_b01", ["effect"]=5, ["effect_sfx"]="sfx_piece_shuipao_b02", @@ -306,6 +326,7 @@ local grid_type = { ["can_fall"]=1, ["cant_link"]=1, ["element_invalid"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_yuni_b01", ["effect"]=5, ["effect_sfx"]="sfx_piece_yuni_b02", @@ -323,6 +344,7 @@ local grid_type = { ["can_fall"]=1, ["cant_link"]=1, ["element_invalid"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_duwu_b01", ["effect"]=5, ["effect_sfx"]="sfx_piece_duwu_b02", @@ -338,6 +360,7 @@ local grid_type = { ["break_count"]=1, ["cant_link"]=1, ["element_invalid"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_jitang_b01" }, [25]={ @@ -350,6 +373,7 @@ local grid_type = { ["break_count"]=1, ["cant_link"]=1, ["element_invalid"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_jitang_b01" }, [26]={ @@ -362,6 +386,7 @@ local grid_type = { ["break_count"]=1, ["cant_link"]=1, ["element_invalid"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_jitang_b01" }, [27]={ @@ -372,6 +397,7 @@ local grid_type = { 3 }, ["break_count"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_fazhen_b01" }, [28]={ @@ -384,6 +410,7 @@ local grid_type = { ["break_count"]=1, ["cant_link"]=1, ["element_invalid"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_zhongrushi_b01" }, [29]={ @@ -396,6 +423,7 @@ local grid_type = { ["break_count"]=1, ["cant_link"]=1, ["element_invalid"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_zhongrushi_b01" }, [30]={ @@ -408,6 +436,7 @@ local grid_type = { ["break_count"]=1, ["cant_link"]=1, ["element_invalid"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_zhongrushi_b01" }, [31]={ @@ -420,6 +449,7 @@ local grid_type = { ["break_count"]=1, ["cant_link"]=1, ["element_invalid"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_tiexie_b01" }, [32]={ @@ -432,6 +462,7 @@ local grid_type = { ["break_count"]=1, ["cant_link"]=1, ["element_invalid"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_tiexie_b01" }, [33]={ @@ -444,6 +475,7 @@ local grid_type = { ["break_count"]=1, ["cant_link"]=1, ["element_invalid"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_tiexie_b01" }, [34]={ @@ -458,6 +490,7 @@ local grid_type = { ["can_fall"]=1, ["cant_link"]=1, ["element_invalid"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_rongyan_b01", ["effect"]=5, ["effect_sfx"]="sfx_piece_rongyan_b02", @@ -474,6 +507,7 @@ local grid_type = { ["break_stay_element"]=1, ["can_fall"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_caocong_b01" }, [36]={ @@ -485,6 +519,7 @@ local grid_type = { ["can_fall"]=1, ["cant_link"]=1, ["element_invalid"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_rongyan_b01", ["effect"]=6, ["effect_trigger"]=1 @@ -498,6 +533,7 @@ local grid_type = { ["can_fall"]=1, ["cant_link"]=1, ["element_invalid"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_duwu_b01", ["effect"]=6, ["effect_trigger"]=1 diff --git a/lua/app/module/battle/controller/battle_base_controller.lua b/lua/app/module/battle/controller/battle_base_controller.lua index ce1c452a..8b7136c7 100644 --- a/lua/app/module/battle/controller/battle_base_controller.lua +++ b/lua/app/module/battle/controller/battle_base_controller.lua @@ -2264,7 +2264,7 @@ function BattleBaseController:getShuffleBoardInfo() end local anySkillCount = 0 for posId, entity in pairs(self.battleData:getGridEnties()) do - if self:getPosIdInCurActionBoardRowRange(posId) and entity:isCanFallStatus() then + if self:getPosIdInCurActionBoardRowRange(posId) and entity:isCanFallStatus() and not entity:getCantUpset() then if entity:getSkillId() then local skillEntity = self:getSkillEntityBySkillId(entity:getSkillId()) local elementType = skillEntity:getPosition() diff --git a/lua/app/userdata/battle/battle_grid_entity.lua b/lua/app/userdata/battle/battle_grid_entity.lua index ee0cefb8..8a61cb49 100644 --- a/lua/app/userdata/battle/battle_grid_entity.lua +++ b/lua/app/userdata/battle/battle_grid_entity.lua @@ -446,6 +446,10 @@ function BattleGridEntity:getBftcTime() return self:getGridTypeConfig().bftc_time or 0 end +function BattleGridEntity:getCantUpset() + return self:getGridTypeConfig().cant_upset == 1 +end + function BattleGridEntity:getEffectSfx() local sfxName = self:getGridTypeConfig().effect_sfx if not sfxName then From 13a137a6fd0e06c7b0b45a9a3a05229642e7eeb3 Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Fri, 4 Aug 2023 15:16:19 +0800 Subject: [PATCH 34/44] =?UTF-8?q?bug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/module/battle/controller/battle_base_controller.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/app/module/battle/controller/battle_base_controller.lua b/lua/app/module/battle/controller/battle_base_controller.lua index 8b7136c7..587e2f0f 100644 --- a/lua/app/module/battle/controller/battle_base_controller.lua +++ b/lua/app/module/battle/controller/battle_base_controller.lua @@ -2215,7 +2215,7 @@ function BattleBaseController:shuffleBoard(callback) else self.resetList = table.clearOrCreate(self.resetList) for posId, entity in pairs(self.battleData:getGridEnties()) do - if self:getPosIdInCurActionBoardRowRange(posId) and entity:isCanFallStatus() then + if self:getPosIdInCurActionBoardRowRange(posId) and entity:isCanFallStatus() and not entity:getCantUpset() then table.insert(self.resetList, entity) end end From 2015b03a74244f6cc699df6252e54e2b2def5c16 Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Fri, 4 Aug 2023 15:17:28 +0800 Subject: [PATCH 35/44] =?UTF-8?q?=E6=98=BE=E7=A4=BA=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/userdata/dungeon/dungeon_armor_entity.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/lua/app/userdata/dungeon/dungeon_armor_entity.lua b/lua/app/userdata/dungeon/dungeon_armor_entity.lua index 0697e22e..194b68fc 100644 --- a/lua/app/userdata/dungeon/dungeon_armor_entity.lua +++ b/lua/app/userdata/dungeon/dungeon_armor_entity.lua @@ -331,6 +331,7 @@ function DungeonArmorEntity:formatTaskByController(battleBaseController, chapter totalRound = totalRound + round end + local config = ConfigManager:getConfig("task_dungeon_armor") taskProgress = { [0] = pass, [1] = hpp, @@ -338,7 +339,19 @@ function DungeonArmorEntity:formatTaskByController(battleBaseController, chapter [3] = totalRound, [4] = hpp, [5] = hpp, + [0] = pass } + if config then + for id, info in pairs(config) do + if info.type == 1 then + taskProgress[id] = hpp + elseif info.type == 2 then + taskProgress[id] = bossRoundCount + elseif info.type == 3 then + taskProgress[id] = totalRound + end + end + end return taskProgress end From e79f7bcfa0f6e62993120deb7a87d5f5c9c5bc1e Mon Sep 17 00:00:00 2001 From: Fang Date: Fri, 4 Aug 2023 15:56:54 +0800 Subject: [PATCH 36/44] =?UTF-8?q?=E7=A4=BC=E5=8C=85=E7=95=8C=E9=9D=A2?= =?UTF-8?q?=E5=B1=95=E7=A4=BA=E5=86=B2=E7=AA=81=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/module/shop/shop_manager.lua | 4 ++++ lua/app/ui/shop/gift_pop_chapter_ui.lua | 6 ++++++ lua/app/ui/shop/gift_pop_chapter_ui.lua.meta | 10 ++++++++++ lua/app/ui/shop/gift_pop_grow_up_ui.lua | 6 ++++++ lua/app/ui/shop/gift_pop_grow_up_ui.lua.meta | 10 ++++++++++ 5 files changed, 36 insertions(+) create mode 100644 lua/app/ui/shop/gift_pop_chapter_ui.lua create mode 100644 lua/app/ui/shop/gift_pop_chapter_ui.lua.meta create mode 100644 lua/app/ui/shop/gift_pop_grow_up_ui.lua create mode 100644 lua/app/ui/shop/gift_pop_grow_up_ui.lua.meta diff --git a/lua/app/module/shop/shop_manager.lua b/lua/app/module/shop/shop_manager.lua index 44c63e4c..401f029c 100644 --- a/lua/app/module/shop/shop_manager.lua +++ b/lua/app/module/shop/shop_manager.lua @@ -53,6 +53,10 @@ function ShopManager:showGiftPopUI(actType, actId, onlySelf, showType) UIManager:showUI("app/ui/shop/first_recharge_pop_ui", {showType = showType}) elseif actType == PayManager.PURCHARSE_TYPE.ACT_GIFT and actId == GConst.ShopConst.INTRODUCT_GIFT_ID then UIManager:showUI("app/ui/shop/introduct_pop_ui", {showType = showType}) + elseif actType == PayManager.PURCHARSE_TYPE.CHAPTER_GIFT then + UIManager:showUI("app/ui/shop/gift_pop_chapter_ui", {type = actType, id = actId, onlySelf = onlySelf}) + elseif actType == PayManager.PURCHARSE_TYPE.GROW_UP_GIFT_NEW then + UIManager:showUI("app/ui/shop/gift_pop_grow_up_ui", {type = actType, id = actId, onlySelf = onlySelf}) else UIManager:showUI("app/ui/shop/gift_pop_ui", {type = actType, id = actId, onlySelf = onlySelf, showType = showType}) end diff --git a/lua/app/ui/shop/gift_pop_chapter_ui.lua b/lua/app/ui/shop/gift_pop_chapter_ui.lua new file mode 100644 index 00000000..aa2245e0 --- /dev/null +++ b/lua/app/ui/shop/gift_pop_chapter_ui.lua @@ -0,0 +1,6 @@ +local GifePopUI = require "app/ui/shop/gift_pop_ui" +local GiftPopChapterUI = class("GiftPopChapterUI", GifePopUI) + +-- 章节礼包,为了避免界面和gift_pop_ui冲突 + +return GiftPopChapterUI \ No newline at end of file diff --git a/lua/app/ui/shop/gift_pop_chapter_ui.lua.meta b/lua/app/ui/shop/gift_pop_chapter_ui.lua.meta new file mode 100644 index 00000000..4bbbbb89 --- /dev/null +++ b/lua/app/ui/shop/gift_pop_chapter_ui.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 96614378ea4a4f344b54836febd08ecf +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/shop/gift_pop_grow_up_ui.lua b/lua/app/ui/shop/gift_pop_grow_up_ui.lua new file mode 100644 index 00000000..9ff56857 --- /dev/null +++ b/lua/app/ui/shop/gift_pop_grow_up_ui.lua @@ -0,0 +1,6 @@ +local GifePopUI = require "app/ui/shop/gift_pop_ui" +local GiftPopGrowUpUI = class("GiftPopGrowUpUI", GifePopUI) + +-- 成长礼包,为了避免界面和gift_pop_ui冲突 + +return GiftPopGrowUpUI \ No newline at end of file diff --git a/lua/app/ui/shop/gift_pop_grow_up_ui.lua.meta b/lua/app/ui/shop/gift_pop_grow_up_ui.lua.meta new file mode 100644 index 00000000..aa14ed1d --- /dev/null +++ b/lua/app/ui/shop/gift_pop_grow_up_ui.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: dd25c271000965944a8a4c2c14311ee0 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} From 0045bd6e13172e953f43bbe6b6e84fa06716faea Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Fri, 4 Aug 2023 16:35:33 +0800 Subject: [PATCH 37/44] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E4=B8=A4=E4=B8=AA?= =?UTF-8?q?=E5=8F=8D=E4=BC=A4=E6=8A=A4=E7=9B=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/module/battle/battle_const.lua | 2 ++ .../battle/helper/battle_buff_handle.lua | 22 +++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/lua/app/module/battle/battle_const.lua b/lua/app/module/battle/battle_const.lua index ac50992d..bcafd0b6 100644 --- a/lua/app/module/battle/battle_const.lua +++ b/lua/app/module/battle/battle_const.lua @@ -341,6 +341,8 @@ local BUFF_NAME = { INVINCIBLE_SHIELD = "invincible_shield", SHIELD_ICE_02 = "shield_ice_02", SKILL_HURT_ADD_SHOW = "skill_hurt_add_show", + SHIELD_ICE_REBOUND_200 = "shield_ice_rebound_200", + SHIELD_REBOUND_100 = "shield_rebound_100", } BattleConst.BUFF_NAME = BUFF_NAME diff --git a/lua/app/module/battle/helper/battle_buff_handle.lua b/lua/app/module/battle/helper/battle_buff_handle.lua index 96b74cf7..f25bb368 100644 --- a/lua/app/module/battle/helper/battle_buff_handle.lua +++ b/lua/app/module/battle/helper/battle_buff_handle.lua @@ -159,6 +159,20 @@ BattleBuffHandle.addShield = { target.unitEntity:addAttr(ATTR_NAME.SHIELD_REBOUND, 40000, false) return shieldNum end, + -- 反弹目标伤害的200%,直接写死 + [BUFF_NAME.SHIELD_ICE_REBOUND_200] = function(unitComp, buff, target, buffEffect) + local shieldNum = target.unitEntity:getMaxHp() * buff:getEffectNum() // DEFAULT_FACTOR + target:addShield(shieldNum, buffEffect) + target.unitEntity:addAttr(ATTR_NAME.SHIELD_REBOUND, 20000, false) + return shieldNum + end, + -- 反弹目标伤害的100%,直接写死 + [BUFF_NAME.SHIELD_ICE_REBOUND_200] = function(unitComp, buff, target, buffEffect) + local shieldNum = target.unitEntity:getMaxHp() * buff:getEffectNum() // DEFAULT_FACTOR + target:addShield(shieldNum, buffEffect) + target.unitEntity:addAttr(ATTR_NAME.SHIELD_REBOUND, 10000, false) + return shieldNum + end, } BattleBuffHandle.removeShield = { @@ -174,6 +188,14 @@ BattleBuffHandle.removeShield = { target.unitEntity:addAttr(ATTR_NAME.SHIELD_REBOUND, -40000, false) target:removeShield(buffEffect) end, + [BUFF_NAME.SHIELD_ICE_REBOUND_200] = function(buffSender, target, buff, buffEffect) + target.unitEntity:addAttr(ATTR_NAME.SHIELD_REBOUND, -20000, false) + target:removeShield(buffEffect) + end, + [BUFF_NAME.SHIELD_REBOUND_100] = function(buffSender, target, buff, buffEffect) + target.unitEntity:addAttr(ATTR_NAME.SHIELD_REBOUND, -10000, false) + target:removeShield(buffEffect) + end, } local function _takeEffectShield(unitComp, buff, target, buffEffect) From e51b9bf86a21a3fc7fe111740e5976733cca098e Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Fri, 4 Aug 2023 16:56:37 +0800 Subject: [PATCH 38/44] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/config/buff.lua | 32 +- lua/app/config/chapter_dungeon_armor.lua | 160 ------- lua/app/config/chapter_dungeon_equip.lua | 80 ---- lua/app/config/grid_type.lua | 36 ++ lua/app/config/item.lua | 425 +++++++++--------- lua/app/config/skill.lua | 26 +- lua/app/config/skill_rogue.lua | 6 +- lua/app/config/strings/cn/buff.lua | 30 +- lua/app/config/strings/cn/global.lua | 2 +- lua/app/config/strings/cn/item.lua | 4 +- lua/app/config/strings/cn/skill_rogue.lua | 6 +- lua/app/config/strings/de/buff.lua | 14 +- lua/app/config/strings/en/buff.lua | 57 ++- lua/app/config/strings/en/global.lua | 3 +- lua/app/config/strings/en/skill.lua | 12 +- lua/app/config/strings/en/skill_rogue.lua | 2 +- lua/app/config/strings/es/buff.lua | 57 ++- lua/app/config/strings/es/global.lua | 3 +- lua/app/config/strings/es/skill.lua | 12 +- lua/app/config/strings/es/skill_rogue.lua | 2 +- lua/app/config/strings/fr/buff.lua | 14 +- lua/app/config/strings/id/buff.lua | 57 ++- lua/app/config/strings/id/global.lua | 3 +- lua/app/config/strings/id/skill.lua | 12 +- lua/app/config/strings/id/skill_rogue.lua | 2 +- lua/app/config/strings/ja/buff.lua | 57 ++- lua/app/config/strings/ja/global.lua | 3 +- lua/app/config/strings/ja/skill.lua | 12 +- lua/app/config/strings/ja/skill_rogue.lua | 2 +- lua/app/config/strings/ko/buff.lua | 57 ++- lua/app/config/strings/ko/global.lua | 3 +- lua/app/config/strings/ko/skill.lua | 12 +- lua/app/config/strings/ko/skill_rogue.lua | 2 +- lua/app/config/strings/pt/buff.lua | 57 ++- lua/app/config/strings/pt/global.lua | 3 +- lua/app/config/strings/pt/skill.lua | 12 +- lua/app/config/strings/pt/skill_rogue.lua | 2 +- lua/app/config/strings/ru/buff.lua | 14 +- lua/app/config/strings/th/buff.lua | 57 ++- lua/app/config/strings/th/global.lua | 3 +- lua/app/config/strings/th/skill.lua | 12 +- lua/app/config/strings/th/skill_rogue.lua | 2 +- lua/app/config/strings/vi/buff.lua | 57 ++- lua/app/config/strings/vi/global.lua | 3 +- lua/app/config/strings/vi/skill.lua | 12 +- lua/app/config/strings/vi/skill_rogue.lua | 2 +- lua/app/config/strings/zh/buff.lua | 57 ++- lua/app/config/strings/zh/global.lua | 3 +- lua/app/config/strings/zh/skill.lua | 12 +- lua/app/config/strings/zh/skill_rogue.lua | 2 +- .../battle/helper/battle_buff_handle.lua | 2 +- 51 files changed, 881 insertions(+), 636 deletions(-) diff --git a/lua/app/config/buff.lua b/lua/app/config/buff.lua index eb7fbceb..8bab7885 100644 --- a/lua/app/config/buff.lua +++ b/lua/app/config/buff.lua @@ -723,6 +723,32 @@ local buff = { ["stack"]=2, ["decr"]=1, ["icon"]="skill_hurt_add" + }, + [82]={ + ["id"]=82, + ["name"]="shield_ice_rebound_200", + ["buff_type"]=2, + ["decr"]=3, + ["icon"]="shield_ice", + ["fx_continued"]={ + 26 + }, + ["fx_disappear"]={ + 27 + } + }, + [83]={ + ["id"]=83, + ["name"]="shield_rebound_100", + ["buff_type"]=2, + ["decr"]=3, + ["icon"]="shield", + ["fx_continued"]={ + 22 + }, + ["fx_disappear"]={ + 23 + } } } local keys = { @@ -807,12 +833,14 @@ local keys = { ["end_dmg_dec_all_add"]=buff[78], ["invincible_shield"]=buff[79], ["shield_ice_02"]=buff[80], - ["skill_hurt_add_show"]=buff[81] + ["skill_hurt_add_show"]=buff[81], + ["shield_ice_rebound_200"]=buff[82], + ["shield_rebound_100"]=buff[83] } } local config = { data=buff, keys=keys, -count=81 +count=83 } return config \ No newline at end of file diff --git a/lua/app/config/chapter_dungeon_armor.lua b/lua/app/config/chapter_dungeon_armor.lua index 1854a126..9203a047 100644 --- a/lua/app/config/chapter_dungeon_armor.lua +++ b/lua/app/config/chapter_dungeon_armor.lua @@ -1793,14 +1793,6 @@ local chapter_dungeon_armor = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1007, - ["id_for_nothing"]="VwhcBA==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", @@ -1938,14 +1930,6 @@ local chapter_dungeon_armor = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1013, - ["id_for_nothing"]="VwhdAA==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", @@ -2083,14 +2067,6 @@ local chapter_dungeon_armor = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1019, - ["id_for_nothing"]="VwhdCg==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", @@ -2228,14 +2204,6 @@ local chapter_dungeon_armor = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1025, - ["id_for_nothing"]="VwheBg==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", @@ -2889,14 +2857,6 @@ local chapter_dungeon_armor = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1007, - ["id_for_nothing"]="VwhcBA==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", @@ -3028,14 +2988,6 @@ local chapter_dungeon_armor = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1013, - ["id_for_nothing"]="VwhdAA==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", @@ -3167,14 +3119,6 @@ local chapter_dungeon_armor = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1019, - ["id_for_nothing"]="VwhdCg==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", @@ -3306,14 +3250,6 @@ local chapter_dungeon_armor = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1025, - ["id_for_nothing"]="VwheBg==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", @@ -5021,14 +4957,6 @@ local chapter_dungeon_armor = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1008, - ["id_for_nothing"]="VwhcCw==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", @@ -5160,14 +5088,6 @@ local chapter_dungeon_armor = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1014, - ["id_for_nothing"]="VwhdBw==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", @@ -5299,14 +5219,6 @@ local chapter_dungeon_armor = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1020, - ["id_for_nothing"]="VwheAw==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", @@ -5438,14 +5350,6 @@ local chapter_dungeon_armor = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1026, - ["id_for_nothing"]="VwheBQ==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", @@ -7153,14 +7057,6 @@ local chapter_dungeon_armor = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1009, - ["id_for_nothing"]="VwhcCg==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", @@ -7292,14 +7188,6 @@ local chapter_dungeon_armor = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1015, - ["id_for_nothing"]="VwhdBg==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", @@ -7431,14 +7319,6 @@ local chapter_dungeon_armor = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1021, - ["id_for_nothing"]="VwheAg==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", @@ -7570,14 +7450,6 @@ local chapter_dungeon_armor = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1027, - ["id_for_nothing"]="VwheBA==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", @@ -9285,14 +9157,6 @@ local chapter_dungeon_armor = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1010, - ["id_for_nothing"]="VwhdAw==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", @@ -9424,14 +9288,6 @@ local chapter_dungeon_armor = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1016, - ["id_for_nothing"]="VwhdBQ==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", @@ -9563,14 +9419,6 @@ local chapter_dungeon_armor = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1022, - ["id_for_nothing"]="VwheAQ==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", @@ -9702,14 +9550,6 @@ local chapter_dungeon_armor = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1028, - ["id_for_nothing"]="VwheCw==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", diff --git a/lua/app/config/chapter_dungeon_equip.lua b/lua/app/config/chapter_dungeon_equip.lua index 0ee49470..dd5e946f 100644 --- a/lua/app/config/chapter_dungeon_equip.lua +++ b/lua/app/config/chapter_dungeon_equip.lua @@ -479,14 +479,6 @@ local chapter_dungeon_equip = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1001, - ["id_for_nothing"]="VwhcAg==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", @@ -580,14 +572,6 @@ local chapter_dungeon_equip = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1001, - ["id_for_nothing"]="VwhcAg==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", @@ -861,14 +845,6 @@ local chapter_dungeon_equip = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1002, - ["id_for_nothing"]="VwhcAQ==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", @@ -1049,14 +1025,6 @@ local chapter_dungeon_equip = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1003, - ["id_for_nothing"]="VwhcAA==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", @@ -1150,14 +1118,6 @@ local chapter_dungeon_equip = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1003, - ["id_for_nothing"]="VwhcAA==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", @@ -1439,14 +1399,6 @@ local chapter_dungeon_equip = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1004, - ["id_for_nothing"]="VwhcBw==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", @@ -1540,14 +1492,6 @@ local chapter_dungeon_equip = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1004, - ["id_for_nothing"]="VwhcBw==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", @@ -1641,14 +1585,6 @@ local chapter_dungeon_equip = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1004, - ["id_for_nothing"]="VwhcBw==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", @@ -1742,14 +1678,6 @@ local chapter_dungeon_equip = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1004, - ["id_for_nothing"]="VwhcBw==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", @@ -1843,14 +1771,6 @@ local chapter_dungeon_equip = { }, ["bao_drop_num"]=2, ["item_show"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1004, - ["id_for_nothing"]="VwhcBw==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, { ["type"]=1, ["type_for_nothing"]="Vw==", diff --git a/lua/app/config/grid_type.lua b/lua/app/config/grid_type.lua index f085926f..0c669518 100644 --- a/lua/app/config/grid_type.lua +++ b/lua/app/config/grid_type.lua @@ -5,6 +5,7 @@ local grid_type = { [1]={ ["icon"]="battle_hinder_1", ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1 }, [2]={ @@ -16,6 +17,7 @@ local grid_type = { }, ["break_count"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1, ["break_sfx"]="sfx_piece_za_b01" }, @@ -28,6 +30,7 @@ local grid_type = { }, ["break_count"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1, ["break_sfx"]="sfx_piece_za_b01" }, @@ -39,6 +42,7 @@ local grid_type = { 3 }, ["break_count"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_za_b03" }, [5]={ @@ -51,6 +55,7 @@ local grid_type = { ["break_count"]=1, ["break_stay_element"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_za_b02" }, [6]={ @@ -68,6 +73,7 @@ local grid_type = { }, ["break_count"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1, ["break_sfx"]="sfx_piece_zhuqiantk_b01" }, @@ -80,6 +86,7 @@ local grid_type = { }, ["break_count"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1, ["effect"]=1, ["effect_sfx"]="sfx_piece_huojian_b01", @@ -98,6 +105,7 @@ local grid_type = { }, ["break_count"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1, ["effect"]=1, ["effect_sfx"]="sfx_piece_huojian_b01", @@ -116,6 +124,7 @@ local grid_type = { }, ["break_count"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1, ["effect"]=1, ["effect_sfx"]="sfx_piece_huojian_b01", @@ -134,6 +143,7 @@ local grid_type = { }, ["break_count"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1, ["effect"]=1, ["effect_sfx"]="sfx_piece_huojian_b01", @@ -154,6 +164,7 @@ local grid_type = { ["break_stay_element"]=1, ["can_fall"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_kucao_b01" }, [13]={ @@ -167,6 +178,7 @@ local grid_type = { ["break_stay_element"]=1, ["can_fall"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1, ["break_sfx"]="sfx_piece_guodong_b01", ["effect"]=5, @@ -185,6 +197,7 @@ local grid_type = { ["bftc_icon"]="battle_obstacle_lamp", ["bftc_time"]=0.4, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1, ["break_sfx"]="sfx_piece_shendeng_b01", ["effect"]=3, @@ -206,6 +219,7 @@ local grid_type = { ["bftc_icon"]="battle_obstacle_chest_4", ["bftc_time"]=0.3, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1, ["break_sfx"]="sfx_piece_baoxiang_b01", ["effect"]=4, @@ -224,6 +238,7 @@ local grid_type = { ["spine_change"]="idle1_1", ["break_count"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1 }, [17]={ @@ -239,6 +254,7 @@ local grid_type = { ["spine_change"]="idle1", ["break_count"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1 }, [18]={ @@ -250,6 +266,7 @@ local grid_type = { }, ["break_count"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1, ["break_sfx"]="sfx_piece_muzhuang_b01" }, @@ -262,6 +279,7 @@ local grid_type = { }, ["break_count"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1, ["break_sfx"]="sfx_piece_muzhuang_b01" }, @@ -274,6 +292,7 @@ local grid_type = { }, ["break_count"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1, ["break_sfx"]="sfx_piece_muzhuang_b01" }, @@ -288,6 +307,7 @@ local grid_type = { ["break_stay_element"]=1, ["can_fall"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1, ["break_sfx"]="sfx_piece_shuipao_b01", ["effect"]=5, @@ -305,6 +325,7 @@ local grid_type = { ["break_stay_element"]=1, ["can_fall"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1, ["break_sfx"]="sfx_piece_yuni_b01", ["effect"]=5, @@ -322,6 +343,7 @@ local grid_type = { ["break_stay_element"]=1, ["can_fall"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1, ["break_sfx"]="sfx_piece_duwu_b01", ["effect"]=5, @@ -337,6 +359,7 @@ local grid_type = { }, ["break_count"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1, ["break_sfx"]="sfx_piece_jitang_b01" }, @@ -349,6 +372,7 @@ local grid_type = { }, ["break_count"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1, ["break_sfx"]="sfx_piece_jitang_b01" }, @@ -361,6 +385,7 @@ local grid_type = { }, ["break_count"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1, ["break_sfx"]="sfx_piece_jitang_b01" }, @@ -372,6 +397,7 @@ local grid_type = { 3 }, ["break_count"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_fazhen_b01" }, [28]={ @@ -383,6 +409,7 @@ local grid_type = { }, ["break_count"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1, ["break_sfx"]="sfx_piece_zhongrushi_b01" }, @@ -395,6 +422,7 @@ local grid_type = { }, ["break_count"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1, ["break_sfx"]="sfx_piece_zhongrushi_b01" }, @@ -407,6 +435,7 @@ local grid_type = { }, ["break_count"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1, ["break_sfx"]="sfx_piece_zhongrushi_b01" }, @@ -419,6 +448,7 @@ local grid_type = { }, ["break_count"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1, ["break_sfx"]="sfx_piece_tiexie_b01" }, @@ -431,6 +461,7 @@ local grid_type = { }, ["break_count"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1, ["break_sfx"]="sfx_piece_tiexie_b01" }, @@ -443,6 +474,7 @@ local grid_type = { }, ["break_count"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1, ["break_sfx"]="sfx_piece_tiexie_b01" }, @@ -457,6 +489,7 @@ local grid_type = { ["break_stay_element"]=1, ["can_fall"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1, ["break_sfx"]="sfx_piece_rongyan_b01", ["effect"]=5, @@ -474,6 +507,7 @@ local grid_type = { ["break_stay_element"]=1, ["can_fall"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["break_sfx"]="sfx_piece_caocong_b01" }, [36]={ @@ -484,6 +518,7 @@ local grid_type = { ["spine_idle"]="idle", ["can_fall"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1, ["break_sfx"]="sfx_piece_rongyan_b01", ["effect"]=6, @@ -497,6 +532,7 @@ local grid_type = { ["spine_idle"]="idle", ["can_fall"]=1, ["cant_link"]=1, + ["cant_upset"]=1, ["element_invalid"]=1, ["break_sfx"]="sfx_piece_duwu_b01", ["effect"]=6, diff --git a/lua/app/config/item.lua b/lua/app/config/item.lua index ce0eaff4..b18e588a 100644 --- a/lua/app/config/item.lua +++ b/lua/app/config/item.lua @@ -1511,13 +1511,13 @@ local item = { ["icon"]="1002", ["get_way_type"]=1, ["get_way"]={ - 3, - 4, - 5, 6, 7, + 5, 8, + 4, 9, + 3, 10 } }, @@ -1527,13 +1527,13 @@ local item = { ["icon"]="1003", ["get_way_type"]=1, ["get_way"]={ - 6, - 7, - 8, 9, 10, + 8, 11, 12, + 7, + 6, 13 } }, @@ -1543,17 +1543,18 @@ local item = { ["icon"]="1004", ["get_way_type"]=1, ["get_way"]={ - 10, - 11, - 12, 13, 14, + 12, 15, + 11, 16, + 10, 17, 18, 19, - 20 + 20, + 10 } }, [1005]={ @@ -1562,15 +1563,15 @@ local item = { ["icon"]="1005", ["get_way_type"]=1, ["get_way"]={ - 12, - 13, - 14, - 15, 16, 17, 18, 19, - 20 + 15, + 20, + 14, + 13, + 12 } }, [1006]={ @@ -1579,12 +1580,12 @@ local item = { ["icon"]="1006", ["get_way_type"]=1, ["get_way"]={ - 15, - 16, - 17, - 18, + 20, 19, - 20 + 18, + 17, + 16, + 15 } }, [1007]={ @@ -1594,15 +1595,15 @@ local item = { ["get_way_type"]=2, ["get_way"]={ 1, + 7, + 13, + 19, 5, 6, - 7, 11, 12, - 13, 17, 18, - 19, 23, 24 } @@ -1613,19 +1614,19 @@ local item = { ["icon"]="1008", ["get_way_type"]=2, ["get_way"]={ - 7, - 11, - 12, - 13, - 17, - 18, 19, + 13, + 25, + 7, + 31, 23, 24, - 25, + 17, + 18, 29, 30, - 31, + 11, + 12, 35, 36 } @@ -1636,24 +1637,24 @@ local item = { ["icon"]="1009", ["get_way_type"]=2, ["get_way"]={ - 13, - 17, - 18, - 19, - 23, - 24, - 25, - 29, - 30, 31, + 37, + 25, + 19, + 43, + 13, 35, 36, - 37, 41, 42, - 43, + 29, + 30, + 23, + 24, 47, - 48 + 48, + 17, + 18 } }, [1010]={ @@ -1662,24 +1663,24 @@ local item = { ["icon"]="1010", ["get_way_type"]=2, ["get_way"]={ - 25, - 29, - 30, - 31, - 35, - 36, - 37, - 41, - 42, 43, + 49, + 37, + 31, + 55, + 25, 47, 48, - 49, 53, 54, - 55, + 41, + 42, + 35, + 36, 59, - 60 + 60, + 29, + 30 } }, [1011]={ @@ -1688,18 +1689,18 @@ local item = { ["icon"]="1011", ["get_way_type"]=2, ["get_way"]={ - 37, - 41, - 42, - 43, - 47, - 48, + 55, 49, + 43, + 37, + 59, + 60, 53, 54, - 55, - 59, - 60 + 47, + 48, + 41, + 42 } }, [1012]={ @@ -1708,12 +1709,12 @@ local item = { ["icon"]="1012", ["get_way_type"]=2, ["get_way"]={ - 49, - 53, - 54, 55, + 49, 59, - 60 + 60, + 53, + 54 } }, [1013]={ @@ -1723,15 +1724,15 @@ local item = { ["get_way_type"]=2, ["get_way"]={ 2, + 8, + 14, + 20, 5, 6, - 8, 11, 12, - 14, 17, 18, - 20, 23, 24 } @@ -1742,19 +1743,19 @@ local item = { ["icon"]="1020", ["get_way_type"]=2, ["get_way"]={ - 8, - 11, - 12, - 14, - 17, - 18, 20, + 14, + 26, + 8, + 32, 23, 24, - 26, + 17, + 18, 29, 30, - 32, + 11, + 12, 35, 36 } @@ -1765,24 +1766,24 @@ local item = { ["icon"]="1021", ["get_way_type"]=2, ["get_way"]={ - 14, - 17, - 18, - 20, - 23, - 24, - 26, - 29, - 30, 32, + 38, + 26, + 20, + 44, + 14, 35, 36, - 38, 41, 42, - 44, + 29, + 30, + 23, + 24, 47, - 48 + 48, + 17, + 18 } }, [1016]={ @@ -1791,24 +1792,24 @@ local item = { ["icon"]="1022", ["get_way_type"]=2, ["get_way"]={ - 26, - 29, - 30, - 32, - 35, - 36, - 38, - 41, - 42, 44, + 50, + 38, + 32, + 56, + 26, 47, 48, - 50, 53, 54, - 56, + 41, + 42, + 35, + 36, 59, - 60 + 60, + 29, + 30 } }, [1017]={ @@ -1817,18 +1818,18 @@ local item = { ["icon"]="1023", ["get_way_type"]=2, ["get_way"]={ - 38, - 41, - 42, - 44, - 47, - 48, + 56, 50, + 44, + 38, + 59, + 60, 53, 54, - 56, - 59, - 60 + 47, + 48, + 41, + 42 } }, [1018]={ @@ -1837,12 +1838,12 @@ local item = { ["icon"]="1024", ["get_way_type"]=2, ["get_way"]={ - 50, - 53, - 54, 56, + 50, 59, - 60 + 60, + 53, + 54 } }, [1019]={ @@ -1852,15 +1853,15 @@ local item = { ["get_way_type"]=2, ["get_way"]={ 3, + 9, + 15, + 21, 5, 6, - 9, 11, 12, - 15, 17, 18, - 21, 23, 24 } @@ -1871,19 +1872,19 @@ local item = { ["icon"]="1014", ["get_way_type"]=2, ["get_way"]={ - 9, - 11, - 12, - 15, - 17, - 18, 21, + 15, + 27, + 9, + 33, 23, 24, - 27, + 17, + 18, 29, 30, - 33, + 11, + 12, 35, 36 } @@ -1894,24 +1895,24 @@ local item = { ["icon"]="1015", ["get_way_type"]=2, ["get_way"]={ - 15, - 17, - 18, - 21, - 23, - 24, - 27, - 29, - 30, 33, + 39, + 27, + 21, + 45, + 15, 35, 36, - 39, 41, 42, - 45, + 29, + 30, + 23, + 24, 47, - 48 + 48, + 17, + 18 } }, [1022]={ @@ -1920,24 +1921,24 @@ local item = { ["icon"]="1016", ["get_way_type"]=2, ["get_way"]={ - 27, - 29, - 30, - 33, - 35, - 36, - 39, - 41, - 42, 45, + 51, + 39, + 33, + 57, + 27, 47, 48, - 51, 53, 54, - 57, + 41, + 42, + 35, + 36, 59, - 60 + 60, + 29, + 30 } }, [1023]={ @@ -1946,18 +1947,18 @@ local item = { ["icon"]="1017", ["get_way_type"]=2, ["get_way"]={ - 39, - 41, - 42, - 45, - 47, - 48, + 57, 51, + 45, + 39, + 59, + 60, 53, 54, - 57, - 59, - 60 + 47, + 48, + 41, + 42 } }, [1024]={ @@ -1966,12 +1967,12 @@ local item = { ["icon"]="1018", ["get_way_type"]=2, ["get_way"]={ - 51, - 53, - 54, 57, + 51, 59, - 60 + 60, + 53, + 54 } }, [1025]={ @@ -1981,15 +1982,15 @@ local item = { ["get_way_type"]=2, ["get_way"]={ 4, + 10, + 16, + 22, 5, 6, - 10, 11, 12, - 16, 17, 18, - 22, 23, 24 } @@ -2000,19 +2001,19 @@ local item = { ["icon"]="1026", ["get_way_type"]=2, ["get_way"]={ - 10, - 11, - 12, - 16, - 17, - 18, 22, + 16, + 28, + 10, + 34, 23, 24, - 28, + 17, + 18, 29, 30, - 34, + 11, + 12, 35, 36 } @@ -2023,24 +2024,24 @@ local item = { ["icon"]="1027", ["get_way_type"]=2, ["get_way"]={ - 16, - 17, - 18, - 22, - 23, - 24, - 28, - 29, - 30, 34, + 40, + 28, + 22, + 46, + 16, 35, 36, - 40, 41, 42, - 46, + 29, + 30, + 23, + 24, 47, - 48 + 48, + 17, + 18 } }, [1028]={ @@ -2049,24 +2050,24 @@ local item = { ["icon"]="1028", ["get_way_type"]=2, ["get_way"]={ - 28, - 29, - 30, - 34, - 35, - 36, - 40, - 41, - 42, 46, + 52, + 40, + 34, + 58, + 28, 47, 48, - 52, 53, 54, - 58, + 41, + 42, + 35, + 36, 59, - 60 + 60, + 29, + 30 } }, [1029]={ @@ -2075,18 +2076,18 @@ local item = { ["icon"]="1029", ["get_way_type"]=2, ["get_way"]={ - 40, - 41, - 42, - 46, - 47, - 48, + 58, 52, + 46, + 40, + 59, + 60, 53, 54, - 58, - 59, - 60 + 47, + 48, + 41, + 42 } }, [1030]={ @@ -2095,12 +2096,12 @@ local item = { ["icon"]="1030", ["get_way_type"]=2, ["get_way"]={ - 52, - 53, - 54, 58, + 52, 59, - 60 + 60, + 53, + 54 } }, [12001]={ diff --git a/lua/app/config/skill.lua b/lua/app/config/skill.lua index 2b719dd7..5161a2a3 100644 --- a/lua/app/config/skill.lua +++ b/lua/app/config/skill.lua @@ -1255,7 +1255,7 @@ local skill = { { ["type"]="stun", ["num"]=0, - ["ratio"]=10000, + ["ratio"]=5000, ["round"]=2 } }, @@ -2245,7 +2245,7 @@ local skill = { ["eliminate_effect"]={ { ["type"]="dmg_addition_all_add", - ["num"]=5000, + ["num"]=2000, ["ratio"]=10000, ["round"]=1 } @@ -2858,8 +2858,8 @@ local skill = { }, ["pvp_effect"]={ { - ["type"]="shield_rebound_200", - ["num"]=750, + ["type"]="shield_rebound_100", + ["num"]=450, ["ratio"]=10000, ["round"]=2 } @@ -2894,8 +2894,8 @@ local skill = { }, ["pvp_effect"]={ { - ["type"]="shield_rebound_400", - ["num"]=750, + ["type"]="shield_rebound_200", + ["num"]=450, ["ratio"]=10000, ["round"]=2 } @@ -3481,7 +3481,7 @@ local skill = { ["eliminate_effect"]={ { ["type"]="dmg_addition_all_add", - ["num"]=5000, + ["num"]=2000, ["ratio"]=10000, ["round"]=1 } @@ -4717,7 +4717,7 @@ local skill = { ["pvp_effect"]={ { ["type"]="shield_ice", - ["num"]=750, + ["num"]=375, ["ratio"]=10000, ["round"]=2 } @@ -4742,8 +4742,8 @@ local skill = { }, ["pvp_effect"]={ { - ["type"]="shield_ice_rebound_400", - ["num"]=750, + ["type"]="shield_ice_rebound_200", + ["num"]=375, ["ratio"]=10000, ["round"]=2 } @@ -5722,7 +5722,7 @@ local skill = { }, ["pvp_effect"]={ { - ["type"]="shield_rebound_200", + ["type"]="shield_rebound_100", ["num"]=333, ["ratio"]=10000, ["round"]=1 @@ -5762,7 +5762,7 @@ local skill = { }, ["pvp_effect"]={ { - ["type"]="shield_rebound_400", + ["type"]="shield_rebound_200", ["num"]=333, ["ratio"]=10000, ["round"]=1 @@ -5983,7 +5983,7 @@ local skill = { { ["type"]="lethargy", ["num"]=0, - ["ratio"]=10000, + ["ratio"]=5000, ["round"]=2 } }, diff --git a/lua/app/config/skill_rogue.lua b/lua/app/config/skill_rogue.lua index 5448cfd7..29f5b598 100644 --- a/lua/app/config/skill_rogue.lua +++ b/lua/app/config/skill_rogue.lua @@ -1161,8 +1161,6 @@ local skill_rogue = { ["buff_id"]={ "stun" }, - ["unlock"]=1400102, - ["cover_unlock"]=1400102, ["limit_times"]=1, ["weight"]=3000, ["qlt"]=4, @@ -2231,7 +2229,7 @@ local skill_rogue = { ["type"]=7, ["parameter"]={ 1, - 500 + 5000 }, ["skill_position"]=3, ["icon"]="80" @@ -2701,7 +2699,7 @@ local skill_rogue = { ["type"]=16, ["parameter"]={ 4, - 5000 + 3000 }, ["skill_position"]=3, ["icon"]="213" diff --git a/lua/app/config/strings/cn/buff.lua b/lua/app/config/strings/cn/buff.lua index c343927b..60910db3 100644 --- a/lua/app/config/strings/cn/buff.lua +++ b/lua/app/config/strings/cn/buff.lua @@ -44,7 +44,7 @@ local buff = { }, [34]={ ["id"]=34, - ["desc"]="护盾:可承受最大生命值{0}的伤害。", + ["desc"]="护盾:可承受一定伤害。", ["tips_desc"]="护盾:可承受一定伤害。", ["name"]="shield" }, @@ -64,7 +64,7 @@ local buff = { }, [47]={ ["id"]=47, - ["desc"]="反伤护盾:可承受最大生命值{0}的伤害,反弹200%对方伤害。", + ["desc"]="反伤护盾:可承受一定伤害,反弹对方伤害。", ["tips_desc"]="反伤护盾:可承受一定伤害,反弹对方伤害。", ["name"]="shield_rebound_200" }, @@ -175,19 +175,19 @@ local buff = { }, [73]={ ["id"]=73, - ["desc"]="反伤护盾:可承受最大生命值{0}的伤害,反弹400%对方伤害。", + ["desc"]="反伤护盾:可承受一定伤害,反弹对方大量伤害。", ["tips_desc"]="反伤护盾2:可承受一定伤害,反弹对方大量伤害。", ["name"]="shield_rebound_400" }, [74]={ ["id"]=74, - ["desc"]="冰霜护盾:可承受最大生命值{0}的伤害。", + ["desc"]="冰霜护盾:可承受一定伤害。", ["tips_desc"]="冰霜护盾:可承受一定伤害。", ["name"]="shield_ice" }, [75]={ ["id"]=75, - ["desc"]="冰霜护盾:可承受最大生命值{0}的伤害,反弹400%对方伤害。", + ["desc"]="冰霜护盾2:可承受一定伤害,反弹对方大量伤害。", ["tips_desc"]="冰霜护盾2:可承受一定伤害,反弹对方大量伤害。", ["name"]="shield_ice_rebound_400" }, @@ -200,7 +200,7 @@ local buff = { }, [80]={ ["id"]=80, - ["desc"]="冰霜护盾:可承受最大生命值{0}的伤害。", + ["desc"]="冰霜护盾:可承受一定伤害。", ["tips_desc"]="冰霜护盾:可承受一定伤害。", ["name"]="shield_ice_02" }, @@ -210,6 +210,18 @@ local buff = { ["desc"]="技能增伤:所有技能伤害增加", ["tips_desc"]="技能增伤:所有技能伤害增加", ["name"]="skill_hurt_add_show" + }, + [82]={ + ["id"]=82, + ["desc"]="反伤护盾:可承受一定伤害,反弹对方大量伤害。", + ["tips_desc"]="反伤护盾2:可承受一定伤害,反弹对方大量伤害。", + ["name"]="shield_rebound_200" + }, + [83]={ + ["id"]=83, + ["desc"]="反伤护盾:可承受一定伤害,反弹对方伤害。", + ["tips_desc"]="反伤护盾:可承受一定伤害,反弹对方伤害。", + ["name"]="shield_rebound_100" } } local keys = { @@ -246,12 +258,14 @@ local keys = { ["shield_ice_rebound_400"]=buff[75], ["invincible_shield"]=buff[79], ["shield_ice_02"]=buff[80], - ["skill_hurt_add_show"]=buff[81] + ["skill_hurt_add_show"]=buff[81], + ["shield_rebound_200"]=buff[82], + ["shield_rebound_100"]=buff[83] } } local config = { data=buff, keys=keys, -count=33 +count=35 } return config \ No newline at end of file diff --git a/lua/app/config/strings/cn/global.lua b/lua/app/config/strings/cn/global.lua index e445ca26..eb58c5af 100644 --- a/lua/app/config/strings/cn/global.lua +++ b/lua/app/config/strings/cn/global.lua @@ -362,7 +362,7 @@ local localization_global = ["DUNGEON_WEAPON_DESC_7"] = "攻略", ["DUNGEON_WEAPON_DESC_8"] = "首领攻略", ["DUNGEON_WEAPON_DESC_9"] = "近期通关", - ["DUNGEON_WEAPON_DESC_10"] = "队伍等级{0}开启", + ["DUNGEON_WEAPON_DESC_10"] = "玩家等级{0}开启", ["DUNGEON_WEAPON_DESC_11"] = "通关前一章开启", ["EQUIP_DESC_1"] = "武器", ["EQUIP_DESC_2"] = "防具", diff --git a/lua/app/config/strings/cn/item.lua b/lua/app/config/strings/cn/item.lua index 1fea07dd..94ce9622 100644 --- a/lua/app/config/strings/cn/item.lua +++ b/lua/app/config/strings/cn/item.lua @@ -184,8 +184,8 @@ local item = { ["desc"]="S2竞技场黄金头像框,英雄的光辉。" }, [47]={ - ["name"]="随机史诗英雄碎片", - ["desc"]="所有碎片只随机出现以下英雄中的一名。" + ["name"]="随机史诗英雄", + ["desc"]="批量获取时只会随机以下英雄中的一名" }, [1001]={ ["name"]="暗淡陨铁", diff --git a/lua/app/config/strings/cn/skill_rogue.lua b/lua/app/config/strings/cn/skill_rogue.lua index 3fbf4ddd..19c5f296 100644 --- a/lua/app/config/strings/cn/skill_rogue.lua +++ b/lua/app/config/strings/cn/skill_rogue.lua @@ -216,7 +216,7 @@ local skill_rogue = { ["desc"]="Combo:钢铁重击对流血敌人额外造成1次伤害。" }, [1400104]={ - ["desc"]="钢铁重击附加的眩晕,回合数+1。" + ["desc"]="钢铁重击有50%概率附加眩晕效果,2回合。" }, [1400105]={ ["desc"]="钢铁重击附加的灼烧效果,伤害提升,回合数+1。" @@ -480,7 +480,7 @@ local skill_rogue = { ["desc"]="美丽梦魇沿X方向可额外消除4格。" }, [3400204]={ - ["desc"]="美丽梦魇附加的昏睡效果,概率提升到100%。" + ["desc"]="美丽梦魇附加的昏睡效果,概率提升到80%。" }, [3400205]={ ["desc"]="Combo:梦魔普攻昏睡敌人将附加禁锢效果,2回合。" @@ -645,7 +645,7 @@ local skill_rogue = { ["desc"]="魔法扫帚使用时本次普攻伤害提升15%。" }, [5300103]={ - ["desc"]="魔法扫帚可附加昏睡效果,2回合。" + ["desc"]="魔法扫帚有50%概率附加昏睡效果,2回合。" }, [5300104]={ ["desc"]="魔法扫帚附加的中毒效果,伤害提升。" diff --git a/lua/app/config/strings/de/buff.lua b/lua/app/config/strings/de/buff.lua index 9a1585bf..3d730eff 100644 --- a/lua/app/config/strings/de/buff.lua +++ b/lua/app/config/strings/de/buff.lua @@ -130,6 +130,14 @@ local buff = { [81]={ ["id"]=81, ["name"]="skill_hurt_add_show" + }, + [82]={ + ["id"]=82, + ["name"]="shield_rebound_200" + }, + [83]={ + ["id"]=83, + ["name"]="shield_rebound_100" } } local keys = { @@ -166,12 +174,14 @@ local keys = { ["shield_ice_rebound_400"]=buff[75], ["invincible_shield"]=buff[79], ["shield_ice_02"]=buff[80], - ["skill_hurt_add_show"]=buff[81] + ["skill_hurt_add_show"]=buff[81], + ["shield_rebound_200"]=buff[82], + ["shield_rebound_100"]=buff[83] } } local config = { data=buff, keys=keys, -count=33 +count=35 } return config \ No newline at end of file diff --git a/lua/app/config/strings/en/buff.lua b/lua/app/config/strings/en/buff.lua index 9dfe6efe..ea2c8d02 100644 --- a/lua/app/config/strings/en/buff.lua +++ b/lua/app/config/strings/en/buff.lua @@ -32,157 +32,196 @@ local buff = { [24]={ ["id"]=24, ["desc"]="Damage Boost: Increases damage dealt by {0}.", + ["tips_desc"]="Damage Boost: Increases all damage dealt.", ["name"]="dmg_addition_all_add" }, [33]={ ["id"]=33, ["show_name"]="Stun", ["desc"]="Stun: Unable to take any action this turn.", + ["tips_desc"]="Stun: Unable to take any action this turn.", ["name"]="stun" }, [34]={ ["id"]=34, - ["desc"]="Shield: Absorbs damage up to {0} of Max HP.", + ["desc"]="Shield: Can take a certain amount of damage.", + ["tips_desc"]="Shield: Can take a certain amount of damage.", ["name"]="shield" }, [36]={ ["id"]=36, ["show_name"]="Cold", ["desc"]="Cold: Normal attack -{0}.", + ["tips_desc"]="Cold: Less normal attacks.", ["name"]="normal_attack_dec" }, [37]={ ["id"]=37, ["show_name"]="Rage", ["desc"]="Rage: Normal attack +{0}.", + ["tips_desc"]="Rage: More normal attacks.", ["name"]="normal_attack_add" }, [47]={ ["id"]=47, - ["desc"]="Counter Shield: Absorbs damage up to {0} of Max HP and reflects 200% of the damage back to the enemy.", + ["desc"]="Counter Shield: Absorbs a certain amount of damage and reflects damage back to the enemy.", + ["tips_desc"]="Counter Shield: Absorbs a certain amount of damage and reflects damage back to the enemy.", ["name"]="shield_rebound_200" }, [48]={ ["id"]=48, ["show_name"]="Burn", ["desc"]="Burn: Inflicts damage equal to {0} of the caster's attack at the end of the turn.", + ["tips_desc"]="Burn: Inflicts a certain amount of damage at the end of the turn.", ["name"]="burn" }, [49]={ ["id"]=49, ["show_name"]="Vulnerable", ["desc"]="Vulnerable: Increases all damage taken by {0}.", + ["tips_desc"]="Vulnerable: Increases all damage taken.", ["name"]="vulnerable" }, [50]={ ["id"]=50, ["show_name"]="Frozen", ["desc"]="Frozen: Unable to take any action and buffs won't take effect this turn.", + ["tips_desc"]="Frozen: Unable to take any action and buffs won't take effect this turn.", ["name"]="frozen" }, [51]={ ["id"]=51, ["show_name"]="Poisoned", ["desc"]="Poisoned: Inflicts damage equal to {0} of the caster's attack at the end of the turn.", + ["tips_desc"]="Poisoned: Inflicts a certain amount of damage at the end of the turn.", ["name"]="poison" }, [52]={ ["id"]=52, ["show_name"]="Imprison", ["desc"]="Imprison: Can only use normal attacks this turn.", + ["tips_desc"]="Imprison: Can only use normal attacks this turn and skill gauge will not increase.", ["name"]="imprison" }, [53]={ ["id"]=53, ["show_name"]="Corruption", ["desc"]="Corruption: Reduces HP recovery effect by {0}.", + ["tips_desc"]="Corruption: HP recovery effect reduces.", ["name"]="corrupt" }, [54]={ ["id"]=54, ["show_name"]="Bleed", ["desc"]="Bleed: Restores the attacker's HP upon hit and deals damage equal to {0} of the attacker's attack at the end of the turn.", + ["tips_desc"]="Bleed: Restores the attacker's HP upon hit and deals damage at the end of the turn.", ["name"]="bleed" }, [55]={ ["id"]=55, ["show_name"]="Weak", ["desc"]="Weak: Reduces damage dealt by {0}.", + ["tips_desc"]="Weak: Reduces damage dealt.", ["name"]="weaken" }, [56]={ ["id"]=56, ["show_name"]="Drowsy", ["desc"]="Drowsy: Unable to take any action this turn. Cured when hit.", + ["tips_desc"]="Drowsy: Unable to take any action this turn. Cured when hit.", ["name"]="lethargy" }, [57]={ ["id"]=57, ["show_name"]="Curse", ["desc"]="Curse: Attacks will not deal damage but instead heal the opponent.", + ["tips_desc"]="Curse: Attacks will not deal damage but instead heal the opponent.", ["name"]="curse" }, [58]={ ["id"]=58, ["show_name"]="Lock", ["desc"]="Lock: Locks a random color on the board and prevents it from being selected.", + ["tips_desc"]="Lock: Locks a random color on the board and prevents it from being selected.", ["name"]="lock" }, [59]={ ["id"]=59, ["show_name"]="Head-start", ["desc"]="Head-start: Act first every turn.", + ["tips_desc"]="Head-start: Act first every turn.", ["name"]="first_hand" }, [61]={ ["id"]=61, ["show_name"]="Undead", ["desc"]="Undead: Does not die from fatal damage.", + ["tips_desc"]="Undead: Does not die from fatal damage this turn.", ["name"]="undead" }, [62]={ ["id"]=62, ["show_name"]="Counterattack", ["desc"]="Counterattack: Has a {0} chance to counterattack after taking direct damage.", + ["tips_desc"]="Counterattack: Has a chance to counterattack when directly hit.", ["name"]="counterattack" }, [63]={ ["id"]=63, ["show_name"]="Damage Counter", ["desc"]="Damage Counter: Reflects {0} of the enemy's damage.", + ["tips_desc"]="Damage Counter: Reflects enemy's damage.", ["name"]="thorns" }, [73]={ ["id"]=73, - ["desc"]="Counter Shield: Absorbs damage up to {0} of Max HP and reflects 400% of the enemy's damage.", + ["desc"]="Counter Shield : Absorbs a certain amount of damage and reflects massive damage back to the enemy.", + ["tips_desc"]="Counter Shield 2: Absorbs a certain amount of damage and reflects massive damage back to the enemy.", ["name"]="shield_rebound_400" }, [74]={ ["id"]=74, - ["desc"]="Frost Shield: Absorbs damage up to {0} of Max HP.", + ["desc"]="Frost Shield: Absorbs a certain amount of damage.", + ["tips_desc"]="Frost Shield: Absorbs a certain amount of damage.", ["name"]="shield_ice" }, [75]={ ["id"]=75, - ["desc"]="Frost Shield: Absorbs damage up to {0} of Max HP and reflects 400% of the enemy's damage.", + ["desc"]="Frost Shield 2: Absorbs a certain amount of damage and reflects massive damage back to the enemy.", + ["tips_desc"]="Frost Shield 2: Absorbs a certain amount of damage and reflects massive damage back to the enemy.", ["name"]="shield_ice_rebound_400" }, [79]={ ["id"]=79, ["show_name"]="Psychic Shield", ["desc"]="Psychic Shield: While the shield is active, the bearer is invulnerable and takes no damage. Each hit taken consumes one stack of the shield.", + ["tips_desc"]="Psychic Shield: While the shield is active, the bearer is invulnerable and takes no damage. Each hit taken consumes one stack of the shield.", ["name"]="invincible_shield" }, [80]={ ["id"]=80, - ["desc"]="Frost Shield: Absorbs damage up to {0} of Max HP.", + ["desc"]="Frost Shield: Absorbs a certain amount of damage.", + ["tips_desc"]="Frost Shield: Absorbs a certain amount of damage.", ["name"]="shield_ice_02" }, [81]={ ["id"]=81, ["show_name"]="Skill DMG Bonus", ["desc"]="Skill DMG Bonus: Increases all skill damage", + ["tips_desc"]="Skill DMG Bonus: Increases all skill damage", ["name"]="skill_hurt_add_show" + }, + [82]={ + ["id"]=82, + ["desc"]="Counter Shield : Absorbs a certain amount of damage and reflects massive damage back to the enemy.", + ["tips_desc"]="Counter Shield 2: Absorbs a certain amount of damage and reflects massive damage back to the enemy.", + ["name"]="shield_rebound_200" + }, + [83]={ + ["id"]=83, + ["desc"]="Counter Shield: Absorbs a certain amount of damage and reflects damage back to the enemy.", + ["tips_desc"]="Counter Shield: Absorbs a certain amount of damage and reflects damage back to the enemy.", + ["name"]="shield_rebound_100" } } local keys = { @@ -219,12 +258,14 @@ local keys = { ["shield_ice_rebound_400"]=buff[75], ["invincible_shield"]=buff[79], ["shield_ice_02"]=buff[80], - ["skill_hurt_add_show"]=buff[81] + ["skill_hurt_add_show"]=buff[81], + ["shield_rebound_200"]=buff[82], + ["shield_rebound_100"]=buff[83] } } local config = { data=buff, keys=keys, -count=33 +count=35 } return config \ No newline at end of file diff --git a/lua/app/config/strings/en/global.lua b/lua/app/config/strings/en/global.lua index bab0904c..f8f1ec45 100644 --- a/lua/app/config/strings/en/global.lua +++ b/lua/app/config/strings/en/global.lua @@ -362,7 +362,7 @@ local localization_global = ["DUNGEON_WEAPON_DESC_7"] = "Guide", ["DUNGEON_WEAPON_DESC_8"] = "Boss Guide", ["DUNGEON_WEAPON_DESC_9"] = "Recent Clearance", - ["DUNGEON_WEAPON_DESC_10"] = "Team level required: {0}", + ["DUNGEON_WEAPON_DESC_10"] = "Player level required: {0}", ["DUNGEON_WEAPON_DESC_11"] = "Unlocked after clearing the previous chapter.", ["EQUIP_DESC_1"] = "Weapon", ["EQUIP_DESC_2"] = "Armor", @@ -423,6 +423,7 @@ local localization_global = ["DUNGEON_ARMOR_DESC_17"] = "Stage attempts left today: {0}", ["NAVER_SETTING_DESC"] = "Naver", ["EQUIP_DESC_26"] = "4-pc Armor +{0}:", + ["BATTLE_DESC_14"] = "There is an unfinished battle. Do you want to continue?", } return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/en/skill.lua b/lua/app/config/strings/en/skill.lua index 379d82b3..c94494a8 100644 --- a/lua/app/config/strings/en/skill.lua +++ b/lua/app/config/strings/en/skill.lua @@ -6,7 +6,7 @@ local skill = { ["desc"]="Claymore Cyclone: Deal skill damage multiple times." }, [1300220]={ - ["desc"]="Flame Punch: Clear 5 grids vertically and deal skill damage once, with a 50% chance to inflict Burn for 2 turns." + ["desc"]="Flame Punch: Clear 5 grids vertically and deal skill damage once, with a 50% chance to inflict Burn for 2 turns." }, [1400120]={ ["desc"]="Steel Strike: Change the color of 4 adjacent elements and deal massive skill damage multiple times." @@ -42,22 +42,22 @@ local skill = { ["desc"]="Moon Chaser: Increase damage and deal significantly skill damage once." }, [3400220]={ - ["desc"]="Alluring Nightmare: Deal one additional hit of massive skill damage and has a 50% chance to inflict Drowsy that lasts 2 turns." + ["desc"]="Alluring Nightmare: Deal one additional hit of massive skill damage and has a 50% chance to inflict Drowsy that lasts 2 turns." }, [4200120]={ ["desc"]="Elemental Link: Clear 3 random elements and deal skill damage once." }, [4300120]={ - ["desc"]="Frostbite Crystal: Deal one additional hit of skill damage and inflict Cold for 1 turn." + ["desc"]="Frostbite Crystal: Deal one additional hit of skill damage and inflict Cold for 1 turn." }, [4300220]={ - ["desc"]="Corrupt Blade: Deal one additional hit of skill damage and inflict Corrupt for 1 turn." + ["desc"]="Corrupt Blade: Deal one additional hit of skill damage and inflict Corrupt for 1 turn." }, [4400120]={ - ["desc"]="Frost Sword Dance: Clear 3 random elements and deal skill damage once. Inflict Cold for 1 turn." + ["desc"]="Frost Sword Dance: Clear 3 random elements and deal skill damage once. Inflict Cold for 1 turn." }, [4400220]={ - ["desc"]="Pharaoh's Curse: Deal one additional hit of skill damage and inflict Curse that lasts 1 turn." + ["desc"]="Pharaoh's Curse: Deal one additional hit of skill damage and inflict Curse that lasts 1 turn." }, [5200120]={ ["desc"]="Shield Art: Apply a shield to the team for 1 turn." diff --git a/lua/app/config/strings/en/skill_rogue.lua b/lua/app/config/strings/en/skill_rogue.lua index 2cf6bcd0..a248417a 100644 --- a/lua/app/config/strings/en/skill_rogue.lua +++ b/lua/app/config/strings/en/skill_rogue.lua @@ -480,7 +480,7 @@ local skill_rogue = { ["desc"]="Alluring Nightmare can clear additional 4 grids in the X direction." }, [3400204]={ - ["desc"]="The chance of Drowsy inflicted by Alluring Nightmare increases to 100%." + ["desc"]="The chance of Drowsy inflicted by Alluring Nightmare increases to 80%." }, [3400205]={ ["desc"]="Combo: Nightmare's normal attack to Drowsy enemy will inflict Imprison for 2 turns." diff --git a/lua/app/config/strings/es/buff.lua b/lua/app/config/strings/es/buff.lua index 00f2998b..b470e106 100644 --- a/lua/app/config/strings/es/buff.lua +++ b/lua/app/config/strings/es/buff.lua @@ -32,157 +32,196 @@ local buff = { [24]={ ["id"]=24, ["desc"]="Aumento de daño: daño causado aumenta en {0}.", + ["tips_desc"]="Aumento de daño: aumento de todos daños causados.", ["name"]="dmg_addition_all_add" }, [33]={ ["id"]=33, ["show_name"]="Vértigo", ["desc"]="Vértigo: incapaz de actuar en esta ronda.", + ["tips_desc"]="Vértigo: incapaz de actuar en esta ronda.", ["name"]="stun" }, [34]={ ["id"]=34, - ["desc"]="Escudo: soporta daño de {0} del HP máximo.", + ["desc"]="Escudo: puede soportar una cierta cantidad de daño.", + ["tips_desc"]="Escudo: puede soportar una cierta cantidad de daño.", ["name"]="shield" }, [36]={ ["id"]=36, ["show_name"]="Escarcha", ["desc"]="Escarcha: número de ataque comunes - {0}.", + ["tips_desc"]="Escarcha: reduce el número de ATQ común.", ["name"]="normal_attack_dec" }, [37]={ ["id"]=37, ["show_name"]="Excitado", ["desc"]="Excitado: número de ataques comunes + {0}.", + ["tips_desc"]="Excitado: aumenta el número de ATQ común.", ["name"]="normal_attack_add" }, [47]={ ["id"]=47, - ["desc"]="Escudo Reflexivo: soporta daño de {0} del HP máximo, y rebota 200% del daño del rival.", + ["desc"]="Escudo Reflexivo: puede soportar una cierta cantidad de daño y reflejar el daño del oponente.", + ["tips_desc"]="Escudo Reflexivo: puede soportar una cierta cantidad de daño y reflejar el daño del oponente.", ["name"]="shield_rebound_200" }, [48]={ ["id"]=48, ["show_name"]="Quemadura", ["desc"]="Quemadura: al final de la ronda, causa un daño de {0} del ataque del lanzador.", + ["tips_desc"]="Quemadura: causa una cierta cantidad de daño al final de la ronda.", ["name"]="burn" }, [49]={ ["id"]=49, ["show_name"]="Vulnerabilidad", ["desc"]="Vulnerabilidad: todo el daño recibido aumenta en {0}.", + ["tips_desc"]="Vulnerabilidad: aumento de todos daños recibidos.", ["name"]="vulnerable" }, [50]={ ["id"]=50, ["show_name"]="Congelado", ["desc"]="Congelado: incapaz de actuar y aplicar el efecto de bonus en esta ronda.", + ["tips_desc"]="Congelado: incapaz de actuar y aplicar el efecto de bonus en esta ronda.", ["name"]="frozen" }, [51]={ ["id"]=51, ["show_name"]="Envenenado", ["desc"]="Envenenado: al final de la ronda, causa un daño de {0} del ataque del lanzador.", + ["tips_desc"]="Envenenado: causa una cierta cantidad de daño al final de la ronda.", ["name"]="poison" }, [52]={ ["id"]=52, ["show_name"]="Encarcelado", ["desc"]="Encarcelado: solo se usan ataques comunes en esta ronda.", + ["tips_desc"]="Encarcelado: solo se usa ATQ común en esta ronda, y el progreso de la habilidad no aumenta.", ["name"]="imprison" }, [53]={ ["id"]=53, ["show_name"]="Corrupto", ["desc"]="Corrupto: efecto de recuperación de HP se reduce en {0}.", + ["tips_desc"]="Corrupto: reduce el efecto de recuperación de HP.", ["name"]="corrupt" }, [54]={ ["id"]=54, ["show_name"]="Sangrado", ["desc"]="Sangrado: restaura HP del atacante cuando es golpeado e causa un daño de {0} del ataque del lanzador al final de la ronda.", + ["tips_desc"]="Sangrado: restaura HP del atacante cuando es golpeado, y causa daño al final de la ronda.", ["name"]="bleed" }, [55]={ ["id"]=55, ["show_name"]="Débil", ["desc"]="Débil: daño causado se reduce en {0}.", + ["tips_desc"]="Debilidad: reduce el daño causado.", ["name"]="weaken" }, [56]={ ["id"]=56, ["show_name"]="Dormido", ["desc"]="Dormido: incapaz de actuar en esta ronda, y el efecto se eliminará al ser golpeado.", + ["tips_desc"]="Dormido: incapaz de actuar en esta ronda, y el efecto se eliminará al ser golpeado.", ["name"]="lethargy" }, [57]={ ["id"]=57, ["show_name"]="Maldecido", ["desc"]="Maldecido: el ataque cura al rival en vez de causar daño.", + ["tips_desc"]="Maldecido: el ataque cura al rival en vez de causar daño.", ["name"]="curse" }, [58]={ ["id"]=58, ["show_name"]="Bloqueo", ["desc"]="Bloqueo: bloquea un color aleatorio en el tablero para que no pueda ser elegido.", + ["tips_desc"]="Bloqueo: bloquea un color aleatorio en el tablero para que no pueda ser elegido.", ["name"]="lock" }, [59]={ ["id"]=59, ["show_name"]="Iniciado", ["desc"]="Iniciado: toma la iniciativa en cada ronda.", + ["tips_desc"]="Iniciado: toma la iniciativa en cada ronda.", ["name"]="first_hand" }, [61]={ ["id"]=61, ["show_name"]="Inmortal", ["desc"]="Inmortal: no muere por daño letal.", + ["tips_desc"]="Inmortal: no muere por daño letal en esta ronda.", ["name"]="undead" }, [62]={ ["id"]=62, ["show_name"]="Contraataque", ["desc"]="Contraataque: al recibir daño directo, hay un {0} de chance de contraatacar.", + ["tips_desc"]="Contraataque: hay un chance de contra-atacar al recibir daño directo.", ["name"]="counterattack" }, [63]={ ["id"]=63, ["show_name"]="Daño Reflexivo", ["desc"]="Daño Reflexivo: rebota {0} el daño del rival.", + ["tips_desc"]="Daño Reflexivo: refleja el daño del oponente.", ["name"]="thorns" }, [73]={ ["id"]=73, - ["desc"]="Escudo Reflexivo: soporta daño de {0} del HP máximo, y rebota 400% del daño del rival.", + ["desc"]="Escudo Reflexivo : puede soportar una cierta cantidad de daño y reflejar daño masivo del oponente.", + ["tips_desc"]="Escudo Reflexivo 2: puede soportar una cierta cantidad de daño y reflejar daño masivo del oponente.", ["name"]="shield_rebound_400" }, [74]={ ["id"]=74, - ["desc"]="Escudo de Escarcha: soporta daño de {0} del HP máximo.", + ["desc"]="Escudo de Escarcha: puede soportar una cierta cantidad de daño.", + ["tips_desc"]="Escudo de Escarcha: puede soportar una cierta cantidad de daño.", ["name"]="shield_ice" }, [75]={ ["id"]=75, - ["desc"]="Escudo de Escarcha: soporta daño de {0} del HP máximo, y rebota 400% del daño del rival.", + ["desc"]="Escudo de Escarcha 2: puede soportar una cierta cantidad de daño y reflejar daño masivo del oponente.", + ["tips_desc"]="Escudo de Escarcha 2: puede soportar una cierta cantidad de daño y reflejar daño masivo del oponente.", ["name"]="shield_ice_rebound_400" }, [79]={ ["id"]=79, ["show_name"]="Escudo Mental", ["desc"]="Escudo Mental: cuando el escudo está ativo, estarás inmune a todos los daños. Cada ataque acertado remueve 1 capa de escudo.", + ["tips_desc"]="Escudo Mental: cuando el escudo está ativo, estarás inmune a todos los daños. Cada ataque acertado remueve 1 capa de escudo.", ["name"]="invincible_shield" }, [80]={ ["id"]=80, - ["desc"]="Escudo de Escarcha: soporta daño de {0} del HP máximo.", + ["desc"]="Escudo de Escarcha: puede soportar una cierta cantidad de daño.", + ["tips_desc"]="Escudo de Escarcha: puede soportar una cierta cantidad de daño.", ["name"]="shield_ice_02" }, [81]={ ["id"]=81, ["show_name"]="Bonus de daño de habilidad", ["desc"]="Bonus de daño de habilidad: aumenta el daño de todas las habilidades", + ["tips_desc"]="Bonus de daño de habilidad: aumenta el daño de todas las habilidades", ["name"]="skill_hurt_add_show" + }, + [82]={ + ["id"]=82, + ["desc"]="Escudo Reflexivo : puede soportar una cierta cantidad de daño y reflejar daño masivo del oponente.", + ["tips_desc"]="Escudo Reflexivo 2: puede soportar una cierta cantidad de daño y reflejar daño masivo del oponente.", + ["name"]="shield_rebound_200" + }, + [83]={ + ["id"]=83, + ["desc"]="Escudo Reflexivo: puede soportar una cierta cantidad de daño y reflejar el daño del oponente.", + ["tips_desc"]="Escudo Reflexivo: puede soportar una cierta cantidad de daño y reflejar el daño del oponente.", + ["name"]="shield_rebound_100" } } local keys = { @@ -219,12 +258,14 @@ local keys = { ["shield_ice_rebound_400"]=buff[75], ["invincible_shield"]=buff[79], ["shield_ice_02"]=buff[80], - ["skill_hurt_add_show"]=buff[81] + ["skill_hurt_add_show"]=buff[81], + ["shield_rebound_200"]=buff[82], + ["shield_rebound_100"]=buff[83] } } local config = { data=buff, keys=keys, -count=33 +count=35 } return config \ No newline at end of file diff --git a/lua/app/config/strings/es/global.lua b/lua/app/config/strings/es/global.lua index eff300f9..7036ca53 100644 --- a/lua/app/config/strings/es/global.lua +++ b/lua/app/config/strings/es/global.lua @@ -362,7 +362,7 @@ local localization_global = ["DUNGEON_WEAPON_DESC_7"] = "Consejo", ["DUNGEON_WEAPON_DESC_8"] = "Guía de Jefe", ["DUNGEON_WEAPON_DESC_9"] = "Fase recién completada", - ["DUNGEON_WEAPON_DESC_10"] = "Desbloqueado en Nv.{0} del equipo", + ["DUNGEON_WEAPON_DESC_10"] = "Desbloqueado en Nv.{0} del jugador", ["DUNGEON_WEAPON_DESC_11"] = "Desbloqueado tras completar el capítulo anterior", ["EQUIP_DESC_1"] = "Arma", ["EQUIP_DESC_2"] = "Armadura", @@ -423,6 +423,7 @@ local localization_global = ["DUNGEON_ARMOR_DESC_17"] = "Quedan {0} chances hoy", ["NAVER_SETTING_DESC"] = "Naver", ["EQUIP_DESC_26"] = "4 armaduras +{0}:", + ["BATTLE_DESC_14"] = "Existe una batalla inconclusa. ¿Quieres continuar?", } return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/es/skill.lua b/lua/app/config/strings/es/skill.lua index 26a5b398..e0fb2f1a 100644 --- a/lua/app/config/strings/es/skill.lua +++ b/lua/app/config/strings/es/skill.lua @@ -6,7 +6,7 @@ local skill = { ["desc"]="Torbellino de Espada: causa varios daños de habilidad extras." }, [1300220]={ - ["desc"]="Puño Ardoroso: elimina 5 bloques verticalmente, y causa un daño de habilidad, con 50% de chance de agregar efecto de quemadura durante 2 rondas." + ["desc"]="Puño Ardoroso: elimina 5 bloques verticalmente, y causa un daño de habilidad, con 50% de chance de aplicar Quemadura durante 2 rondas." }, [1400120]={ ["desc"]="Golpe de Acero: cambia el color de 4 elementos circundantes y causa varios daños de habilidad masivo." @@ -42,22 +42,22 @@ local skill = { ["desc"]="Danza de Meteoro: aumenta el daño y causa un golpe adicional de enorme daño de habilidad." }, [3400220]={ - ["desc"]="Pesadilla Hermosa: causa un masivo daño de habilidad adicional, con un 50% de chance de aplicar Dormido durante 2 rondas." + ["desc"]="Pesadilla Hermosa: causa un masivo daño de habilidad adicional, con un 50% de chance de aplicar Dormido durante 2 rondas." }, [4200120]={ ["desc"]="Enlace de Elementos: elimina 3 elementos aleatorios y causa un daño de habilidad." }, [4300120]={ - ["desc"]="Cristal Escarchado: causa un daño de habilidad adicional con efecto de Escarcha durante 1 ronda." + ["desc"]="Cristal Escarchado: causa un daño de habilidad adicional con efecto de Escarcha durante 1 ronda." }, [4300220]={ - ["desc"]="Filo Corrupto: causa un daño de habilidad adicional con efecto de Corrupto durante 1 ronda." + ["desc"]="Filo Corrupto: causa un daño de habilidad adicional con efecto de Corrupto durante 1 ronda." }, [4400120]={ - ["desc"]="Espada de Escarcha: elimina 3 elementos aleatorios, y causa un daño de habilidad con efecto de Escarcha durante 1 ronda." + ["desc"]="Espada de Escarcha: elimina 3 elementos aleatorios, y causa un daño de habilidad con efecto de Escarcha durante 1 ronda." }, [4400220]={ - ["desc"]="Maldición de Faraón: causa un daño de habilidad adicional, con efecto de Maldecido durante 1 ronda." + ["desc"]="Maldición de Faraón: causa un daño de habilidad adicional, con efecto de Maldecido durante 1 ronda." }, [5200120]={ ["desc"]="Hechizo Escudo: agrega un escudo al equipo durante 1 ronda." diff --git a/lua/app/config/strings/es/skill_rogue.lua b/lua/app/config/strings/es/skill_rogue.lua index 121dc940..fef3e3cb 100644 --- a/lua/app/config/strings/es/skill_rogue.lua +++ b/lua/app/config/strings/es/skill_rogue.lua @@ -480,7 +480,7 @@ local skill_rogue = { ["desc"]="Pesadilla Hermosa elimina 4 bloques extras en direcciones de X." }, [3400204]={ - ["desc"]="Aumenta el chance de Dormido aplicado por Pesadilla Hermosa a 100%." + ["desc"]="Aumenta el chance de Dormido aplicado por Pesadilla Hermosa a 80%." }, [3400205]={ ["desc"]="Combo: el ataque común de Íncubo a enemigos Dormidos aplicará Encarcelamiento durante 2 rondas." diff --git a/lua/app/config/strings/fr/buff.lua b/lua/app/config/strings/fr/buff.lua index 9a1585bf..3d730eff 100644 --- a/lua/app/config/strings/fr/buff.lua +++ b/lua/app/config/strings/fr/buff.lua @@ -130,6 +130,14 @@ local buff = { [81]={ ["id"]=81, ["name"]="skill_hurt_add_show" + }, + [82]={ + ["id"]=82, + ["name"]="shield_rebound_200" + }, + [83]={ + ["id"]=83, + ["name"]="shield_rebound_100" } } local keys = { @@ -166,12 +174,14 @@ local keys = { ["shield_ice_rebound_400"]=buff[75], ["invincible_shield"]=buff[79], ["shield_ice_02"]=buff[80], - ["skill_hurt_add_show"]=buff[81] + ["skill_hurt_add_show"]=buff[81], + ["shield_rebound_200"]=buff[82], + ["shield_rebound_100"]=buff[83] } } local config = { data=buff, keys=keys, -count=33 +count=35 } return config \ No newline at end of file diff --git a/lua/app/config/strings/id/buff.lua b/lua/app/config/strings/id/buff.lua index f1e9adf7..51fb7a72 100644 --- a/lua/app/config/strings/id/buff.lua +++ b/lua/app/config/strings/id/buff.lua @@ -32,157 +32,196 @@ local buff = { [24]={ ["id"]=24, ["desc"]="Damage Boost: DMG yang diberikan meningkat {0}.", + ["tips_desc"]="Damage Boost: Semua DMG yang diberikan meningkat.", ["name"]="dmg_addition_all_add" }, [33]={ ["id"]=33, ["show_name"]="Stun", ["desc"]="Stun: Tidak dapat bergerak pada giliran ini.", + ["tips_desc"]="Stun: Tidak dapat bergerak pada giliran ini.", ["name"]="stun" }, [34]={ ["id"]=34, - ["desc"]="Perisai: Menerima hingga {0} DMG HP maksimum.", + ["desc"]="Perisai: Bisa menahan sejumlah DMG.", + ["tips_desc"]="Perisai: Bisa menahan sejumlah DMG.", ["name"]="shield" }, [36]={ ["id"]=36, ["show_name"]="Frost", ["desc"]="Frost: ATK Normal -{0}.", + ["tips_desc"]="Frost: Jumlah ATK Normal berkurang.", ["name"]="normal_attack_dec" }, [37]={ ["id"]=37, ["show_name"]="Excited", ["desc"]="Excited: ATK Normal +{0}.", + ["tips_desc"]="Excited: Jumlah ATK Normal bertambah.", ["name"]="normal_attack_add" }, [47]={ ["id"]=47, - ["desc"]="Perisai Anti-DMG: Menerima {0} DMG dari HP maksimum dan memantulkan 200% DMG musuh.", + ["desc"]="Perisai Anti-DMG: Dapat menahan sejumlah DMG dan memantulkan kembali DMG lawan.", + ["tips_desc"]="Perisai Anti-DMG: Dapat menahan sejumlah DMG dan memantulkan kembali DMG lawan.", ["name"]="shield_rebound_200" }, [48]={ ["id"]=48, ["show_name"]="Scorch", ["desc"]="Scorch: Memberikan {0} DMG pada kekuatan penyerang di akhir giliran.", + ["tips_desc"]="Scorch: Memberikan sejumlah DMG di akhir giliran.", ["name"]="burn" }, [49]={ ["id"]=49, ["show_name"]="Rentan", ["desc"]="Rentan: Semua DMG yang diterima meningkat {0}.", + ["tips_desc"]="Rentan: Semua DMG yang diterima meningkat.", ["name"]="vulnerable" }, [50]={ ["id"]=50, ["show_name"]="Freeze", ["desc"]="Freeze: Tidak dapat bergerak pada giliran ini dan efek buff tidak berlaku.", + ["tips_desc"]="Freeze: Tidak dapat bertindak pada giliran ini dan efek buff tidak berlaku.", ["name"]="frozen" }, [51]={ ["id"]=51, ["show_name"]="Keracunan", ["desc"]="Keracunan: Memberikan {0} DMG pada penyerang di akhir giliran.", + ["tips_desc"]="Keracunan: Memberikan sejumlah DMG di akhir giliran.", ["name"]="poison" }, [52]={ ["id"]=52, ["show_name"]="Larangan", ["desc"]="Larangan: Hanya dapat menggunakan Normal ATK pada giliran ini.", + ["tips_desc"]="Larangan: Hanya bisa menggunakan ATK Normal di giliran ini, dan progres skill tidak akan meningkat.", ["name"]="imprison" }, [53]={ ["id"]=53, ["show_name"]="Korupsi", ["desc"]="Korupsi: Efek pemulihan HP berkurang {0}.", + ["tips_desc"]="Korosi: Efek pemulihan HP berkurang.", ["name"]="corrupt" }, [54]={ ["id"]=54, ["show_name"]="Bleed", ["desc"]="Bleed: Memulihkan HP penyerang saat diserang dan memberikan {0} DMG pada penyerang di akhir giliran.", + ["tips_desc"]="Bleed: Memulihkan HP penyerang saat diserang dan memberikan DMG di akhir giliran.", ["name"]="bleed" }, [55]={ ["id"]=55, ["show_name"]="Lemah", ["desc"]="Lemah: DMG yang diberikan berkurang {0}.", + ["tips_desc"]="Lemah: Mengurangi DMG.", ["name"]="weaken" }, [56]={ ["id"]=56, ["show_name"]="Kantuk", ["desc"]="Kantuk: Tidak dapat begerak pada giliran ini, memukul akan menghapus efek.", + ["tips_desc"]="Kantuk: Tidak dapat beraksi pada giliran ini, dan menerima ATK akan menghilangkan efek.", ["name"]="lethargy" }, [57]={ ["id"]=57, ["show_name"]="Kutuk", ["desc"]="Kutuk: ATK tidak menyebabkan DMG, tetapi menyembuhkan musuh.", + ["tips_desc"]="Kutuk: ATK tidak menimbulkan DMG, tetapi menyembuhkan lawan.", ["name"]="curse" }, [58]={ ["id"]=58, ["show_name"]="Kunci", ["desc"]="Kunci: Mengunci warna di papan tulis secara acak dan tidak dapat dipilih.", + ["tips_desc"]="Kunci: Mengunci warna di papan secara acak dam tidak dapat dipilih.", ["name"]="lock" }, [59]={ ["id"]=59, ["show_name"]="Strike", ["desc"]="Strike: Memimpin di setiap giliran.", + ["tips_desc"]="Strike: Memimpin di setiap giliran.", ["name"]="first_hand" }, [61]={ ["id"]=61, ["show_name"]="Imortal", ["desc"]="Imortal: Tidak mati saat menerima DMG fatal.", + ["tips_desc"]="Imortal: Menerima DMG fatal pada giliran ini tidak akan membunuhmu.", ["name"]="undead" }, [62]={ ["id"]=62, ["show_name"]="Serangan Balik", ["desc"]="Serangan Balik: {0} peluang melakukan serangan balik saat menerima DMG langsung.", + ["tips_desc"]="Serangan Balik: Berpeluang melakukan serangan balik saat menerima DMG langsung.", ["name"]="counterattack" }, [63]={ ["id"]=63, ["show_name"]="DMG Balik", ["desc"]="DMG Balik: Memantulkan {0} DMG musuh.", + ["tips_desc"]="DMG Balik: Memantulkan DMG lawan.", ["name"]="thorns" }, [73]={ ["id"]=73, - ["desc"]="Perisai Anti-DMG: Menerima {0} DMG dari HP maksimum dan memantulkan 400% DMG musuh.", + ["desc"]="Perisai Anti-DMG : Dapat menahan sejumlah DMG dan memantulkan kembali DMG lawan.", + ["tips_desc"]="Perisai Anti-DMG 2: Dapat menahan sejumlah DMG dan memantulkan kembali DMG lawan.", ["name"]="shield_rebound_400" }, [74]={ ["id"]=74, - ["desc"]="Perisai Frost: Menerima hingga {0} DMG HP maksimum.", + ["desc"]="Perisai Frost: Dapat menahan sejumlah DMG.", + ["tips_desc"]="Perisai Frost: Dapat menahan sejumlah DMG.", ["name"]="shield_ice" }, [75]={ ["id"]=75, - ["desc"]="Perisai Frost: Menerima hingga {0} DMG HP maksimum, dan memantulkan 400% DMG musuh.", + ["desc"]="Perisai Frost 2: Dapat menahan sejumlah DMG dan memantulkan kembali DMG lawan.", + ["tips_desc"]="Perisai Frost 2: Dapat menahan sejumlah DMG dan memantulkan kembali DMG lawan.", ["name"]="shield_ice_rebound_400" }, [79]={ ["id"]=79, ["show_name"]="Perisai Psikis", ["desc"]="Perisai Psikis: Saat perisai aktif, pembawa perisai menjadi kebal dan tidak menerima DMG. Setiap ATK yang diterima menghabiskan 1 tumpukan perisai.", + ["tips_desc"]="Perisai Psikis: Tidak akan menerima DMG apa pun selama ada perisai, dan 1 layer perisai akan dikurangi untuk setiap ATK.", ["name"]="invincible_shield" }, [80]={ ["id"]=80, - ["desc"]="Perisai Frost: Menerima hingga {0} DMG HP maksimum.", + ["desc"]="Perisai Frost: Dapat menahan sejumlah DMG.", + ["tips_desc"]="Perisai Frost: Dapat menahan sejumlah DMG.", ["name"]="shield_ice_02" }, [81]={ ["id"]=81, ["show_name"]="Peningkatan DMG Skill", ["desc"]="Peningkatan DMG Skill: Semua DMG skill meningkat", + ["tips_desc"]="Peningkatan DMG Skill: Semua DMG skill meningkat", ["name"]="skill_hurt_add_show" + }, + [82]={ + ["id"]=82, + ["desc"]="Perisai Anti-DMG : Dapat menahan sejumlah DMG dan memantulkan kembali DMG lawan.", + ["tips_desc"]="Perisai Anti-DMG 2: Dapat menahan sejumlah DMG dan memantulkan kembali DMG lawan.", + ["name"]="shield_rebound_200" + }, + [83]={ + ["id"]=83, + ["desc"]="Perisai Anti-DMG: Dapat menahan sejumlah DMG dan memantulkan kembali DMG lawan.", + ["tips_desc"]="Perisai Anti-DMG: Dapat menahan sejumlah DMG dan memantulkan kembali DMG lawan.", + ["name"]="shield_rebound_100" } } local keys = { @@ -219,12 +258,14 @@ local keys = { ["shield_ice_rebound_400"]=buff[75], ["invincible_shield"]=buff[79], ["shield_ice_02"]=buff[80], - ["skill_hurt_add_show"]=buff[81] + ["skill_hurt_add_show"]=buff[81], + ["shield_rebound_200"]=buff[82], + ["shield_rebound_100"]=buff[83] } } local config = { data=buff, keys=keys, -count=33 +count=35 } return config \ No newline at end of file diff --git a/lua/app/config/strings/id/global.lua b/lua/app/config/strings/id/global.lua index 2f9fa2f9..2ab51927 100644 --- a/lua/app/config/strings/id/global.lua +++ b/lua/app/config/strings/id/global.lua @@ -362,7 +362,7 @@ local localization_global = ["DUNGEON_WEAPON_DESC_7"] = "Panduan", ["DUNGEON_WEAPON_DESC_8"] = "Panduan Boss", ["DUNGEON_WEAPON_DESC_9"] = "Riwayat Lolos", - ["DUNGEON_WEAPON_DESC_10"] = "Syarat Level Tim: {0}", + ["DUNGEON_WEAPON_DESC_10"] = "Dibuka saat level pemain Lv.{0}", ["DUNGEON_WEAPON_DESC_11"] = "Terbuka setelah menyelesaikan bab sebelumnya.", ["EQUIP_DESC_1"] = "Senjata", ["EQUIP_DESC_2"] = "Armor", @@ -423,6 +423,7 @@ local localization_global = ["DUNGEON_ARMOR_DESC_17"] = "Sisa level hari ini: {0}", ["NAVER_SETTING_DESC"] = "Naver", ["EQUIP_DESC_26"] = "4 buah Armor +{0}:", + ["BATTLE_DESC_14"] = "Ada battle yang belum selesai. Lanjutkan?", } return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/id/skill.lua b/lua/app/config/strings/id/skill.lua index d836818d..38c1cb39 100644 --- a/lua/app/config/strings/id/skill.lua +++ b/lua/app/config/strings/id/skill.lua @@ -6,7 +6,7 @@ local skill = { ["desc"]="Topan Claymore: Memberikan DMG skill beberapa kali." }, [1300220]={ - ["desc"]="Pukulan Api: Menghapus 5 grid secara vertikal, memberikan DMG skill sekali, dan 50% peluang memberikan Scorch selama 2 giliran." + ["desc"]="Pukulan Api: Menghapus 5 grid secara vertikal dan memberikan DMG skill satu kali. Memiliki 50% peluang memberikan efek Scorch selama 2 giliran." }, [1400120]={ ["desc"]="Strike Baja: Ubah warna 4 elemen yang berdekatan dan berikan DMG skill yang besar beberapa kali." @@ -42,22 +42,22 @@ local skill = { ["desc"]="Pemburu Bulan: Meningkatkan DMG dan memberikan DMG skill yang besar sekali." }, [3400220]={ - ["desc"]="Nightmare Z: Menyebabkan DMG skill tambahan dalam jumlah besar dengan 50% peluang efek Kantuk selama 2 giliran." + ["desc"]="Nightmare Z: Menyebabkan DMG skill tambahan dalam jumlah besar dengan 50% peluang efek Kantuk selama 2 giliran." }, [4200120]={ ["desc"]="Link Elemen: Menghilangkan 3 elemen secara acak dan memberikan DMG skill." }, [4300120]={ - ["desc"]="Kristal Es: Menyebabkan DMG skill tambahan dengan efek embun beku selama 1 giliran." + ["desc"]="Kristal Es: Menyebabkan DMG skill tambahan dengan efek Freeze selama 1 giliran." }, [4300220]={ - ["desc"]="Tombak Tajam: Menyebabkan satu kali DMG skill tambahan dengan efek DMG selama 1 giliran." + ["desc"]="Tombak Tajam: Menyebabkan satu kali DMG skill tambahan dengan efek Korosi selama 1 giliran." }, [4400120]={ - ["desc"]="Tarian Pedang Frost: Menghapus 3 elemen acak dan memberikan damage skill sekali. Menimbulkan Freeze selama 1 giliran." + ["desc"]="Tarian Pedang Frost: Menghapus 3 elemen acak dan memberikan damage skill sekali. Menimbulkan efek Freeze selama 1 giliran." }, [4400220]={ - ["desc"]="Kutukan Firaun: Menyebakan satu kali DMG skill tambahan dengan efek Kutuk selama 1 giliran." + ["desc"]="Kutukan Firaun: Menyebakan satu kali DMG skill tambahan dengan efek Kutuk selama 1 giliran." }, [5200120]={ ["desc"]="Seni Perisai: Terapkan perisai ke tim untuk 1 giliran." diff --git a/lua/app/config/strings/id/skill_rogue.lua b/lua/app/config/strings/id/skill_rogue.lua index 94de94e4..9064e4a7 100644 --- a/lua/app/config/strings/id/skill_rogue.lua +++ b/lua/app/config/strings/id/skill_rogue.lua @@ -480,7 +480,7 @@ local skill_rogue = { ["desc"]="Nightmare Z dapat menghapus 4 grid tambahan pada arah X." }, [3400204]={ - ["desc"]="Efek Kantuk Nightmare Z meningkatkan peluang hingga 100%。" + ["desc"]="Efek Kantuk Nightmare Z meningkatkan peluang hingga 80%。" }, [3400205]={ ["desc"]="Combo: ATK Nightmare Z Kantuk musuh akan memiliki efek Larangan yang melekat selama 2 giliran." diff --git a/lua/app/config/strings/ja/buff.lua b/lua/app/config/strings/ja/buff.lua index 5a5e2438..0bc0a9a4 100644 --- a/lua/app/config/strings/ja/buff.lua +++ b/lua/app/config/strings/ja/buff.lua @@ -32,157 +32,196 @@ local buff = { [24]={ ["id"]=24, ["desc"]="ダメージ増加:敵に与えるダメージが{0}増加する。", + ["tips_desc"]="ダメージ増加:敵に与えるすべてのダメージが増加する。", ["name"]="dmg_addition_all_add" }, [33]={ ["id"]=33, ["show_name"]="スタン", ["desc"]="スタン:このターンは行動できない。", + ["tips_desc"]="スタン:このターンは行動できない。", ["name"]="stun" }, [34]={ ["id"]=34, - ["desc"]="シールド:最大HP{0}のダメージを無効化する。", + ["desc"]="シールド:一定量のダメージには耐えられる。", + ["tips_desc"]="シールド:一定量のダメージには耐えられる。", ["name"]="shield" }, [36]={ ["id"]=36, ["show_name"]="凍傷", ["desc"]="凍傷:通常攻撃の回数が-{0}。", + ["tips_desc"]="凍傷:通常攻撃の回数が減少する。", ["name"]="normal_attack_dec" }, [37]={ ["id"]=37, ["show_name"]="興奮", ["desc"]="興奮:通常攻撃の回数が+{0}。", + ["tips_desc"]="興奮:通常攻撃の回数が増加する。", ["name"]="normal_attack_add" }, [47]={ ["id"]=47, - ["desc"]="ミラーシールド:最大HP{0}のダメージを無効化し、200%のダメージを反射する。", + ["desc"]="ミラーシールド:一定量のダメージには耐えられ、ダメージを敵に反射する。", + ["tips_desc"]="ミラーシールド:一定量のダメージには耐えられ、ダメージを敵に反射する。", ["name"]="shield_rebound_200" }, [48]={ ["id"]=48, ["show_name"]="⽕傷", ["desc"]="⽕傷:ターンが終了した時、発動者攻撃力{0}のダメージを受ける。", + ["tips_desc"]="⽕傷:ターンが終了した時、敵に一定量のダメージを与える。", ["name"]="burn" }, [49]={ ["id"]=49, ["show_name"]="被ダメージアップ", ["desc"]="被ダメージアップ:受けた全てのダメージが{0}増加する。", + ["tips_desc"]="被ダメージアップ:敵が受けるダメージが増加する。", ["name"]="vulnerable" }, [50]={ ["id"]=50, ["show_name"]="凍結", ["desc"]="凍結:このターンは行動できず、バフ効果も無効。", + ["tips_desc"]="凍結:このターンは行動できず、バフ効果も無効。", ["name"]="frozen" }, [51]={ ["id"]=51, ["show_name"]="中毒", ["desc"]="中毒:ターンが終了した時、発動者攻撃力{0}のダメージを受ける。", + ["tips_desc"]="中毒:ターンが終了した時、敵に一定量のダメージを与える。", ["name"]="poison" }, [52]={ ["id"]=52, ["show_name"]="拘束", ["desc"]="拘束:このターンでは通常攻撃しか使用できない。", + ["tips_desc"]="拘束:このターンでは通常攻撃しか使用できず、且つスキルの進捗は増加しない。", ["name"]="imprison" }, [53]={ ["id"]=53, ["show_name"]="腐敗", ["desc"]="腐敗:HP回復効果は{0}減少する。", + ["tips_desc"]="腐敗:HP回復効果は減少する。", ["name"]="corrupt" }, [54]={ ["id"]=54, ["show_name"]="出血", ["desc"]="出血:ダメージを受けた時は敵のHPが回復し、ターンが終了した時、発動者攻撃力{0}のダメージを受ける。", + ["tips_desc"]="出血:ダメージを受けた時は敵のHPが回復し、ターンが終了した時、敵にダメージを与える。", ["name"]="bleed" }, [55]={ ["id"]=55, ["show_name"]="弱体", ["desc"]="弱体:与えるダメージが{0}減少する。", + ["tips_desc"]="弱体:与えるダメージが減少する。", ["name"]="weaken" }, [56]={ ["id"]=56, ["show_name"]="昏睡", ["desc"]="昏睡:このターンは行動できず、ダメージを受けると解除される。", + ["tips_desc"]="昏睡:このターンは行動できず、ダメージを受けると解除される。", ["name"]="lethargy" }, [57]={ ["id"]=57, ["show_name"]="呪い", ["desc"]="呪い:攻撃はダメージを与えることなく、敵を回復する。", + ["tips_desc"]="呪い:攻撃はダメージを与えることなく、敵を回復する。", ["name"]="curse" }, [58]={ ["id"]=58, ["show_name"]="ロック", ["desc"]="ロック:いずれの元素がロックされ、選択できなくなる。", + ["tips_desc"]="ロック:いずれの元素がロックされ、選択できなくなる。", ["name"]="lock" }, [59]={ ["id"]=59, ["show_name"]="先手", ["desc"]="先手:毎ターン先手を取る。", + ["tips_desc"]="先手:毎ターン先手を取る。", ["name"]="first_hand" }, [61]={ ["id"]=61, ["show_name"]="不死", ["desc"]="不死:致命ダメージを受けても死亡しない。", + ["tips_desc"]="不死:このターンで致命ダメージを受けても死亡しない。", ["name"]="undead" }, [62]={ ["id"]=62, ["show_name"]="反撃", ["desc"]="反撃:直接ダメージを受けた時、{0}の確率で反撃する。", + ["tips_desc"]="反撃:直接ダメージを受けた時、一定の確率で反撃する。", ["name"]="counterattack" }, [63]={ ["id"]=63, ["show_name"]="反射", ["desc"]="反射:{0}のダメージを反射する。", + ["tips_desc"]="反射:ダメージを反射する。", ["name"]="thorns" }, [73]={ ["id"]=73, - ["desc"]="ミラーシールド:最大HP{0}のダメージを無効化し、400%のダメージを反射する。", + ["desc"]="ミラーシールド:一定量のダメージには耐えられ、大量のダメージを敵に反射する。", + ["tips_desc"]="ミラーシールド2:一定量のダメージには耐えられ、大量のダメージを敵に反射する。", ["name"]="shield_rebound_400" }, [74]={ ["id"]=74, - ["desc"]="アイスシールド:最大HP{0}のダメージを無効化する。", + ["desc"]="アイスシールド:一定量のダメージには耐えられる。", + ["tips_desc"]="アイスシールド:一定量のダメージには耐えられる。", ["name"]="shield_ice" }, [75]={ ["id"]=75, - ["desc"]="アイスシールド:最大HP{0}のダメージを無効化し、400%のダメージを反射する。", + ["desc"]="アイスシールド2:一定量のダメージには耐えられ、大量のダメージを敵に反射する。", + ["tips_desc"]="アイスシールド2:一定量のダメージには耐えられ、大量のダメージを敵に反射する。", ["name"]="shield_ice_rebound_400" }, [79]={ ["id"]=79, ["show_name"]="マインドシールド", ["desc"]="マインドシールド:シールドがある間はダメージを受けず、攻撃が命中するごとにシールドが1つ減少する。", + ["tips_desc"]="マインドシールド:シールドがある間はダメージを受けず、攻撃が命中するごとにシールドが1つ減少する。", ["name"]="invincible_shield" }, [80]={ ["id"]=80, - ["desc"]="アイスシールド:最大HP{0}のダメージを無効化する。", + ["desc"]="アイスシールド:一定量のダメージには耐えられる。", + ["tips_desc"]="アイスシールド:一定量のダメージには耐えられる。", ["name"]="shield_ice_02" }, [81]={ ["id"]=81, ["show_name"]="スキルダメージ増加", ["desc"]="スキルダメージ増加:全てのスキルのダメージが増加する", + ["tips_desc"]="スキルダメージ増加:全てのスキルのダメージが増加する", ["name"]="skill_hurt_add_show" + }, + [82]={ + ["id"]=82, + ["desc"]="ミラーシールド:一定量のダメージには耐えられ、大量のダメージを敵に反射する。", + ["tips_desc"]="ミラーシールド2:一定量のダメージには耐えられ、大量のダメージを敵に反射する。", + ["name"]="shield_rebound_200" + }, + [83]={ + ["id"]=83, + ["desc"]="ミラーシールド:一定量のダメージには耐えられ、ダメージを敵に反射する。", + ["tips_desc"]="ミラーシールド:一定量のダメージには耐えられ、ダメージを敵に反射する。", + ["name"]="shield_rebound_100" } } local keys = { @@ -219,12 +258,14 @@ local keys = { ["shield_ice_rebound_400"]=buff[75], ["invincible_shield"]=buff[79], ["shield_ice_02"]=buff[80], - ["skill_hurt_add_show"]=buff[81] + ["skill_hurt_add_show"]=buff[81], + ["shield_rebound_200"]=buff[82], + ["shield_rebound_100"]=buff[83] } } local config = { data=buff, keys=keys, -count=33 +count=35 } return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/global.lua b/lua/app/config/strings/ja/global.lua index a6555154..608fb516 100644 --- a/lua/app/config/strings/ja/global.lua +++ b/lua/app/config/strings/ja/global.lua @@ -362,7 +362,7 @@ local localization_global = ["DUNGEON_WEAPON_DESC_7"] = "攻略", ["DUNGEON_WEAPON_DESC_8"] = "ボス攻略", ["DUNGEON_WEAPON_DESC_9"] = "最近のクリア情報", - ["DUNGEON_WEAPON_DESC_10"] = "チームレベル{0}に達すると解放", + ["DUNGEON_WEAPON_DESC_10"] = "プレイヤーレベル{0}に達すると解放", ["DUNGEON_WEAPON_DESC_11"] = "前章をグリア後に解放", ["EQUIP_DESC_1"] = "武器", ["EQUIP_DESC_2"] = "防具", @@ -423,6 +423,7 @@ local localization_global = ["DUNGEON_ARMOR_DESC_17"] = "本日残り回数:{0}", ["NAVER_SETTING_DESC"] = "Naver", ["EQUIP_DESC_26"] = "防具4つ+{0}:", + ["BATTLE_DESC_14"] = "まだ終わっていないバトルがありますが、続行しますか?", } return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/ja/skill.lua b/lua/app/config/strings/ja/skill.lua index 67d38685..b6d2079c 100644 --- a/lua/app/config/strings/ja/skill.lua +++ b/lua/app/config/strings/ja/skill.lua @@ -6,7 +6,7 @@ local skill = { ["desc"]="旋風切:追加でスキルを複数回発動する。" }, [1300220]={ - ["desc"]="ファイアパンチ:縦に5マスを消し、スキルを1回発動する。50%の確率で敵に2ターン⽕傷効果を付与する。" + ["desc"]="ファイアパンチ:縦に5マスを消し、スキルを1回発動する。50%の確率で敵に2ターン⽕傷効果を付与する。" }, [1400120]={ ["desc"]="ヘヴィーヒット:縦横4マスの元素を変え、大ダメージを与えるスキルを複数回発動する。" @@ -42,22 +42,22 @@ local skill = { ["desc"]="ムーンチェイサー:発動するターンダメージがアップ、特⼤ダメージを与えるスキルを1回発動する。" }, [3400220]={ - ["desc"]="アリュールナイトメア:追加で大ダメージを与えるスキルを1回発動し、50%の確率で敵に2ターン昏睡効果を付与する。" + ["desc"]="アリュールナイトメア:追加で大ダメージを与えるスキルを1回発動し、50%の確率で敵に2ターン昏睡効果を付与する。" }, [4200120]={ ["desc"]="元素連接:ランダムで3つの元素を消し、スキルを1回発動する。" }, [4300120]={ - ["desc"]="フロストバイトクリスタル:追加で1ターン凍傷効果付きダメージを与えるスキルを1回発動する。" + ["desc"]="フロストバイトクリスタル:追加でスキルを1回発動し、敵に1ターン凍傷効果を付与する。" }, [4300220]={ - ["desc"]="コラプトブレード:追加で1ターン腐敗効果付きダメージを与えるスキルを1回発動する。" + ["desc"]="コラプトブレード:追加でスキルを1回発動し、敵に1ターン腐敗効果を付与する。" }, [4400120]={ - ["desc"]="氷結の舞:ランダムで3つの元素を消し、1ターン凍傷効果付きのスキルを1回発動する。" + ["desc"]="氷結の舞:ランダムで3つの元素を消し、1ターン凍傷効果付きのスキルを1回発動する。" }, [4400220]={ - ["desc"]="ファラオの呪い:追加でダメージを与えるスキルを1回発動し、敵に1ターン呪い効果を付与する。" + ["desc"]="ファラオの呪い:追加でスキルを1回発動し、敵に1ターン呪い効果を付与する。" }, [5200120]={ ["desc"]="シールド術:全員に1ターンシールドを付与する。" diff --git a/lua/app/config/strings/ja/skill_rogue.lua b/lua/app/config/strings/ja/skill_rogue.lua index 735c2f48..8db52a13 100644 --- a/lua/app/config/strings/ja/skill_rogue.lua +++ b/lua/app/config/strings/ja/skill_rogue.lua @@ -480,7 +480,7 @@ local skill_rogue = { ["desc"]="「アリュールナイトメア」は追加でX方向4マスを消す。" }, [3400204]={ - ["desc"]="「アリュールナイトメア」の昏睡効果の確率は100%に増加する。" + ["desc"]="「アリュールナイトメア」の昏睡効果の確率は80%に増加する。" }, [3400205]={ ["desc"]="ヒット:夢魔の通常攻撃が昏睡状態の敵に2ターン拘束効果を付与する。" diff --git a/lua/app/config/strings/ko/buff.lua b/lua/app/config/strings/ko/buff.lua index 219625f9..4dabbf97 100644 --- a/lua/app/config/strings/ko/buff.lua +++ b/lua/app/config/strings/ko/buff.lua @@ -32,157 +32,196 @@ local buff = { [24]={ ["id"]=24, ["desc"]="대미지 상승: 가하는 대미지가 {0} 증가합니다.", + ["tips_desc"]="대미지 상승: 가하는 모든 대미지가 증가합니다.", ["name"]="dmg_addition_all_add" }, [33]={ ["id"]=33, ["show_name"]="기절", ["desc"]="기절: 이번 턴에 움직일 수 없습니다.", + ["tips_desc"]="기절: 이번 턴에 움직일 수 없습니다.", ["name"]="stun" }, [34]={ ["id"]=34, - ["desc"]="보호막: 최대 HP의 {0}에 달하는 대미지를 흡수할 수 있습니다.", + ["desc"]="보호막: 일정한 피해를 흡수할 수 있습니다.", + ["tips_desc"]="보호막: 일정한 피해를 흡수할 수 있습니다.", ["name"]="shield" }, [36]={ ["id"]=36, ["show_name"]="서리 상태", ["desc"]="서리 상태: 일반 공격 횟수 -{0}", + ["tips_desc"]="서리 상태: 일반 공격의 횟수가 감소합니다.", ["name"]="normal_attack_dec" }, [37]={ ["id"]=37, ["show_name"]="과열 상태", ["desc"]="과열 상태: 일반 공격 횟수+{0}", + ["tips_desc"]="과열 상태: 일반 공격 횟수가 증가합니다.", ["name"]="normal_attack_add" }, [47]={ ["id"]=47, - ["desc"]="가시 돋친 보호막: 최대 HP의 {0}에 달하는 대미지를 흡수하고 상대가 입힌 대미지의 200%를 되돌려줍니다.", + ["desc"]="피해 반사 보호막: 일정한 피해를 흡수하며 상대의 대미지를 반사합니다.", + ["tips_desc"]="피해 반사 보호막: 일정한 피해를 흡수하며 상대의 대미지를 반사합니다.", ["name"]="shield_rebound_200" }, [48]={ ["id"]=48, ["show_name"]="버닝 효과", ["desc"]="버닝 효과: 턴 종료 시 스킬 사용자 공격력의 {0}에 달하는 대미지를 입힙니다.", + ["tips_desc"]="버닝 효과: 턴 종료 시 일정량의 피해를 입힙니다.", ["name"]="burn" }, [49]={ ["id"]=49, ["show_name"]="부상 효과", ["desc"]="부상 효과: 받는 모든 대미지가 {0} 상승합니다.", + ["tips_desc"]="부상: 받는 모든 피해가 증가합니다.", ["name"]="vulnerable" }, [50]={ ["id"]=50, ["show_name"]="동결 효과", ["desc"]="동결 효과: 이번 턴에 움직일 수 없으며 버프 효과가 적용되지 않습니다.", + ["tips_desc"]="동결: 이번 턴에 움직일 수 없으며 버프 효과가 적용되지 않습니다.", ["name"]="frozen" }, [51]={ ["id"]=51, ["show_name"]="중독 효과", ["desc"]="중독 효과: 턴 종료 시 스킬 사용자 공격력의 {0}에 달하는 대미지를 입힙니다.", + ["tips_desc"]="중독: 턴 종료 시 일정한 피해를 입힙니다.", ["name"]="poison" }, [52]={ ["id"]=52, ["show_name"]="속박 효과", ["desc"]="속박 효과: 이번 턴에는 일반 공격만 사용할 수 있습니다.", + ["tips_desc"]="속박: 이번 턴은 일반 공격만 할 수 있으며 스킬 진행도가 증가하지 않습니다.", ["name"]="imprison" }, [53]={ ["id"]=53, ["show_name"]="부패 효과", ["desc"]="부패 효과: HP 회복 효과가 {0} 감소합니다.", + ["tips_desc"]="부패: HP 회복 효과가 감소합니다.", ["name"]="corrupt" }, [54]={ ["id"]=54, ["show_name"]="출혈 효과", ["desc"]="출혈 효과: 공격 받을 때 공격자의 HP가 회복되며 턴 종료 시 스킬 사용자 공격력의 {0}에 달하는 대미지를 입힙니다.", + ["tips_desc"]="출혈: 피격 시 공격자가 HP를 회복하며 턴 종료 시 피해를 입힙니다.", ["name"]="bleed" }, [55]={ ["id"]=55, ["show_name"]="탈진 효과", ["desc"]="탈진 효과: 입히는 대미지가 {0} 감소합니다.", + ["tips_desc"]="탈진 효과: 입히는 대미지가 감소합니다.", ["name"]="weaken" }, [56]={ ["id"]=56, ["show_name"]="수면 효과", ["desc"]="수면 효과: 이번 턴에 움직일 수 없으며 공격 받으면 수면 효과가 풀립니다.", + ["tips_desc"]="수면: 이번 턴에 움직일 수 없으며 공격 받으면 수면 효과가 풀립니다.", ["name"]="lethargy" }, [57]={ ["id"]=57, ["show_name"]="저주", ["desc"]="저주: 공격 시 상대에게 피해를 입히지 않고 오히려 상대를 치유합니다.", + ["tips_desc"]="저주: 공격 시 상대에게 피해를 입히지 않고 오히려 상대를 치유합니다.", ["name"]="curse" }, [58]={ ["id"]=58, ["show_name"]="잠금", ["desc"]="잠금: 보드에서 임의의 색상 한 가지를 선택할 수 없도록 잠급니다.", + ["tips_desc"]="잠금: 보드에서 임의의 색상 한 가지를 선택할 수 없도록 잠급니다.", ["name"]="lock" }, [59]={ ["id"]=59, ["show_name"]="선제공격", ["desc"]="선제공격: 매 턴마다 먼저 공격할 수 있습니다.", + ["tips_desc"]="선제공격: 매 턴마다 먼저 공격할 수 있습니다.", ["name"]="first_hand" }, [61]={ ["id"]=61, ["show_name"]="불멸", ["desc"]="불멸: 치명적인 대미지를 입어도 사망하지 않습니다.", + ["tips_desc"]="불멸: 이번 턴에 치명적인 대미지를 입어도 사망하지 않습니다.", ["name"]="undead" }, [62]={ ["id"]=62, ["show_name"]="반격", ["desc"]="반격: 직접 피해를 입으면 {0} 확률로 반격합니다.", + ["tips_desc"]="반격: 직접 피해를 입을 때 확률적으로 반격합니다.", ["name"]="counterattack" }, [63]={ ["id"]=63, ["show_name"]="피해 반사", ["desc"]="피해 반사: 상대의 {0} 대미지를 반사합니다.", + ["tips_desc"]="피해 반사: 상대의 대미지를 반사합니다.", ["name"]="thorns" }, [73]={ ["id"]=73, - ["desc"]="피해 반사 보호막: 최대 HP의 {0}에 달하는 대미지를 흡수하고 상대 대미지의 400%를 반사합니다.", + ["desc"]="피해 반사 보호막: 일정한 대미지를 흡수하며 상대의 대미지를 대량 반사합니다.", + ["tips_desc"]="피해 반사 보호막2: 일정한 대미지를 흡수하며 상대의 대미지를 대량 반사합니다.", ["name"]="shield_rebound_400" }, [74]={ ["id"]=74, - ["desc"]="서리 보호막: 최대 HP의 {0}에 달하는 대미지를 흡수할 수 있습니다.", + ["desc"]="서리 보호막: 일정한 피해를 흡수할 수 있습니다.", + ["tips_desc"]="서리 보호막: 일정한 피해를 흡수할 수 있습니다.", ["name"]="shield_ice" }, [75]={ ["id"]=75, - ["desc"]="서리 보호막: 최대 HP의 {0}에 달하는 대미지를 흡수하며 상대가 준 대미지의 400%를 되돌려줍니다.", + ["desc"]="서리 보호막2: 일정한 피해를 흡수하며 상대의 대미지를 대량 반사합니다.", + ["tips_desc"]="서리 보호막2: 일정한 피해를 흡수하며 상대의 대미지를 대량 반사합니다.", ["name"]="shield_ice_rebound_400" }, [79]={ ["id"]=79, ["show_name"]="염력 보호막", ["desc"]="염력 보호막: 보호막이 존재하는 동안 대미지를 받지 않으며 공격받을 때마다 보호막이 한 층 벗겨집니다.", + ["tips_desc"]="염력 보호막: 보호막이 존재하는 동안 대미지를 받지 않으며 공격받을 때마다 보호막이 한 층 벗겨집니다.", ["name"]="invincible_shield" }, [80]={ ["id"]=80, - ["desc"]="서리 보호막: 최대 HP의 {0}에 달하는 대미지를 흡수할 수 있습니다.", + ["desc"]="서리 보호막: 일정한 피해를 흡수할 수 있습니다.", + ["tips_desc"]="서리 보호막: 일정한 피해를 흡수할 수 있습니다.", ["name"]="shield_ice_02" }, [81]={ ["id"]=81, ["show_name"]="스킬 대미지 보너스", ["desc"]="스킬 대미지 보너스: 모든 스킬의 대미지가 증가합니다.", + ["tips_desc"]="스킬 대미지 보너스: 모든 스킬 대미지가 증가합니다.", ["name"]="skill_hurt_add_show" + }, + [82]={ + ["id"]=82, + ["desc"]="피해 반사 보호막: 일정한 대미지를 흡수하며 상대의 대미지를 대량 반사합니다.", + ["tips_desc"]="피해 반사 보호막2: 일정한 대미지를 흡수하며 상대의 대미지를 대량 반사합니다.", + ["name"]="shield_rebound_200" + }, + [83]={ + ["id"]=83, + ["desc"]="피해 반사 보호막: 일정한 피해를 흡수하며 상대의 대미지를 반사합니다.", + ["tips_desc"]="피해 반사 보호막: 일정한 피해를 흡수하며 상대의 대미지를 반사합니다.", + ["name"]="shield_rebound_100" } } local keys = { @@ -219,12 +258,14 @@ local keys = { ["shield_ice_rebound_400"]=buff[75], ["invincible_shield"]=buff[79], ["shield_ice_02"]=buff[80], - ["skill_hurt_add_show"]=buff[81] + ["skill_hurt_add_show"]=buff[81], + ["shield_rebound_200"]=buff[82], + ["shield_rebound_100"]=buff[83] } } local config = { data=buff, keys=keys, -count=33 +count=35 } return config \ No newline at end of file diff --git a/lua/app/config/strings/ko/global.lua b/lua/app/config/strings/ko/global.lua index bb7be5b0..b3641b98 100644 --- a/lua/app/config/strings/ko/global.lua +++ b/lua/app/config/strings/ko/global.lua @@ -362,7 +362,7 @@ local localization_global = ["DUNGEON_WEAPON_DESC_7"] = "공략", ["DUNGEON_WEAPON_DESC_8"] = "보스 공략", ["DUNGEON_WEAPON_DESC_9"] = "최근 클리어", - ["DUNGEON_WEAPON_DESC_10"] = "팀 레벨 {0} 달성 시 오픈", + ["DUNGEON_WEAPON_DESC_10"] = "플레이어 레벨{0} 달성 시 오픈", ["DUNGEON_WEAPON_DESC_11"] = "이전 챕터 클리어 시 오픈", ["EQUIP_DESC_1"] = "무기", ["EQUIP_DESC_2"] = "방어구", @@ -423,6 +423,7 @@ local localization_global = ["DUNGEON_ARMOR_DESC_17"] = "이번 챕터 오늘 남은 횟수: {0}", ["NAVER_SETTING_DESC"] = "Naver", ["EQUIP_DESC_26"] = "방어구 4개 +{0}:", + ["BATTLE_DESC_14"] = "끝나지 않은 전투가 있습니다. 계속하시겠습니까?", } return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/ko/skill.lua b/lua/app/config/strings/ko/skill.lua index 0a6410b2..3abb0c12 100644 --- a/lua/app/config/strings/ko/skill.lua +++ b/lua/app/config/strings/ko/skill.lua @@ -6,7 +6,7 @@ local skill = { ["desc"]="대검 회오리바람: 여러 번의 스킬 피해를 추가로 입힙니다." }, [1300220]={ - ["desc"]="불타는 펀치: 세로 방향으로 5개의 그리드를 소멸하고 스킬 피해를 한 번 입힙니다. 50% 확률로 2턴 동안 버닝 효과를 부여합니다." + ["desc"]="불타는 펀치: 세로 방향으로 5개의 그리드를 소멸하고 스킬 피해를 한 번 입힙니다. 50% 확률로 2턴 동안 버닝 효과를 부여합니다." }, [1400120]={ ["desc"]="강철 스트라이크: 주위4개 원소의 색상을 변경하며 대량의 스킬 피해를 여러 차례 입힙니다." @@ -42,22 +42,22 @@ local skill = { ["desc"]="유성과 달의 숨바꼭질: 사용 후, 이번 공격 대미지가 상승하며 엄청난 양의 스킬 피해를 한 번 입힙니다." }, [3400220]={ - ["desc"]="아름다운 악몽: 추가로 대량의 스킬 피해를 한 번 입히며 50% 확률로 2턴 동안 수면 효과를 부여합니다." + ["desc"]="아름다운 악몽: 추가로 대량의 스킬 피해를 한 번 입히며 50% 확률로 2턴 동안 수면 효과를 부여합니다." }, [4200120]={ ["desc"]="원소 연결: 무작위로 3개의 원소를 소멸하고 스킬 피해를 한 번 입힙니다." }, [4300120]={ - ["desc"]="얼음 크리스탈: 추가로 한 번의 스킬 피해를 입히며 1턴 동안 서리 상태를 부여합니다." + ["desc"]="얼음 크리스탈: 추가로 한 번의 스킬 피해를 입히며 1턴 동안 서리 효과를 부여합니다." }, [4300220]={ - ["desc"]="부패의 칼날: 추가로 한 번의 스킬 피해를 입히며 1턴 동안 부패 효과를 부여합니다." + ["desc"]="부패의 칼날: 추가로 한 번의 스킬 피해를 입히며 1턴 동안 부패 효과를 부여합니다." }, [4400120]={ - ["desc"]="눈과 서리의 검무: 무작위로 3개의 원소를 소멸하고 한 번의 스킬 피해를 입히는 동시에 1턴 동안 서리 효과를 부여합니다." + ["desc"]="눈과 서리의 검무: 무작위로 3개의 원소를 소멸하고 한 번의 스킬 피해를 입히는 동시에 1턴 동안 서리 효과를 부여합니다." }, [4400220]={ - ["desc"]="파라오의 저주: 추가로 한 번의 스킬 피해를 입히며 1턴 동안 저주 효과를 부여합니다." + ["desc"]="파라오의 저주: 추가로 한 번의 스킬 피해를 입히며 1턴 동안 저주 효과를 부여합니다." }, [5200120]={ ["desc"]="보호막 기술: 팀에게 1턴 동안 보호막을 부여합니다." diff --git a/lua/app/config/strings/ko/skill_rogue.lua b/lua/app/config/strings/ko/skill_rogue.lua index 82d1adfd..d10cc049 100644 --- a/lua/app/config/strings/ko/skill_rogue.lua +++ b/lua/app/config/strings/ko/skill_rogue.lua @@ -480,7 +480,7 @@ local skill_rogue = { ["desc"]="아름다운 악몽이 X 방향을 따라 추가로 4개의 그리드를 소멸할 수 있습니다." }, [3400204]={ - ["desc"]="아름다운 악몽이 수면 효과를 부여할 확률이 100%로 증가합니다." + ["desc"]="아름다운 악몽이 수면 효과를 부여할 확률이 80%로 증가합니다." }, [3400205]={ ["desc"]="Combo:인큐버스의 일반 공격이 2턴 동안 수면 상태의 적에게 속박 효과를 부여합니다." diff --git a/lua/app/config/strings/pt/buff.lua b/lua/app/config/strings/pt/buff.lua index a57132fb..eded96af 100644 --- a/lua/app/config/strings/pt/buff.lua +++ b/lua/app/config/strings/pt/buff.lua @@ -32,157 +32,196 @@ local buff = { [24]={ ["id"]=24, ["desc"]="Aumento de dano: dano causado aumenta em {0}.", + ["tips_desc"]="Aumento de dano: aumento de todo dano causado.", ["name"]="dmg_addition_all_add" }, [33]={ ["id"]=33, ["show_name"]="Estonteado", ["desc"]="Estonteado: não consegue agir neste turno.", + ["tips_desc"]="Estonteado: não consegue agir neste turno.", ["name"]="stun" }, [34]={ ["id"]=34, - ["desc"]="Amparo: aguenta dano equivalente a {0} da Vida Máxima.", + ["desc"]="Escudo: pode aguentar uma certa quantidade de dano.", + ["tips_desc"]="Escudo: pode aguentar uma certa quantidade de dano.", ["name"]="shield" }, [36]={ ["id"]=36, ["show_name"]="Gélido", ["desc"]="Gélido: número de golpes comuns - {0}.", + ["tips_desc"]="Gelidez: redução do número de ataques básicos.", ["name"]="normal_attack_dec" }, [37]={ ["id"]=37, ["show_name"]="Excitado", ["desc"]="Excitado: número de golpes comuns + {0}.", + ["tips_desc"]="Excitação: aumenta o número de ataques básicos.", ["name"]="normal_attack_add" }, [47]={ ["id"]=47, - ["desc"]="Escudo de Reflexão: aguenta dano equivalente a {0} da Vida Máxima e reflete 200% do dano do oponente.", + ["desc"]="Escudo de Reflexão: pode aguentar uma certa quantidade de dano e refletir o dano do oponente.", + ["tips_desc"]="Escudo de Reflexão: pode aguentar uma certa quantidade de dano e refletir o dano do oponente.", ["name"]="shield_rebound_200" }, [48]={ ["id"]=48, ["show_name"]="Conflagrado", ["desc"]="Conflagrado: no final do turno, sofre um dano equivalente a {0} do Ataque do lançador.", + ["tips_desc"]="Conflagração: causa uma certa quantidade de dano ao fim do turno.", ["name"]="burn" }, [49]={ ["id"]=49, ["show_name"]="Vulnerável", ["desc"]="Vulnerável: sofre {0} a mais de todo o dano recebido.", + ["tips_desc"]="Vulnerável: aumento de todo o dano recebido.", ["name"]="vulnerable" }, [50]={ ["id"]=50, ["show_name"]="Congelado", ["desc"]="Congelado: não consegue agir, nem se aplicam os bônus neste turno.", + ["tips_desc"]="Congelado: não consegue agir, nem se aplicam os bônus neste turno.", ["name"]="frozen" }, [51]={ ["id"]=51, ["show_name"]="Envenenado", ["desc"]="Envenenado: no final do turno, sofre um dano equivalente a {0} do Ataque do lançador.", + ["tips_desc"]="Envenenamento: causa uma certa quantidade de dano ao fim do turno.", ["name"]="poison" }, [52]={ ["id"]=52, ["show_name"]="Encarcerado", ["desc"]="Encarcerado: só consegue utilizar golpes comuns neste turno.", + ["tips_desc"]="Encarcerado: só consegue utilizar golpes comuns neste turno e o progresso da habilidade não aumenta.", ["name"]="imprison" }, [53]={ ["id"]=53, ["show_name"]="Corrupto", ["desc"]="Corrupto: reduz o efeito de recuperação de vida em {0}.", + ["tips_desc"]="Corrupto: redução do efeito de recuperação de vida.", ["name"]="corrupt" }, [54]={ ["id"]=54, ["show_name"]="Sangrado", ["desc"]="Sangrado: recupera a vida do atacante ao ser atingido e sofre um dano equivalente a {0} do Ataque do lançador no final do turno.", + ["tips_desc"]="Sangramento: restaura a vida do atacante ao sofrer um ataque e causa dano ao fim do turno.", ["name"]="bleed" }, [55]={ ["id"]=55, ["show_name"]="Enfraquecido", ["desc"]="Enfraquecido: reduz o dano causado em {0}.", + ["tips_desc"]="Enfraquecido: reduz o dano causado.", ["name"]="weaken" }, [56]={ ["id"]=56, ["show_name"]="Sonolento", ["desc"]="Sonolento: não consegue agir neste turno. O efeito é removido ao ser atingido.", + ["tips_desc"]="Sonolento: não consegue agir neste turno. O efeito é removido ao ser atingido.", ["name"]="lethargy" }, [57]={ ["id"]=57, ["show_name"]="Maldito", ["desc"]="Maldito: em vez de causar dano, seus golpes curam o oponente.", + ["tips_desc"]="Maldito: em vez de causar dano, seus golpes curam o oponente.", ["name"]="curse" }, [58]={ ["id"]=58, ["show_name"]="Bloqueio", ["desc"]="Bloqueio: uma cor aleatória fica bloqueada no tabuleiro e não pode ser selecionada.", + ["tips_desc"]="Bloqueio: uma cor aleatória fica bloqueada no tabuleiro e não pode ser selecionada.", ["name"]="lock" }, [59]={ ["id"]=59, ["show_name"]="Iniciativo", ["desc"]="Iniciativo: sempre age primeiro em cada turno.", + ["tips_desc"]="Pioneiro: sempre age primeiro em cada turno.", ["name"]="first_hand" }, [61]={ ["id"]=61, ["show_name"]="Imortal", ["desc"]="Imortal: não morre ao receber dano fatal.", + ["tips_desc"]="Imortal: não morre ao receber dano fatal neste turno.", ["name"]="undead" }, [62]={ ["id"]=62, ["show_name"]="Contra-ataque", ["desc"]="Contra-ataque: há {0} de chance de contra-atacar ao receber dano direto.", + ["tips_desc"]="Contra-ataque: há uma chance de contra-atacar ao sofrer dano direto.", ["name"]="counterattack" }, [63]={ ["id"]=63, ["show_name"]="Reflexão", ["desc"]="Reflexão: reflete {0} do dano do oponente.", + ["tips_desc"]="Reflexão: reflete o dano do oponente.", ["name"]="thorns" }, [73]={ ["id"]=73, - ["desc"]="Escudo de Reflexão: aguenta dano equivalente a {0} da Vida Máxima e reflete 400% do dano do oponente.", + ["desc"]="Escudo de Reflexão : pode aguentar uma certa quantidade de dano e refletir um dano massivo do oponente.", + ["tips_desc"]="Escudo de Reflexão 2: pode aguentar uma certa quantidade de dano e refletir um dano massivo do oponente.", ["name"]="shield_rebound_400" }, [74]={ ["id"]=74, - ["desc"]="Escudo Gélido: aguenta dano equivalente a {0} da Vida Máxima.", + ["desc"]="Escudo Gélido: pode aguentar uma certa quantidade de dano.", + ["tips_desc"]="Escudo Gélido: pode aguentar uma certa quantidade de dano.", ["name"]="shield_ice" }, [75]={ ["id"]=75, - ["desc"]="Escudo Gélido: aguenta dano equivalente a {0} da Vida Máxima e reflete 400% do dano do oponente.", + ["desc"]="Escudo Gélido: pode aguentar uma certa quantidade de dano e refletir um dano massivo do oponente.", + ["tips_desc"]="Escudo Gélido: pode aguentar uma certa quantidade de dano e refletir um dano massivo do oponente.", ["name"]="shield_ice_rebound_400" }, [79]={ ["id"]=79, ["show_name"]="Escudo Mental", ["desc"]="Escudo Mental: quando o escudo está ativo, fica imune a todo o dano. Cada ataque atingido remove 1 vez do escudo.", + ["tips_desc"]="Escudo Mental: quando o escudo está ativo, fica imune a todo o dano. Cada ataque atingido remove 1 vez do escudo.", ["name"]="invincible_shield" }, [80]={ ["id"]=80, - ["desc"]="Escudo Gélido: aguenta dano equivalente a {0} da Vida Máxima.", + ["desc"]="Escudo Gélido: pode aguentar uma certa quantidade de dano.", + ["tips_desc"]="Escudo Gélido: pode aguentar uma certa quantidade de dano.", ["name"]="shield_ice_02" }, [81]={ ["id"]=81, ["show_name"]="Dano de Habilidade Aumentado", ["desc"]="Dano de Habilidade Aumentado: aumenta o dano de todas as habilidades.", + ["tips_desc"]="Dano de Habilidade Aumentado: aumenta o dano de todas as habilidades.", ["name"]="skill_hurt_add_show" + }, + [82]={ + ["id"]=82, + ["desc"]="Escudo de Reflexão : pode aguentar uma certa quantidade de dano e refletir um dano massivo do oponente.", + ["tips_desc"]="Escudo de Reflexão 2: pode aguentar uma certa quantidade de dano e refletir um dano massivo do oponente.", + ["name"]="shield_rebound_200" + }, + [83]={ + ["id"]=83, + ["desc"]="Escudo de Reflexão: pode aguentar uma certa quantidade de dano e refletir o dano do oponente.", + ["tips_desc"]="Escudo de Reflexão: pode aguentar uma certa quantidade de dano e refletir o dano do oponente.", + ["name"]="shield_rebound_100" } } local keys = { @@ -219,12 +258,14 @@ local keys = { ["shield_ice_rebound_400"]=buff[75], ["invincible_shield"]=buff[79], ["shield_ice_02"]=buff[80], - ["skill_hurt_add_show"]=buff[81] + ["skill_hurt_add_show"]=buff[81], + ["shield_rebound_200"]=buff[82], + ["shield_rebound_100"]=buff[83] } } local config = { data=buff, keys=keys, -count=33 +count=35 } return config \ No newline at end of file diff --git a/lua/app/config/strings/pt/global.lua b/lua/app/config/strings/pt/global.lua index 8fd5a545..fa7f7bb0 100644 --- a/lua/app/config/strings/pt/global.lua +++ b/lua/app/config/strings/pt/global.lua @@ -362,7 +362,7 @@ local localization_global = ["DUNGEON_WEAPON_DESC_7"] = "Guia", ["DUNGEON_WEAPON_DESC_8"] = "Guia do Chefão", ["DUNGEON_WEAPON_DESC_9"] = "Conclusões recentes", - ["DUNGEON_WEAPON_DESC_10"] = "Desbloqueado quando a equipe atingir Nv.{0}", + ["DUNGEON_WEAPON_DESC_10"] = "Desbloqueado quando o jogador atingir Nv.{0}", ["DUNGEON_WEAPON_DESC_11"] = "Desbloqueado após concluir o capítulo anterior", ["EQUIP_DESC_1"] = "Arma", ["EQUIP_DESC_2"] = "Armadura", @@ -423,6 +423,7 @@ local localization_global = ["DUNGEON_ARMOR_DESC_17"] = "Tentativas para essa fase por hoje: {0}", ["NAVER_SETTING_DESC"] = "Naver", ["EQUIP_DESC_26"] = "4 armaduras + {0}:", + ["BATTLE_DESC_14"] = "Existem batalhas inacabadas, você quer continuá-las?", } return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/pt/skill.lua b/lua/app/config/strings/pt/skill.lua index c979a13b..53a18797 100644 --- a/lua/app/config/strings/pt/skill.lua +++ b/lua/app/config/strings/pt/skill.lua @@ -6,7 +6,7 @@ local skill = { ["desc"]="Turbilhão de Espadão: causa vários golpes adicionais de dano de habilidade." }, [1300220]={ - ["desc"]="Punho Flamejante: elimina 5 blocos verticalmente e causa um dano de habilidade, com 50% de chance de acionar Conflagração por 2 turnos." + ["desc"]="Punho Flamejante: elimina 5 blocos verticalmente e causa um dano de habilidade, com 50% de chance de acionar Conflagração por 2 turnos." }, [1400120]={ ["desc"]="Golpe Metálico: muda a cor dos 4 elementos ao redor e causa vários golpes de dano de habilidade massivo." @@ -42,22 +42,22 @@ local skill = { ["desc"]="Disparada do Meteoro: aumenta o dano causado no turno atual e causa um golpe de enorme dano de habilidade." }, [3400220]={ - ["desc"]="Pesadelo Belo: Causa grande dano de habilidade adicional com 50% de chance de adicionar efeito de sono por 2 turnos." + ["desc"]="Pesadelo da Beleza: causa adicionalmente um golpe de habilidade massivo com 50% de chance de acionar o efeito de Sonolento que dura 2 turnos." }, [4200120]={ ["desc"]="Elo Elemental: elimina 3 elementos aleatórios e causa um golpe de dano de habilidade." }, [4300120]={ - ["desc"]="Cristal Congelante: Causa dano adicional de habilidade e adiciona efeito de congelamento por 1 turno." + ["desc"]="Cristal Congelante: causa adicionalmente um golpe de habilidade, acionando Gelidez por 1 turno." }, [4300220]={ - ["desc"]="Lâmina da Corrupção: Causa dano adicional de habilidade e adiciona efeito de corrupção por 1 turno." + ["desc"]="Lâmina Corruptora: causa adicionalmente um golpe de habilidade, acionando Corrupção por 1 turno." }, [4400120]={ - ["desc"]="Esgrima Enregelante: elimina 3 elementos aleatórios e causa um golpe de dano de habilidade, acionando Gelidez por 1 turno." + ["desc"]="Esgrima Enregelante: elimina 3 elementos aleatórios e causa um golpe de dano de habilidade, acionando Gelidez por 1 turno." }, [4400220]={ - ["desc"]="Maldição do Faraó: Causa dano adicional de habilidade e adiciona efeito de maldição por 1 turno." + ["desc"]="Maldição do Faraó: causa adicionalmente um golpe de habilidade, acionando Maldição por 1 turno." }, [5200120]={ ["desc"]="Feitiço de Amparo: adiciona um escudo à equipe por 1 turno." diff --git a/lua/app/config/strings/pt/skill_rogue.lua b/lua/app/config/strings/pt/skill_rogue.lua index e4f38abd..ead769c6 100644 --- a/lua/app/config/strings/pt/skill_rogue.lua +++ b/lua/app/config/strings/pt/skill_rogue.lua @@ -480,7 +480,7 @@ local skill_rogue = { ["desc"]="Belo Pesadelo pode eliminar 4 quadrados adicionais na direção X." }, [3400204]={ - ["desc"]="A probabilidade do efeito sono adicionado por Belo Pesadelo aumenta para 100%." + ["desc"]="A probabilidade do efeito sono adicionado por Belo Pesadelo aumenta para 80%." }, [3400205]={ ["desc"]="Combo: Ataque normal de Succubus a inimigos adormecidos adiciona o efeito aprisionamento por 2 turnos." diff --git a/lua/app/config/strings/ru/buff.lua b/lua/app/config/strings/ru/buff.lua index 9a1585bf..3d730eff 100644 --- a/lua/app/config/strings/ru/buff.lua +++ b/lua/app/config/strings/ru/buff.lua @@ -130,6 +130,14 @@ local buff = { [81]={ ["id"]=81, ["name"]="skill_hurt_add_show" + }, + [82]={ + ["id"]=82, + ["name"]="shield_rebound_200" + }, + [83]={ + ["id"]=83, + ["name"]="shield_rebound_100" } } local keys = { @@ -166,12 +174,14 @@ local keys = { ["shield_ice_rebound_400"]=buff[75], ["invincible_shield"]=buff[79], ["shield_ice_02"]=buff[80], - ["skill_hurt_add_show"]=buff[81] + ["skill_hurt_add_show"]=buff[81], + ["shield_rebound_200"]=buff[82], + ["shield_rebound_100"]=buff[83] } } local config = { data=buff, keys=keys, -count=33 +count=35 } return config \ No newline at end of file diff --git a/lua/app/config/strings/th/buff.lua b/lua/app/config/strings/th/buff.lua index 813ee67a..4e7c07cb 100644 --- a/lua/app/config/strings/th/buff.lua +++ b/lua/app/config/strings/th/buff.lua @@ -32,157 +32,196 @@ local buff = { [24]={ ["id"]=24, ["desc"]="ดาเมจเพิ่มขึ้น: ดาเมจที่สร้างเพิ่มขึ้น{0}", + ["tips_desc"]="ดาเมจเพิ่มขึ้น: ดาเมจที่สร้างทั้งหมดจะเพิ่มขึ้น", ["name"]="dmg_addition_all_add" }, [33]={ ["id"]=33, ["show_name"]="มึงงง", ["desc"]="มึงงง: รอบนี้ไม่สามารถลงมือได้", + ["tips_desc"]="มึงงง: รอบนี้ไม่สามารถลงมือได้", ["name"]="stun" }, [34]={ ["id"]=34, - ["desc"]="โล่: สามารถรับดาเมจของ HP สูงสุด{0}", + ["desc"]="โล่: สามารถรับดาเมจที่กำหนดได้", + ["tips_desc"]="โล่: สามารถรับดาเมจที่กำหนดได้", ["name"]="shield" }, [36]={ ["id"]=36, ["show_name"]="ฟรอสต์", ["desc"]="ฟรอสต์: จำนวนโจมตีทั่วไป-{0}", + ["tips_desc"]="ฟรอสต์: จำนวนโจมตีทั่วไปลดลง", ["name"]="normal_attack_dec" }, [37]={ ["id"]=37, ["show_name"]="ตื่นเต้น", ["desc"]="ตื่นเต้น:จำนวนโจมตีทั่วไป+{0}", + ["tips_desc"]="ตื่นเต้น: จำนวนโจมตีทั่วไปเพิ่มขึ้น", ["name"]="normal_attack_add" }, [47]={ ["id"]=47, - ["desc"]="โล่สะท้อนดาเมจ: สามารถทนทานดาเมจของ HP สูงสุด{0} และสะท้อนดาเมจของคู่ต่อสู้200%", + ["desc"]="โล่สะท้อนดาเมจ: สามารถรับดาเมจที่กำหนดได้ สะท้อนดาเมจของอีกฝ่าย", + ["tips_desc"]="โล่สะท้อนดาเมจ: สามารถรับดาเมจที่กำหนดได้ สะท้อนดาเมจของอีกฝ่าย", ["name"]="shield_rebound_200" }, [48]={ ["id"]=48, ["show_name"]="เผาไหม้", ["desc"]="เผาไหม้: เมื่อสิ้นสุดรอบจะสร้างดาเมจของการโจมตี{0}", + ["tips_desc"]="เผาไหม้: สร้างดาเมจที่กำหนดเมื่อสิ้นสุดรอบ", ["name"]="burn" }, [49]={ ["id"]=49, ["show_name"]="เปราะบาง", ["desc"]="เปราะบาง: ดาเมจทั้งหมดที่ได้รับเพิ่มขึ้น{0}", + ["tips_desc"]="อ่อนแอ: ดาเมจที่ได้รับทั้งหมดเพิ่มขึ้น", ["name"]="vulnerable" }, [50]={ ["id"]=50, ["show_name"]="แช่แข็ง", ["desc"]="แช่แข็ง: ไม่สามารถลงมือในรอบนี้ได้ และเอฟเฟกต์บัฟจะไม่มีผล", + ["tips_desc"]="แช่แข็ง: ไม่สามารถลงมือในรอบนี้ได้ และเอฟเฟกต์บัฟจะไม่มีผล", ["name"]="frozen" }, [51]={ ["id"]=51, ["show_name"]="ถูกพิษ", ["desc"]="ถูกพิษ: เมื่อสิ้นสุดรอบจะสร้างดาเมจของการโจมตี{0}", + ["tips_desc"]="ถูกพิษ: สร้างดาเมจที่กำหนดเมื่อสิ้นสุดรอบ", ["name"]="poison" }, [52]={ ["id"]=52, ["show_name"]="กักขัง", ["desc"]="กักขัง: รอบนี้ใช้ได้เฉพาะการโจมตีทั่วไปเท่านั้น", + ["tips_desc"]="กักขัง: สามารถใช้การโจมตีทั่วไปได้ในรอบนี้เท่านั้น และความคืบหน้าของสกิลจะไม่เพิ่มขึ้น", ["name"]="imprison" }, [53]={ ["id"]=53, ["show_name"]="การทุจริต", ["desc"]="การทุจริต: เอฟเฟกต์ฟื้นฟู HP ลดลง{0}", + ["tips_desc"]="การทุจริต: เอฟเฟกต์ฟื้นฟู HP ลดลง", ["name"]="corrupt" }, [54]={ ["id"]=54, ["show_name"]="เลือดไหล", ["desc"]="เลือดไหล: เมื่อได้รับโจมตีจะฟื้นฟู HP ของผู้โจมตี เมื่อสิ้นสุดรอบจะสร้างดาเมจของการโจมตี{0}", + ["tips_desc"]="เลือดไหล: ฟื้นฟู HP ของผู้โจมตีเมื่อถูกโจมตี และสร้างดาเมจเมื่อสิ้นสุดรอบ", ["name"]="bleed" }, [55]={ ["id"]=55, ["show_name"]="อ่อนแอ", ["desc"]="อ่อนแอ: ดาเมจที่สร้างขึ้นจะลดลง{0}", + ["tips_desc"]="อ่อนแอ: ดาเมจที่สร้างนั้นลดลง", ["name"]="weaken" }, [56]={ ["id"]=56, ["show_name"]="หลับ", ["desc"]="หลับ: ไม่สามารถลงมือได้ในรอบนี้ เมื่อถูกโจมตีจะลบเอฟเฟกต์", + ["tips_desc"]="หลับ: ไม่สามารถลงมือได้ในรอบนี้ และเอฟเฟกต์จะถูกลบออกหากถูกโจมตี", ["name"]="lethargy" }, [57]={ ["id"]=57, ["show_name"]="คำสาป", ["desc"]="คำสาป: โจมตีจะไม่สร้างดาเมจ แต่จะรักษาฝ่ายตรงข้าม", + ["tips_desc"]="คำสาป: การโจมตีไม่สร้างดาเมจ แต่จะรักษาฝ่ายตรงข้าม", ["name"]="curse" }, [58]={ ["id"]=58, ["show_name"]="ล็อค", ["desc"]="ล็อค: สุ่มล็อคสีบนกระดานหมากรุกและไม่สามารถเลือกได้", + ["tips_desc"]="ล็อค: สุ่มล็อคสีบนกระดาน ไม่สามารถเลือกได้", ["name"]="lock" }, [59]={ ["id"]=59, ["show_name"]="ลงมือก่อน", ["desc"]="ลงมือก่อน: ลงมือก่อนในแต่ละรอบ", + ["tips_desc"]="ผู้ลงมือก่อน: ลงมือก่อนในแต่ละรอบ", ["name"]="first_hand" }, [61]={ ["id"]=61, ["show_name"]="อมตะ", ["desc"]="อมตะ: เมื่อได้รับร้ายแรงจะไม่ตาย", + ["tips_desc"]="อมตะ: หากได้รับดาเมจร้ายแรงในรอบนี้จะไม่ตาย", ["name"]="undead" }, [62]={ ["id"]=62, ["show_name"]="โต้กลับ", ["desc"]="โต้กลับ: เมื่อได้รับดาเมจโดยตรงจะมีโอกาส{0}ที่จะโต้กลับ", + ["tips_desc"]="โต้กลับ: มีโอกาสโต้กลับเมื่อได้รับดาเมจโดยตรง", ["name"]="counterattack" }, [63]={ ["id"]=63, ["show_name"]="สะท้อนดาเมจ", ["desc"]="สะท้อนดาเมจ: สะท้อนดาเมจของฝ่ายตรงข้าม{0}", + ["tips_desc"]="สะท้อนดาเมจ: สะท้อนดาเมจของฝ่ายตรงข้าม", ["name"]="thorns" }, [73]={ ["id"]=73, - ["desc"]="โล่สะท้อนดาเมจ: สามารถรับดาเมจของ HP สูงสุด{0} และสะท้อนดาเมจของฝ่ายตรงข้าม400%", + ["desc"]="โล่สะท้อนดาเมจ : สามารถต้านทานดาเมจที่กำหนด และสะท้อนดาเมจจำนวนมากจากฝ่ายตรงข้าม", + ["tips_desc"]="โล่สะท้อนดาเมจ 2: สามารถต้านทานดาเมจที่กำหนด และสะท้อนดาเมจจำนวนมากจากฝ่ายตรงข้าม", ["name"]="shield_rebound_400" }, [74]={ ["id"]=74, - ["desc"]="โล่ฟรอสต์: สามารถรับดาเมจของ HP สูงสุด{0}", + ["desc"]="โล่ฟรอสต์: สามารถต้านทานดาเมจที่กำหนด", + ["tips_desc"]="โล่ฟรอสต์: สามารถต้านทานดาเมจที่กำหนด", ["name"]="shield_ice" }, [75]={ ["id"]=75, - ["desc"]="โล่ฟรอสต์: สามารถรับดาเมจของ HP สูงสุด{0} และสะท้อนดาเมจของฝ่ายตรงข้าม400%", + ["desc"]="โล่ฟรอสต์ 2: สามารถต้านทานดาเมจที่กำหนด และสะท้อนดาเมจจำนวนมากจากฝ่ายตรงข้าม", + ["tips_desc"]="โล่ฟรอสต์ 2: สามารถต้านทานดาเมจที่กำหนด และสะท้อนดาเมจจำนวนมากจากฝ่ายตรงข้าม", ["name"]="shield_ice_rebound_400" }, [79]={ ["id"]=79, ["show_name"]="โล่จิตใจ", ["desc"]="โล่จิตใจ: เมื่อมีโล่อยู่จะไม่ได้รับดาเมจใดๆ ทุกครั้งที่ถูกโจมตีโล่จะถูกหัก 1 ชั้น", + ["tips_desc"]="โล่จิตใจ: เมื่อมีโล่อยู่จะไม่ได้รับดาเมจใด ๆ ทุกครั้งที่ถูกโจมตีโล่จะถูกหัก 1 ชั้น", ["name"]="invincible_shield" }, [80]={ ["id"]=80, - ["desc"]="โล่ฟรอสต์: สามารถรับดาเมจของ HP สูงสุด{0}", + ["desc"]="โล่ฟรอสต์: สามารถต้านทานดาเมจที่กำหนด", + ["tips_desc"]="โล่ฟรอสต์: สามารถต้านทานดาเมจที่กำหนด", ["name"]="shield_ice_02" }, [81]={ ["id"]=81, ["show_name"]="สกิลเพิ่มดาเมจ", ["desc"]="สกิลเพิ่มดาเมจ: ดาเมจของสกิลทั้งหมดเพิ่มขึ้น", + ["tips_desc"]="เพิ่มดาเมจสกิล: ดาเมจของสกิลทั้งหมดเพิ่มขึ้น", ["name"]="skill_hurt_add_show" + }, + [82]={ + ["id"]=82, + ["desc"]="โล่สะท้อนดาเมจ : สามารถต้านทานดาเมจที่กำหนด และสะท้อนดาเมจจำนวนมากจากฝ่ายตรงข้าม", + ["tips_desc"]="โล่สะท้อนดาเมจ 2: สามารถต้านทานดาเมจที่กำหนด และสะท้อนดาเมจจำนวนมากจากฝ่ายตรงข้าม", + ["name"]="shield_rebound_200" + }, + [83]={ + ["id"]=83, + ["desc"]="โล่สะท้อนดาเมจ: สามารถรับดาเมจที่กำหนดได้ สะท้อนดาเมจของอีกฝ่าย", + ["tips_desc"]="โล่สะท้อนดาเมจ: สามารถรับดาเมจที่กำหนดได้ สะท้อนดาเมจของอีกฝ่าย", + ["name"]="shield_rebound_100" } } local keys = { @@ -219,12 +258,14 @@ local keys = { ["shield_ice_rebound_400"]=buff[75], ["invincible_shield"]=buff[79], ["shield_ice_02"]=buff[80], - ["skill_hurt_add_show"]=buff[81] + ["skill_hurt_add_show"]=buff[81], + ["shield_rebound_200"]=buff[82], + ["shield_rebound_100"]=buff[83] } } local config = { data=buff, keys=keys, -count=33 +count=35 } return config \ No newline at end of file diff --git a/lua/app/config/strings/th/global.lua b/lua/app/config/strings/th/global.lua index 90916870..24246d3b 100644 --- a/lua/app/config/strings/th/global.lua +++ b/lua/app/config/strings/th/global.lua @@ -362,7 +362,7 @@ local localization_global = ["DUNGEON_WEAPON_DESC_7"] = "กลยุทธ์", ["DUNGEON_WEAPON_DESC_8"] = "กลยุทธ์บอส", ["DUNGEON_WEAPON_DESC_9"] = "ผ่านด่านล่าสุด", - ["DUNGEON_WEAPON_DESC_10"] = "ทีม Lv.{0} จะเปิด", + ["DUNGEON_WEAPON_DESC_10"] = "ผู้เล่น Lv.{0} จะเปิด", ["DUNGEON_WEAPON_DESC_11"] = "ผ่านด่านบทก่อนหน้าจะเปิด", ["EQUIP_DESC_1"] = "อาวุธ", ["EQUIP_DESC_2"] = "เกราะ", @@ -423,6 +423,7 @@ local localization_global = ["DUNGEON_ARMOR_DESC_17"] = "จำนวนที่เหลือของด่านนี้ในวันนี้: {0}", ["NAVER_SETTING_DESC"] = "Naver", ["EQUIP_DESC_26"] = "เกราะ 4 ชิ้น +{0}:", + ["BATTLE_DESC_14"] = "มีการต่อสู้ที่ยังไม่จบ ดำเนินการต่อหรือไม่?", } return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/th/skill.lua b/lua/app/config/strings/th/skill.lua index b9203aff..62a190ce 100644 --- a/lua/app/config/strings/th/skill.lua +++ b/lua/app/config/strings/th/skill.lua @@ -6,7 +6,7 @@ local skill = { ["desc"]="ลมกรดดาบ: สร้างดาเมจสกิลเพิ่มเติมหลายครั้ง" }, [1300220]={ - ["desc"]="หมัดเพลิง: กำจัด 5ช่องตามแนวตั้ง และสร้างดาเมจสกิล 1 ครั้ง มีโอกาส50%เพิ่มเอฟเฟกต์การเผาไหม้ 2 รอบ" + ["desc"]="หมัดเพลิง: กำจัด 5ช่องตามแนวตั้ง และสร้างดาเมจสกิล 1 ครั้ง มีโอกาส50%เพิ่มเอฟเฟกต์เผาไหม้ 2 รอบ" }, [1400120]={ ["desc"]="เหล็กตีหนัก: เปลี่ยนสีของธาตุ4อันที่อยู่รอบ ๆ และสร้างดาเมจสกิลมหาศาลหลายครั้ง" @@ -42,22 +42,22 @@ local skill = { ["desc"]="ดาวตกไล่ดวงจันทร์: ดาเมจครั้งนี้จะเพิ่มขึ้นหลังจากการใช้ และสร้างดาเมจสกิลมหาศาล 1 ครั้ง" }, [3400220]={ - ["desc"]="ฝันร้ายที่สวยงาม: สร้างดาเมจสกิลมากมายเพิ่มเติม 1 ครั้ง มีโอกาส 50% เพิ่มเอฟเฟกต์หลับ 2รอบ" + ["desc"]="ฝันร้ายที่สวยงาม: สร้างดาเมจสกิลมากมายเพิ่มเติม 1 ครั้ง มีโอกาส 50% เพิ่มเอฟเฟกต์หลับ 2รอบ" }, [4200120]={ ["desc"]="การเชื่อมโยงธาตุ: สุ่มกำจัดธาตุ3อัน และสร้างดาเมจสกิล 1 ครั้ง" }, [4300120]={ - ["desc"]="ผลึกฟรอสต์: สร้างดาเมจสกิลเพิ่มเติม 1 ครั้ง เพิ่มเอฟเฟกต์ฟรอสต์ 1รอบ" + ["desc"]="ผลึกฟรอสต์: สร้างดาเมจสกิลเพิ่มเติม 1 ครั้ง เพิ่มเอฟเฟกต์ฟรอสต์ 1 รอบ" }, [4300220]={ - ["desc"]="ดาบทุจริต: สร้างดาเมจสกิลเพิ่มเติม 1 ครั้ง เพิ่มเอฟเฟกต์ทุจริต 1รอบ" + ["desc"]="ดาบทุจริต: สร้างดาเมจสกิลเพิ่มเติม 1 ครั้ง เพิ่มเอฟเฟกต์ทุจริต 1รอบ" }, [4400120]={ - ["desc"]="ระบำดาบฟรอสต์: สุ่มกำจัดธาตุ3อัน และสร้างดาเมจสกิล 1 ครั้ง เพิ่มเอฟเฟกต์ฟรอสต์ 1รอบ" + ["desc"]="ระบำดาบฟรอสต์: สุ่มกำจัดธาตุ3อัน และสร้างดาเมจสกิล 1 ครั้ง เพิ่มเอฟเฟกต์ฟรอสต์ 1รอบ" }, [4400220]={ - ["desc"]="คำสาปฟาโรห์: สร้างดาเมจสกิลเพิ่มเติม 1 ครั้ง เพิ่มเอฟเฟกต์คำสาป 1รอบ" + ["desc"]="คำสาปฟาโรห์: สร้างดาเมจสกิลเพิ่มเติม 1 ครั้ง เพิ่มเอฟเฟกต์คำสาป 1รอบ" }, [5200120]={ ["desc"]="มนต์โล่: เพิ่มโล่ 1 อันให้ทีม 1รอบ" diff --git a/lua/app/config/strings/th/skill_rogue.lua b/lua/app/config/strings/th/skill_rogue.lua index 8592b04d..70bbf3fc 100644 --- a/lua/app/config/strings/th/skill_rogue.lua +++ b/lua/app/config/strings/th/skill_rogue.lua @@ -480,7 +480,7 @@ local skill_rogue = { ["desc"]="ฝันร้ายที่สวยงามสามารถกำจัดเพิ่มเติม4ช่องตามทิศทาง X" }, [3400204]={ - ["desc"]="เอฟเฟกต์หลับที่เพิ่มโดยฝันร้ายที่สวยงามสาม โอกาสเพิ่มขึ้นถึง100%" + ["desc"]="เอฟเฟกต์หลับที่เพิ่มโดยฝันร้ายที่สวยงามสาม โอกาสเพิ่มขึ้นถึง80%" }, [3400205]={ ["desc"]="คอมโบ: เมื่อฝันร้ายโจมตีทั่วไปศัตรูหลับจะเพิ่มเอฟเฟกต์กักขัง 2รอบ" diff --git a/lua/app/config/strings/vi/buff.lua b/lua/app/config/strings/vi/buff.lua index ebc94009..87f8b53c 100644 --- a/lua/app/config/strings/vi/buff.lua +++ b/lua/app/config/strings/vi/buff.lua @@ -32,157 +32,196 @@ local buff = { [24]={ ["id"]=24, ["desc"]="Nâng Sát Thương: Sát thương gây ra tăng {0}.", + ["tips_desc"]="Nâng Sát Thương: Tăng sát thương gây ra.", ["name"]="dmg_addition_all_add" }, [33]={ ["id"]=33, ["show_name"]="Choáng", ["desc"]="Choáng: Hiệp này không thể hành động.", + ["tips_desc"]="Choáng: Hiệp này không thể hành động.", ["name"]="stun" }, [34]={ ["id"]=34, - ["desc"]="Khiên: Có thể chịu sát thương bằng {0} HP tối đa.", + ["desc"]="Khiên: Chịu một lượng ST nhất định.", + ["tips_desc"]="Khiên: Chịu một lượng ST nhất định.", ["name"]="shield" }, [36]={ ["id"]=36, ["show_name"]="Băng Sương", ["desc"]="Băng Sương: Lượt đánh thường -{0}.", + ["tips_desc"]="Băng Sương: Giảm lượt đánh thường.", ["name"]="normal_attack_dec" }, [37]={ ["id"]=37, ["show_name"]="Phấn Khởi", ["desc"]="Phấn Khởi: Lượt đánh thường +{0}.", + ["tips_desc"]="Phấn Khởi: Tăng lượt đánh thường.", ["name"]="normal_attack_add" }, [47]={ ["id"]=47, - ["desc"]="Khiên Phản Sát Thương: Có thể chịu sát thương bằng {0} HP tối đa, phản đòn 200% sát thương lên đối phương.", + ["desc"]="Khiên Phản ST: Chịu một lượng ST nhất định, phản đòn lên đối phương.", + ["tips_desc"]="Khiên Phản ST: Chịu một lượng ST nhất định, phản đòn lên đối phương.", ["name"]="shield_rebound_200" }, [48]={ ["id"]=48, ["show_name"]="Thiêu Đốt", ["desc"]="Thiêu Đốt: Khi kết thúc hiệp, gây sát thương bằng {0} Công của người thi triển.", + ["tips_desc"]="Thiêu Đốt: Khi kết thúc hiệp, gây sát thương.", ["name"]="burn" }, [49]={ ["id"]=49, ["show_name"]="Trọng Thương", ["desc"]="Trọng Thương: Tất cả sát thương phải nhận tăng {0}.", + ["tips_desc"]="Trọng Thương: Tăng tất cả sát thương phải nhận.", ["name"]="vulnerable" }, [50]={ ["id"]=50, ["show_name"]="Đóng Băng", ["desc"]="Đóng Băng: Hiệp này không thể hành động, hiệu ứng buff không có hiệu lực.", + ["tips_desc"]="Đóng Băng: Hiệp này không thể hành động, hiệu ứng buff vô hiệu.", ["name"]="frozen" }, [51]={ ["id"]=51, ["show_name"]="Trúng Độc", ["desc"]="Trúng Độc: Khi kết thúc hiệp, gây sát thương bằng {0} Công của người thi triển.", + ["tips_desc"]="Trúng Độc: Khi kết thúc hiệp, gây sát thương.", ["name"]="poison" }, [52]={ ["id"]=52, ["show_name"]="Giam Cầm", ["desc"]="Giam Cầm: Hiệp này chỉ được dùng đánh thường.", + ["tips_desc"]="Giam Cầm: Hiệp này chỉ được dùng đánh thường, không tăng tiến độ kỹ năng.", ["name"]="imprison" }, [53]={ ["id"]=53, ["show_name"]="Sa Đọa", ["desc"]="Sa Đọa: Hiệu quả hồi HP giảm {0}.", + ["tips_desc"]="Sa Đọa: Giảm hiệu quả hồi HP.", ["name"]="corrupt" }, [54]={ ["id"]=54, ["show_name"]="Mất Máu", ["desc"]="Mất Máu: Khi bị tấn công hồi HP người tấn công, khi kết thúc hiệp, gây sát thương bằng {0} Công của người thi triển.", + ["tips_desc"]="Mất Máu: Khi bị tấn công hồi HP người tấn công, khi kết thúc hiệp, gây sát thương.", ["name"]="bleed" }, [55]={ ["id"]=55, ["show_name"]="Suy Yếu", ["desc"]="Suy Yếu: Sát thương gây ra giảm {0}.", + ["tips_desc"]="Suy Yếu: Giảm sát thương gây ra.", ["name"]="weaken" }, [56]={ ["id"]=56, ["show_name"]="Ngủ Say", ["desc"]="Ngủ Say: Hiệp này không thể hành động, bị tấn công sẽ xóa hiệu ứng.", + ["tips_desc"]="Ngủ Say: Hiệp này không thể hành động, bị tấn công sẽ xóa hiệu ứng.", ["name"]="lethargy" }, [57]={ ["id"]=57, ["show_name"]="Lời Nguyền", ["desc"]="Lời Nguyền: Tấn công không gây ra sát thương, mà trị liệu cho đối phương.", + ["tips_desc"]="Lời Nguyền: Tấn công không gây ST mà trị liệu cho đối phương.", ["name"]="curse" }, [58]={ ["id"]=58, ["show_name"]="Khóa", ["desc"]="Khóa: Ngẫu nhiên khóa 1 loại màu trên ván cờ, không thể chọn.", + ["tips_desc"]="Khóa: Ngẫu nhiên khóa 1 loại màu trên ván cờ, không thể chọn.", ["name"]="lock" }, [59]={ ["id"]=59, ["show_name"]="Tiên Phong", ["desc"]="Tiên Phong: Mỗi hiệp đều ra tay trước tiên.", + ["tips_desc"]="Tiên Phong: Mỗi hiệp đều ra tay trước tiên.", ["name"]="first_hand" }, [61]={ ["id"]=61, ["show_name"]="Bất Tử", ["desc"]="Bất Tử: Khi nhận sát thương chí mạng sẽ không tử vong.", + ["tips_desc"]="Bất Tử: Hiệp này khi nhận ST chí mạng sẽ không tử vong.", ["name"]="undead" }, [62]={ ["id"]=62, ["show_name"]="Phản Đòn", ["desc"]="Phản Đòn: Khi nhận sát thương trực tiếp có {0} tỷ lệ tiến hành Phản Đòn.", + ["tips_desc"]="Phản Đòn: Khi nhận ST trực tiếp có tỷ lệ phản đòn.", ["name"]="counterattack" }, [63]={ ["id"]=63, ["show_name"]="Phản Sát Thương", ["desc"]="Phản Sát Thương: Phản đòn {0} sát thương lên đối phương.", + ["tips_desc"]="Phản ST: Phản đòn sát thương lên đối phương.", ["name"]="thorns" }, [73]={ ["id"]=73, - ["desc"]="Khiên Phản Sát Thương: Có thể chịu sát thương bằng {0} HP tối đa, phản đòn 400% sát thương lên đối phương.", + ["desc"]="Khiên Phản ST : Chịu một lượng ST nhất định, phản đòn nhiều ST lên đối phương.", + ["tips_desc"]="Khiên Phản ST 2: Chịu một lượng ST nhất định, phản đòn nhiều ST lên đối phương.", ["name"]="shield_rebound_400" }, [74]={ ["id"]=74, - ["desc"]="Khiên Băng Sương: Có thể chịu sát thương bằng {0} HP tối đa.", + ["desc"]="Khiên Băng Sương: Chịu một lượng ST nhất định.", + ["tips_desc"]="Khiên Băng Sương: Chịu một lượng ST nhất định.", ["name"]="shield_ice" }, [75]={ ["id"]=75, - ["desc"]="Khiên Băng Sương: Có thể chịu sát thương bằng {0} HP tối đa, phản đòn 400% sát thương lên đối phương.", + ["desc"]="Khiên Băng Sương 2: Chịu một lượng ST nhất định, phản đòn nhiều ST lên đối phương.", + ["tips_desc"]="Khiên Băng Sương 2: Chịu một lượng ST nhất định, phản đòn nhiều ST lên đối phương.", ["name"]="shield_ice_rebound_400" }, [79]={ ["id"]=79, ["show_name"]="Khiên Ý Niệm", ["desc"]="Khiên Ý Niệm: Khi Khiên tồn tại sẽ không chịu bất kỳ sát thương nào, cứ bị đòn tấn công đánh trúng 1 lần sẽ trừ 1 tầng Khiên.", + ["tips_desc"]="Khiên Ý Niệm: Khi khiên tồn tại sẽ không chịu bất kỳ ST nào, cứ bị đánh trúng 1 lần sẽ trừ 1 tầng Khiên.", ["name"]="invincible_shield" }, [80]={ ["id"]=80, - ["desc"]="Khiên Băng Sương: Có thể chịu sát thương bằng {0} HP tối đa.", + ["desc"]="Khiên Băng Sương: Chịu một lượng ST nhất định.", + ["tips_desc"]="Khiên Băng Sương: Chịu một lượng ST nhất định.", ["name"]="shield_ice_02" }, [81]={ ["id"]=81, ["show_name"]="Tăng ST Kỹ Năng", ["desc"]="Tăng ST Kỹ Năng: Tăng tất cả sát thương kỹ năng", + ["tips_desc"]="Tăng ST Kỹ Năng: Tăng tất cả sát thương kỹ năng", ["name"]="skill_hurt_add_show" + }, + [82]={ + ["id"]=82, + ["desc"]="Khiên Phản ST : Chịu một lượng ST nhất định, phản đòn nhiều ST lên đối phương.", + ["tips_desc"]="Khiên Phản ST 2: Chịu một lượng ST nhất định, phản đòn nhiều ST lên đối phương.", + ["name"]="shield_rebound_200" + }, + [83]={ + ["id"]=83, + ["desc"]="Khiên Phản ST: Chịu một lượng ST nhất định, phản đòn lên đối phương.", + ["tips_desc"]="Khiên Phản ST: Chịu một lượng ST nhất định, phản đòn lên đối phương.", + ["name"]="shield_rebound_100" } } local keys = { @@ -219,12 +258,14 @@ local keys = { ["shield_ice_rebound_400"]=buff[75], ["invincible_shield"]=buff[79], ["shield_ice_02"]=buff[80], - ["skill_hurt_add_show"]=buff[81] + ["skill_hurt_add_show"]=buff[81], + ["shield_rebound_200"]=buff[82], + ["shield_rebound_100"]=buff[83] } } local config = { data=buff, keys=keys, -count=33 +count=35 } return config \ No newline at end of file diff --git a/lua/app/config/strings/vi/global.lua b/lua/app/config/strings/vi/global.lua index 28e9d4a2..216bb0bd 100644 --- a/lua/app/config/strings/vi/global.lua +++ b/lua/app/config/strings/vi/global.lua @@ -362,7 +362,7 @@ local localization_global = ["DUNGEON_WEAPON_DESC_7"] = "Chiến Lược", ["DUNGEON_WEAPON_DESC_8"] = "Chiến lược Thủ Lĩnh", ["DUNGEON_WEAPON_DESC_9"] = "Vượt ải gần đây", - ["DUNGEON_WEAPON_DESC_10"] = "Đội Lv{0} mở", + ["DUNGEON_WEAPON_DESC_10"] = "Người chơi Lv{0} mở", ["DUNGEON_WEAPON_DESC_11"] = "Vượt ải chương trước mở", ["EQUIP_DESC_1"] = "Vũ Khí", ["EQUIP_DESC_2"] = "Phòng Cụ", @@ -423,6 +423,7 @@ local localization_global = ["DUNGEON_ARMOR_DESC_17"] = "Lượt ải còn: {0}", ["NAVER_SETTING_DESC"] = "Naver", ["EQUIP_DESC_26"] = "4 món phòng cụ +{0}:", + ["BATTLE_DESC_14"] = "Có chiến đấu còn dang dở, tiếp tục chứ?", } return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/vi/skill.lua b/lua/app/config/strings/vi/skill.lua index bb7dc307..68a6993c 100644 --- a/lua/app/config/strings/vi/skill.lua +++ b/lua/app/config/strings/vi/skill.lua @@ -6,7 +6,7 @@ local skill = { ["desc"]="Lốc Xoáy Cự Kiếm: Gây thêm nhiều lần sát thương kỹ năng." }, [1300220]={ - ["desc"]="Viêm Quyền: Xua tan 5 ô theo hàng dọc, và gây 1 lần sát thương kỹ năng, có 50% kèm Thiêu Đốt, 2 hiệp." + ["desc"]="Viêm Quyền: Xua tan 5 ô theo hàng dọc, và gây 1 lần ST kỹ năng, có 50% kèm Thiêu Đốt, 2 hiệp." }, [1400120]={ ["desc"]="Trọng Kích Sắt Thép: 4 Nguyên Tố xung quanh đổi màu, gây nhiều lần sát thương kỹ năng." @@ -42,22 +42,22 @@ local skill = { ["desc"]="Sao Băng Siêu Tốc: Dùng xong tăng sát thương lần này, 1 lần sát thương kỹ năng cực lớn." }, [3400220]={ - ["desc"]="Ác Mộng Tươi Đẹp: Gây thêm 1 lần nhiều sát thương kỹ năng, 50% kèm hiệu quả Ngủ Say, 2 hiệp." + ["desc"]="Ác Mộng Tươi Đẹp: Gây thêm 1 lần nhiều ST kỹ năng, cos 50% kèm Ngủ Say, 2 hiệp." }, [4200120]={ ["desc"]="Liên Kết Nguyên Tố: Ngẫu nhiên xua tan 3 Nguyên Tố, gây 1 lần sát thương kỹ năng." }, [4300120]={ - ["desc"]="Sương Băng Tinh: Gây thêm 1 lần sát thương kỹ năng, kèm hiệu quả Băng Sương, 1 hiệp." + ["desc"]="Sương Băng Tinh: Gây thêm 1 lần ST kỹ năng, kèm Băng Sương, 1 hiệp." }, [4300220]={ - ["desc"]="Đao Sa Đọa: Gây thêm 1 lần sát thương kỹ năng, kèm hiệu quả Sa Đọa, 1 hiệp." + ["desc"]="Đao Sa Đọa: Gây thêm 1 lần ST kỹ năng, kèm Sa Đọa, 1 hiệp." }, [4400120]={ - ["desc"]="Băng Sương Kiếm Vũ: Ngẫu nhiên xua tan 3 Nguyên Tố, gây 1 lần sát thương kỹ năng, kèm Băng Sương, 1 hiệp." + ["desc"]="Băng Sương Kiếm Vũ: Ngẫu nhiên xua tan 3 Nguyên Tố, gây 1 lần ST kỹ năng, kèm Băng Sương, 1 hiệp." }, [4400220]={ - ["desc"]="Lời Nguyền Pharaoh: Gây thêm 1 lần sát thương kỹ năng, kèm hiệu quả Lời Nguyền, 1 hiệp." + ["desc"]="Lời Nguyền Pharaoh: Gây thêm 1 lần sát thương kỹ năng, kèm Lời Nguyền, 1 hiệp." }, [5200120]={ ["desc"]="Thuật Khiên: Giúp đồng đội nhận 1 Khiên, 1 hiệp." diff --git a/lua/app/config/strings/vi/skill_rogue.lua b/lua/app/config/strings/vi/skill_rogue.lua index e174dda2..7eb13916 100644 --- a/lua/app/config/strings/vi/skill_rogue.lua +++ b/lua/app/config/strings/vi/skill_rogue.lua @@ -480,7 +480,7 @@ local skill_rogue = { ["desc"]="Ác Mộng Tươi Đẹp theo hướng X được xua tan thêm 4 ô." }, [3400204]={ - ["desc"]="Ác Mộng Tươi Đẹp kèm hiệu quả Ngủ Say, TL tăng đến 100%." + ["desc"]="Ác Mộng Tươi Đẹp kèm hiệu quả Ngủ Say, TL tăng đến 80%." }, [3400205]={ ["desc"]="Combo: Khi Incubus đánh thường kẻ địch Ngủ Say sẽ kèm hiệu quả Giam Cầm, 2 hiệp." diff --git a/lua/app/config/strings/zh/buff.lua b/lua/app/config/strings/zh/buff.lua index cc918536..0d478126 100644 --- a/lua/app/config/strings/zh/buff.lua +++ b/lua/app/config/strings/zh/buff.lua @@ -32,157 +32,196 @@ local buff = { [24]={ ["id"]=24, ["desc"]="傷害提升:造成的傷害提高{0}。", + ["tips_desc"]="傷害提升:造成的所有傷害提高。", ["name"]="dmg_addition_all_add" }, [33]={ ["id"]=33, ["show_name"]="暈眩", ["desc"]="暈眩:本回合無法行動。", + ["tips_desc"]="暈眩:本回合無法行動。", ["name"]="stun" }, [34]={ ["id"]=34, - ["desc"]="護盾:可承受最大生命值{0}的傷害。", + ["desc"]="護盾:可承受一定傷害。", + ["tips_desc"]="護盾:可承受一定傷害。", ["name"]="shield" }, [36]={ ["id"]=36, ["show_name"]="冰霜", ["desc"]="冰霜:普攻次數-{0}。", + ["tips_desc"]="冰霜:普攻次數減少。", ["name"]="normal_attack_dec" }, [37]={ ["id"]=37, ["show_name"]="亢奮", ["desc"]="亢奮:普攻次數+{0}。", + ["tips_desc"]="亢奮:普攻次數增加。", ["name"]="normal_attack_add" }, [47]={ ["id"]=47, - ["desc"]="反傷護盾:可承受最大生命值{0}的傷害,反彈200%敵方傷害。", + ["desc"]="反傷護盾:可承受一定傷害,反彈對方傷害。", + ["tips_desc"]="反傷護盾:可承受一定傷害,反彈對方傷害。", ["name"]="shield_rebound_200" }, [48]={ ["id"]=48, ["show_name"]="灼燒", ["desc"]="灼燒:回合結束時造成釋放者攻擊力{0}的傷害。", + ["tips_desc"]="灼燒:回合結束時造成一定的傷害。", ["name"]="burn" }, [49]={ ["id"]=49, ["show_name"]="易傷", ["desc"]="易傷:受到所有傷害提高{0}。", + ["tips_desc"]="易傷:受到所有傷害提高。", ["name"]="vulnerable" }, [50]={ ["id"]=50, ["show_name"]="凍結", ["desc"]="凍結:本回合無法行動,且增益效果無效。", + ["tips_desc"]="凍結:本回合無法行動,且增益效果無效。", ["name"]="frozen" }, [51]={ ["id"]=51, ["show_name"]="中毒", ["desc"]="中毒:回合結束時造成釋放者攻擊力{0}的傷害。", + ["tips_desc"]="中毒:回合結束時造成一定傷害。", ["name"]="poison" }, [52]={ ["id"]=52, ["show_name"]="禁錮", ["desc"]="禁錮:本回合只可使用普攻。", + ["tips_desc"]="禁錮:本回合只可使用普攻,且技能進度不會增長。", ["name"]="imprison" }, [53]={ ["id"]=53, ["show_name"]="腐敗", ["desc"]="腐敗:生命回復效果降低{0}。", + ["tips_desc"]="腐敗:生命回復效果降低。", ["name"]="corrupt" }, [54]={ ["id"]=54, ["show_name"]="流血", ["desc"]="流血:受擊時回復攻擊者生命,回合結束時造成釋放者攻擊力{0}的傷害。", + ["tips_desc"]="流血:受擊時回復攻擊者生命,回合結束時造成傷害。", ["name"]="bleed" }, [55]={ ["id"]=55, ["show_name"]="虛弱", ["desc"]="虛弱:造成的傷害降低{0}。", + ["tips_desc"]="虛弱:造成的傷害降低。", ["name"]="weaken" }, [56]={ ["id"]=56, ["show_name"]="昏睡", ["desc"]="昏睡:本回合無法行動,受擊會移去效果。", + ["tips_desc"]="昏睡:本回合無法行動,受擊會移去效果。", ["name"]="lethargy" }, [57]={ ["id"]=57, ["show_name"]="詛咒", ["desc"]="詛咒:攻擊不會造成傷害,而會治療對方。", + ["tips_desc"]="詛咒:攻擊不會造成傷害,而是治療對方。", ["name"]="curse" }, [58]={ ["id"]=58, ["show_name"]="鎖定", ["desc"]="鎖定:隨機鎖定棋盤上的一種顏色,無法選中。", + ["tips_desc"]="鎖定:隨機鎖定棋盤上的一種顏色,無法選中。", ["name"]="lock" }, [59]={ ["id"]=59, ["show_name"]="先手", ["desc"]="先手:每回合都率先出手。", + ["tips_desc"]="先手:每回合都率先出手。", ["name"]="first_hand" }, [61]={ ["id"]=61, ["show_name"]="不死", ["desc"]="不死:受到致命傷害不會死亡。", + ["tips_desc"]="不死:本回合受到致命傷害不會死亡。", ["name"]="undead" }, [62]={ ["id"]=62, ["show_name"]="反擊", ["desc"]="反擊:受到直接傷害時有{0}的機率進行反擊。", + ["tips_desc"]="反擊:受到直接傷害時有機率進行反擊。", ["name"]="counterattack" }, [63]={ ["id"]=63, ["show_name"]="反傷", ["desc"]="反傷:反彈{0}敵方傷害。", + ["tips_desc"]="反傷:反彈對方傷害。", ["name"]="thorns" }, [73]={ ["id"]=73, - ["desc"]="反傷護盾:可承受最大生命值{0}的傷害,反彈400%敵方傷害。", + ["desc"]="反傷護盾:可承受一定傷害,反彈對方大量傷害。", + ["tips_desc"]="反傷護盾2:可承受一定傷害,反彈對方大量傷害。", ["name"]="shield_rebound_400" }, [74]={ ["id"]=74, - ["desc"]="冰霜護盾:可承受最大生命值{0}的傷害。", + ["desc"]="冰霜護盾:可承受一定傷害。", + ["tips_desc"]="冰霜護盾:可承受一定傷害。", ["name"]="shield_ice" }, [75]={ ["id"]=75, - ["desc"]="冰霜護盾:可承受最大生命值{0}的傷害,反彈400%敵方傷害。", + ["desc"]="冰霜護盾2:可承受一定傷害,反彈對方大量傷害。", + ["tips_desc"]="冰霜護盾2:可承受一定傷害,反彈對方大量傷害。", ["name"]="shield_ice_rebound_400" }, [79]={ ["id"]=79, ["show_name"]="意念護盾", ["desc"]="意念護盾:護盾存在時不會受到任何傷害,每被攻擊命中1次將扣除1層護盾。", + ["tips_desc"]="意念護盾:護盾存在時不會受到任何傷害,每被攻擊命中1次將扣除1層護盾。", ["name"]="invincible_shield" }, [80]={ ["id"]=80, - ["desc"]="冰霜護盾:可承受最大生命值{0}的傷害。", + ["desc"]="冰霜護盾:可承受一定傷害。", + ["tips_desc"]="冰霜護盾:可承受一定傷害。", ["name"]="shield_ice_02" }, [81]={ ["id"]=81, ["show_name"]="技能增傷", ["desc"]="技能增傷:所有技能傷害增加", + ["tips_desc"]="技能增傷:所有技能傷害增加", ["name"]="skill_hurt_add_show" + }, + [82]={ + ["id"]=82, + ["desc"]="反傷護盾:可承受一定傷害,反彈對方大量傷害。", + ["tips_desc"]="反傷護盾2:可承受一定傷害,反彈對方大量傷害。", + ["name"]="shield_rebound_200" + }, + [83]={ + ["id"]=83, + ["desc"]="反傷護盾:可承受一定傷害,反彈對方傷害。", + ["tips_desc"]="反傷護盾:可承受一定傷害,反彈對方傷害。", + ["name"]="shield_rebound_100" } } local keys = { @@ -219,12 +258,14 @@ local keys = { ["shield_ice_rebound_400"]=buff[75], ["invincible_shield"]=buff[79], ["shield_ice_02"]=buff[80], - ["skill_hurt_add_show"]=buff[81] + ["skill_hurt_add_show"]=buff[81], + ["shield_rebound_200"]=buff[82], + ["shield_rebound_100"]=buff[83] } } local config = { data=buff, keys=keys, -count=33 +count=35 } return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/global.lua b/lua/app/config/strings/zh/global.lua index e5764818..c74ae974 100644 --- a/lua/app/config/strings/zh/global.lua +++ b/lua/app/config/strings/zh/global.lua @@ -362,7 +362,7 @@ local localization_global = ["DUNGEON_WEAPON_DESC_7"] = "攻略", ["DUNGEON_WEAPON_DESC_8"] = "首領攻略", ["DUNGEON_WEAPON_DESC_9"] = "近期通關", - ["DUNGEON_WEAPON_DESC_10"] = "隊伍等級{0}開啟", + ["DUNGEON_WEAPON_DESC_10"] = "玩家等級{0}開啟", ["DUNGEON_WEAPON_DESC_11"] = "通關前一章開啟", ["EQUIP_DESC_1"] = "武器", ["EQUIP_DESC_2"] = "防具", @@ -423,6 +423,7 @@ local localization_global = ["DUNGEON_ARMOR_DESC_17"] = "本關今日剩餘次數:{0}", ["NAVER_SETTING_DESC"] = "Naver", ["EQUIP_DESC_26"] = "4件防具+{0}:", + ["BATTLE_DESC_14"] = "有尚未完成的戰鬥,是否繼續?", } return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/zh/skill.lua b/lua/app/config/strings/zh/skill.lua index 48d76091..775e2afc 100644 --- a/lua/app/config/strings/zh/skill.lua +++ b/lua/app/config/strings/zh/skill.lua @@ -6,7 +6,7 @@ local skill = { ["desc"]="巨劍旋風:額外造成數次技能傷害。" }, [1300220]={ - ["desc"]="炎拳:沿直向消除5格,並造成一次技能傷害,50%機率附帶灼燒效果,2回合。" + ["desc"]="炎拳:沿直向消除5格,並造成一次技能傷害,50%機率附加灼燒效果,2回合。" }, [1400120]={ ["desc"]="鋼鐵重擊:將周圍4個元素變色,並造成數次大量技能傷害。" @@ -42,22 +42,22 @@ local skill = { ["desc"]="流星追月:使用後本次傷害提高,並造成一次巨大技能傷害。" }, [3400220]={ - ["desc"]="美麗夢魘:額外造成一次大量技能傷害,50%機率附帶昏睡效果,2回合。" + ["desc"]="美麗夢魘:額外造成一次大量技能傷害,50%機率附加昏睡效果,2回合。" }, [4200120]={ ["desc"]="元素連接:隨機消除3個元素,並造成一次技能傷害。" }, [4300120]={ - ["desc"]="霜凍冰晶:額外造成一次技能傷害,附帶冰霜效果,1回合。" + ["desc"]="霜凍冰晶:額外造成一次技能傷害,附帶冰霜效果,1回合。" }, [4300220]={ - ["desc"]="腐敗利刃:額外造成一次技能傷害,附帶腐敗效果,1回合。" + ["desc"]="腐敗利刃:額外造成一次技能傷害,附帶腐敗效果,1回合。" }, [4400120]={ - ["desc"]="冰霜劍舞:隨機消除3個元素,並造成一次技能傷害,附帶冰霜效果,1回合。" + ["desc"]="冰霜劍舞:隨機消除3個元素,並造成一次技能傷害,附帶冰霜效果,1回合。" }, [4400220]={ - ["desc"]="法老詛咒:額外造成一次技能傷害,附帶詛咒效果,1回合。" + ["desc"]="法老詛咒:額外造成一次技能傷害,附帶詛咒效果,1回合。" }, [5200120]={ ["desc"]="護盾術:賦予團隊一個護盾,1回合。" diff --git a/lua/app/config/strings/zh/skill_rogue.lua b/lua/app/config/strings/zh/skill_rogue.lua index 003f0ac4..200c75e1 100644 --- a/lua/app/config/strings/zh/skill_rogue.lua +++ b/lua/app/config/strings/zh/skill_rogue.lua @@ -480,7 +480,7 @@ local skill_rogue = { ["desc"]="美麗夢魘沿X方向可額外消除4格。" }, [3400204]={ - ["desc"]="美麗夢魘附帶的昏睡效果,機率提高到100%。" + ["desc"]="美麗夢魘附帶的昏睡效果,機率提高到80%。" }, [3400205]={ ["desc"]="Combo:夢魔普攻昏睡敵人將附帶禁錮效果,2回合。" diff --git a/lua/app/module/battle/helper/battle_buff_handle.lua b/lua/app/module/battle/helper/battle_buff_handle.lua index f25bb368..6b968ae9 100644 --- a/lua/app/module/battle/helper/battle_buff_handle.lua +++ b/lua/app/module/battle/helper/battle_buff_handle.lua @@ -167,7 +167,7 @@ BattleBuffHandle.addShield = { return shieldNum end, -- 反弹目标伤害的100%,直接写死 - [BUFF_NAME.SHIELD_ICE_REBOUND_200] = function(unitComp, buff, target, buffEffect) + [BUFF_NAME.SHIELD_REBOUND_100] = function(unitComp, buff, target, buffEffect) local shieldNum = target.unitEntity:getMaxHp() * buff:getEffectNum() // DEFAULT_FACTOR target:addShield(shieldNum, buffEffect) target.unitEntity:addAttr(ATTR_NAME.SHIELD_REBOUND, 10000, false) From 792a5a1672676ba356b535c67aa8abbabfa34846 Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Mon, 7 Aug 2023 09:37:00 +0800 Subject: [PATCH 39/44] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/ui/dungeon_weapon/dungeon_weapon_main_ui.lua | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lua/app/ui/dungeon_weapon/dungeon_weapon_main_ui.lua b/lua/app/ui/dungeon_weapon/dungeon_weapon_main_ui.lua index 5a434834..bdd933ad 100644 --- a/lua/app/ui/dungeon_weapon/dungeon_weapon_main_ui.lua +++ b/lua/app/ui/dungeon_weapon/dungeon_weapon_main_ui.lua @@ -6,8 +6,10 @@ function DungeonWeaponMainUI:getCurrencyParams() if self.currencyParams == nil then self.currencyParams = { itemIds = { - GConst.ItemConst.ITEM_ID_GOLD - } + GConst.ItemConst.ITEM_ID_GOLD, + GConst.ItemConst.ITEM_ID_VIT + }, + showType = GConst.CURRENCY_TYPE.HORIZONTAL } end return self.currencyParams @@ -104,6 +106,7 @@ end function DungeonWeaponMainUI:refreshRemianNode() local uiMap = self.root:genAllChildren() local node = uiMap["dungeon_weapon_mian_ui.remian_node"] + node:setAnchoredPositionX(-330) local txt = uiMap["dungeon_weapon_mian_ui.remian_node.desc"] txt:setText(I18N:getGlobalText(I18N.GlobalConst.DUNGEON_WEAPON_DESC_5, self.weaponData:getRemianFarmCount() .. "/" .. self.weaponData:getDialyFarmLimit())) GFunc.expandImgToFitTx(node, txt, 16.5) From f74226c056c032efd941757d9c4d28b222ab5f8a Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Mon, 7 Aug 2023 10:35:11 +0800 Subject: [PATCH 40/44] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=B8=8A=E6=8A=A5?= =?UTF-8?q?=E5=B1=9E=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/common/bi_report.lua | 7 ++++++- lua/app/module/dungeon/dungeon_manager.lua | 14 ++++++++++++++ .../dungeon_armor/dungeon_armor_manager.lua | 7 +++++++ .../dungeon_weapon/dungeon_weapon_manager.lua | 7 +++++++ lua/app/module/equip/equip_manager.lua | 6 +++++- lua/app/module/login/login_manager.lua | 1 + lua/app/userdata/bag/item_data.lua | 2 +- lua/app/userdata/dungeon/dungeon_data.lua | 17 +++++++++++++++++ 8 files changed, 58 insertions(+), 3 deletions(-) diff --git a/lua/app/common/bi_report.lua b/lua/app/common/bi_report.lua index 8aad66d5..aceb491b 100644 --- a/lua/app/common/bi_report.lua +++ b/lua/app/common/bi_report.lua @@ -134,6 +134,7 @@ BIReport.ITEM_GET_TYPE = { WEAPON_GIFT = "WeaponGift", ARMOR_GIFT = "ArmorGift", EQUIP_UPGRADE = "EquipUpgrade", + ARMOR_UPGRADE = "ArmorUpgrade", } BIReport.ADS_CLICK_TYPE = { @@ -357,6 +358,9 @@ function BIReport:report(name, args) local str, lv, atk, hp = DataManager.FormationData:getStageFormationBIStr() args.formation_atk = atk args.formation_hp = hp + if DataManager.DungeonData then + args.dungeon_progress = DataManager.DungeonData:getDungeonBIStr() + end end args.current_version = CS.BF.BFMain.Instance.GameLaunchMgr:GetCurrentVersion() args.is_new_player = self.isNewPlayer @@ -1091,11 +1095,12 @@ function BIReport:postVitGet(num, getType, vitAll) end -- 体力使用 -function BIReport:postVitUse(num) +function BIReport:postVitUse(num, getType) -- EnergyNum 当前体力数 减少体力时 Int 使用体力数量 -- IsNew 是否是新用户 Boolean 是否为当天新用户,True = 是,False = 否 -- MaxChapter 最大章节 Int 已解锁的最大章节 local args = { + type = getType, vit_num = num, vit_all = DataManager.BagData.ItemData:getItemNumById(GConst.ItemConst.ITEM_ID_VIT), } diff --git a/lua/app/module/dungeon/dungeon_manager.lua b/lua/app/module/dungeon/dungeon_manager.lua index bcd2f206..b04c91d7 100644 --- a/lua/app/module/dungeon/dungeon_manager.lua +++ b/lua/app/module/dungeon/dungeon_manager.lua @@ -93,8 +93,15 @@ end -- 响应结算金币副本 function DungeonManager:respEndChallengeGold(result) if result.err_code == GConst.ERROR_STR.SUCCESS then + local passId = DataManager.DungeonData:getPassedMaxId(ModuleManager.MODULE_KEY.DUNGEON_GOLD) DataManager.DungeonData:initDungeonGold(result.gold_challenge) ModuleManager.BattleManager:showBattleResultUI(GConst.BattleConst.BATTLE_TYPE.DUNGEON_GOLD, result.rewards, result.reqData.combatReport) + + if passId ~= DataManager.DungeonData:getPassedMaxId(ModuleManager.MODULE_KEY.DUNGEON_GOLD) then + local data = {} + data.dungeon_progress = DataManager.DungeonData:getDungeonBIStr() + CS.ThinkingAnalytics.ThinkingAnalyticsAPI.UserSet(data) + end end end @@ -182,8 +189,15 @@ end -- 响应结算碎片副本 function DungeonManager:respEndChallengeShards(result) if result.err_code == GConst.ERROR_STR.SUCCESS then + local passId = DataManager.DungeonData:getPassedMaxId(ModuleManager.MODULE_KEY.DUNGEON_SHARDS) DataManager.DungeonData:initDungeonShards(result.shards_challenge) ModuleManager.BattleManager:showBattleResultUI(GConst.BattleConst.BATTLE_TYPE.DUNGEON_SHARDS, result.rewards, result.reqData and result.reqData.combatReport or {}) + + if passId ~= DataManager.DungeonData:getPassedMaxId(ModuleManager.MODULE_KEY.DUNGEON_SHARDS) then + local data = {} + data.dungeon_progress = DataManager.DungeonData:getDungeonBIStr() + CS.ThinkingAnalytics.ThinkingAnalyticsAPI.UserSet(data) + end end end diff --git a/lua/app/module/dungeon_armor/dungeon_armor_manager.lua b/lua/app/module/dungeon_armor/dungeon_armor_manager.lua index f7c6f133..5fb31485 100644 --- a/lua/app/module/dungeon_armor/dungeon_armor_manager.lua +++ b/lua/app/module/dungeon_armor/dungeon_armor_manager.lua @@ -94,11 +94,18 @@ end function DungeonArmorManager:rspEndChallenge(result) if result.err_code == GConst.ERROR_STR.SUCCESS then local armorData = DataManager.DungeonData:getDungeonDataByType(ModuleManager.MODULE_KEY.DUNGEON_ARMOR) + local passId = armorData:getPassedMaxId() if result.reqData then armorData:refreshInfoOnSettlement(result.reqData.chapter_armor_id, result) end ModuleManager.BattleManager:showBattleArmorResultUI(GConst.BattleConst.BATTLE_TYPE.DUNGEON_ARMOR, result.rewards, result.reqData.combatReport) DataManager.DungeonData:setDirty() + + if passId ~= armorData:getPassedMaxId() then + local data = {} + data.dungeon_progress = DataManager.DungeonData:getDungeonBIStr() + CS.ThinkingAnalytics.ThinkingAnalyticsAPI.UserSet(data) + end end end diff --git a/lua/app/module/dungeon_weapon/dungeon_weapon_manager.lua b/lua/app/module/dungeon_weapon/dungeon_weapon_manager.lua index 4a16675c..a75c9e49 100644 --- a/lua/app/module/dungeon_weapon/dungeon_weapon_manager.lua +++ b/lua/app/module/dungeon_weapon/dungeon_weapon_manager.lua @@ -80,6 +80,7 @@ end function DungeonWeaponManager:rspEndChallenge(result) if result.err_code == GConst.ERROR_STR.SUCCESS then local weaponData = DataManager.DungeonData:getDungeonDataByType(ModuleManager.MODULE_KEY.DUNGEON_WEAPON) + local passId = weaponData:getPassedMaxId() weaponData:refreshInfoOnSettlement(result.reqData.chapter_weapon_id, result) local firstRewardsIdx = #result.first_rewards @@ -102,6 +103,12 @@ function DungeonWeaponManager:rspEndChallenge(result) end ModuleManager.BattleManager:showBattleResultUI(GConst.BattleConst.BATTLE_TYPE.DUNGEON_WEAPON, resultRewards, result.reqData.combatReport, nil, firstRewardsIdx, true) DataManager.DungeonData:setDirty() + + if passId ~= weaponData:getPassedMaxId() then + local data = {} + data.dungeon_progress = DataManager.DungeonData:getDungeonBIStr() + CS.ThinkingAnalytics.ThinkingAnalyticsAPI.UserSet(data) + end end end diff --git a/lua/app/module/equip/equip_manager.lua b/lua/app/module/equip/equip_manager.lua index 3db4c508..4a259fea 100644 --- a/lua/app/module/equip/equip_manager.lua +++ b/lua/app/module/equip/equip_manager.lua @@ -35,7 +35,11 @@ function EquipManager:reqUpgrade(id, part) return end - self:sendMessage(ProtoMsgType.FromMsgEnum.EquipUpgradeReq, {hero_id = id, position = part}, {}, self.rspUpgrade, BIReport.ITEM_GET_TYPE.EQUIP_UPGRADE) + local itemGetType = BIReport.ITEM_GET_TYPE.EQUIP_UPGRADE + if part ~= GConst.EquipConst.PART_TYPE.WEAPON then + itemGetType = BIReport.ITEM_GET_TYPE.ARMOR_UPGRADE + end + self:sendMessage(ProtoMsgType.FromMsgEnum.EquipUpgradeReq, {hero_id = id, position = part}, {}, self.rspUpgrade, itemGetType) end function EquipManager:rspUpgrade(result) diff --git a/lua/app/module/login/login_manager.lua b/lua/app/module/login/login_manager.lua index 739c48f8..cab8c9c6 100644 --- a/lua/app/module/login/login_manager.lua +++ b/lua/app/module/login/login_manager.lua @@ -164,6 +164,7 @@ function LoginManager:loginFinish(data) data.formation, data.formation_lv, data.formation_atk, data.formation_hp = DataManager.FormationData:getStageFormationBIStr() data.formation_lv = nil data.all_heroes = DataManager.HeroData:getAllHeroesBIStr() + data.dungeon_progress = DataManager.DungeonData:getDungeonBIStr() CS.ThinkingAnalytics.ThinkingAnalyticsAPI.UserSet(data) EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.LOGIN_REQ_SUCCESS) diff --git a/lua/app/userdata/bag/item_data.lua b/lua/app/userdata/bag/item_data.lua index e2423d54..241bc7dc 100644 --- a/lua/app/userdata/bag/item_data.lua +++ b/lua/app/userdata/bag/item_data.lua @@ -160,7 +160,7 @@ function ItemData:addItem(data, itemGetType) elseif data.id == GConst.ItemConst.ITEM_ID_VIT then if data.count < 0 then ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_VIT_COST, -data.count) - BIReport:postVitUse(data.count) + BIReport:postVitUse(data.count, itemGetType) else BIReport:postVitGet(data.count, itemGetType) end diff --git a/lua/app/userdata/dungeon/dungeon_data.lua b/lua/app/userdata/dungeon/dungeon_data.lua index d68467f3..7d78169b 100644 --- a/lua/app/userdata/dungeon/dungeon_data.lua +++ b/lua/app/userdata/dungeon/dungeon_data.lua @@ -473,4 +473,21 @@ function DungeonData:getDungeonDataByType(moduleKey) return self.dataDungeons[moduleKey] end +function DungeonData:getDungeonBIStr() + local str + if not self.dataDungeons then + return GConst.EMPTY_STRING + end + for moduleKey, entity in pairs(self.dataDungeons) do + if str then + str = str .. "|" + else + str = GConst.EMPTY_STRING + end + str = str .. string.gsub(moduleKey, "_open", "") .. ":" .. entity:getPassedMaxId() + end + Logger.logHighlight(str) + return str +end + return DungeonData \ No newline at end of file From 7aa2b95686f199e510f6bee8f7da47289f3a0695 Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Mon, 7 Aug 2023 15:33:06 +0800 Subject: [PATCH 41/44] =?UTF-8?q?=E5=AE=9D=E7=AE=B1=E6=97=A5=E5=BF=97?= =?UTF-8?q?=E4=B8=8A=E6=8A=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/common/bi_report.lua | 25 +++++++++++++++++++ lua/app/global/global_func.lua | 17 +++++++++++++ lua/app/module/arena/arena_bounty_manager.lua | 2 ++ lua/app/module/bounty/bounty_manager.lua | 2 ++ lua/app/module/summon/summon_manager.lua | 7 ++++++ .../dungeon_weapon/dungeon_weapon_main_ui.lua | 5 +++- 6 files changed, 57 insertions(+), 1 deletion(-) diff --git a/lua/app/common/bi_report.lua b/lua/app/common/bi_report.lua index aceb491b..3a23407a 100644 --- a/lua/app/common/bi_report.lua +++ b/lua/app/common/bi_report.lua @@ -258,6 +258,19 @@ BIReport.PAY_UI_SHOW_TYPE = { SHOP_SHOW = "ShopShow", } +BIReport.BOX_OPEN_BOX_TYPE = { + SHOP = "Shop", + ACTIVITY = "Activity", +} + +BIReport.BOX_OPEN_OPEN_TYPE = { + USE_KEY = "UseKey", + USE_GEM = "UseGem", + BOUNTY = "Bounty", + ARENA_BOUNTY = "ArenaBounty", +} + + -- b6 local EVENT_NAME_EXIT = "client_exit" local EVENT_NAME_FIGHT = "client_fight" @@ -287,6 +300,7 @@ local EVENT_NAME_IRONSOURCE_AD_REVENUE = "client_ironsource_ad_revenue" -- applo local EVENT_NAME_DAILY_CHALLENGE_OPT = "client_daily_challenge_opt" local EVENT_NAME_ARENA_OPT = "client_arena_opt"-- 竞技场 local EVENT_NAME_MISCELLANEOUS_OPT = "event_name_miscellaneous_opt" -- 一些杂项 +local EVENT_BOX_OPEN = "client_box_open" function BIReport:setIsNewPlayer(isNewPlayer) self.isNewPlayer = isNewPlayer @@ -1607,4 +1621,15 @@ function BIReport:postPbAuthfailed(pbName, lastLoginInfo, authFailToLogin) self:report(EVENT_NAME_NETWORK_OPT, args) end +function BIReport:postBoxOpen(id, boxType, openType, box_level, rewards) + local args = { + box_type = boxType, + open_type = openType, + box_item_id = id, + box_level = box_level, + rewardsStr = GFunc.getItemRewardsStr(rewards) + } + self:report(EVENT_BOX_OPEN, args) +end + return BIReport \ No newline at end of file diff --git a/lua/app/global/global_func.lua b/lua/app/global/global_func.lua index cf666a8e..b0a80710 100644 --- a/lua/app/global/global_func.lua +++ b/lua/app/global/global_func.lua @@ -788,6 +788,23 @@ function GFunc.getRewardsStr(rewards) return itemStr end +function GFunc.getItemRewardsStr(rewards) + if rewards == nil then + return + end + + local itemStr = "" + for k, v in ipairs(rewards) do + if v.type == GConst.REWARD_TYPE.ITEM then + itemStr = itemStr .. v.item.id .. ":" .. v.item.count + end + if k ~= #rewards then + itemStr = itemStr.. "|" + end + end + return itemStr +end + function GFunc.copyStr(str) CS.UnityEngine.GUIUtility.systemCopyBuffer = str end diff --git a/lua/app/module/arena/arena_bounty_manager.lua b/lua/app/module/arena/arena_bounty_manager.lua index a68c2da0..1d461760 100644 --- a/lua/app/module/arena/arena_bounty_manager.lua +++ b/lua/app/module/arena/arena_bounty_manager.lua @@ -40,6 +40,8 @@ function ArenaBountyManager:onClaimReward(result) end if isSpecialBox then ModuleManager.ShopManager:showBoxOpenUI({type = GConst.ShopConst.BOX_REWARD_TYPE.ARENA_BOUNTY, params = rewardId, rewards = result.rewards}) + local openType = BIReport.BOX_OPEN_OPEN_TYPE.ARENA_BOUNTY + BIReport:postBoxOpen(rewardId, BIReport.BOX_OPEN_BOX_TYPE.ACTIVITY, openType, 0, result.rewards) else GFunc.showRewardBox(result.rewards) end diff --git a/lua/app/module/bounty/bounty_manager.lua b/lua/app/module/bounty/bounty_manager.lua index 8e49aa06..3e633da8 100644 --- a/lua/app/module/bounty/bounty_manager.lua +++ b/lua/app/module/bounty/bounty_manager.lua @@ -40,6 +40,8 @@ function BountyManager:onClaimReward(result) end if isSpecialBox then ModuleManager.ShopManager:showBoxOpenUI({type = GConst.ShopConst.BOX_REWARD_TYPE.BOUNTY, params = rewardId, rewards = result.rewards}) + local openType = BIReport.BOX_OPEN_OPEN_TYPE.BOUNTY + BIReport:postBoxOpen(rewardId, BIReport.BOX_OPEN_BOX_TYPE.ACTIVITY, openType, 0, result.rewards) else GFunc.showRewardBox(result.rewards) end diff --git a/lua/app/module/summon/summon_manager.lua b/lua/app/module/summon/summon_manager.lua index 73fde500..8f2da97b 100644 --- a/lua/app/module/summon/summon_manager.lua +++ b/lua/app/module/summon/summon_manager.lua @@ -40,6 +40,13 @@ function SummonManager:summonFinish(result) elseif summonType == GConst.SummonConst.SUMMON_TYPE.LV_3 then ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_OPEN_SHOP_BOX_LEVEL_3, 1) end + if result.rewards then + local openType = BIReport.BOX_OPEN_OPEN_TYPE.USE_KEY + if result.reqData.consume_type ~= 1 then -- 钻石 + openType = BIReport.BOX_OPEN_OPEN_TYPE.USE_GEM + end + BIReport:postBoxOpen(summonType, BIReport.BOX_OPEN_BOX_TYPE.SHOP, openType, DataManager.SummonData:getSummonLevel(), result.rewards) + end end if result.summon_info.count then local totalCount = 0 diff --git a/lua/app/ui/dungeon_weapon/dungeon_weapon_main_ui.lua b/lua/app/ui/dungeon_weapon/dungeon_weapon_main_ui.lua index bdd933ad..0c8fd1ed 100644 --- a/lua/app/ui/dungeon_weapon/dungeon_weapon_main_ui.lua +++ b/lua/app/ui/dungeon_weapon/dungeon_weapon_main_ui.lua @@ -70,6 +70,7 @@ function DungeonWeaponMainUI:_bind() self:bind(self.weaponData, "isDirty", function() self:refreshFormation() self:refreshRemianNode() + self:refreshScrollrect() end) self:bind(DataManager.FormationData, "dirty", function() @@ -91,8 +92,10 @@ function DungeonWeaponMainUI:refreshScrollrect() self.scrollRect:addRefreshCallback(function(index, cell) cell:refresh(self.chapterList[index]) end) + self.scrollRect:refillCells(#self.chapterList, nil, self.targetId) + else + self.scrollRect:refreshAll() end - self.scrollRect:refillCells(#self.chapterList, nil, self.targetId) end function DungeonWeaponMainUI:refreshFormation() From f0ec99f24ae04715da74946529997dbb4dbd022b Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Mon, 7 Aug 2023 15:50:46 +0800 Subject: [PATCH 42/44] =?UTF-8?q?=E5=AD=97=E6=AE=B5=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/common/bi_report.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/app/common/bi_report.lua b/lua/app/common/bi_report.lua index 3a23407a..778c63ec 100644 --- a/lua/app/common/bi_report.lua +++ b/lua/app/common/bi_report.lua @@ -1627,7 +1627,7 @@ function BIReport:postBoxOpen(id, boxType, openType, box_level, rewards) open_type = openType, box_item_id = id, box_level = box_level, - rewardsStr = GFunc.getItemRewardsStr(rewards) + rewards_str = GFunc.getItemRewardsStr(rewards) } self:report(EVENT_BOX_OPEN, args) end From ad56074c71390d4786454256d16a7b604b561b9e Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Mon, 7 Aug 2023 18:15:19 +0800 Subject: [PATCH 43/44] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E4=B8=8A=E6=8A=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/common/bi_report.lua | 1 + lua/app/common/server_push_manager.lua | 1 + lua/app/module/item/item_manager.lua | 8 ++++++++ lua/app/module/login/login_manager.lua | 2 ++ lua/app/proto/proto_msg_type.lua | 3 +++ lua/app/userdata/player/player_data.lua | 15 +++++++++++++++ 6 files changed, 30 insertions(+) diff --git a/lua/app/common/bi_report.lua b/lua/app/common/bi_report.lua index 778c63ec..1031fe8c 100644 --- a/lua/app/common/bi_report.lua +++ b/lua/app/common/bi_report.lua @@ -135,6 +135,7 @@ BIReport.ITEM_GET_TYPE = { ARMOR_GIFT = "ArmorGift", EQUIP_UPGRADE = "EquipUpgrade", ARMOR_UPGRADE = "ArmorUpgrade", + OFFLINE_RECOVERY = "OfflineRecovery", } BIReport.ADS_CLICK_TYPE = { diff --git a/lua/app/common/server_push_manager.lua b/lua/app/common/server_push_manager.lua index f4aeb03a..d0cc21e3 100644 --- a/lua/app/common/server_push_manager.lua +++ b/lua/app/common/server_push_manager.lua @@ -21,6 +21,7 @@ function ServerPushManager:initWhenLogin() self:addServerPushListener(ProtoMsgType.FromMsgEnum.TriggerGrowUpGift2Ntf, ModuleManager.ShopManager, ModuleManager.ShopManager.onTriggerGrowUpGift) self:addServerPushListener(ProtoMsgType.FromMsgEnum.MallDailyResetNtf, ModuleManager.ShopManager, ModuleManager.ShopManager.onMallDailyReset) self:addServerPushListener(ProtoMsgType.FromMsgEnum.AIHelpUnreadNtf, ModuleManager.GameSettingManager, ModuleManager.GameSettingManager.rspAiHelperNtf) + self:addServerPushListener(ProtoMsgType.FromMsgEnum.RecoveryNtf, ModuleManager.ItemManager, ModuleManager.ItemManager.rspRecoveryNtf) end ---- 移除全局推送监听 diff --git a/lua/app/module/item/item_manager.lua b/lua/app/module/item/item_manager.lua index 025370ec..c1bfb3bf 100644 --- a/lua/app/module/item/item_manager.lua +++ b/lua/app/module/item/item_manager.lua @@ -16,4 +16,12 @@ function ItemManager:getItemType(id) return I18N:getConfig("item")[id].desc end +function ItemManager:rspRecoveryNtf(result) + if result and result.id == GConst.ItemConst.ITEM_ID_VIT then + if result.count and result.count > 0 then + BIReport:postVitGet(result.count, BIReport.ITEM_GET_TYPE.OFFLINE_RECOVERY) + end + end +end + return ItemManager \ No newline at end of file diff --git a/lua/app/module/login/login_manager.lua b/lua/app/module/login/login_manager.lua index cab8c9c6..bc2336bb 100644 --- a/lua/app/module/login/login_manager.lua +++ b/lua/app/module/login/login_manager.lua @@ -165,6 +165,8 @@ function LoginManager:loginFinish(data) data.formation_lv = nil data.all_heroes = DataManager.HeroData:getAllHeroesBIStr() data.dungeon_progress = DataManager.DungeonData:getDungeonBIStr() + data.game_version = DataManager.PlayerData:getGameVersion() + data.is_internal = DataManager.PlayerData:getIsInternal() CS.ThinkingAnalytics.ThinkingAnalyticsAPI.UserSet(data) EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.LOGIN_REQ_SUCCESS) diff --git a/lua/app/proto/proto_msg_type.lua b/lua/app/proto/proto_msg_type.lua index a08b79ec..97d56410 100644 --- a/lua/app/proto/proto_msg_type.lua +++ b/lua/app/proto/proto_msg_type.lua @@ -61,6 +61,7 @@ local ProtoMsgType = { [1571186308] = "ChapterShardsChallengeFarmRsp", [1584689751] = "ActPaidResultReq", [1584691584] = "ActPaidResultRsp", + [1635643251] = "RecoveryNtf", [1646412046] = "ChapterDailyChallengeSettlementReq", [1646413879] = "ChapterDailyChallengeSettlementRsp", [1651833678] = "ChapterWeaponChallengeStartReq", @@ -254,6 +255,7 @@ local ProtoMsgType = { ChapterShardsChallengeFarmRsp = 1571186308, ActPaidResultReq = 1584689751, ActPaidResultRsp = 1584691584, + RecoveryNtf = 1635643251, ChapterDailyChallengeSettlementReq = 1646412046, ChapterDailyChallengeSettlementRsp = 1646413879, ChapterWeaponChallengeStartReq = 1651833678, @@ -447,6 +449,7 @@ local ProtoMsgType = { ChapterShardsChallengeFarmRsp = "ChapterShardsChallengeFarmRsp", ActPaidResultReq = "ActPaidResultReq", ActPaidResultRsp = "ActPaidResultRsp", + RecoveryNtf = "RecoveryNtf", ChapterDailyChallengeSettlementReq = "ChapterDailyChallengeSettlementReq", ChapterDailyChallengeSettlementRsp = "ChapterDailyChallengeSettlementRsp", ChapterWeaponChallengeStartReq = "ChapterWeaponChallengeStartReq", diff --git a/lua/app/userdata/player/player_data.lua b/lua/app/userdata/player/player_data.lua index 0515c52b..37450f1a 100644 --- a/lua/app/userdata/player/player_data.lua +++ b/lua/app/userdata/player/player_data.lua @@ -28,6 +28,12 @@ function PlayerData:init(data) end end end + if stat.internal ~= nil then + self.internal = stat.internal + end + if data.game_version then + self.game_version = data.game_version + end if self.data.playInfo == nil then self.data.playInfo = {} @@ -583,4 +589,13 @@ function PlayerData:getRegisterTs() return self.register_ts or Time:getServerTime() end +function PlayerData:getIsInternal() + return self.internal +end + +-- 服务器下发的版本号,跟客户端版本号不一致 +function PlayerData:getGameVersion() + return self.game_version +end + return PlayerData \ No newline at end of file From d5e8786233800673f44745edf8fa00c14f4d37dc Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Tue, 8 Aug 2023 11:44:16 +0800 Subject: [PATCH 44/44] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/config/skill_rogue.lua | 2 +- lua/app/config/strings/cn/skill_rogue.lua | 6 +++--- lua/app/config/strings/en/skill_rogue.lua | 2 +- lua/app/config/strings/es/skill_rogue.lua | 2 +- lua/app/config/strings/id/global.lua | 2 +- lua/app/config/strings/id/skill_rogue.lua | 2 +- lua/app/config/strings/ja/global.lua | 2 +- lua/app/config/strings/ja/skill_rogue.lua | 2 +- lua/app/config/strings/ko/skill_rogue.lua | 2 +- lua/app/config/strings/pt/skill_rogue.lua | 2 +- lua/app/config/strings/th/global.lua | 2 +- lua/app/config/strings/th/skill_rogue.lua | 2 +- lua/app/config/strings/vi/skill_rogue.lua | 2 +- lua/app/config/strings/zh/skill_rogue.lua | 2 +- 14 files changed, 16 insertions(+), 16 deletions(-) diff --git a/lua/app/config/skill_rogue.lua b/lua/app/config/skill_rogue.lua index 29f5b598..730ef370 100644 --- a/lua/app/config/skill_rogue.lua +++ b/lua/app/config/skill_rogue.lua @@ -3114,7 +3114,7 @@ local skill_rogue = { ["limit_times"]=1, ["weight"]=3000, ["qlt"]=3, - ["type"]=3, + ["type"]=2, ["skill_position"]=4, ["boardrange"]={ { diff --git a/lua/app/config/strings/cn/skill_rogue.lua b/lua/app/config/strings/cn/skill_rogue.lua index 19c5f296..d1454103 100644 --- a/lua/app/config/strings/cn/skill_rogue.lua +++ b/lua/app/config/strings/cn/skill_rogue.lua @@ -357,7 +357,7 @@ local skill_rogue = { ["desc"]="雷神之锤使用后随机增加一种技能的能量2点。" }, [2400203]={ - ["desc"]="雷神之锤可随机消除2个元素。" + ["desc"]="雷神之锤随机消除元素+2。" }, [2400204]={ ["desc"]="索尔普攻时有10%概率附加虚弱效果,1回合。" @@ -537,7 +537,7 @@ local skill_rogue = { ["desc"]="霜冻冰晶后为团队附加冰盾效果,2回合。" }, [4300107]={ - ["desc"]="霜冻冰晶附加的冰盾,可反伤400%。" + ["desc"]="霜冻冰晶附加的冰盾,可反伤大量伤害。" }, [4300200]={ ["desc"]="解锁腐败利刃:额外造成一次技能伤害,附加腐败效果,1回合。" @@ -627,7 +627,7 @@ local skill_rogue = { ["desc"]="护盾术沿+方向可额外消除4格。" }, [5200105]={ - ["desc"]="护盾术附加的护盾,可反伤200%。" + ["desc"]="护盾术附加的护盾,可反伤伤害。" }, [5200106]={ ["desc"]="忍者伦攻击提升15%。" diff --git a/lua/app/config/strings/en/skill_rogue.lua b/lua/app/config/strings/en/skill_rogue.lua index a248417a..13fcd849 100644 --- a/lua/app/config/strings/en/skill_rogue.lua +++ b/lua/app/config/strings/en/skill_rogue.lua @@ -357,7 +357,7 @@ local skill_rogue = { ["desc"]="When Mjolnir is used, a random skill energy increases by 2." }, [2400203]={ - ["desc"]="Mjolnir can clear 2 random elements." + ["desc"]="Mjolnir clears 2 more random elements." }, [2400204]={ ["desc"]="Thor's normal attack has a 10% chance of inflicting Weak for 1 turn." diff --git a/lua/app/config/strings/es/skill_rogue.lua b/lua/app/config/strings/es/skill_rogue.lua index fef3e3cb..cfc9fa33 100644 --- a/lua/app/config/strings/es/skill_rogue.lua +++ b/lua/app/config/strings/es/skill_rogue.lua @@ -357,7 +357,7 @@ local skill_rogue = { ["desc"]="Al usar Martillo de Thor, la energía de una habilidad aleatoria aumenta en 2 puntos." }, [2400203]={ - ["desc"]="Martillo de Thor puede eliminar 2 elementos aleatorios." + ["desc"]="Martillo de Thor elimina aleatoriamente +2 elementos extras." }, [2400204]={ ["desc"]="El ataque común de Sol tiene un 10% de chance de aplicar Debilidad durante 1 ronda." diff --git a/lua/app/config/strings/id/global.lua b/lua/app/config/strings/id/global.lua index 2ab51927..47512563 100644 --- a/lua/app/config/strings/id/global.lua +++ b/lua/app/config/strings/id/global.lua @@ -419,7 +419,7 @@ local localization_global = ["DUNGEON_ARMOR_FUND_2"] = "Dana Celah Waktu Ⅱ", ["DUNGEON_ARMOR_DESC_15"] = "Silakan beli Dana dahulu", ["DUNGEON_ARMOR_DESC_16"] = "Bernilai", - ["MOP_UP_DESC_3"] = "Tidak cukup", + ["MOP_UP_DESC_3"] = "Tidak mencukupi", ["DUNGEON_ARMOR_DESC_17"] = "Sisa level hari ini: {0}", ["NAVER_SETTING_DESC"] = "Naver", ["EQUIP_DESC_26"] = "4 buah Armor +{0}:", diff --git a/lua/app/config/strings/id/skill_rogue.lua b/lua/app/config/strings/id/skill_rogue.lua index 9064e4a7..efc916ac 100644 --- a/lua/app/config/strings/id/skill_rogue.lua +++ b/lua/app/config/strings/id/skill_rogue.lua @@ -357,7 +357,7 @@ local skill_rogue = { ["desc"]="Palu Thor meningkatkan energi satu skill sebesar 2 poin secara acak saat digunakan." }, [2400203]={ - ["desc"]="Palu Thor dapat menghilangkan 2 elemen secara acak." + ["desc"]="Palu Thor menghapus 2 lebih banyak elemen acak." }, [2400204]={ ["desc"]="Ada 10% peluang menambahkan efek Lemah pada serangan Thor selama 1 giliran." diff --git a/lua/app/config/strings/ja/global.lua b/lua/app/config/strings/ja/global.lua index 608fb516..d0a880e0 100644 --- a/lua/app/config/strings/ja/global.lua +++ b/lua/app/config/strings/ja/global.lua @@ -419,7 +419,7 @@ local localization_global = ["DUNGEON_ARMOR_FUND_2"] = "時空の裂け目ファンドⅡ", ["DUNGEON_ARMOR_DESC_15"] = "先にファンドを購入してください", ["DUNGEON_ARMOR_DESC_16"] = "超お得", - ["MOP_UP_DESC_3"] = "が足りない", + ["MOP_UP_DESC_3"] = "不足", ["DUNGEON_ARMOR_DESC_17"] = "本日残り回数:{0}", ["NAVER_SETTING_DESC"] = "Naver", ["EQUIP_DESC_26"] = "防具4つ+{0}:", diff --git a/lua/app/config/strings/ja/skill_rogue.lua b/lua/app/config/strings/ja/skill_rogue.lua index 8db52a13..9ff7c959 100644 --- a/lua/app/config/strings/ja/skill_rogue.lua +++ b/lua/app/config/strings/ja/skill_rogue.lua @@ -357,7 +357,7 @@ local skill_rogue = { ["desc"]="「ソーのハンマー」はいずれの元素のエネルギーを2カウント増加する。" }, [2400203]={ - ["desc"]="「ソーのハンマー」はランダムで2つの元素を消す。" + ["desc"]="「ソーのハンマー」はランダムで+2の元素を消す。" }, [2400204]={ ["desc"]="ソーの通常攻撃は10%の確率で敵に1ターン弱体効果を付与する。" diff --git a/lua/app/config/strings/ko/skill_rogue.lua b/lua/app/config/strings/ko/skill_rogue.lua index d10cc049..0034ad4a 100644 --- a/lua/app/config/strings/ko/skill_rogue.lua +++ b/lua/app/config/strings/ko/skill_rogue.lua @@ -357,7 +357,7 @@ local skill_rogue = { ["desc"]="토르의 망치를 사용하면 랜덤으로 하나의 스킬 에너지가 2 포인트 증가합니다." }, [2400203]={ - ["desc"]="토르의 망치는 랜덤으로 2개의 원소를 소멸할 수 있습니다." + ["desc"]="토르의 무작위로 소멸하는 원소 +2" }, [2400204]={ ["desc"]="토르의 일반 공격은 10% 확률로 1턴 동안 탈진 효과를 부여합니다." diff --git a/lua/app/config/strings/pt/skill_rogue.lua b/lua/app/config/strings/pt/skill_rogue.lua index ead769c6..9de56021 100644 --- a/lua/app/config/strings/pt/skill_rogue.lua +++ b/lua/app/config/strings/pt/skill_rogue.lua @@ -357,7 +357,7 @@ local skill_rogue = { ["desc"]="Após usar o Martelo de Thor, aumenta aleatoriamente a energia de uma habilidade em 2 pontos." }, [2400203]={ - ["desc"]="O Martelo de Thor pode eliminar aleatoriamente 2 elementos." + ["desc"]="Elementos eliminados aleatoriamente pelo Martelo de Thor +2." }, [2400204]={ ["desc"]="Durante o ataque de Solpu, há uma probabilidade de 10% de adicionar o efeito fraqueza por 1 turno." diff --git a/lua/app/config/strings/th/global.lua b/lua/app/config/strings/th/global.lua index 24246d3b..8e5499ce 100644 --- a/lua/app/config/strings/th/global.lua +++ b/lua/app/config/strings/th/global.lua @@ -419,7 +419,7 @@ local localization_global = ["DUNGEON_ARMOR_FUND_2"] = "กองทุนรอยแยกกาลอวกาศⅡ", ["DUNGEON_ARMOR_DESC_15"] = "โปรดซื้อกองทุนก่อน", ["DUNGEON_ARMOR_DESC_16"] = "สุดคุ้ม", - ["MOP_UP_DESC_3"] = "ไม่เพียงพอ", + ["MOP_UP_DESC_3"] = "ไม่พอ", ["DUNGEON_ARMOR_DESC_17"] = "จำนวนที่เหลือของด่านนี้ในวันนี้: {0}", ["NAVER_SETTING_DESC"] = "Naver", ["EQUIP_DESC_26"] = "เกราะ 4 ชิ้น +{0}:", diff --git a/lua/app/config/strings/th/skill_rogue.lua b/lua/app/config/strings/th/skill_rogue.lua index 70bbf3fc..e9e2f455 100644 --- a/lua/app/config/strings/th/skill_rogue.lua +++ b/lua/app/config/strings/th/skill_rogue.lua @@ -354,7 +354,7 @@ local skill_rogue = { ["desc"]="ค้อนของเทพสายฟ้าสามารถสุ่มกำจัด 4 ธาตุ" }, [2400202]={ - ["desc"]="หลังจากใช้ค้อนของเทพสายฟ้าจะสุ่มเพิ่มพลังงาน2แต้มของสกิลอย่างใดอย่างหนึ่ง" + ["desc"]="ค้อนของเทพสายฟ้าสะสุ่มกำจัดธาตุ+2" }, [2400203]={ ["desc"]="ค้อนของเทพสายฟ้าสามารถสุ่มกำจัด 2 ธาตุ" diff --git a/lua/app/config/strings/vi/skill_rogue.lua b/lua/app/config/strings/vi/skill_rogue.lua index 7eb13916..3e964265 100644 --- a/lua/app/config/strings/vi/skill_rogue.lua +++ b/lua/app/config/strings/vi/skill_rogue.lua @@ -357,7 +357,7 @@ local skill_rogue = { ["desc"]="Sau khi dùng Búa Thor tăng ngẫu nhiên 1 loại kỹ năng 2 Năng Lượng." }, [2400203]={ - ["desc"]="Búa Thor có thể xua tan ngẫu nhiên 2 nguyên tố." + ["desc"]="Búa Thor Tố ngẫu nhiên xua tan Nguyên Tố +2." }, [2400204]={ ["desc"]="Khi Thor đánh thường có 10% kèm hiệu quảSuy Yếu, 1 hiệp." diff --git a/lua/app/config/strings/zh/skill_rogue.lua b/lua/app/config/strings/zh/skill_rogue.lua index 200c75e1..986f0f3f 100644 --- a/lua/app/config/strings/zh/skill_rogue.lua +++ b/lua/app/config/strings/zh/skill_rogue.lua @@ -357,7 +357,7 @@ local skill_rogue = { ["desc"]="雷神之鎚使用後隨機增加一種技能的能量2點。" }, [2400203]={ - ["desc"]="雷神之鎚可隨機消除2個元素。" + ["desc"]="雷神之鎚隨機消除元素+2。" }, [2400204]={ ["desc"]="索爾普攻時有10%機率附帶虛弱效果,1回合。"