From 536cc1dfc38eac63fb8ec498f85a128e9f3e5fd5 Mon Sep 17 00:00:00 2001 From: Fang Date: Tue, 1 Aug 2023 10:28:22 +0800 Subject: [PATCH 1/8] =?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 2/8] =?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 591aee945bfcb6b849d2685719c47aae49488ff0 Mon Sep 17 00:00:00 2001 From: Fang Date: Tue, 1 Aug 2023 18:19:29 +0800 Subject: [PATCH 3/8] =?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 397724e8eb563470e7598990ac29b1bbcae3171b Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Wed, 2 Aug 2023 16:13:23 +0800 Subject: [PATCH 4/8] =?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 cd63f0a97717492909e44318a7a37db738c75202 Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Wed, 2 Aug 2023 19:55:24 +0800 Subject: [PATCH 5/8] =?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 8266b13b9a17864b54b673969e9e947947808ebb Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Fri, 4 Aug 2023 14:24:01 +0800 Subject: [PATCH 6/8] =?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 7/8] =?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 8/8] =?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