From e552761eea8be24626279ddff72c411762777424 Mon Sep 17 00:00:00 2001 From: chenxi Date: Fri, 26 May 2023 11:39:23 +0800 Subject: [PATCH 1/5] =?UTF-8?q?=E4=B8=83=E5=A4=A9=E4=B9=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/common/bi_report.lua | 3 +- lua/app/common/data_manager.lua | 13 +- lua/app/common/module_manager.lua | 5 +- lua/app/config/const.lua | 5 +- lua/app/config/func_open.lua | 3 +- .../localization_global_const.lua | 2 + lua/app/config/monster_base.lua | 196 ++- lua/app/config/monster_chapter.lua | 1429 ++++++++++------- lua/app/config/skill.lua | 14 +- .../config/strings/cn/act_sevenday_quest.lua | 225 +++ .../strings/cn/act_sevenday_quest.lua.meta | 10 + lua/app/config/strings/cn/global.lua | 2 + .../strings/cn/task_daily_challenge.lua | 14 +- .../config/strings/de/act_sevenday_quest.lua | 225 +++ .../strings/de/act_sevenday_quest.lua.meta | 10 + .../config/strings/en/act_sevenday_quest.lua | 225 +++ .../strings/en/act_sevenday_quest.lua.meta | 10 + .../config/strings/fr/act_sevenday_quest.lua | 225 +++ .../strings/fr/act_sevenday_quest.lua.meta | 10 + .../config/strings/id/act_sevenday_quest.lua | 225 +++ .../strings/id/act_sevenday_quest.lua.meta | 10 + .../config/strings/ja/act_sevenday_quest.lua | 225 +++ .../strings/ja/act_sevenday_quest.lua.meta | 10 + .../config/strings/ko/act_sevenday_quest.lua | 225 +++ .../strings/ko/act_sevenday_quest.lua.meta | 10 + .../config/strings/pt/act_sevenday_quest.lua | 225 +++ .../strings/pt/act_sevenday_quest.lua.meta | 10 + .../config/strings/th/act_sevenday_quest.lua | 225 +++ .../strings/th/act_sevenday_quest.lua.meta | 10 + .../config/strings/vi/act_sevenday_quest.lua | 225 +++ .../strings/vi/act_sevenday_quest.lua.meta | 10 + .../config/strings/zh/act_sevenday_quest.lua | 225 +++ .../strings/zh/act_sevenday_quest.lua.meta | 10 + .../activity/seven_day/seven_day_manager.lua | 60 +- lua/app/module/chapter/chapter_manager.lua | 1 + lua/app/module/player/player_manager.lua | 6 +- lua/app/module/task/task_const.lua | 14 +- lua/app/module/task/task_manager.lua | 82 +- .../ui/activity/seven_day/cell/task_cell.lua | 121 +- .../ui/activity/seven_day/seven_day_ui.lua | 333 ++-- .../cell/side_bar_seven_days_cell.lua | 4 +- .../activity/seven_day/seven_day_data.lua | 189 +-- lua/app/userdata/bag/item_data.lua | 1 + lua/app/userdata/hero/hero_data.lua | 9 + lua/app/userdata/hero/hero_entity.lua | 2 +- lua/app/userdata/task/task_data.lua | 15 + lua/app/userdata/task/task_data.lua.meta | 10 + 47 files changed, 4098 insertions(+), 1020 deletions(-) create mode 100644 lua/app/config/strings/cn/act_sevenday_quest.lua create mode 100644 lua/app/config/strings/cn/act_sevenday_quest.lua.meta create mode 100644 lua/app/config/strings/de/act_sevenday_quest.lua create mode 100644 lua/app/config/strings/de/act_sevenday_quest.lua.meta create mode 100644 lua/app/config/strings/en/act_sevenday_quest.lua create mode 100644 lua/app/config/strings/en/act_sevenday_quest.lua.meta create mode 100644 lua/app/config/strings/fr/act_sevenday_quest.lua create mode 100644 lua/app/config/strings/fr/act_sevenday_quest.lua.meta create mode 100644 lua/app/config/strings/id/act_sevenday_quest.lua create mode 100644 lua/app/config/strings/id/act_sevenday_quest.lua.meta create mode 100644 lua/app/config/strings/ja/act_sevenday_quest.lua create mode 100644 lua/app/config/strings/ja/act_sevenday_quest.lua.meta create mode 100644 lua/app/config/strings/ko/act_sevenday_quest.lua create mode 100644 lua/app/config/strings/ko/act_sevenday_quest.lua.meta create mode 100644 lua/app/config/strings/pt/act_sevenday_quest.lua create mode 100644 lua/app/config/strings/pt/act_sevenday_quest.lua.meta create mode 100644 lua/app/config/strings/th/act_sevenday_quest.lua create mode 100644 lua/app/config/strings/th/act_sevenday_quest.lua.meta create mode 100644 lua/app/config/strings/vi/act_sevenday_quest.lua create mode 100644 lua/app/config/strings/vi/act_sevenday_quest.lua.meta create mode 100644 lua/app/config/strings/zh/act_sevenday_quest.lua create mode 100644 lua/app/config/strings/zh/act_sevenday_quest.lua.meta create mode 100644 lua/app/userdata/task/task_data.lua create mode 100644 lua/app/userdata/task/task_data.lua.meta diff --git a/lua/app/common/bi_report.lua b/lua/app/common/bi_report.lua index ed920bc5..f2c22139 100644 --- a/lua/app/common/bi_report.lua +++ b/lua/app/common/bi_report.lua @@ -84,7 +84,8 @@ BIReport.ITEM_GET_TYPE = { PLAYER_LV_UP = "PlayerLvUp", GOLD_PIG = "GoldPig", BATTLE_SKILL_REFRESH = "BattleSkillRefresh", - LEVEL_FUND = "LevelFund" + LEVEL_FUND = "LevelFund", + SEVEN_DAY_TASK = "SevenDayTask", } BIReport.ADS_CLICK_TYPE = { diff --git a/lua/app/common/data_manager.lua b/lua/app/common/data_manager.lua index 7427cfab..192e8d2f 100644 --- a/lua/app/common/data_manager.lua +++ b/lua/app/common/data_manager.lua @@ -17,10 +17,11 @@ function DataManager:init() self:initManager("ActivityData", "app/userdata/activity/activity_data") self:initManager("GoldPigData", "app/userdata/activity/gold_pig/gold_pig_data") self:initManager("BountyData", "app/userdata/bounty/bounty_data") + self:initManager("TaskData", "app/userdata/task/task_data") self:initManager("DailyTaskData", "app/userdata/task/daily_task_data") self:initManager("IdleData", "app/userdata/idle/idle_data") self:initManager("FundData", "app/userdata/fund/fund_data") - -- self:initManager("SevenDayData", "app/userdata/activity/seven_day/seven_day_data") + self:initManager("SevenDayData", "app/userdata/activity/seven_day/seven_day_data") self:initManager("ShopData", "app/userdata/shop/shop_data") self:initManager("SummonData", "app/userdata/summon/summon_data") end @@ -92,10 +93,11 @@ function DataManager:clear() self.DailyTaskData:clear() self.IdleData:clear() self.FundData:clear() - -- self.SevenDayData:clear() + self.SevenDayData:clear() self.ShopData:clear() self.SummonData:clear() - + -- 任务数据最后清理 + self.TaskData:clear() ModuleManager.TaskManager:clear() end @@ -124,7 +126,7 @@ function DataManager:initWithServerData(data) -- 任务要在BountyData之后初始化,依赖BountyData的数据 self.DailyTaskData:init(data.task_daily) self.IdleData:init(data.idle) - -- self.SevenDayData:init(data.SevenDayData) + self.SevenDayData:init(data.seven_day) self.ShopData:initBase() self.ShopData:initActGift(data.act) -- 礼包购买信息 self.ShopData:initMallDaily(data.mall_daily) -- 每日特惠 @@ -137,6 +139,8 @@ function DataManager:initWithServerData(data) self.FundData:init(data.fund.funds) end + -- 任务数据最后初始化,依赖其他模块的数据 + self.TaskData:init() self:scheduleGlobal() self:checkDataBind() end @@ -243,6 +247,7 @@ function DataManager:scheduleGlobal() end end end + ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_LOGIN_DAY) end end, 1) end diff --git a/lua/app/common/module_manager.lua b/lua/app/common/module_manager.lua index 2522ce22..290a7089 100644 --- a/lua/app/common/module_manager.lua +++ b/lua/app/common/module_manager.lua @@ -25,8 +25,8 @@ local MODULE_PATHS = { ChapterManager = "app/module/chapter/chapter_manager", -- 挂机 IdleManager = "app/module/idle/idle_manager", - -- 活动 - -- SevenDayManager = "app/module/activity/seven_day/seven_day_manager", + -- 七天乐 + SevenDayManager = "app/module/activity/seven_day/seven_day_manager", -- 基金 FundManager = "app/module/fund/fund_manager", -- 设置 @@ -52,6 +52,7 @@ local MODULE_PATHS = { -- 这里的key对应func_open里的id ModuleManager.MODULE_KEY = { GOLD_PIG = "act_gold_pig", + SEVEN_DAY = "act_sevenday", TASK = "task", STORE_BOX_OPEN = "store_box_open", STORE_BOX_3_OPEN = "store_box_3_open", diff --git a/lua/app/config/const.lua b/lua/app/config/const.lua index 20962575..4a3e0215 100644 --- a/lua/app/config/const.lua +++ b/lua/app/config/const.lua @@ -185,9 +185,12 @@ local const = { }, ["act_gift_downshift_number"]={ ["value"]=15 + }, + ["act_sevenday_time"]={ + ["value"]=7 } } local config = { -data=const,count=39 +data=const,count=40 } return config \ No newline at end of file diff --git a/lua/app/config/func_open.lua b/lua/app/config/func_open.lua index eba7a87b..9ebdea82 100644 --- a/lua/app/config/func_open.lua +++ b/lua/app/config/func_open.lua @@ -16,8 +16,7 @@ local func_open = { ["stage"]=2 }, ["act_sevenday"]={ - ["stage"]=2, - ["pop_ups"]=1 + ["stage"]=2 }, ["mall"]={ ["stage"]=1 diff --git a/lua/app/config/localization/localization_global_const.lua b/lua/app/config/localization/localization_global_const.lua index a2928856..408f4963 100644 --- a/lua/app/config/localization/localization_global_const.lua +++ b/lua/app/config/localization/localization_global_const.lua @@ -133,6 +133,8 @@ local LocalizationGlobalConst = SIDE_BAR_FULL = "SIDE_BAR_FULL", DAILY_CHALLENGE = "DAILY_CHALLENGE", LEVEL_FUND_DESC_1 = "LEVEL_FUND_DESC_1", + BUFF_DESC = "BUFF_DESC", + DAILY_CHALLENGE_DESC_1 = "DAILY_CHALLENGE_DESC_1", } return LocalizationGlobalConst \ No newline at end of file diff --git a/lua/app/config/monster_base.lua b/lua/app/config/monster_base.lua index 2b5593e2..11862c10 100644 --- a/lua/app/config/monster_base.lua +++ b/lua/app/config/monster_base.lua @@ -33,16 +33,12 @@ local monster_base = { }, [10009]={ ["model_id"]="m10009", - ["body"]=3 + ["body"]=2 }, [10010]={ ["model_id"]="m10010", ["body"]=2 }, - [10011]={ - ["model_id"]="m10011", - ["body"]=2 - }, [10012]={ ["model_id"]="m10012", ["body"]=2 @@ -75,6 +71,38 @@ local monster_base = { ["model_id"]="m10019", ["body"]=2 }, + [10020]={ + ["model_id"]="m10020", + ["body"]=3 + }, + [10021]={ + ["model_id"]="m10021", + ["body"]=3 + }, + [10022]={ + ["model_id"]="m10022", + ["body"]=3 + }, + [10023]={ + ["model_id"]="m10023", + ["body"]=3 + }, + [10024]={ + ["model_id"]="m10024", + ["body"]=2 + }, + [10025]={ + ["model_id"]="m10025", + ["body"]=2 + }, + [10026]={ + ["model_id"]="m10026", + ["body"]=2 + }, + [10027]={ + ["model_id"]="m10027", + ["body"]=2 + }, [10028]={ ["model_id"]="m10028", ["body"]=2 @@ -99,10 +127,110 @@ local monster_base = { ["model_id"]="m10033", ["body"]=2 }, + [10034]={ + ["model_id"]="m10034", + ["body"]=2 + }, + [10035]={ + ["model_id"]="m10035", + ["body"]=2 + }, + [10036]={ + ["model_id"]="m10036", + ["body"]=2 + }, + [10037]={ + ["model_id"]="m10037", + ["body"]=2 + }, + [10038]={ + ["model_id"]="m10038", + ["body"]=2 + }, [10039]={ ["model_id"]="m10039", ["body"]=2 }, + [10040]={ + ["model_id"]="m10040", + ["body"]=2 + }, + [10041]={ + ["model_id"]="m10041", + ["body"]=2 + }, + [10042]={ + ["model_id"]="m10042", + ["body"]=2 + }, + [10043]={ + ["model_id"]="m10043", + ["body"]=2 + }, + [10044]={ + ["model_id"]="m10044", + ["body"]=2 + }, + [10045]={ + ["model_id"]="m10045", + ["body"]=2 + }, + [10046]={ + ["model_id"]="m10046", + ["body"]=2 + }, + [10047]={ + ["model_id"]="m10047", + ["body"]=2 + }, + [10048]={ + ["model_id"]="m10048", + ["body"]=2 + }, + [10049]={ + ["model_id"]="m10049", + ["body"]=2 + }, + [10050]={ + ["model_id"]="m10050", + ["body"]=2 + }, + [10051]={ + ["model_id"]="m10051", + ["body"]=2 + }, + [10052]={ + ["model_id"]="m10052", + ["body"]=2 + }, + [10053]={ + ["model_id"]="m10053", + ["body"]=3 + }, + [10054]={ + ["model_id"]="m10054", + ["body"]=3 + }, + [10055]={ + ["model_id"]="m10055", + ["body"]=2 + }, + [10056]={ + ["model_id"]="m10056", + ["body"]=2 + }, + [10057]={ + ["model_id"]="m10057", + ["body"]=2 + }, + [10058]={ + ["model_id"]="m10058", + ["body"]=2 + }, + [10059]={ + ["model_id"]="m10059", + ["body"]=2 + }, [20001]={ ["model_id"]="m20001", ["body"]=1 @@ -175,6 +303,62 @@ local monster_base = { ["model_id"]="m20018", ["body"]=1 }, + [20019]={ + ["model_id"]="m20019", + ["body"]=1 + }, + [20020]={ + ["model_id"]="m20020", + ["body"]=1 + }, + [20021]={ + ["model_id"]="m20021", + ["body"]=1 + }, + [20022]={ + ["model_id"]="m20022", + ["body"]=1 + }, + [20023]={ + ["model_id"]="m20023", + ["body"]=1 + }, + [20024]={ + ["model_id"]="m20024", + ["body"]=1 + }, + [20025]={ + ["model_id"]="m20025", + ["body"]=1 + }, + [20026]={ + ["model_id"]="m20026", + ["body"]=1 + }, + [20027]={ + ["model_id"]="m20027", + ["body"]=1 + }, + [20028]={ + ["model_id"]="m20028", + ["body"]=1 + }, + [20029]={ + ["model_id"]="m20029", + ["body"]=1 + }, + [20030]={ + ["model_id"]="m20030", + ["body"]=1 + }, + [20031]={ + ["model_id"]="m20031", + ["body"]=1 + }, + [20032]={ + ["model_id"]="m20032", + ["body"]=1 + }, [30001]={ ["model_id"]="p0001", ["body"]=1 @@ -225,6 +409,6 @@ local monster_base = { } } local config = { -data=monster_base,count=56 +data=monster_base,count=102 } return config \ No newline at end of file diff --git a/lua/app/config/monster_chapter.lua b/lua/app/config/monster_chapter.lua index da3f6101..95007b9d 100644 --- a/lua/app/config/monster_chapter.lua +++ b/lua/app/config/monster_chapter.lua @@ -12,7 +12,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [201]={ - ["monster_base"]=10004, + ["monster_base"]=10002, ["hp"]=5000000, ["atk"]=200000, ["atk_times"]=2, @@ -24,7 +24,7 @@ local monster_chapter = { ["monster_exp"]=4000 }, [301]={ - ["monster_base"]=10002, + ["monster_base"]=10003, ["hp"]=12000000, ["atk"]=200000, ["atk_times"]=2, @@ -36,7 +36,7 @@ local monster_chapter = { ["monster_exp"]=8000 }, [401]={ - ["monster_base"]=10006, + ["monster_base"]=10005, ["hp"]=13000000, ["atk"]=200000, ["atk_times"]=2, @@ -64,7 +64,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [601]={ - ["monster_base"]=10010, + ["monster_base"]=10008, ["hp"]=8000000, ["atk"]=250000, ["atk_times"]=2, @@ -76,7 +76,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [701]={ - ["monster_base"]=10003, + ["monster_base"]=10004, ["hp"]=8000000, ["atk"]=250000, ["atk_times"]=2, @@ -88,7 +88,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [801]={ - ["monster_base"]=10004, + ["monster_base"]=10001, ["hp"]=10000000, ["atk"]=250000, ["atk_times"]=2, @@ -100,7 +100,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [901]={ - ["monster_base"]=10001, + ["monster_base"]=10007, ["hp"]=12000000, ["atk"]=280000, ["atk_times"]=2, @@ -112,7 +112,7 @@ local monster_chapter = { ["monster_exp"]=19000 }, [1001]={ - ["monster_base"]=20004, + ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=20000000, ["atk"]=340000, @@ -131,7 +131,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [1101]={ - ["monster_base"]=10002, + ["monster_base"]=10006, ["hp"]=15000000, ["atk"]=300000, ["atk_times"]=2, @@ -143,7 +143,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [1201]={ - ["monster_base"]=10010, + ["monster_base"]=10007, ["hp"]=17000000, ["atk"]=310000, ["atk_times"]=2, @@ -155,7 +155,7 @@ local monster_chapter = { ["monster_exp"]=10000 }, [1301]={ - ["monster_base"]=10008, + ["monster_base"]=10002, ["hp"]=20000000, ["atk"]=320000, ["atk_times"]=2, @@ -167,7 +167,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [1401]={ - ["monster_base"]=10004, + ["monster_base"]=10005, ["hp"]=22000000, ["atk"]=330000, ["atk_times"]=2, @@ -179,7 +179,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [1501]={ - ["monster_base"]=20012, + ["monster_base"]=20015, ["is_boss"]=2, ["hp"]=36000000, ["atk"]=380000, @@ -210,7 +210,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [1701]={ - ["monster_base"]=10007, + ["monster_base"]=10001, ["hp"]=8000000, ["atk"]=250000, ["atk_times"]=3, @@ -222,7 +222,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [1801]={ - ["monster_base"]=10008, + ["monster_base"]=10038, ["hp"]=11000000, ["atk"]=250000, ["atk_times"]=3, @@ -234,7 +234,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [1901]={ - ["monster_base"]=10010, + ["monster_base"]=10007, ["hp"]=14000000, ["atk"]=280000, ["atk_times"]=3, @@ -246,7 +246,7 @@ local monster_chapter = { ["monster_exp"]=19000 }, [2001]={ - ["monster_base"]=20012, + ["monster_base"]=20004, ["is_boss"]=1, ["hp"]=20000000, ["atk"]=340000, @@ -256,10 +256,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10015 + }, ["monster_exp"]=18000 }, [2101]={ - ["monster_base"]=10011, + ["monster_base"]=10038, ["hp"]=15000000, ["atk"]=300000, ["atk_times"]=3, @@ -271,7 +274,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [2201]={ - ["monster_base"]=10010, + ["monster_base"]=10007, ["hp"]=18000000, ["atk"]=310000, ["atk_times"]=3, @@ -283,7 +286,7 @@ local monster_chapter = { ["monster_exp"]=10000 }, [2301]={ - ["monster_base"]=10007, + ["monster_base"]=10010, ["hp"]=20000000, ["atk"]=320000, ["atk_times"]=3, @@ -295,7 +298,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [2401]={ - ["monster_base"]=10011, + ["monster_base"]=10001, ["hp"]=22000000, ["atk"]=340000, ["atk_times"]=3, @@ -307,7 +310,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [2501]={ - ["monster_base"]=20010, + ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=39000000, ["atk"]=390000, @@ -317,10 +320,16 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10016 + }, + ["passive_skill"]={ + 10008 + }, ["monster_exp"]=12000 }, [2601]={ - ["monster_base"]=10010, + ["monster_base"]=10039, ["hp"]=20000000, ["atk"]=330000, ["atk_times"]=3, @@ -332,7 +341,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [2701]={ - ["monster_base"]=10009, + ["monster_base"]=10002, ["hp"]=24000000, ["atk"]=340000, ["atk_times"]=3, @@ -344,7 +353,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [2801]={ - ["monster_base"]=10011, + ["monster_base"]=10001, ["hp"]=27000000, ["atk"]=350000, ["atk_times"]=3, @@ -356,7 +365,7 @@ local monster_chapter = { ["monster_exp"]=21000 }, [2901]={ - ["monster_base"]=10003, + ["monster_base"]=10009, ["hp"]=30000000, ["atk"]=360000, ["atk_times"]=3, @@ -368,7 +377,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [3001]={ - ["monster_base"]=20011, + ["monster_base"]=20012, ["is_boss"]=2, ["hp"]=46000000, ["atk"]=420000, @@ -384,7 +393,7 @@ local monster_chapter = { ["monster_exp"]=24000 }, [3101]={ - ["monster_base"]=10012, + ["monster_base"]=10010, ["hp"]=8000000, ["atk"]=250000, ["atk_times"]=3, @@ -396,7 +405,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [3201]={ - ["monster_base"]=10006, + ["monster_base"]=10039, ["hp"]=11000000, ["atk"]=270000, ["atk_times"]=3, @@ -408,7 +417,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [3301]={ - ["monster_base"]=10016, + ["monster_base"]=10040, ["hp"]=12000000, ["atk"]=290000, ["atk_times"]=3, @@ -420,7 +429,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [3401]={ - ["monster_base"]=10005, + ["monster_base"]=10038, ["hp"]=15000000, ["atk"]=310000, ["atk_times"]=3, @@ -432,7 +441,7 @@ local monster_chapter = { ["monster_exp"]=19000 }, [3501]={ - ["monster_base"]=20009, + ["monster_base"]=20011, ["is_boss"]=1, ["hp"]=23000000, ["atk"]=370000, @@ -445,7 +454,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [3601]={ - ["monster_base"]=10005, + ["monster_base"]=10009, ["hp"]=15000000, ["atk"]=310000, ["atk_times"]=3, @@ -457,7 +466,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [3701]={ - ["monster_base"]=10012, + ["monster_base"]=10010, ["hp"]=17000000, ["atk"]=330000, ["atk_times"]=3, @@ -469,7 +478,7 @@ local monster_chapter = { ["monster_exp"]=10000 }, [3801]={ - ["monster_base"]=10006, + ["monster_base"]=10038, ["hp"]=20000000, ["atk"]=330000, ["atk_times"]=3, @@ -481,7 +490,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [3901]={ - ["monster_base"]=10016, + ["monster_base"]=10040, ["hp"]=22000000, ["atk"]=350000, ["atk_times"]=3, @@ -493,7 +502,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [4001]={ - ["monster_base"]=20002, + ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=42000000, ["atk"]=400000, @@ -503,10 +512,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10017 + }, ["monster_exp"]=12000 }, [4101]={ - ["monster_base"]=10005, + ["monster_base"]=10039, ["hp"]=23000000, ["atk"]=350000, ["atk_times"]=3, @@ -518,7 +530,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [4201]={ - ["monster_base"]=10012, + ["monster_base"]=10040, ["hp"]=28000000, ["atk"]=370000, ["atk_times"]=3, @@ -530,7 +542,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [4301]={ - ["monster_base"]=10016, + ["monster_base"]=10038, ["hp"]=31000000, ["atk"]=390000, ["atk_times"]=3, @@ -542,7 +554,7 @@ local monster_chapter = { ["monster_exp"]=21000 }, [4401]={ - ["monster_base"]=10006, + ["monster_base"]=10009, ["hp"]=35000000, ["atk"]=410000, ["atk_times"]=3, @@ -554,7 +566,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [4501]={ - ["monster_base"]=20002, + ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=52000000, ["atk"]=640000, @@ -564,10 +576,16 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10016 + }, + ["passive_skill"]={ + 10008 + }, ["monster_exp"]=24000 }, [4601]={ - ["monster_base"]=10012, + ["monster_base"]=10040, ["hp"]=40000000, ["atk"]=430000, ["atk_times"]=3, @@ -579,7 +597,7 @@ local monster_chapter = { ["monster_exp"]=15000 }, [4701]={ - ["monster_base"]=10006, + ["monster_base"]=10009, ["hp"]=44000000, ["atk"]=450000, ["atk_times"]=3, @@ -591,7 +609,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [4801]={ - ["monster_base"]=10016, + ["monster_base"]=10038, ["hp"]=50000000, ["atk"]=470000, ["atk_times"]=3, @@ -603,7 +621,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [4901]={ - ["monster_base"]=10005, + ["monster_base"]=10039, ["hp"]=54000000, ["atk"]=490000, ["atk_times"]=3, @@ -615,7 +633,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [5001]={ - ["monster_base"]=20009, + ["monster_base"]=20029, ["is_boss"]=2, ["hp"]=90000000, ["atk"]=550000, @@ -631,7 +649,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [5101]={ - ["monster_base"]=10013, + ["monster_base"]=10016, ["hp"]=8500000, ["atk"]=350000, ["atk_times"]=3, @@ -643,7 +661,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [5201]={ - ["monster_base"]=10001, + ["monster_base"]=10002, ["hp"]=12000000, ["atk"]=370000, ["atk_times"]=3, @@ -655,7 +673,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [5301]={ - ["monster_base"]=10004, + ["monster_base"]=10003, ["hp"]=13500000, ["atk"]=390000, ["atk_times"]=3, @@ -667,7 +685,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [5401]={ - ["monster_base"]=10013, + ["monster_base"]=10019, ["hp"]=18000000, ["atk"]=410000, ["atk_times"]=3, @@ -679,7 +697,7 @@ local monster_chapter = { ["monster_exp"]=19000 }, [5501]={ - ["monster_base"]=20006, + ["monster_base"]=20002, ["is_boss"]=1, ["hp"]=25000000, ["atk"]=470000, @@ -689,6 +707,9 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10019 + }, ["monster_exp"]=18000 }, [5601]={ @@ -704,7 +725,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [5701]={ - ["monster_base"]=10010, + ["monster_base"]=10017, ["hp"]=19000000, ["atk"]=490000, ["atk_times"]=3, @@ -728,7 +749,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [5901]={ - ["monster_base"]=10013, + ["monster_base"]=10018, ["hp"]=25000000, ["atk"]=510000, ["atk_times"]=3, @@ -740,7 +761,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [6001]={ - ["monster_base"]=20007, + ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=52000000, ["atk"]=570000, @@ -751,12 +772,15 @@ local monster_chapter = { 10003 }, ["skill"]={ - 10019 + 10016 + }, + ["passive_skill"]={ + 10010 }, ["monster_exp"]=12000 }, [6101]={ - ["monster_base"]=10004, + ["monster_base"]=10019, ["hp"]=30000000, ["atk"]=530000, ["atk_times"]=3, @@ -768,7 +792,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [6201]={ - ["monster_base"]=10013, + ["monster_base"]=10008, ["hp"]=34000000, ["atk"]=550000, ["atk_times"]=3, @@ -780,7 +804,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [6301]={ - ["monster_base"]=10010, + ["monster_base"]=10016, ["hp"]=36000000, ["atk"]=570000, ["atk_times"]=3, @@ -792,7 +816,7 @@ local monster_chapter = { ["monster_exp"]=21000 }, [6401]={ - ["monster_base"]=10007, + ["monster_base"]=10003, ["hp"]=39000000, ["atk"]=590000, ["atk_times"]=3, @@ -804,7 +828,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [6501]={ - ["monster_base"]=20011, + ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=71000000, ["atk"]=590000, @@ -814,10 +838,16 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10016 + }, + ["passive_skill"]={ + 10008 + }, ["monster_exp"]=24000 }, [6601]={ - ["monster_base"]=10013, + ["monster_base"]=10018, ["hp"]=47000000, ["atk"]=610000, ["atk_times"]=3, @@ -829,7 +859,7 @@ local monster_chapter = { ["monster_exp"]=15000 }, [6701]={ - ["monster_base"]=10007, + ["monster_base"]=10004, ["hp"]=50000000, ["atk"]=630000, ["atk_times"]=3, @@ -841,7 +871,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [6801]={ - ["monster_base"]=10004, + ["monster_base"]=10007, ["hp"]=55000000, ["atk"]=650000, ["atk_times"]=3, @@ -853,7 +883,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [6901]={ - ["monster_base"]=10010, + ["monster_base"]=10017, ["hp"]=60000000, ["atk"]=670000, ["atk_times"]=3, @@ -865,7 +895,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [7001]={ - ["monster_base"]=20007, + ["monster_base"]=20001, ["is_boss"]=2, ["hp"]=95000000, ["atk"]=920000, @@ -881,7 +911,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [7101]={ - ["monster_base"]=10011, + ["monster_base"]=10042, ["hp"]=8700000, ["atk"]=380000, ["atk_times"]=3, @@ -893,7 +923,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [7201]={ - ["monster_base"]=10010, + ["monster_base"]=10041, ["hp"]=12300000, ["atk"]=400000, ["atk_times"]=3, @@ -905,7 +935,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [7301]={ - ["monster_base"]=10007, + ["monster_base"]=10013, ["hp"]=13800000, ["atk"]=420000, ["atk_times"]=3, @@ -917,7 +947,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [7401]={ - ["monster_base"]=10004, + ["monster_base"]=10019, ["hp"]=18400000, ["atk"]=440000, ["atk_times"]=3, @@ -929,7 +959,7 @@ local monster_chapter = { ["monster_exp"]=19000 }, [7501]={ - ["monster_base"]=20008, + ["monster_base"]=20022, ["is_boss"]=1, ["hp"]=25600000, ["atk"]=490000, @@ -942,7 +972,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [7601]={ - ["monster_base"]=10006, + ["monster_base"]=10001, ["hp"]=19100000, ["atk"]=500000, ["atk_times"]=3, @@ -954,7 +984,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [7701]={ - ["monster_base"]=10010, + ["monster_base"]=10005, ["hp"]=21300000, ["atk"]=570000, ["atk_times"]=3, @@ -966,7 +996,7 @@ local monster_chapter = { ["monster_exp"]=10000 }, [7801]={ - ["monster_base"]=10011, + ["monster_base"]=10041, ["hp"]=24700000, ["atk"]=520000, ["atk_times"]=3, @@ -978,7 +1008,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [7901]={ - ["monster_base"]=10004, + ["monster_base"]=10013, ["hp"]=28100000, ["atk"]=590000, ["atk_times"]=3, @@ -990,7 +1020,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [8001]={ - ["monster_base"]=20006, + ["monster_base"]=20023, ["is_boss"]=1, ["hp"]=53300000, ["atk"]=600000, @@ -1003,7 +1033,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [8101]={ - ["monster_base"]=10006, + ["monster_base"]=10042, ["hp"]=30800000, ["atk"]=560000, ["atk_times"]=3, @@ -1015,7 +1045,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [8201]={ - ["monster_base"]=10010, + ["monster_base"]=10001, ["hp"]=34900000, ["atk"]=580000, ["atk_times"]=3, @@ -1027,7 +1057,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [8301]={ - ["monster_base"]=10011, + ["monster_base"]=10013, ["hp"]=36900000, ["atk"]=600000, ["atk_times"]=3, @@ -1039,7 +1069,7 @@ local monster_chapter = { ["monster_exp"]=21000 }, [8401]={ - ["monster_base"]=10002, + ["monster_base"]=10044, ["hp"]=40000000, ["atk"]=620000, ["atk_times"]=3, @@ -1051,7 +1081,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [8501]={ - ["monster_base"]=20007, + ["monster_base"]=20022, ["is_boss"]=1, ["hp"]=72800000, ["atk"]=620000, @@ -1064,7 +1094,7 @@ local monster_chapter = { ["monster_exp"]=24000 }, [8601]={ - ["monster_base"]=10004, + ["monster_base"]=10041, ["hp"]=52800000, ["atk"]=700000, ["atk_times"]=3, @@ -1076,7 +1106,7 @@ local monster_chapter = { ["monster_exp"]=15000 }, [8701]={ - ["monster_base"]=10002, + ["monster_base"]=10001, ["hp"]=56100000, ["atk"]=720000, ["atk_times"]=3, @@ -1088,7 +1118,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [8801]={ - ["monster_base"]=10011, + ["monster_base"]=10042, ["hp"]=61700000, ["atk"]=750000, ["atk_times"]=3, @@ -1100,7 +1130,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [8901]={ - ["monster_base"]=10013, + ["monster_base"]=10044, ["hp"]=67300000, ["atk"]=770000, ["atk_times"]=3, @@ -1112,7 +1142,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [9001]={ - ["monster_base"]=20008, + ["monster_base"]=30003, ["is_boss"]=2, ["hp"]=108900000, ["atk"]=1070000, @@ -1130,7 +1160,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [9101]={ - ["monster_base"]=10017, + ["monster_base"]=10041, ["hp"]=11000000, ["atk"]=500000, ["atk_times"]=3, @@ -1142,7 +1172,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [9201]={ - ["monster_base"]=10004, + ["monster_base"]=10001, ["hp"]=15600000, ["atk"]=520000, ["atk_times"]=3, @@ -1154,7 +1184,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [9301]={ - ["monster_base"]=10002, + ["monster_base"]=10013, ["hp"]=17500000, ["atk"]=550000, ["atk_times"]=3, @@ -1166,7 +1196,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [9401]={ - ["monster_base"]=10014, + ["monster_base"]=10044, ["hp"]=23300000, ["atk"]=580000, ["atk_times"]=3, @@ -1178,7 +1208,7 @@ local monster_chapter = { ["monster_exp"]=19000 }, [9501]={ - ["monster_base"]=20005, + ["monster_base"]=20026, ["is_boss"]=1, ["hp"]=32400000, ["atk"]=640000, @@ -1191,7 +1221,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [9601]={ - ["monster_base"]=10017, + ["monster_base"]=10001, ["hp"]=22000000, ["atk"]=600000, ["atk_times"]=3, @@ -1203,7 +1233,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [9701]={ - ["monster_base"]=10014, + ["monster_base"]=10042, ["hp"]=24600000, ["atk"]=670000, ["atk_times"]=3, @@ -1215,7 +1245,7 @@ local monster_chapter = { ["monster_exp"]=10000 }, [9801]={ - ["monster_base"]=10004, + ["monster_base"]=10005, ["hp"]=28500000, ["atk"]=630000, ["atk_times"]=3, @@ -1227,7 +1257,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [9901]={ - ["monster_base"]=10002, + ["monster_base"]=10013, ["hp"]=32400000, ["atk"]=700000, ["atk_times"]=3, @@ -1239,7 +1269,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [10001]={ - ["monster_base"]=20010, + ["monster_base"]=20022, ["is_boss"]=1, ["hp"]=59700000, ["atk"]=690000, @@ -1252,7 +1282,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [10101]={ - ["monster_base"]=10002, + ["monster_base"]=10001, ["hp"]=34500000, ["atk"]=650000, ["atk_times"]=3, @@ -1264,7 +1294,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [10201]={ - ["monster_base"]=10010, + ["monster_base"]=10042, ["hp"]=39100000, ["atk"]=670000, ["atk_times"]=3, @@ -1276,7 +1306,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [10301]={ - ["monster_base"]=10003, + ["monster_base"]=10013, ["hp"]=41300000, ["atk"]=700000, ["atk_times"]=3, @@ -1288,7 +1318,7 @@ local monster_chapter = { ["monster_exp"]=21000 }, [10401]={ - ["monster_base"]=10008, + ["monster_base"]=10001, ["hp"]=44800000, ["atk"]=720000, ["atk_times"]=3, @@ -1300,7 +1330,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [10501]={ - ["monster_base"]=20011, + ["monster_base"]=20023, ["is_boss"]=1, ["hp"]=81500000, ["atk"]=710000, @@ -1313,7 +1343,7 @@ local monster_chapter = { ["monster_exp"]=24000 }, [10601]={ - ["monster_base"]=10007, + ["monster_base"]=10042, ["hp"]=55400000, ["atk"]=760000, ["atk_times"]=3, @@ -1325,7 +1355,7 @@ local monster_chapter = { ["monster_exp"]=15000 }, [10701]={ - ["monster_base"]=10011, + ["monster_base"]=10044, ["hp"]=58800000, ["atk"]=780000, ["atk_times"]=3, @@ -1337,7 +1367,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [10801]={ - ["monster_base"]=10012, + ["monster_base"]=10013, ["hp"]=64700000, ["atk"]=810000, ["atk_times"]=3, @@ -1349,7 +1379,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [10901]={ - ["monster_base"]=10016, + ["monster_base"]=10041, ["hp"]=70600000, ["atk"]=830000, ["atk_times"]=3, @@ -1361,7 +1391,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [11001]={ - ["monster_base"]=20005, + ["monster_base"]=20025, ["is_boss"]=2, ["hp"]=121900000, ["atk"]=1210000, @@ -1389,7 +1419,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [11201]={ - ["monster_base"]=10003, + ["monster_base"]=10009, ["hp"]=17900000, ["atk"]=620000, ["atk_times"]=3, @@ -1401,7 +1431,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [11301]={ - ["monster_base"]=10009, + ["monster_base"]=10038, ["hp"]=20100000, ["atk"]=650000, ["atk_times"]=3, @@ -1413,7 +1443,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [11401]={ - ["monster_base"]=10011, + ["monster_base"]=10039, ["hp"]=26700000, ["atk"]=680000, ["atk_times"]=3, @@ -1425,7 +1455,7 @@ local monster_chapter = { ["monster_exp"]=19000 }, [11501]={ - ["monster_base"]=20008, + ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=37100000, ["atk"]=750000, @@ -1435,10 +1465,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10017 + }, ["monster_exp"]=18000 }, [11601]={ - ["monster_base"]=10007, + ["monster_base"]=10013, ["hp"]=25200000, ["atk"]=700000, ["atk_times"]=3, @@ -1450,7 +1483,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [11701]={ - ["monster_base"]=10011, + ["monster_base"]=10016, ["hp"]=28200000, ["atk"]=790000, ["atk_times"]=3, @@ -1462,7 +1495,7 @@ local monster_chapter = { ["monster_exp"]=10000 }, [11801]={ - ["monster_base"]=10012, + ["monster_base"]=10015, ["hp"]=32700000, ["atk"]=740000, ["atk_times"]=3, @@ -1474,7 +1507,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [11901]={ - ["monster_base"]=10016, + ["monster_base"]=10017, ["hp"]=37100000, ["atk"]=830000, ["atk_times"]=3, @@ -1486,7 +1519,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [12001]={ - ["monster_base"]=20001, + ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=68400000, ["atk"]=800000, @@ -1496,10 +1529,16 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10016 + }, + ["passive_skill"]={ + 10008 + }, ["monster_exp"]=12000 }, [12101]={ - ["monster_base"]=10017, + ["monster_base"]=10018, ["hp"]=39500000, ["atk"]=760000, ["atk_times"]=3, @@ -1511,7 +1550,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [12201]={ - ["monster_base"]=10014, + ["monster_base"]=10003, ["hp"]=44800000, ["atk"]=790000, ["atk_times"]=3, @@ -1523,7 +1562,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [12301]={ - ["monster_base"]=10004, + ["monster_base"]=10006, ["hp"]=47300000, ["atk"]=820000, ["atk_times"]=3, @@ -1535,7 +1574,7 @@ local monster_chapter = { ["monster_exp"]=21000 }, [12401]={ - ["monster_base"]=10002, + ["monster_base"]=10014, ["hp"]=51300000, ["atk"]=840000, ["atk_times"]=3, @@ -1547,7 +1586,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [12501]={ - ["monster_base"]=20004, + ["monster_base"]=20001, ["is_boss"]=1, ["hp"]=97800000, ["atk"]=870000, @@ -1557,10 +1596,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10020 + }, ["monster_exp"]=24000 }, [12601]={ - ["monster_base"]=10010, + ["monster_base"]=10030, ["hp"]=64800000, ["atk"]=910000, ["atk_times"]=3, @@ -1572,7 +1614,7 @@ local monster_chapter = { ["monster_exp"]=15000 }, [12701]={ - ["monster_base"]=10003, + ["monster_base"]=10032, ["hp"]=68800000, ["atk"]=940000, ["atk_times"]=3, @@ -1584,7 +1626,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [12801]={ - ["monster_base"]=10009, + ["monster_base"]=10031, ["hp"]=75700000, ["atk"]=960000, ["atk_times"]=3, @@ -1596,7 +1638,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [12901]={ - ["monster_base"]=10011, + ["monster_base"]=10033, ["hp"]=82600000, ["atk"]=990000, ["atk_times"]=3, @@ -1624,7 +1666,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [13101]={ - ["monster_base"]=10015, + ["monster_base"]=10030, ["hp"]=13300000, ["atk"]=640000, ["atk_times"]=3, @@ -1636,7 +1678,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [13201]={ - ["monster_base"]=10017, + ["monster_base"]=10033, ["hp"]=18800000, ["atk"]=670000, ["atk_times"]=3, @@ -1648,7 +1690,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [13301]={ - ["monster_base"]=10014, + ["monster_base"]=10019, ["hp"]=21100000, ["atk"]=700000, ["atk_times"]=3, @@ -1660,7 +1702,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [13401]={ - ["monster_base"]=10018, + ["monster_base"]=10012, ["hp"]=28000000, ["atk"]=740000, ["atk_times"]=3, @@ -1672,7 +1714,7 @@ local monster_chapter = { ["monster_exp"]=19000 }, [13501]={ - ["monster_base"]=20001, + ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=41400000, ["atk"]=850000, @@ -1682,10 +1724,16 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10016 + }, + ["passive_skill"]={ + 10008 + }, ["monster_exp"]=18000 }, [13601]={ - ["monster_base"]=10012, + ["monster_base"]=10017, ["hp"]=28100000, ["atk"]=810000, ["atk_times"]=3, @@ -1697,7 +1745,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [13701]={ - ["monster_base"]=10017, + ["monster_base"]=10013, ["hp"]=31500000, ["atk"]=900000, ["atk_times"]=3, @@ -1709,7 +1757,7 @@ local monster_chapter = { ["monster_exp"]=10000 }, [13801]={ - ["monster_base"]=10014, + ["monster_base"]=10032, ["hp"]=36500000, ["atk"]=840000, ["atk_times"]=3, @@ -1721,7 +1769,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [13901]={ - ["monster_base"]=10016, + ["monster_base"]=10033, ["hp"]=41400000, ["atk"]=940000, ["atk_times"]=3, @@ -1743,10 +1791,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10024 + }, ["monster_exp"]=12000 }, [14101]={ - ["monster_base"]=10010, + ["monster_base"]=10031, ["hp"]=44100000, ["atk"]=870000, ["atk_times"]=3, @@ -1758,7 +1809,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [14201]={ - ["monster_base"]=10003, + ["monster_base"]=10034, ["hp"]=50000000, ["atk"]=900000, ["atk_times"]=3, @@ -1770,7 +1821,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [14301]={ - ["monster_base"]=10009, + ["monster_base"]=10003, ["hp"]=52800000, ["atk"]=930000, ["atk_times"]=3, @@ -1782,7 +1833,7 @@ local monster_chapter = { ["monster_exp"]=21000 }, [14401]={ - ["monster_base"]=10011, + ["monster_base"]=10014, ["hp"]=57200000, ["atk"]=960000, ["atk_times"]=3, @@ -1794,7 +1845,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [14501]={ - ["monster_base"]=20004, + ["monster_base"]=20001, ["is_boss"]=1, ["hp"]=104100000, ["atk"]=940000, @@ -1804,6 +1855,9 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10020 + }, ["monster_exp"]=24000 }, [14601]={ @@ -1819,7 +1873,7 @@ local monster_chapter = { ["monster_exp"]=15000 }, [14701]={ - ["monster_base"]=10017, + ["monster_base"]=10016, ["hp"]=73200000, ["atk"]=1020000, ["atk_times"]=3, @@ -1831,7 +1885,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [14801]={ - ["monster_base"]=10014, + ["monster_base"]=10030, ["hp"]=80600000, ["atk"]=1050000, ["atk_times"]=3, @@ -1843,7 +1897,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [14901]={ - ["monster_base"]=10018, + ["monster_base"]=10035, ["hp"]=87900000, ["atk"]=1080000, ["atk_times"]=3, @@ -1855,7 +1909,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [15001]={ - ["monster_base"]=20003, + ["monster_base"]=30006, ["is_boss"]=2, ["hp"]=145500000, ["atk"]=1480000, @@ -1873,7 +1927,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [15101]={ - ["monster_base"]=10012, + ["monster_base"]=10034, ["hp"]=15500000, ["atk"]=770000, ["atk_times"]=3, @@ -1885,7 +1939,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [15201]={ - ["monster_base"]=10017, + ["monster_base"]=10032, ["hp"]=21900000, ["atk"]=800000, ["atk_times"]=3, @@ -1897,7 +1951,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [15301]={ - ["monster_base"]=10014, + ["monster_base"]=10002, ["hp"]=24600000, ["atk"]=840000, ["atk_times"]=3, @@ -1909,7 +1963,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [15401]={ - ["monster_base"]=10016, + ["monster_base"]=10005, ["hp"]=32600000, ["atk"]=880000, ["atk_times"]=3, @@ -1921,7 +1975,7 @@ local monster_chapter = { ["monster_exp"]=19000 }, [15501]={ - ["monster_base"]=20005, + ["monster_base"]=20007, ["is_boss"]=1, ["hp"]=45300000, ["atk"]=940000, @@ -1931,10 +1985,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10015 + }, ["monster_exp"]=18000 }, [15601]={ - ["monster_base"]=10007, + ["monster_base"]=10001, ["hp"]=30800000, ["atk"]=900000, ["atk_times"]=3, @@ -1946,7 +2003,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [15701]={ - ["monster_base"]=10011, + ["monster_base"]=10007, ["hp"]=34500000, ["atk"]=1010000, ["atk_times"]=3, @@ -1958,7 +2015,7 @@ local monster_chapter = { ["monster_exp"]=10000 }, [15801]={ - ["monster_base"]=10012, + ["monster_base"]=10040, ["hp"]=39900000, ["atk"]=940000, ["atk_times"]=3, @@ -1970,7 +2027,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [15901]={ - ["monster_base"]=10016, + ["monster_base"]=10039, ["hp"]=45300000, ["atk"]=1050000, ["atk_times"]=3, @@ -1982,7 +2039,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [16001]={ - ["monster_base"]=20007, + ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=86700000, ["atk"]=1050000, @@ -1992,10 +2049,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10017 + }, ["monster_exp"]=12000 }, [16101]={ - ["monster_base"]=10015, + ["monster_base"]=10039, ["hp"]=50200000, ["atk"]=1010000, ["atk_times"]=3, @@ -2007,7 +2067,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [16201]={ - ["monster_base"]=10017, + ["monster_base"]=10038, ["hp"]=56900000, ["atk"]=1050000, ["atk_times"]=3, @@ -2031,7 +2091,7 @@ local monster_chapter = { ["monster_exp"]=21000 }, [16401]={ - ["monster_base"]=10018, + ["monster_base"]=10019, ["hp"]=65000000, ["atk"]=1110000, ["atk_times"]=3, @@ -2043,7 +2103,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [16501]={ - ["monster_base"]=20008, + ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=126300000, ["atk"]=1160000, @@ -2053,10 +2113,16 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10016 + }, + ["passive_skill"]={ + 10008 + }, ["monster_exp"]=24000 }, [16601]={ - ["monster_base"]=10004, + ["monster_base"]=10016, ["hp"]=87200000, ["atk"]=1270000, ["atk_times"]=3, @@ -2068,7 +2134,7 @@ local monster_chapter = { ["monster_exp"]=15000 }, [16701]={ - ["monster_base"]=10002, + ["monster_base"]=10005, ["hp"]=92500000, ["atk"]=1300000, ["atk_times"]=3, @@ -2080,7 +2146,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [16801]={ - ["monster_base"]=10011, + ["monster_base"]=10040, ["hp"]=101800000, ["atk"]=1340000, ["atk_times"]=3, @@ -2092,7 +2158,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [16901]={ - ["monster_base"]=10013, + ["monster_base"]=10039, ["hp"]=111000000, ["atk"]=1380000, ["atk_times"]=3, @@ -2104,7 +2170,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [17001]={ - ["monster_base"]=20003, + ["monster_base"]=20017, ["is_boss"]=2, ["hp"]=195000000, ["atk"]=2000000, @@ -2121,7 +2187,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [17101]={ - ["monster_base"]=10012, + ["monster_base"]=10010, ["hp"]=15500000, ["atk"]=770000, ["atk_times"]=3, @@ -2133,7 +2199,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [17201]={ - ["monster_base"]=10017, + ["monster_base"]=10038, ["hp"]=21900000, ["atk"]=800000, ["atk_times"]=3, @@ -2145,7 +2211,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [17301]={ - ["monster_base"]=10014, + ["monster_base"]=10033, ["hp"]=24600000, ["atk"]=840000, ["atk_times"]=3, @@ -2157,7 +2223,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [17401]={ - ["monster_base"]=10016, + ["monster_base"]=10031, ["hp"]=32600000, ["atk"]=880000, ["atk_times"]=3, @@ -2179,10 +2245,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10024 + }, ["monster_exp"]=18000 }, [17601]={ - ["monster_base"]=10007, + ["monster_base"]=10030, ["hp"]=30800000, ["atk"]=900000, ["atk_times"]=3, @@ -2194,7 +2263,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [17701]={ - ["monster_base"]=10011, + ["monster_base"]=10035, ["hp"]=34500000, ["atk"]=1010000, ["atk_times"]=3, @@ -2206,7 +2275,7 @@ local monster_chapter = { ["monster_exp"]=10000 }, [17801]={ - ["monster_base"]=10012, + ["monster_base"]=10039, ["hp"]=39900000, ["atk"]=940000, ["atk_times"]=3, @@ -2218,7 +2287,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [17901]={ - ["monster_base"]=10016, + ["monster_base"]=10010, ["hp"]=45300000, ["atk"]=1050000, ["atk_times"]=3, @@ -2230,7 +2299,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [18001]={ - ["monster_base"]=20007, + ["monster_base"]=20017, ["is_boss"]=1, ["hp"]=86700000, ["atk"]=1050000, @@ -2240,10 +2309,14 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10027, + 10028 + }, ["monster_exp"]=12000 }, [18101]={ - ["monster_base"]=10015, + ["monster_base"]=10038, ["hp"]=50200000, ["atk"]=1010000, ["atk_times"]=3, @@ -2255,7 +2328,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [18201]={ - ["monster_base"]=10017, + ["monster_base"]=10040, ["hp"]=56900000, ["atk"]=1050000, ["atk_times"]=3, @@ -2267,7 +2340,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [18301]={ - ["monster_base"]=10014, + ["monster_base"]=10010, ["hp"]=60000000, ["atk"]=1080000, ["atk_times"]=3, @@ -2279,7 +2352,7 @@ local monster_chapter = { ["monster_exp"]=21000 }, [18401]={ - ["monster_base"]=10018, + ["monster_base"]=10039, ["hp"]=65000000, ["atk"]=1110000, ["atk_times"]=3, @@ -2291,7 +2364,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [18501]={ - ["monster_base"]=20008, + ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=126300000, ["atk"]=1160000, @@ -2301,10 +2374,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10017 + }, ["monster_exp"]=24000 }, [18601]={ - ["monster_base"]=10004, + ["monster_base"]=10032, ["hp"]=87200000, ["atk"]=1270000, ["atk_times"]=3, @@ -2316,7 +2392,7 @@ local monster_chapter = { ["monster_exp"]=15000 }, [18701]={ - ["monster_base"]=10002, + ["monster_base"]=10034, ["hp"]=92500000, ["atk"]=1300000, ["atk_times"]=3, @@ -2328,7 +2404,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [18801]={ - ["monster_base"]=10011, + ["monster_base"]=10035, ["hp"]=101800000, ["atk"]=1340000, ["atk_times"]=3, @@ -2340,7 +2416,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [18901]={ - ["monster_base"]=10013, + ["monster_base"]=10033, ["hp"]=111000000, ["atk"]=1380000, ["atk_times"]=3, @@ -2372,7 +2448,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [19101]={ - ["monster_base"]=10012, + ["monster_base"]=10020, ["hp"]=15500000, ["atk"]=770000, ["atk_times"]=3, @@ -2384,7 +2460,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [19201]={ - ["monster_base"]=10017, + ["monster_base"]=10038, ["hp"]=21900000, ["atk"]=800000, ["atk_times"]=3, @@ -2396,7 +2472,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [19301]={ - ["monster_base"]=10014, + ["monster_base"]=10021, ["hp"]=24600000, ["atk"]=840000, ["atk_times"]=3, @@ -2408,7 +2484,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [19401]={ - ["monster_base"]=10016, + ["monster_base"]=10040, ["hp"]=32600000, ["atk"]=880000, ["atk_times"]=3, @@ -2420,7 +2496,7 @@ local monster_chapter = { ["monster_exp"]=19000 }, [19501]={ - ["monster_base"]=20005, + ["monster_base"]=20017, ["is_boss"]=1, ["hp"]=45300000, ["atk"]=940000, @@ -2430,10 +2506,14 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10027, + 10028 + }, ["monster_exp"]=18000 }, [19601]={ - ["monster_base"]=10007, + ["monster_base"]=10022, ["hp"]=30800000, ["atk"]=900000, ["atk_times"]=3, @@ -2445,7 +2525,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [19701]={ - ["monster_base"]=10011, + ["monster_base"]=10004, ["hp"]=34500000, ["atk"]=1010000, ["atk_times"]=3, @@ -2457,7 +2537,7 @@ local monster_chapter = { ["monster_exp"]=10000 }, [19801]={ - ["monster_base"]=10012, + ["monster_base"]=10023, ["hp"]=39900000, ["atk"]=940000, ["atk_times"]=3, @@ -2469,7 +2549,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [19901]={ - ["monster_base"]=10016, + ["monster_base"]=10007, ["hp"]=45300000, ["atk"]=1050000, ["atk_times"]=3, @@ -2491,10 +2571,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10015 + }, ["monster_exp"]=12000 }, [20101]={ - ["monster_base"]=10015, + ["monster_base"]=10048, ["hp"]=50200000, ["atk"]=1010000, ["atk_times"]=3, @@ -2506,7 +2589,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [20201]={ - ["monster_base"]=10017, + ["monster_base"]=10023, ["hp"]=56900000, ["atk"]=1050000, ["atk_times"]=3, @@ -2518,7 +2601,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [20301]={ - ["monster_base"]=10014, + ["monster_base"]=10006, ["hp"]=60000000, ["atk"]=1080000, ["atk_times"]=3, @@ -2530,7 +2613,7 @@ local monster_chapter = { ["monster_exp"]=21000 }, [20401]={ - ["monster_base"]=10018, + ["monster_base"]=10047, ["hp"]=65000000, ["atk"]=1110000, ["atk_times"]=3, @@ -2542,7 +2625,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [20501]={ - ["monster_base"]=20008, + ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=126300000, ["atk"]=1160000, @@ -2552,10 +2635,16 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10016 + }, + ["passive_skill"]={ + 10008 + }, ["monster_exp"]=24000 }, [20601]={ - ["monster_base"]=10004, + ["monster_base"]=10021, ["hp"]=87200000, ["atk"]=1270000, ["atk_times"]=3, @@ -2567,7 +2656,7 @@ local monster_chapter = { ["monster_exp"]=15000 }, [20701]={ - ["monster_base"]=10002, + ["monster_base"]=10006, ["hp"]=92500000, ["atk"]=1300000, ["atk_times"]=3, @@ -2579,7 +2668,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [20801]={ - ["monster_base"]=10011, + ["monster_base"]=10048, ["hp"]=101800000, ["atk"]=1340000, ["atk_times"]=3, @@ -2591,7 +2680,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [20901]={ - ["monster_base"]=10013, + ["monster_base"]=10023, ["hp"]=111000000, ["atk"]=1380000, ["atk_times"]=3, @@ -2603,7 +2692,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [21001]={ - ["monster_base"]=20003, + ["monster_base"]=30014, ["is_boss"]=2, ["hp"]=195000000, ["atk"]=2000000, @@ -2620,7 +2709,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [21101]={ - ["monster_base"]=10012, + ["monster_base"]=10024, ["hp"]=15500000, ["atk"]=770000, ["atk_times"]=3, @@ -2632,7 +2721,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [21201]={ - ["monster_base"]=10017, + ["monster_base"]=10006, ["hp"]=21900000, ["atk"]=800000, ["atk_times"]=3, @@ -2644,7 +2733,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [21301]={ - ["monster_base"]=10014, + ["monster_base"]=10007, ["hp"]=24600000, ["atk"]=840000, ["atk_times"]=3, @@ -2656,7 +2745,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [21401]={ - ["monster_base"]=10016, + ["monster_base"]=10023, ["hp"]=32600000, ["atk"]=880000, ["atk_times"]=3, @@ -2668,7 +2757,7 @@ local monster_chapter = { ["monster_exp"]=19000 }, [21501]={ - ["monster_base"]=20005, + ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=45300000, ["atk"]=940000, @@ -2678,10 +2767,16 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10016 + }, + ["passive_skill"]={ + 10008 + }, ["monster_exp"]=18000 }, [21601]={ - ["monster_base"]=10007, + ["monster_base"]=10048, ["hp"]=30800000, ["atk"]=900000, ["atk_times"]=3, @@ -2693,7 +2788,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [21701]={ - ["monster_base"]=10011, + ["monster_base"]=10025, ["hp"]=34500000, ["atk"]=1010000, ["atk_times"]=3, @@ -2705,7 +2800,7 @@ local monster_chapter = { ["monster_exp"]=10000 }, [21801]={ - ["monster_base"]=10012, + ["monster_base"]=10004, ["hp"]=39900000, ["atk"]=940000, ["atk_times"]=3, @@ -2717,7 +2812,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [21901]={ - ["monster_base"]=10016, + ["monster_base"]=10022, ["hp"]=45300000, ["atk"]=1050000, ["atk_times"]=3, @@ -2729,7 +2824,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [22001]={ - ["monster_base"]=20007, + ["monster_base"]=20005, ["is_boss"]=1, ["hp"]=86700000, ["atk"]=1050000, @@ -2739,10 +2834,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10024 + }, ["monster_exp"]=12000 }, [22101]={ - ["monster_base"]=10015, + ["monster_base"]=10047, ["hp"]=50200000, ["atk"]=1010000, ["atk_times"]=3, @@ -2754,7 +2852,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [22201]={ - ["monster_base"]=10017, + ["monster_base"]=10026, ["hp"]=56900000, ["atk"]=1050000, ["atk_times"]=3, @@ -2766,7 +2864,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [22301]={ - ["monster_base"]=10014, + ["monster_base"]=10006, ["hp"]=60000000, ["atk"]=1080000, ["atk_times"]=3, @@ -2778,7 +2876,7 @@ local monster_chapter = { ["monster_exp"]=21000 }, [22401]={ - ["monster_base"]=10018, + ["monster_base"]=10040, ["hp"]=65000000, ["atk"]=1110000, ["atk_times"]=3, @@ -2790,7 +2888,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [22501]={ - ["monster_base"]=20008, + ["monster_base"]=20017, ["is_boss"]=1, ["hp"]=126300000, ["atk"]=1160000, @@ -2800,10 +2898,14 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10027, + 10028 + }, ["monster_exp"]=24000 }, [22601]={ - ["monster_base"]=10004, + ["monster_base"]=10020, ["hp"]=87200000, ["atk"]=1270000, ["atk_times"]=3, @@ -2815,7 +2917,7 @@ local monster_chapter = { ["monster_exp"]=15000 }, [22701]={ - ["monster_base"]=10002, + ["monster_base"]=10010, ["hp"]=92500000, ["atk"]=1300000, ["atk_times"]=3, @@ -2827,7 +2929,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [22801]={ - ["monster_base"]=10011, + ["monster_base"]=10038, ["hp"]=101800000, ["atk"]=1340000, ["atk_times"]=3, @@ -2839,7 +2941,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [22901]={ - ["monster_base"]=10013, + ["monster_base"]=10027, ["hp"]=111000000, ["atk"]=1380000, ["atk_times"]=3, @@ -2851,7 +2953,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [23001]={ - ["monster_base"]=20003, + ["monster_base"]=20008, ["is_boss"]=2, ["hp"]=195000000, ["atk"]=2000000, @@ -2867,7 +2969,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [23101]={ - ["monster_base"]=10012, + ["monster_base"]=10005, ["hp"]=15500000, ["atk"]=770000, ["atk_times"]=3, @@ -2879,7 +2981,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [23201]={ - ["monster_base"]=10017, + ["monster_base"]=10022, ["hp"]=21900000, ["atk"]=800000, ["atk_times"]=3, @@ -2891,7 +2993,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [23301]={ - ["monster_base"]=10014, + ["monster_base"]=10005, ["hp"]=24600000, ["atk"]=840000, ["atk_times"]=3, @@ -2903,7 +3005,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [23401]={ - ["monster_base"]=10016, + ["monster_base"]=10026, ["hp"]=32600000, ["atk"]=880000, ["atk_times"]=3, @@ -2915,7 +3017,7 @@ local monster_chapter = { ["monster_exp"]=19000 }, [23501]={ - ["monster_base"]=20005, + ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=45300000, ["atk"]=940000, @@ -2925,10 +3027,16 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10016 + }, + ["passive_skill"]={ + 10010 + }, ["monster_exp"]=18000 }, [23601]={ - ["monster_base"]=10007, + ["monster_base"]=10022, ["hp"]=30800000, ["atk"]=900000, ["atk_times"]=3, @@ -2940,7 +3048,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [23701]={ - ["monster_base"]=10011, + ["monster_base"]=10026, ["hp"]=34500000, ["atk"]=1010000, ["atk_times"]=3, @@ -2952,7 +3060,7 @@ local monster_chapter = { ["monster_exp"]=10000 }, [23801]={ - ["monster_base"]=10012, + ["monster_base"]=10032, ["hp"]=39900000, ["atk"]=940000, ["atk_times"]=3, @@ -2964,7 +3072,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [23901]={ - ["monster_base"]=10016, + ["monster_base"]=10044, ["hp"]=45300000, ["atk"]=1050000, ["atk_times"]=3, @@ -2976,7 +3084,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [24001]={ - ["monster_base"]=20007, + ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=86700000, ["atk"]=1050000, @@ -2986,10 +3094,16 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10016 + }, + ["passive_skill"]={ + 10008 + }, ["monster_exp"]=12000 }, [24101]={ - ["monster_base"]=10015, + ["monster_base"]=10001, ["hp"]=50200000, ["atk"]=1010000, ["atk_times"]=3, @@ -3001,7 +3115,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [24201]={ - ["monster_base"]=10017, + ["monster_base"]=10022, ["hp"]=56900000, ["atk"]=1050000, ["atk_times"]=3, @@ -3013,7 +3127,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [24301]={ - ["monster_base"]=10014, + ["monster_base"]=10044, ["hp"]=60000000, ["atk"]=1080000, ["atk_times"]=3, @@ -3025,7 +3139,7 @@ local monster_chapter = { ["monster_exp"]=21000 }, [24401]={ - ["monster_base"]=10018, + ["monster_base"]=10019, ["hp"]=65000000, ["atk"]=1110000, ["atk_times"]=3, @@ -3037,7 +3151,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [24501]={ - ["monster_base"]=20008, + ["monster_base"]=20001, ["is_boss"]=1, ["hp"]=126300000, ["atk"]=1160000, @@ -3047,10 +3161,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10020 + }, ["monster_exp"]=24000 }, [24601]={ - ["monster_base"]=10004, + ["monster_base"]=10013, ["hp"]=87200000, ["atk"]=1270000, ["atk_times"]=3, @@ -3062,7 +3179,7 @@ local monster_chapter = { ["monster_exp"]=15000 }, [24701]={ - ["monster_base"]=10002, + ["monster_base"]=10005, ["hp"]=92500000, ["atk"]=1300000, ["atk_times"]=3, @@ -3074,7 +3191,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [24801]={ - ["monster_base"]=10011, + ["monster_base"]=10026, ["hp"]=101800000, ["atk"]=1340000, ["atk_times"]=3, @@ -3086,7 +3203,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [24901]={ - ["monster_base"]=10013, + ["monster_base"]=10032, ["hp"]=111000000, ["atk"]=1380000, ["atk_times"]=3, @@ -3098,7 +3215,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [25001]={ - ["monster_base"]=20003, + ["monster_base"]=20006, ["is_boss"]=2, ["hp"]=195000000, ["atk"]=2000000, @@ -3117,7 +3234,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [25101]={ - ["monster_base"]=10012, + ["monster_base"]=10044, ["hp"]=15500000, ["atk"]=770000, ["atk_times"]=3, @@ -3129,7 +3246,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [25201]={ - ["monster_base"]=10017, + ["monster_base"]=10013, ["hp"]=21900000, ["atk"]=800000, ["atk_times"]=3, @@ -3141,7 +3258,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [25301]={ - ["monster_base"]=10014, + ["monster_base"]=10001, ["hp"]=24600000, ["atk"]=840000, ["atk_times"]=3, @@ -3153,7 +3270,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [25401]={ - ["monster_base"]=10016, + ["monster_base"]=10026, ["hp"]=32600000, ["atk"]=880000, ["atk_times"]=3, @@ -3165,7 +3282,7 @@ local monster_chapter = { ["monster_exp"]=19000 }, [25501]={ - ["monster_base"]=20005, + ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=45300000, ["atk"]=940000, @@ -3175,10 +3292,16 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10016 + }, + ["passive_skill"]={ + 10008 + }, ["monster_exp"]=18000 }, [25601]={ - ["monster_base"]=10007, + ["monster_base"]=10022, ["hp"]=30800000, ["atk"]=900000, ["atk_times"]=3, @@ -3190,7 +3313,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [25701]={ - ["monster_base"]=10011, + ["monster_base"]=10044, ["hp"]=34500000, ["atk"]=1010000, ["atk_times"]=3, @@ -3202,7 +3325,7 @@ local monster_chapter = { ["monster_exp"]=10000 }, [25801]={ - ["monster_base"]=10012, + ["monster_base"]=10032, ["hp"]=39900000, ["atk"]=940000, ["atk_times"]=3, @@ -3214,7 +3337,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [25901]={ - ["monster_base"]=10016, + ["monster_base"]=10019, ["hp"]=45300000, ["atk"]=1050000, ["atk_times"]=3, @@ -3226,7 +3349,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [26001]={ - ["monster_base"]=20007, + ["monster_base"]=20008, ["is_boss"]=1, ["hp"]=86700000, ["atk"]=1050000, @@ -3236,10 +3359,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10032 + }, ["monster_exp"]=12000 }, [26101]={ - ["monster_base"]=10015, + ["monster_base"]=10026, ["hp"]=50200000, ["atk"]=1010000, ["atk_times"]=3, @@ -3251,7 +3377,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [26201]={ - ["monster_base"]=10017, + ["monster_base"]=10001, ["hp"]=56900000, ["atk"]=1050000, ["atk_times"]=3, @@ -3263,7 +3389,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [26301]={ - ["monster_base"]=10014, + ["monster_base"]=10044, ["hp"]=60000000, ["atk"]=1080000, ["atk_times"]=3, @@ -3275,7 +3401,7 @@ local monster_chapter = { ["monster_exp"]=21000 }, [26401]={ - ["monster_base"]=10018, + ["monster_base"]=10013, ["hp"]=65000000, ["atk"]=1110000, ["atk_times"]=3, @@ -3287,7 +3413,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [26501]={ - ["monster_base"]=20008, + ["monster_base"]=20002, ["is_boss"]=1, ["hp"]=126300000, ["atk"]=1160000, @@ -3297,10 +3423,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10019 + }, ["monster_exp"]=24000 }, [26601]={ - ["monster_base"]=10004, + ["monster_base"]=10001, ["hp"]=87200000, ["atk"]=1270000, ["atk_times"]=3, @@ -3312,7 +3441,7 @@ local monster_chapter = { ["monster_exp"]=15000 }, [26701]={ - ["monster_base"]=10002, + ["monster_base"]=10032, ["hp"]=92500000, ["atk"]=1300000, ["atk_times"]=3, @@ -3324,7 +3453,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [26801]={ - ["monster_base"]=10011, + ["monster_base"]=10022, ["hp"]=101800000, ["atk"]=1340000, ["atk_times"]=3, @@ -3336,7 +3465,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [26901]={ - ["monster_base"]=10013, + ["monster_base"]=10005, ["hp"]=111000000, ["atk"]=1380000, ["atk_times"]=3, @@ -3348,7 +3477,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [27001]={ - ["monster_base"]=20003, + ["monster_base"]=20021, ["is_boss"]=2, ["hp"]=195000000, ["atk"]=2000000, @@ -3368,7 +3497,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [27101]={ - ["monster_base"]=10012, + ["monster_base"]=10022, ["hp"]=15500000, ["atk"]=770000, ["atk_times"]=3, @@ -3380,7 +3509,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [27201]={ - ["monster_base"]=10017, + ["monster_base"]=10044, ["hp"]=21900000, ["atk"]=800000, ["atk_times"]=3, @@ -3392,7 +3521,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [27301]={ - ["monster_base"]=10014, + ["monster_base"]=10032, ["hp"]=24600000, ["atk"]=840000, ["atk_times"]=3, @@ -3404,7 +3533,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [27401]={ - ["monster_base"]=10016, + ["monster_base"]=10019, ["hp"]=32600000, ["atk"]=880000, ["atk_times"]=3, @@ -3416,7 +3545,7 @@ local monster_chapter = { ["monster_exp"]=19000 }, [27501]={ - ["monster_base"]=20005, + ["monster_base"]=20008, ["is_boss"]=1, ["hp"]=45300000, ["atk"]=940000, @@ -3426,10 +3555,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10032 + }, ["monster_exp"]=18000 }, [27601]={ - ["monster_base"]=10007, + ["monster_base"]=10005, ["hp"]=30800000, ["atk"]=900000, ["atk_times"]=3, @@ -3441,7 +3573,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [27701]={ - ["monster_base"]=10011, + ["monster_base"]=10022, ["hp"]=34500000, ["atk"]=1010000, ["atk_times"]=3, @@ -3453,7 +3585,7 @@ local monster_chapter = { ["monster_exp"]=10000 }, [27801]={ - ["monster_base"]=10012, + ["monster_base"]=10005, ["hp"]=39900000, ["atk"]=940000, ["atk_times"]=3, @@ -3465,7 +3597,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [27901]={ - ["monster_base"]=10016, + ["monster_base"]=10026, ["hp"]=45300000, ["atk"]=1050000, ["atk_times"]=3, @@ -3477,7 +3609,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [28001]={ - ["monster_base"]=20007, + ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=86700000, ["atk"]=1050000, @@ -3487,10 +3619,16 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10016 + }, + ["passive_skill"]={ + 10010 + }, ["monster_exp"]=12000 }, [28101]={ - ["monster_base"]=10015, + ["monster_base"]=10013, ["hp"]=50200000, ["atk"]=1010000, ["atk_times"]=3, @@ -3502,7 +3640,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [28201]={ - ["monster_base"]=10017, + ["monster_base"]=10005, ["hp"]=56900000, ["atk"]=1050000, ["atk_times"]=3, @@ -3514,7 +3652,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [28301]={ - ["monster_base"]=10014, + ["monster_base"]=10026, ["hp"]=60000000, ["atk"]=1080000, ["atk_times"]=3, @@ -3526,7 +3664,7 @@ local monster_chapter = { ["monster_exp"]=21000 }, [28401]={ - ["monster_base"]=10018, + ["monster_base"]=10032, ["hp"]=65000000, ["atk"]=1110000, ["atk_times"]=3, @@ -3538,7 +3676,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [28501]={ - ["monster_base"]=20008, + ["monster_base"]=20006, ["is_boss"]=1, ["hp"]=126300000, ["atk"]=1160000, @@ -3548,10 +3686,16 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10033 + }, + ["passive_skill"]={ + 10010 + }, ["monster_exp"]=24000 }, [28601]={ - ["monster_base"]=10004, + ["monster_base"]=10013, ["hp"]=87200000, ["atk"]=1270000, ["atk_times"]=3, @@ -3563,7 +3707,7 @@ local monster_chapter = { ["monster_exp"]=15000 }, [28701]={ - ["monster_base"]=10002, + ["monster_base"]=10005, ["hp"]=92500000, ["atk"]=1300000, ["atk_times"]=3, @@ -3575,7 +3719,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [28801]={ - ["monster_base"]=10011, + ["monster_base"]=10026, ["hp"]=101800000, ["atk"]=1340000, ["atk_times"]=3, @@ -3587,7 +3731,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [28901]={ - ["monster_base"]=10013, + ["monster_base"]=10001, ["hp"]=111000000, ["atk"]=1380000, ["atk_times"]=3, @@ -3599,7 +3743,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [29001]={ - ["monster_base"]=20003, + ["monster_base"]=30010, ["is_boss"]=2, ["hp"]=195000000, ["atk"]=2000000, @@ -3616,7 +3760,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [29101]={ - ["monster_base"]=10012, + ["monster_base"]=10013, ["hp"]=15500000, ["atk"]=770000, ["atk_times"]=3, @@ -3628,7 +3772,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [29201]={ - ["monster_base"]=10017, + ["monster_base"]=10005, ["hp"]=21900000, ["atk"]=800000, ["atk_times"]=3, @@ -3640,7 +3784,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [29301]={ - ["monster_base"]=10014, + ["monster_base"]=10026, ["hp"]=24600000, ["atk"]=840000, ["atk_times"]=3, @@ -3652,7 +3796,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [29401]={ - ["monster_base"]=10016, + ["monster_base"]=10032, ["hp"]=32600000, ["atk"]=880000, ["atk_times"]=3, @@ -3664,7 +3808,7 @@ local monster_chapter = { ["monster_exp"]=19000 }, [29501]={ - ["monster_base"]=20005, + ["monster_base"]=20006, ["is_boss"]=1, ["hp"]=45300000, ["atk"]=940000, @@ -3674,10 +3818,16 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10033 + }, + ["passive_skill"]={ + 10010 + }, ["monster_exp"]=18000 }, [29601]={ - ["monster_base"]=10007, + ["monster_base"]=10001, ["hp"]=30800000, ["atk"]=900000, ["atk_times"]=3, @@ -3689,7 +3839,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [29701]={ - ["monster_base"]=10011, + ["monster_base"]=10032, ["hp"]=34500000, ["atk"]=1010000, ["atk_times"]=3, @@ -3701,7 +3851,7 @@ local monster_chapter = { ["monster_exp"]=10000 }, [29801]={ - ["monster_base"]=10012, + ["monster_base"]=10022, ["hp"]=39900000, ["atk"]=940000, ["atk_times"]=3, @@ -3713,7 +3863,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [29901]={ - ["monster_base"]=10016, + ["monster_base"]=10005, ["hp"]=45300000, ["atk"]=1050000, ["atk_times"]=3, @@ -3725,7 +3875,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [30001]={ - ["monster_base"]=20007, + ["monster_base"]=20021, ["is_boss"]=1, ["hp"]=86700000, ["atk"]=1050000, @@ -3735,10 +3885,17 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10034 + }, + ["passive_skill"]={ + 10011, + 10008 + }, ["monster_exp"]=12000 }, [30101]={ - ["monster_base"]=10015, + ["monster_base"]=10022, ["hp"]=50200000, ["atk"]=1010000, ["atk_times"]=3, @@ -3750,7 +3907,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [30201]={ - ["monster_base"]=10017, + ["monster_base"]=10004, ["hp"]=56900000, ["atk"]=1050000, ["atk_times"]=3, @@ -3762,7 +3919,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [30301]={ - ["monster_base"]=10014, + ["monster_base"]=10023, ["hp"]=60000000, ["atk"]=1080000, ["atk_times"]=3, @@ -3774,7 +3931,7 @@ local monster_chapter = { ["monster_exp"]=21000 }, [30401]={ - ["monster_base"]=10018, + ["monster_base"]=10007, ["hp"]=65000000, ["atk"]=1110000, ["atk_times"]=3, @@ -3786,7 +3943,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [30501]={ - ["monster_base"]=20008, + ["monster_base"]=20007, ["is_boss"]=1, ["hp"]=126300000, ["atk"]=1160000, @@ -3796,10 +3953,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10015 + }, ["monster_exp"]=24000 }, [30601]={ - ["monster_base"]=10004, + ["monster_base"]=10019, ["hp"]=87200000, ["atk"]=1270000, ["atk_times"]=3, @@ -3811,7 +3971,7 @@ local monster_chapter = { ["monster_exp"]=15000 }, [30701]={ - ["monster_base"]=10002, + ["monster_base"]=10023, ["hp"]=92500000, ["atk"]=1300000, ["atk_times"]=3, @@ -3823,7 +3983,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [30801]={ - ["monster_base"]=10011, + ["monster_base"]=10005, ["hp"]=101800000, ["atk"]=1340000, ["atk_times"]=3, @@ -3835,7 +3995,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [30901]={ - ["monster_base"]=10013, + ["monster_base"]=10033, ["hp"]=111000000, ["atk"]=1380000, ["atk_times"]=3, @@ -3847,7 +4007,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [31001]={ - ["monster_base"]=20003, + ["monster_base"]=20016, ["is_boss"]=2, ["hp"]=195000000, ["atk"]=2000000, @@ -3867,7 +4027,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [31101]={ - ["monster_base"]=10012, + ["monster_base"]=10026, ["hp"]=15500000, ["atk"]=770000, ["atk_times"]=3, @@ -3879,7 +4039,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [31201]={ - ["monster_base"]=10017, + ["monster_base"]=10001, ["hp"]=21900000, ["atk"]=800000, ["atk_times"]=3, @@ -3891,7 +4051,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [31301]={ - ["monster_base"]=10014, + ["monster_base"]=10044, ["hp"]=24600000, ["atk"]=840000, ["atk_times"]=3, @@ -3903,7 +4063,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [31401]={ - ["monster_base"]=10016, + ["monster_base"]=10013, ["hp"]=32600000, ["atk"]=880000, ["atk_times"]=3, @@ -3915,7 +4075,7 @@ local monster_chapter = { ["monster_exp"]=19000 }, [31501]={ - ["monster_base"]=20005, + ["monster_base"]=20002, ["is_boss"]=1, ["hp"]=45300000, ["atk"]=940000, @@ -3925,10 +4085,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10019 + }, ["monster_exp"]=18000 }, [31601]={ - ["monster_base"]=10007, + ["monster_base"]=10048, ["hp"]=30800000, ["atk"]=900000, ["atk_times"]=3, @@ -3940,7 +4103,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [31701]={ - ["monster_base"]=10011, + ["monster_base"]=10006, ["hp"]=34500000, ["atk"]=1010000, ["atk_times"]=3, @@ -3964,7 +4127,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [31901]={ - ["monster_base"]=10016, + ["monster_base"]=10004, ["hp"]=45300000, ["atk"]=1050000, ["atk_times"]=3, @@ -3976,7 +4139,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [32001]={ - ["monster_base"]=20007, + ["monster_base"]=20004, ["is_boss"]=1, ["hp"]=86700000, ["atk"]=1050000, @@ -3986,10 +4149,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10015 + }, ["monster_exp"]=12000 }, [32101]={ - ["monster_base"]=10015, + ["monster_base"]=10024, ["hp"]=50200000, ["atk"]=1010000, ["atk_times"]=3, @@ -4001,7 +4167,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [32201]={ - ["monster_base"]=10017, + ["monster_base"]=10044, ["hp"]=56900000, ["atk"]=1050000, ["atk_times"]=3, @@ -4013,7 +4179,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [32301]={ - ["monster_base"]=10014, + ["monster_base"]=10016, ["hp"]=60000000, ["atk"]=1080000, ["atk_times"]=3, @@ -4025,7 +4191,7 @@ local monster_chapter = { ["monster_exp"]=21000 }, [32401]={ - ["monster_base"]=10018, + ["monster_base"]=10019, ["hp"]=65000000, ["atk"]=1110000, ["atk_times"]=3, @@ -4047,6 +4213,9 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10032 + }, ["monster_exp"]=24000 }, [32601]={ @@ -4062,7 +4231,7 @@ local monster_chapter = { ["monster_exp"]=15000 }, [32701]={ - ["monster_base"]=10002, + ["monster_base"]=10006, ["hp"]=92500000, ["atk"]=1300000, ["atk_times"]=3, @@ -4074,7 +4243,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [32801]={ - ["monster_base"]=10011, + ["monster_base"]=10048, ["hp"]=101800000, ["atk"]=1340000, ["atk_times"]=3, @@ -4086,7 +4255,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [32901]={ - ["monster_base"]=10013, + ["monster_base"]=10037, ["hp"]=111000000, ["atk"]=1380000, ["atk_times"]=3, @@ -4098,7 +4267,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [33001]={ - ["monster_base"]=20003, + ["monster_base"]=30006, ["is_boss"]=2, ["hp"]=195000000, ["atk"]=2000000, @@ -4118,7 +4287,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [33101]={ - ["monster_base"]=10012, + ["monster_base"]=10049, ["hp"]=15500000, ["atk"]=770000, ["atk_times"]=3, @@ -4130,7 +4299,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [33201]={ - ["monster_base"]=10017, + ["monster_base"]=10005, ["hp"]=21900000, ["atk"]=800000, ["atk_times"]=3, @@ -4142,7 +4311,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [33301]={ - ["monster_base"]=10014, + ["monster_base"]=10024, ["hp"]=24600000, ["atk"]=840000, ["atk_times"]=3, @@ -4154,7 +4323,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [33401]={ - ["monster_base"]=10016, + ["monster_base"]=10012, ["hp"]=32600000, ["atk"]=880000, ["atk_times"]=3, @@ -4166,7 +4335,7 @@ local monster_chapter = { ["monster_exp"]=19000 }, [33501]={ - ["monster_base"]=20005, + ["monster_base"]=20006, ["is_boss"]=1, ["hp"]=45300000, ["atk"]=940000, @@ -4176,10 +4345,16 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10033 + }, + ["passive_skill"]={ + 10010 + }, ["monster_exp"]=18000 }, [33601]={ - ["monster_base"]=10007, + ["monster_base"]=10048, ["hp"]=30800000, ["atk"]=900000, ["atk_times"]=3, @@ -4191,7 +4366,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [33701]={ - ["monster_base"]=10011, + ["monster_base"]=10049, ["hp"]=34500000, ["atk"]=1010000, ["atk_times"]=3, @@ -4203,7 +4378,7 @@ local monster_chapter = { ["monster_exp"]=10000 }, [33801]={ - ["monster_base"]=10012, + ["monster_base"]=10004, ["hp"]=39900000, ["atk"]=940000, ["atk_times"]=3, @@ -4215,7 +4390,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [33901]={ - ["monster_base"]=10016, + ["monster_base"]=10006, ["hp"]=45300000, ["atk"]=1050000, ["atk_times"]=3, @@ -4237,10 +4412,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10015 + }, ["monster_exp"]=12000 }, [34101]={ - ["monster_base"]=10015, + ["monster_base"]=10020, ["hp"]=50200000, ["atk"]=1010000, ["atk_times"]=3, @@ -4252,7 +4430,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [34201]={ - ["monster_base"]=10017, + ["monster_base"]=10024, ["hp"]=56900000, ["atk"]=1050000, ["atk_times"]=3, @@ -4264,7 +4442,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [34301]={ - ["monster_base"]=10014, + ["monster_base"]=10012, ["hp"]=60000000, ["atk"]=1080000, ["atk_times"]=3, @@ -4276,7 +4454,7 @@ local monster_chapter = { ["monster_exp"]=21000 }, [34401]={ - ["monster_base"]=10018, + ["monster_base"]=10016, ["hp"]=65000000, ["atk"]=1110000, ["atk_times"]=3, @@ -4288,7 +4466,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [34501]={ - ["monster_base"]=20008, + ["monster_base"]=20002, ["is_boss"]=1, ["hp"]=126300000, ["atk"]=1160000, @@ -4298,6 +4476,9 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10019 + }, ["monster_exp"]=24000 }, [34601]={ @@ -4313,7 +4494,7 @@ local monster_chapter = { ["monster_exp"]=15000 }, [34701]={ - ["monster_base"]=10002, + ["monster_base"]=10012, ["hp"]=92500000, ["atk"]=1300000, ["atk_times"]=3, @@ -4325,7 +4506,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [34801]={ - ["monster_base"]=10011, + ["monster_base"]=10049, ["hp"]=101800000, ["atk"]=1340000, ["atk_times"]=3, @@ -4337,7 +4518,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [34901]={ - ["monster_base"]=10013, + ["monster_base"]=10048, ["hp"]=111000000, ["atk"]=1380000, ["atk_times"]=3, @@ -4349,7 +4530,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [35001]={ - ["monster_base"]=20003, + ["monster_base"]=20009, ["is_boss"]=2, ["hp"]=195000000, ["atk"]=2000000, @@ -4369,7 +4550,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [35101]={ - ["monster_base"]=10012, + ["monster_base"]=10004, ["hp"]=15500000, ["atk"]=770000, ["atk_times"]=3, @@ -4381,7 +4562,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [35201]={ - ["monster_base"]=10017, + ["monster_base"]=10020, ["hp"]=21900000, ["atk"]=800000, ["atk_times"]=3, @@ -4393,7 +4574,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [35301]={ - ["monster_base"]=10014, + ["monster_base"]=10048, ["hp"]=24600000, ["atk"]=840000, ["atk_times"]=3, @@ -4405,7 +4586,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [35401]={ - ["monster_base"]=10016, + ["monster_base"]=10012, ["hp"]=32600000, ["atk"]=880000, ["atk_times"]=3, @@ -4417,7 +4598,7 @@ local monster_chapter = { ["monster_exp"]=19000 }, [35501]={ - ["monster_base"]=20005, + ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=45300000, ["atk"]=940000, @@ -4427,10 +4608,16 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10016 + }, + ["passive_skill"]={ + 10010 + }, ["monster_exp"]=18000 }, [35601]={ - ["monster_base"]=10007, + ["monster_base"]=10004, ["hp"]=30800000, ["atk"]=900000, ["atk_times"]=3, @@ -4442,7 +4629,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [35701]={ - ["monster_base"]=10011, + ["monster_base"]=10012, ["hp"]=34500000, ["atk"]=1010000, ["atk_times"]=3, @@ -4454,7 +4641,7 @@ local monster_chapter = { ["monster_exp"]=10000 }, [35801]={ - ["monster_base"]=10012, + ["monster_base"]=10037, ["hp"]=39900000, ["atk"]=940000, ["atk_times"]=3, @@ -4466,7 +4653,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [35901]={ - ["monster_base"]=10016, + ["monster_base"]=10048, ["hp"]=45300000, ["atk"]=1050000, ["atk_times"]=3, @@ -4478,7 +4665,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [36001]={ - ["monster_base"]=20007, + ["monster_base"]=20009, ["is_boss"]=1, ["hp"]=86700000, ["atk"]=1050000, @@ -4488,10 +4675,17 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10039 + }, + ["passive_skill"]={ + 10010, + 10011 + }, ["monster_exp"]=12000 }, [36101]={ - ["monster_base"]=10015, + ["monster_base"]=10014, ["hp"]=50200000, ["atk"]=1010000, ["atk_times"]=3, @@ -4503,7 +4697,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [36201]={ - ["monster_base"]=10017, + ["monster_base"]=10027, ["hp"]=56900000, ["atk"]=1050000, ["atk_times"]=3, @@ -4515,7 +4709,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [36301]={ - ["monster_base"]=10014, + ["monster_base"]=10017, ["hp"]=60000000, ["atk"]=1080000, ["atk_times"]=3, @@ -4527,7 +4721,7 @@ local monster_chapter = { ["monster_exp"]=21000 }, [36401]={ - ["monster_base"]=10018, + ["monster_base"]=10023, ["hp"]=65000000, ["atk"]=1110000, ["atk_times"]=3, @@ -4539,7 +4733,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [36501]={ - ["monster_base"]=20008, + ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=126300000, ["atk"]=1160000, @@ -4549,10 +4743,16 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10016 + }, + ["passive_skill"]={ + 10008 + }, ["monster_exp"]=24000 }, [36601]={ - ["monster_base"]=10004, + ["monster_base"]=10014, ["hp"]=87200000, ["atk"]=1270000, ["atk_times"]=3, @@ -4576,7 +4776,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [36801]={ - ["monster_base"]=10011, + ["monster_base"]=10029, ["hp"]=101800000, ["atk"]=1340000, ["atk_times"]=3, @@ -4588,7 +4788,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [36901]={ - ["monster_base"]=10013, + ["monster_base"]=10036, ["hp"]=111000000, ["atk"]=1380000, ["atk_times"]=3, @@ -4600,7 +4800,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [37001]={ - ["monster_base"]=20003, + ["monster_base"]=30009, ["is_boss"]=2, ["hp"]=195000000, ["atk"]=2000000, @@ -4617,7 +4817,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [37101]={ - ["monster_base"]=10012, + ["monster_base"]=10054, ["hp"]=15500000, ["atk"]=770000, ["atk_times"]=3, @@ -4629,7 +4829,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [37201]={ - ["monster_base"]=10017, + ["monster_base"]=10024, ["hp"]=21900000, ["atk"]=800000, ["atk_times"]=3, @@ -4641,7 +4841,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [37301]={ - ["monster_base"]=10014, + ["monster_base"]=10012, ["hp"]=24600000, ["atk"]=840000, ["atk_times"]=3, @@ -4653,7 +4853,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [37401]={ - ["monster_base"]=10016, + ["monster_base"]=10048, ["hp"]=32600000, ["atk"]=880000, ["atk_times"]=3, @@ -4665,7 +4865,7 @@ local monster_chapter = { ["monster_exp"]=19000 }, [37501]={ - ["monster_base"]=20005, + ["monster_base"]=20009, ["is_boss"]=1, ["hp"]=45300000, ["atk"]=940000, @@ -4675,10 +4875,17 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10039 + }, + ["passive_skill"]={ + 10010, + 10011 + }, ["monster_exp"]=18000 }, [37601]={ - ["monster_base"]=10007, + ["monster_base"]=10048, ["hp"]=30800000, ["atk"]=900000, ["atk_times"]=3, @@ -4690,7 +4897,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [37701]={ - ["monster_base"]=10011, + ["monster_base"]=10054, ["hp"]=34500000, ["atk"]=1010000, ["atk_times"]=3, @@ -4714,7 +4921,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [37901]={ - ["monster_base"]=10016, + ["monster_base"]=10024, ["hp"]=45300000, ["atk"]=1050000, ["atk_times"]=3, @@ -4726,7 +4933,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [38001]={ - ["monster_base"]=20007, + ["monster_base"]=20006, ["is_boss"]=1, ["hp"]=86700000, ["atk"]=1050000, @@ -4736,10 +4943,16 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10033 + }, + ["passive_skill"]={ + 10010 + }, ["monster_exp"]=12000 }, [38101]={ - ["monster_base"]=10015, + ["monster_base"]=10020, ["hp"]=50200000, ["atk"]=1010000, ["atk_times"]=3, @@ -4751,7 +4964,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [38201]={ - ["monster_base"]=10017, + ["monster_base"]=10053, ["hp"]=56900000, ["atk"]=1050000, ["atk_times"]=3, @@ -4763,7 +4976,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [38301]={ - ["monster_base"]=10014, + ["monster_base"]=10006, ["hp"]=60000000, ["atk"]=1080000, ["atk_times"]=3, @@ -4775,7 +4988,7 @@ local monster_chapter = { ["monster_exp"]=21000 }, [38401]={ - ["monster_base"]=10018, + ["monster_base"]=10004, ["hp"]=65000000, ["atk"]=1110000, ["atk_times"]=3, @@ -4787,7 +5000,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [38501]={ - ["monster_base"]=20008, + ["monster_base"]=20004, ["is_boss"]=1, ["hp"]=126300000, ["atk"]=1160000, @@ -4797,10 +5010,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10015 + }, ["monster_exp"]=24000 }, [38601]={ - ["monster_base"]=10004, + ["monster_base"]=10053, ["hp"]=87200000, ["atk"]=1270000, ["atk_times"]=3, @@ -4812,7 +5028,7 @@ local monster_chapter = { ["monster_exp"]=15000 }, [38701]={ - ["monster_base"]=10002, + ["monster_base"]=10049, ["hp"]=92500000, ["atk"]=1300000, ["atk_times"]=3, @@ -4824,7 +5040,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [38801]={ - ["monster_base"]=10011, + ["monster_base"]=10020, ["hp"]=101800000, ["atk"]=1340000, ["atk_times"]=3, @@ -4836,7 +5052,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [38901]={ - ["monster_base"]=10013, + ["monster_base"]=10054, ["hp"]=111000000, ["atk"]=1380000, ["atk_times"]=3, @@ -4848,7 +5064,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [39001]={ - ["monster_base"]=20003, + ["monster_base"]=20010, ["is_boss"]=2, ["hp"]=195000000, ["atk"]=2000000, @@ -4869,7 +5085,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [39101]={ - ["monster_base"]=10012, + ["monster_base"]=10052, ["hp"]=15500000, ["atk"]=770000, ["atk_times"]=3, @@ -4881,7 +5097,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [39201]={ - ["monster_base"]=10017, + ["monster_base"]=10050, ["hp"]=21900000, ["atk"]=800000, ["atk_times"]=3, @@ -4893,7 +5109,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [39301]={ - ["monster_base"]=10014, + ["monster_base"]=10010, ["hp"]=24600000, ["atk"]=840000, ["atk_times"]=3, @@ -4905,7 +5121,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [39401]={ - ["monster_base"]=10016, + ["monster_base"]=10053, ["hp"]=32600000, ["atk"]=880000, ["atk_times"]=3, @@ -4927,10 +5143,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10024 + }, ["monster_exp"]=18000 }, [39601]={ - ["monster_base"]=10007, + ["monster_base"]=10040, ["hp"]=30800000, ["atk"]=900000, ["atk_times"]=3, @@ -4942,7 +5161,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [39701]={ - ["monster_base"]=10011, + ["monster_base"]=10052, ["hp"]=34500000, ["atk"]=1010000, ["atk_times"]=3, @@ -4954,7 +5173,7 @@ local monster_chapter = { ["monster_exp"]=10000 }, [39801]={ - ["monster_base"]=10012, + ["monster_base"]=10054, ["hp"]=39900000, ["atk"]=940000, ["atk_times"]=3, @@ -4966,7 +5185,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [39901]={ - ["monster_base"]=10016, + ["monster_base"]=10038, ["hp"]=45300000, ["atk"]=1050000, ["atk_times"]=3, @@ -4978,7 +5197,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [40001]={ - ["monster_base"]=20007, + ["monster_base"]=20015, ["is_boss"]=1, ["hp"]=86700000, ["atk"]=1050000, @@ -4988,10 +5207,16 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10016 + }, + ["passive_skill"]={ + 10008 + }, ["monster_exp"]=12000 }, [40101]={ - ["monster_base"]=10015, + ["monster_base"]=10009, ["hp"]=50200000, ["atk"]=1010000, ["atk_times"]=3, @@ -5003,7 +5228,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [40201]={ - ["monster_base"]=10017, + ["monster_base"]=10054, ["hp"]=56900000, ["atk"]=1050000, ["atk_times"]=3, @@ -5015,7 +5240,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [40301]={ - ["monster_base"]=10014, + ["monster_base"]=10052, ["hp"]=60000000, ["atk"]=1080000, ["atk_times"]=3, @@ -5027,7 +5252,7 @@ local monster_chapter = { ["monster_exp"]=21000 }, [40401]={ - ["monster_base"]=10018, + ["monster_base"]=10050, ["hp"]=65000000, ["atk"]=1110000, ["atk_times"]=3, @@ -5049,10 +5274,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10032 + }, ["monster_exp"]=24000 }, [40601]={ - ["monster_base"]=10004, + ["monster_base"]=10038, ["hp"]=87200000, ["atk"]=1270000, ["atk_times"]=3, @@ -5064,7 +5292,7 @@ local monster_chapter = { ["monster_exp"]=15000 }, [40701]={ - ["monster_base"]=10002, + ["monster_base"]=10053, ["hp"]=92500000, ["atk"]=1300000, ["atk_times"]=3, @@ -5076,7 +5304,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [40801]={ - ["monster_base"]=10011, + ["monster_base"]=10050, ["hp"]=101800000, ["atk"]=1340000, ["atk_times"]=3, @@ -5088,7 +5316,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [40901]={ - ["monster_base"]=10013, + ["monster_base"]=10040, ["hp"]=111000000, ["atk"]=1380000, ["atk_times"]=3, @@ -5100,7 +5328,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [41001]={ - ["monster_base"]=20003, + ["monster_base"]=30005, ["is_boss"]=2, ["hp"]=195000000, ["atk"]=2000000, @@ -5117,7 +5345,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [41101]={ - ["monster_base"]=10012, + ["monster_base"]=10043, ["hp"]=15500000, ["atk"]=770000, ["atk_times"]=3, @@ -5129,7 +5357,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [41201]={ - ["monster_base"]=10017, + ["monster_base"]=10054, ["hp"]=21900000, ["atk"]=800000, ["atk_times"]=3, @@ -5141,7 +5369,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [41301]={ - ["monster_base"]=10014, + ["monster_base"]=10038, ["hp"]=24600000, ["atk"]=840000, ["atk_times"]=3, @@ -5153,7 +5381,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [41401]={ - ["monster_base"]=10016, + ["monster_base"]=10053, ["hp"]=32600000, ["atk"]=880000, ["atk_times"]=3, @@ -5165,7 +5393,7 @@ local monster_chapter = { ["monster_exp"]=19000 }, [41501]={ - ["monster_base"]=20005, + ["monster_base"]=20010, ["is_boss"]=1, ["hp"]=45300000, ["atk"]=940000, @@ -5175,10 +5403,18 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10041 + }, + ["passive_skill"]={ + 10008, + 10009, + 10013 + }, ["monster_exp"]=18000 }, [41601]={ - ["monster_base"]=10007, + ["monster_base"]=10038, ["hp"]=30800000, ["atk"]=900000, ["atk_times"]=3, @@ -5190,7 +5426,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [41701]={ - ["monster_base"]=10011, + ["monster_base"]=10053, ["hp"]=34500000, ["atk"]=1010000, ["atk_times"]=3, @@ -5202,7 +5438,7 @@ local monster_chapter = { ["monster_exp"]=10000 }, [41801]={ - ["monster_base"]=10012, + ["monster_base"]=10006, ["hp"]=39900000, ["atk"]=940000, ["atk_times"]=3, @@ -5214,7 +5450,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [41901]={ - ["monster_base"]=10016, + ["monster_base"]=10004, ["hp"]=45300000, ["atk"]=1050000, ["atk_times"]=3, @@ -5226,7 +5462,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [42001]={ - ["monster_base"]=20007, + ["monster_base"]=20004, ["is_boss"]=1, ["hp"]=86700000, ["atk"]=1050000, @@ -5236,10 +5472,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10015 + }, ["monster_exp"]=12000 }, [42101]={ - ["monster_base"]=10015, + ["monster_base"]=10052, ["hp"]=50200000, ["atk"]=1010000, ["atk_times"]=3, @@ -5251,7 +5490,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [42201]={ - ["monster_base"]=10017, + ["monster_base"]=10050, ["hp"]=56900000, ["atk"]=1050000, ["atk_times"]=3, @@ -5263,7 +5502,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [42301]={ - ["monster_base"]=10014, + ["monster_base"]=10010, ["hp"]=60000000, ["atk"]=1080000, ["atk_times"]=3, @@ -5275,7 +5514,7 @@ local monster_chapter = { ["monster_exp"]=21000 }, [42401]={ - ["monster_base"]=10018, + ["monster_base"]=10039, ["hp"]=65000000, ["atk"]=1110000, ["atk_times"]=3, @@ -5287,7 +5526,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [42501]={ - ["monster_base"]=20008, + ["monster_base"]=20005, ["is_boss"]=1, ["hp"]=126300000, ["atk"]=1160000, @@ -5297,10 +5536,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10024 + }, ["monster_exp"]=24000 }, [42601]={ - ["monster_base"]=10004, + ["monster_base"]=10040, ["hp"]=87200000, ["atk"]=1270000, ["atk_times"]=3, @@ -5312,7 +5554,7 @@ local monster_chapter = { ["monster_exp"]=15000 }, [42701]={ - ["monster_base"]=10002, + ["monster_base"]=10010, ["hp"]=92500000, ["atk"]=1300000, ["atk_times"]=3, @@ -5324,7 +5566,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [42801]={ - ["monster_base"]=10011, + ["monster_base"]=10040, ["hp"]=101800000, ["atk"]=1340000, ["atk_times"]=3, @@ -5336,7 +5578,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [42901]={ - ["monster_base"]=10013, + ["monster_base"]=10009, ["hp"]=111000000, ["atk"]=1380000, ["atk_times"]=3, @@ -5348,7 +5590,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [43001]={ - ["monster_base"]=20003, + ["monster_base"]=20024, ["is_boss"]=2, ["hp"]=195000000, ["atk"]=2000000, @@ -5365,7 +5607,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [43101]={ - ["monster_base"]=10012, + ["monster_base"]=10009, ["hp"]=15500000, ["atk"]=770000, ["atk_times"]=3, @@ -5377,7 +5619,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [43201]={ - ["monster_base"]=10017, + ["monster_base"]=10054, ["hp"]=21900000, ["atk"]=800000, ["atk_times"]=3, @@ -5389,7 +5631,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [43301]={ - ["monster_base"]=10014, + ["monster_base"]=10052, ["hp"]=24600000, ["atk"]=840000, ["atk_times"]=3, @@ -5401,7 +5643,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [43401]={ - ["monster_base"]=10016, + ["monster_base"]=10050, ["hp"]=32600000, ["atk"]=880000, ["atk_times"]=3, @@ -5413,7 +5655,7 @@ local monster_chapter = { ["monster_exp"]=19000 }, [43501]={ - ["monster_base"]=20005, + ["monster_base"]=20008, ["is_boss"]=1, ["hp"]=45300000, ["atk"]=940000, @@ -5423,10 +5665,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10032 + }, ["monster_exp"]=18000 }, [43601]={ - ["monster_base"]=10007, + ["monster_base"]=10044, ["hp"]=30800000, ["atk"]=900000, ["atk_times"]=3, @@ -5438,7 +5683,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [43701]={ - ["monster_base"]=10011, + ["monster_base"]=10054, ["hp"]=34500000, ["atk"]=1010000, ["atk_times"]=3, @@ -5450,7 +5695,7 @@ local monster_chapter = { ["monster_exp"]=10000 }, [43801]={ - ["monster_base"]=10012, + ["monster_base"]=10014, ["hp"]=39900000, ["atk"]=940000, ["atk_times"]=3, @@ -5462,7 +5707,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [43901]={ - ["monster_base"]=10016, + ["monster_base"]=10018, ["hp"]=45300000, ["atk"]=1050000, ["atk_times"]=3, @@ -5474,7 +5719,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [44001]={ - ["monster_base"]=20007, + ["monster_base"]=20014, ["is_boss"]=1, ["hp"]=86700000, ["atk"]=1050000, @@ -5484,10 +5729,16 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10016 + }, + ["passive_skill"]={ + 10010 + }, ["monster_exp"]=12000 }, [44101]={ - ["monster_base"]=10015, + ["monster_base"]=10009, ["hp"]=50200000, ["atk"]=1010000, ["atk_times"]=3, @@ -5499,7 +5750,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [44201]={ - ["monster_base"]=10017, + ["monster_base"]=10010, ["hp"]=56900000, ["atk"]=1050000, ["atk_times"]=3, @@ -5511,7 +5762,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [44301]={ - ["monster_base"]=10014, + ["monster_base"]=10053, ["hp"]=60000000, ["atk"]=1080000, ["atk_times"]=3, @@ -5523,7 +5774,7 @@ local monster_chapter = { ["monster_exp"]=21000 }, [44401]={ - ["monster_base"]=10018, + ["monster_base"]=10039, ["hp"]=65000000, ["atk"]=1110000, ["atk_times"]=3, @@ -5535,7 +5786,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [44501]={ - ["monster_base"]=20008, + ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=126300000, ["atk"]=1160000, @@ -5545,10 +5796,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10017 + }, ["monster_exp"]=24000 }, [44601]={ - ["monster_base"]=10004, + ["monster_base"]=10052, ["hp"]=87200000, ["atk"]=1270000, ["atk_times"]=3, @@ -5560,7 +5814,7 @@ local monster_chapter = { ["monster_exp"]=15000 }, [44701]={ - ["monster_base"]=10002, + ["monster_base"]=10043, ["hp"]=92500000, ["atk"]=1300000, ["atk_times"]=3, @@ -5572,7 +5826,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [44801]={ - ["monster_base"]=10011, + ["monster_base"]=10054, ["hp"]=101800000, ["atk"]=1340000, ["atk_times"]=3, @@ -5584,7 +5838,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [44901]={ - ["monster_base"]=10013, + ["monster_base"]=10050, ["hp"]=111000000, ["atk"]=1380000, ["atk_times"]=3, @@ -5596,7 +5850,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [45001]={ - ["monster_base"]=20003, + ["monster_base"]=20019, ["is_boss"]=2, ["hp"]=195000000, ["atk"]=2000000, @@ -5616,7 +5870,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [45101]={ - ["monster_base"]=10012, + ["monster_base"]=10046, ["hp"]=15500000, ["atk"]=770000, ["atk_times"]=3, @@ -5628,7 +5882,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [45201]={ - ["monster_base"]=10017, + ["monster_base"]=10043, ["hp"]=21900000, ["atk"]=800000, ["atk_times"]=3, @@ -5640,7 +5894,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [45301]={ - ["monster_base"]=10014, + ["monster_base"]=10050, ["hp"]=24600000, ["atk"]=840000, ["atk_times"]=3, @@ -5652,7 +5906,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [45401]={ - ["monster_base"]=10016, + ["monster_base"]=10054, ["hp"]=32600000, ["atk"]=880000, ["atk_times"]=3, @@ -5664,7 +5918,7 @@ local monster_chapter = { ["monster_exp"]=19000 }, [45501]={ - ["monster_base"]=20005, + ["monster_base"]=20010, ["is_boss"]=1, ["hp"]=45300000, ["atk"]=940000, @@ -5674,10 +5928,18 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10041 + }, + ["passive_skill"]={ + 10008, + 10009, + 10013 + }, ["monster_exp"]=18000 }, [45601]={ - ["monster_base"]=10007, + ["monster_base"]=10052, ["hp"]=30800000, ["atk"]=900000, ["atk_times"]=3, @@ -5689,7 +5951,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [45701]={ - ["monster_base"]=10011, + ["monster_base"]=10045, ["hp"]=34500000, ["atk"]=1010000, ["atk_times"]=3, @@ -5701,7 +5963,7 @@ local monster_chapter = { ["monster_exp"]=10000 }, [45801]={ - ["monster_base"]=10012, + ["monster_base"]=10043, ["hp"]=39900000, ["atk"]=940000, ["atk_times"]=3, @@ -5713,7 +5975,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [45901]={ - ["monster_base"]=10016, + ["monster_base"]=10053, ["hp"]=45300000, ["atk"]=1050000, ["atk_times"]=3, @@ -5725,7 +5987,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [46001]={ - ["monster_base"]=20007, + ["monster_base"]=20005, ["is_boss"]=1, ["hp"]=86700000, ["atk"]=1050000, @@ -5735,10 +5997,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10024 + }, ["monster_exp"]=12000 }, [46101]={ - ["monster_base"]=10015, + ["monster_base"]=10045, ["hp"]=50200000, ["atk"]=1010000, ["atk_times"]=3, @@ -5750,7 +6015,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [46201]={ - ["monster_base"]=10017, + ["monster_base"]=10052, ["hp"]=56900000, ["atk"]=1050000, ["atk_times"]=3, @@ -5762,7 +6027,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [46301]={ - ["monster_base"]=10014, + ["monster_base"]=10010, ["hp"]=60000000, ["atk"]=1080000, ["atk_times"]=3, @@ -5774,7 +6039,7 @@ local monster_chapter = { ["monster_exp"]=21000 }, [46401]={ - ["monster_base"]=10018, + ["monster_base"]=10039, ["hp"]=65000000, ["atk"]=1110000, ["atk_times"]=3, @@ -5786,7 +6051,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [46501]={ - ["monster_base"]=20008, + ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=126300000, ["atk"]=1160000, @@ -5796,10 +6061,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10017 + }, ["monster_exp"]=24000 }, [46601]={ - ["monster_base"]=10004, + ["monster_base"]=10050, ["hp"]=87200000, ["atk"]=1270000, ["atk_times"]=3, @@ -5811,7 +6079,7 @@ local monster_chapter = { ["monster_exp"]=15000 }, [46701]={ - ["monster_base"]=10002, + ["monster_base"]=10043, ["hp"]=92500000, ["atk"]=1300000, ["atk_times"]=3, @@ -5823,7 +6091,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [46801]={ - ["monster_base"]=10011, + ["monster_base"]=10046, ["hp"]=101800000, ["atk"]=1340000, ["atk_times"]=3, @@ -5835,7 +6103,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [46901]={ - ["monster_base"]=10013, + ["monster_base"]=10054, ["hp"]=111000000, ["atk"]=1380000, ["atk_times"]=3, @@ -5847,7 +6115,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [47001]={ - ["monster_base"]=20003, + ["monster_base"]=20020, ["is_boss"]=2, ["hp"]=195000000, ["atk"]=2000000, @@ -5867,7 +6135,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [47101]={ - ["monster_base"]=10012, + ["monster_base"]=10047, ["hp"]=15500000, ["atk"]=770000, ["atk_times"]=3, @@ -5879,7 +6147,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [47201]={ - ["monster_base"]=10017, + ["monster_base"]=10038, ["hp"]=21900000, ["atk"]=800000, ["atk_times"]=3, @@ -5891,7 +6159,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [47301]={ - ["monster_base"]=10014, + ["monster_base"]=10021, ["hp"]=24600000, ["atk"]=840000, ["atk_times"]=3, @@ -5903,7 +6171,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [47401]={ - ["monster_base"]=10016, + ["monster_base"]=10040, ["hp"]=32600000, ["atk"]=880000, ["atk_times"]=3, @@ -5915,7 +6183,7 @@ local monster_chapter = { ["monster_exp"]=19000 }, [47501]={ - ["monster_base"]=20005, + ["monster_base"]=20017, ["is_boss"]=1, ["hp"]=45300000, ["atk"]=940000, @@ -5925,10 +6193,14 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10027, + 10028 + }, ["monster_exp"]=18000 }, [47601]={ - ["monster_base"]=10007, + ["monster_base"]=10010, ["hp"]=30800000, ["atk"]=900000, ["atk_times"]=3, @@ -5940,7 +6212,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [47701]={ - ["monster_base"]=10011, + ["monster_base"]=10039, ["hp"]=34500000, ["atk"]=1010000, ["atk_times"]=3, @@ -5952,7 +6224,7 @@ local monster_chapter = { ["monster_exp"]=10000 }, [47801]={ - ["monster_base"]=10012, + ["monster_base"]=10040, ["hp"]=39900000, ["atk"]=940000, ["atk_times"]=3, @@ -5964,7 +6236,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [47901]={ - ["monster_base"]=10016, + ["monster_base"]=10009, ["hp"]=45300000, ["atk"]=1050000, ["atk_times"]=3, @@ -5976,7 +6248,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [48001]={ - ["monster_base"]=20007, + ["monster_base"]=20024, ["is_boss"]=1, ["hp"]=86700000, ["atk"]=1050000, @@ -5986,10 +6258,14 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10043, + 10044 + }, ["monster_exp"]=12000 }, [48101]={ - ["monster_base"]=10015, + ["monster_base"]=10052, ["hp"]=50200000, ["atk"]=1010000, ["atk_times"]=3, @@ -6001,7 +6277,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [48201]={ - ["monster_base"]=10017, + ["monster_base"]=10043, ["hp"]=56900000, ["atk"]=1050000, ["atk_times"]=3, @@ -6013,7 +6289,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [48301]={ - ["monster_base"]=10014, + ["monster_base"]=10050, ["hp"]=60000000, ["atk"]=1080000, ["atk_times"]=3, @@ -6025,7 +6301,7 @@ local monster_chapter = { ["monster_exp"]=21000 }, [48401]={ - ["monster_base"]=10018, + ["monster_base"]=10054, ["hp"]=65000000, ["atk"]=1110000, ["atk_times"]=3, @@ -6037,7 +6313,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [48501]={ - ["monster_base"]=20008, + ["monster_base"]=20019, ["is_boss"]=1, ["hp"]=126300000, ["atk"]=1160000, @@ -6047,10 +6323,17 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10045 + }, + ["passive_skill"]={ + 10046, + 10013 + }, ["monster_exp"]=24000 }, [48601]={ - ["monster_base"]=10004, + ["monster_base"]=10029, ["hp"]=87200000, ["atk"]=1270000, ["atk_times"]=3, @@ -6062,7 +6345,7 @@ local monster_chapter = { ["monster_exp"]=15000 }, [48701]={ - ["monster_base"]=10002, + ["monster_base"]=10050, ["hp"]=92500000, ["atk"]=1300000, ["atk_times"]=3, @@ -6074,7 +6357,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [48801]={ - ["monster_base"]=10011, + ["monster_base"]=10043, ["hp"]=101800000, ["atk"]=1340000, ["atk_times"]=3, @@ -6086,7 +6369,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [48901]={ - ["monster_base"]=10013, + ["monster_base"]=10028, ["hp"]=111000000, ["atk"]=1380000, ["atk_times"]=3, @@ -6098,7 +6381,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [49001]={ - ["monster_base"]=20003, + ["monster_base"]=20013, ["is_boss"]=2, ["hp"]=195000000, ["atk"]=2000000, @@ -6115,7 +6398,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [49101]={ - ["monster_base"]=10012, + ["monster_base"]=10052, ["hp"]=15500000, ["atk"]=770000, ["atk_times"]=3, @@ -6127,7 +6410,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [49201]={ - ["monster_base"]=10017, + ["monster_base"]=10045, ["hp"]=21900000, ["atk"]=800000, ["atk_times"]=3, @@ -6139,7 +6422,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [49301]={ - ["monster_base"]=10014, + ["monster_base"]=10043, ["hp"]=24600000, ["atk"]=840000, ["atk_times"]=3, @@ -6151,7 +6434,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [49401]={ - ["monster_base"]=10016, + ["monster_base"]=10053, ["hp"]=32600000, ["atk"]=880000, ["atk_times"]=3, @@ -6173,10 +6456,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10024 + }, ["monster_exp"]=18000 }, [49601]={ - ["monster_base"]=10007, + ["monster_base"]=10010, ["hp"]=30800000, ["atk"]=900000, ["atk_times"]=3, @@ -6188,7 +6474,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [49701]={ - ["monster_base"]=10011, + ["monster_base"]=10039, ["hp"]=34500000, ["atk"]=1010000, ["atk_times"]=3, @@ -6200,7 +6486,7 @@ local monster_chapter = { ["monster_exp"]=10000 }, [49801]={ - ["monster_base"]=10012, + ["monster_base"]=10040, ["hp"]=39900000, ["atk"]=940000, ["atk_times"]=3, @@ -6212,7 +6498,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [49901]={ - ["monster_base"]=10016, + ["monster_base"]=10009, ["hp"]=45300000, ["atk"]=1050000, ["atk_times"]=3, @@ -6224,7 +6510,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [50001]={ - ["monster_base"]=20007, + ["monster_base"]=20024, ["is_boss"]=1, ["hp"]=86700000, ["atk"]=1050000, @@ -6234,10 +6520,14 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10043, + 10044 + }, ["monster_exp"]=12000 }, [50101]={ - ["monster_base"]=10015, + ["monster_base"]=10040, ["hp"]=50200000, ["atk"]=1010000, ["atk_times"]=3, @@ -6249,7 +6539,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [50201]={ - ["monster_base"]=10017, + ["monster_base"]=10039, ["hp"]=56900000, ["atk"]=1050000, ["atk_times"]=3, @@ -6261,7 +6551,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [50301]={ - ["monster_base"]=10014, + ["monster_base"]=10010, ["hp"]=60000000, ["atk"]=1080000, ["atk_times"]=3, @@ -6273,7 +6563,7 @@ local monster_chapter = { ["monster_exp"]=21000 }, [50401]={ - ["monster_base"]=10018, + ["monster_base"]=10039, ["hp"]=65000000, ["atk"]=1110000, ["atk_times"]=3, @@ -6285,7 +6575,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [50501]={ - ["monster_base"]=20008, + ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=126300000, ["atk"]=1160000, @@ -6295,10 +6585,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10017 + }, ["monster_exp"]=24000 }, [50601]={ - ["monster_base"]=10004, + ["monster_base"]=10010, ["hp"]=87200000, ["atk"]=1270000, ["atk_times"]=3, @@ -6310,7 +6603,7 @@ local monster_chapter = { ["monster_exp"]=15000 }, [50701]={ - ["monster_base"]=10002, + ["monster_base"]=10040, ["hp"]=92500000, ["atk"]=1300000, ["atk_times"]=3, @@ -6322,7 +6615,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [50801]={ - ["monster_base"]=10011, + ["monster_base"]=10038, ["hp"]=101800000, ["atk"]=1340000, ["atk_times"]=3, @@ -6334,7 +6627,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [50901]={ - ["monster_base"]=10013, + ["monster_base"]=10032, ["hp"]=111000000, ["atk"]=1380000, ["atk_times"]=3, @@ -6346,7 +6639,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [51001]={ - ["monster_base"]=20003, + ["monster_base"]=20018, ["is_boss"]=2, ["hp"]=195000000, ["atk"]=2000000, @@ -6366,7 +6659,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [51101]={ - ["monster_base"]=10012, + ["monster_base"]=10033, ["hp"]=15500000, ["atk"]=770000, ["atk_times"]=3, @@ -6378,7 +6671,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [51201]={ - ["monster_base"]=10017, + ["monster_base"]=10029, ["hp"]=21900000, ["atk"]=800000, ["atk_times"]=3, @@ -6390,7 +6683,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [51301]={ - ["monster_base"]=10014, + ["monster_base"]=10031, ["hp"]=24600000, ["atk"]=840000, ["atk_times"]=3, @@ -6402,7 +6695,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [51401]={ - ["monster_base"]=10016, + ["monster_base"]=10028, ["hp"]=32600000, ["atk"]=880000, ["atk_times"]=3, @@ -6414,7 +6707,7 @@ local monster_chapter = { ["monster_exp"]=19000 }, [51501]={ - ["monster_base"]=20005, + ["monster_base"]=20013, ["is_boss"]=1, ["hp"]=45300000, ["atk"]=940000, @@ -6424,10 +6717,14 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10049, + 10050 + }, ["monster_exp"]=18000 }, [51601]={ - ["monster_base"]=10007, + ["monster_base"]=10030, ["hp"]=30800000, ["atk"]=900000, ["atk_times"]=3, @@ -6439,7 +6736,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [51701]={ - ["monster_base"]=10011, + ["monster_base"]=10029, ["hp"]=34500000, ["atk"]=1010000, ["atk_times"]=3, @@ -6451,7 +6748,7 @@ local monster_chapter = { ["monster_exp"]=10000 }, [51801]={ - ["monster_base"]=10012, + ["monster_base"]=10033, ["hp"]=39900000, ["atk"]=940000, ["atk_times"]=3, @@ -6463,7 +6760,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [51901]={ - ["monster_base"]=10016, + ["monster_base"]=10054, ["hp"]=45300000, ["atk"]=1050000, ["atk_times"]=3, @@ -6475,7 +6772,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [52001]={ - ["monster_base"]=20007, + ["monster_base"]=20010, ["is_boss"]=1, ["hp"]=86700000, ["atk"]=1050000, @@ -6485,10 +6782,18 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10041 + }, + ["passive_skill"]={ + 10008, + 10009, + 10013 + }, ["monster_exp"]=12000 }, [52101]={ - ["monster_base"]=10015, + ["monster_base"]=10053, ["hp"]=50200000, ["atk"]=1010000, ["atk_times"]=3, @@ -6500,7 +6805,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [52201]={ - ["monster_base"]=10017, + ["monster_base"]=10033, ["hp"]=56900000, ["atk"]=1050000, ["atk_times"]=3, @@ -6512,7 +6817,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [52301]={ - ["monster_base"]=10014, + ["monster_base"]=10029, ["hp"]=60000000, ["atk"]=1080000, ["atk_times"]=3, @@ -6524,7 +6829,7 @@ local monster_chapter = { ["monster_exp"]=21000 }, [52401]={ - ["monster_base"]=10018, + ["monster_base"]=10054, ["hp"]=65000000, ["atk"]=1110000, ["atk_times"]=3, @@ -6536,7 +6841,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [52501]={ - ["monster_base"]=20008, + ["monster_base"]=20020, ["is_boss"]=1, ["hp"]=126300000, ["atk"]=1160000, @@ -6546,10 +6851,17 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10047 + }, + ["passive_skill"]={ + 10048, + 10013 + }, ["monster_exp"]=24000 }, [52601]={ - ["monster_base"]=10004, + ["monster_base"]=10053, ["hp"]=87200000, ["atk"]=1270000, ["atk_times"]=3, @@ -6561,7 +6873,7 @@ local monster_chapter = { ["monster_exp"]=15000 }, [52701]={ - ["monster_base"]=10002, + ["monster_base"]=10028, ["hp"]=92500000, ["atk"]=1300000, ["atk_times"]=3, @@ -6573,7 +6885,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [52801]={ - ["monster_base"]=10011, + ["monster_base"]=10046, ["hp"]=101800000, ["atk"]=1340000, ["atk_times"]=3, @@ -6585,7 +6897,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [52901]={ - ["monster_base"]=10013, + ["monster_base"]=10058, ["hp"]=111000000, ["atk"]=1380000, ["atk_times"]=3, @@ -6597,7 +6909,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [53001]={ - ["monster_base"]=20003, + ["monster_base"]=20032, ["is_boss"]=2, ["hp"]=195000000, ["atk"]=2000000, @@ -6620,7 +6932,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [53101]={ - ["monster_base"]=10012, + ["monster_base"]=10057, ["hp"]=15500000, ["atk"]=770000, ["atk_times"]=3, @@ -6632,7 +6944,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [53201]={ - ["monster_base"]=10017, + ["monster_base"]=10046, ["hp"]=21900000, ["atk"]=800000, ["atk_times"]=3, @@ -6644,7 +6956,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [53301]={ - ["monster_base"]=10014, + ["monster_base"]=10052, ["hp"]=24600000, ["atk"]=840000, ["atk_times"]=3, @@ -6656,7 +6968,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [53401]={ - ["monster_base"]=10016, + ["monster_base"]=10029, ["hp"]=32600000, ["atk"]=880000, ["atk_times"]=3, @@ -6668,7 +6980,7 @@ local monster_chapter = { ["monster_exp"]=19000 }, [53501]={ - ["monster_base"]=20005, + ["monster_base"]=20008, ["is_boss"]=1, ["hp"]=45300000, ["atk"]=940000, @@ -6678,10 +6990,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10032 + }, ["monster_exp"]=18000 }, [53601]={ - ["monster_base"]=10007, + ["monster_base"]=10058, ["hp"]=30800000, ["atk"]=900000, ["atk_times"]=3, @@ -6693,7 +7008,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [53701]={ - ["monster_base"]=10011, + ["monster_base"]=10033, ["hp"]=34500000, ["atk"]=1010000, ["atk_times"]=3, @@ -6705,7 +7020,7 @@ local monster_chapter = { ["monster_exp"]=10000 }, [53801]={ - ["monster_base"]=10012, + ["monster_base"]=10044, ["hp"]=39900000, ["atk"]=940000, ["atk_times"]=3, @@ -6717,7 +7032,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [53901]={ - ["monster_base"]=10016, + ["monster_base"]=10053, ["hp"]=45300000, ["atk"]=1050000, ["atk_times"]=3, @@ -6729,7 +7044,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [54001]={ - ["monster_base"]=20007, + ["monster_base"]=20011, ["is_boss"]=1, ["hp"]=86700000, ["atk"]=1050000, @@ -6742,7 +7057,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [54101]={ - ["monster_base"]=10015, + ["monster_base"]=10029, ["hp"]=50200000, ["atk"]=1010000, ["atk_times"]=3, @@ -6754,7 +7069,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [54201]={ - ["monster_base"]=10017, + ["monster_base"]=10058, ["hp"]=56900000, ["atk"]=1050000, ["atk_times"]=3, @@ -6766,7 +7081,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [54301]={ - ["monster_base"]=10014, + ["monster_base"]=10052, ["hp"]=60000000, ["atk"]=1080000, ["atk_times"]=3, @@ -6778,7 +7093,7 @@ local monster_chapter = { ["monster_exp"]=21000 }, [54401]={ - ["monster_base"]=10018, + ["monster_base"]=10054, ["hp"]=65000000, ["atk"]=1110000, ["atk_times"]=3, @@ -6790,7 +7105,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [54501]={ - ["monster_base"]=20008, + ["monster_base"]=20005, ["is_boss"]=1, ["hp"]=126300000, ["atk"]=1160000, @@ -6800,10 +7115,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10024 + }, ["monster_exp"]=24000 }, [54601]={ - ["monster_base"]=10004, + ["monster_base"]=10053, ["hp"]=87200000, ["atk"]=1270000, ["atk_times"]=3, @@ -6815,7 +7133,7 @@ local monster_chapter = { ["monster_exp"]=15000 }, [54701]={ - ["monster_base"]=10002, + ["monster_base"]=10028, ["hp"]=92500000, ["atk"]=1300000, ["atk_times"]=3, @@ -6827,7 +7145,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [54801]={ - ["monster_base"]=10011, + ["monster_base"]=10046, ["hp"]=101800000, ["atk"]=1340000, ["atk_times"]=3, @@ -6839,7 +7157,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [54901]={ - ["monster_base"]=10013, + ["monster_base"]=10057, ["hp"]=111000000, ["atk"]=1380000, ["atk_times"]=3, @@ -6851,7 +7169,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [55001]={ - ["monster_base"]=20003, + ["monster_base"]=20032, ["is_boss"]=2, ["hp"]=195000000, ["atk"]=2000000, @@ -6875,7 +7193,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [55101]={ - ["monster_base"]=20003, + ["monster_base"]=20030, ["is_boss"]=2, ["hp"]=195000000, ["atk"]=2000000, @@ -6895,7 +7213,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [55201]={ - ["monster_base"]=10012, + ["monster_base"]=10056, ["hp"]=15500000, ["atk"]=770000, ["atk_times"]=3, @@ -6907,7 +7225,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [55301]={ - ["monster_base"]=10017, + ["monster_base"]=10009, ["hp"]=21900000, ["atk"]=800000, ["atk_times"]=3, @@ -6919,7 +7237,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [55401]={ - ["monster_base"]=10014, + ["monster_base"]=10010, ["hp"]=24600000, ["atk"]=840000, ["atk_times"]=3, @@ -6931,7 +7249,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [55501]={ - ["monster_base"]=10016, + ["monster_base"]=10039, ["hp"]=32600000, ["atk"]=880000, ["atk_times"]=3, @@ -6943,7 +7261,7 @@ local monster_chapter = { ["monster_exp"]=19000 }, [55601]={ - ["monster_base"]=20005, + ["monster_base"]=20012, ["is_boss"]=1, ["hp"]=45300000, ["atk"]=940000, @@ -6953,10 +7271,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10017 + }, ["monster_exp"]=18000 }, [55701]={ - ["monster_base"]=10007, + ["monster_base"]=10009, ["hp"]=30800000, ["atk"]=900000, ["atk_times"]=3, @@ -6968,7 +7289,7 @@ local monster_chapter = { ["monster_exp"]=9000 }, [55801]={ - ["monster_base"]=10011, + ["monster_base"]=10055, ["hp"]=34500000, ["atk"]=1010000, ["atk_times"]=3, @@ -6980,7 +7301,7 @@ local monster_chapter = { ["monster_exp"]=10000 }, [55901]={ - ["monster_base"]=10012, + ["monster_base"]=10046, ["hp"]=39900000, ["atk"]=940000, ["atk_times"]=3, @@ -6992,7 +7313,7 @@ local monster_chapter = { ["monster_exp"]=11000 }, [56001]={ - ["monster_base"]=10016, + ["monster_base"]=10057, ["hp"]=45300000, ["atk"]=1050000, ["atk_times"]=3, @@ -7004,7 +7325,7 @@ local monster_chapter = { ["monster_exp"]=12000 }, [56101]={ - ["monster_base"]=20007, + ["monster_base"]=20030, ["is_boss"]=1, ["hp"]=86700000, ["atk"]=1050000, @@ -7014,10 +7335,17 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10056, + 10057 + }, + ["passive_skill"]={ + 10014 + }, ["monster_exp"]=12000 }, [56201]={ - ["monster_base"]=10015, + ["monster_base"]=10058, ["hp"]=50200000, ["atk"]=1010000, ["atk_times"]=3, @@ -7029,7 +7357,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [56301]={ - ["monster_base"]=10017, + ["monster_base"]=10051, ["hp"]=56900000, ["atk"]=1050000, ["atk_times"]=3, @@ -7041,7 +7369,7 @@ local monster_chapter = { ["monster_exp"]=18000 }, [56401]={ - ["monster_base"]=10014, + ["monster_base"]=10053, ["hp"]=60000000, ["atk"]=1080000, ["atk_times"]=3, @@ -7053,7 +7381,7 @@ local monster_chapter = { ["monster_exp"]=21000 }, [56501]={ - ["monster_base"]=10018, + ["monster_base"]=10055, ["hp"]=65000000, ["atk"]=1110000, ["atk_times"]=3, @@ -7065,7 +7393,7 @@ local monster_chapter = { ["monster_exp"]=22000 }, [56601]={ - ["monster_base"]=20008, + ["monster_base"]=20029, ["is_boss"]=1, ["hp"]=126300000, ["atk"]=1160000, @@ -7075,10 +7403,13 @@ local monster_chapter = { 10002, 10003 }, + ["skill"]={ + 10018 + }, ["monster_exp"]=24000 }, [56701]={ - ["monster_base"]=10004, + ["monster_base"]=10058, ["hp"]=87200000, ["atk"]=1270000, ["atk_times"]=3, @@ -7090,7 +7421,7 @@ local monster_chapter = { ["monster_exp"]=15000 }, [56801]={ - ["monster_base"]=10002, + ["monster_base"]=10051, ["hp"]=92500000, ["atk"]=1300000, ["atk_times"]=3, @@ -7102,7 +7433,7 @@ local monster_chapter = { ["monster_exp"]=16000 }, [56901]={ - ["monster_base"]=10011, + ["monster_base"]=10055, ["hp"]=101800000, ["atk"]=1340000, ["atk_times"]=3, @@ -7114,7 +7445,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [57001]={ - ["monster_base"]=10013, + ["monster_base"]=10057, ["hp"]=111000000, ["atk"]=1380000, ["atk_times"]=3, @@ -7126,7 +7457,7 @@ local monster_chapter = { ["monster_exp"]=17000 }, [57101]={ - ["monster_base"]=20003, + ["monster_base"]=20031, ["is_boss"]=2, ["hp"]=195000000, ["atk"]=2000000, diff --git a/lua/app/config/skill.lua b/lua/app/config/skill.lua index c84179fd..03e5ac63 100644 --- a/lua/app/config/skill.lua +++ b/lua/app/config/skill.lua @@ -1079,7 +1079,19 @@ local skill = { ["obj"]=2 }, [1400126]={ - ["position"]=1 + ["position"]=1, + ["effect_type"]=2, + ["trigger"]=6, + ["effect"]={ + { + ["type"]="hurt_red", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["fx_target"]=4 }, [2200110]={ ["position"]=2, diff --git a/lua/app/config/strings/cn/act_sevenday_quest.lua b/lua/app/config/strings/cn/act_sevenday_quest.lua new file mode 100644 index 00000000..40aed422 --- /dev/null +++ b/lua/app/config/strings/cn/act_sevenday_quest.lua @@ -0,0 +1,225 @@ +local act_sevenday_quest = { + [1]={ + ["desc"]="累计签到1天" + }, + [2]={ + ["desc"]="通过主线章节2" + }, + [3]={ + ["desc"]="开启1次普通宝箱" + }, + [4]={ + ["desc"]="英雄最高等级达到3" + }, + [5]={ + ["desc"]="拥有5个英雄" + }, + [6]={ + ["desc"]="等级达到3" + }, + [7]={ + ["desc"]="消耗体力50点" + }, + [8]={ + ["desc"]="累计获取钻石50个" + }, + [9]={ + ["desc"]="累计获取金币1000个" + }, + [10]={ + ["desc"]="收看5次广告" + }, + [11]={ + ["desc"]="累计签到2天" + }, + [12]={ + ["desc"]="通过主线章节4" + }, + [13]={ + ["desc"]="开启3次普通宝箱" + }, + [14]={ + ["desc"]="英雄最高等级达到5" + }, + [15]={ + ["desc"]="拥有7个英雄" + }, + [16]={ + ["desc"]="等级达到7" + }, + [17]={ + ["desc"]="消耗体力100点" + }, + [18]={ + ["desc"]="累计获取钻石400个" + }, + [19]={ + ["desc"]="累计获取金币3000个" + }, + [20]={ + ["desc"]="收看10次广告" + }, + [21]={ + ["desc"]="累计签到3天" + }, + [22]={ + ["desc"]="通过主线章节6" + }, + [23]={ + ["desc"]="开启1次精致宝箱" + }, + [24]={ + ["desc"]="拥有9个英雄" + }, + [25]={ + ["desc"]="等级达到10" + }, + [26]={ + ["desc"]="消耗体力150点" + }, + [27]={ + ["desc"]="累计获取钻石800个" + }, + [28]={ + ["desc"]="累计获取金币6000个" + }, + [29]={ + ["desc"]="战斗中连接6消100次" + }, + [30]={ + ["desc"]="收看15次广告" + }, + [31]={ + ["desc"]="累计签到4天" + }, + [32]={ + ["desc"]="通过主线章节8" + }, + [33]={ + ["desc"]="开启2次精致宝箱" + }, + [34]={ + ["desc"]="英雄最高等级达到6" + }, + [35]={ + ["desc"]="拥有11个英雄" + }, + [36]={ + ["desc"]="等级达到13" + }, + [37]={ + ["desc"]="消耗体力200点" + }, + [38]={ + ["desc"]="累计获取钻石1000个" + }, + [39]={ + ["desc"]="累计获取金币10000个" + }, + [40]={ + ["desc"]="收看20次广告" + }, + [41]={ + ["desc"]="累计签到5天" + }, + [42]={ + ["desc"]="通过主线章节10" + }, + [43]={ + ["desc"]="开启1次珍贵宝箱" + }, + [44]={ + ["desc"]="英雄最高等级达到7" + }, + [45]={ + ["desc"]="拥有13个英雄" + }, + [46]={ + ["desc"]="等级达到16" + }, + [47]={ + ["desc"]="消耗体力300点" + }, + [48]={ + ["desc"]="累计获取钻石1500个" + }, + [49]={ + ["desc"]="累计获取金币12000个" + }, + [50]={ + ["desc"]="击杀小怪400个" + }, + [51]={ + ["desc"]="收看25次广告" + }, + [52]={ + ["desc"]="累计签到6天" + }, + [53]={ + ["desc"]="通过主线章节12" + }, + [54]={ + ["desc"]="开启3次精致宝箱" + }, + [55]={ + ["desc"]="拥有15个英雄" + }, + [56]={ + ["desc"]="等级达到18" + }, + [57]={ + ["desc"]="消耗体力400点" + }, + [58]={ + ["desc"]="累计获取钻石2000个" + }, + [59]={ + ["desc"]="累计获取金币15000个" + }, + [60]={ + ["desc"]="战斗中连接8消100次" + }, + [61]={ + ["desc"]="收看30次广告" + }, + [62]={ + ["desc"]="击杀首领150个" + }, + [63]={ + ["desc"]="累计签到7天" + }, + [64]={ + ["desc"]="通过主线章节14" + }, + [65]={ + ["desc"]="开启2次珍贵宝箱" + }, + [66]={ + ["desc"]="英雄最高等级达到8" + }, + [67]={ + ["desc"]="拥有16个英雄" + }, + [68]={ + ["desc"]="等级达到21" + }, + [69]={ + ["desc"]="消耗体力500点" + }, + [70]={ + ["desc"]="累计获取钻石3000个" + }, + [71]={ + ["desc"]="累计获取金币20000个" + }, + [72]={ + ["desc"]="战斗中连接10消40次" + }, + [73]={ + ["desc"]="收看40次广告" + } +} +local config = { +data=act_sevenday_quest,count=73 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/cn/act_sevenday_quest.lua.meta b/lua/app/config/strings/cn/act_sevenday_quest.lua.meta new file mode 100644 index 00000000..f3838d83 --- /dev/null +++ b/lua/app/config/strings/cn/act_sevenday_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 4a7ae6bb84740ce4c91ef3a86a67974f +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/cn/global.lua b/lua/app/config/strings/cn/global.lua index 85a10727..0f2008af 100644 --- a/lua/app/config/strings/cn/global.lua +++ b/lua/app/config/strings/cn/global.lua @@ -133,6 +133,8 @@ local localization_global = ["SIDE_BAR_FULL"] = "MAX", ["DAILY_CHALLENGE"] = "每日挑战", ["LEVEL_FUND_DESC_1"] = "购买成长基金{0}后,可通过提升等级获得钻石。\n多档基金可同时购买", + ["BUFF_DESC"] = "BUFF", + ["DAILY_CHALLENGE_DESC_1"] = "今日剩余挑战次数不足", } return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/cn/task_daily_challenge.lua b/lua/app/config/strings/cn/task_daily_challenge.lua index ba848a2f..b83a1db6 100644 --- a/lua/app/config/strings/cn/task_daily_challenge.lua +++ b/lua/app/config/strings/cn/task_daily_challenge.lua @@ -3,25 +3,25 @@ local task_daily_challenge = { ["desc"]="通关每日挑战" }, [2]={ - ["desc"]="使用某英雄通关每日挑战" + ["desc"]="使用{0}通关每日挑战" }, [3]={ - ["desc"]="通关时,战斗中超过10连击X次" + ["desc"]="通关时,战斗中超过10连击{0}次" }, [4]={ - ["desc"]="通关时,战斗中超过连接8消X次" + ["desc"]="通关时,战斗中超过连接8消{0}次" }, [5]={ - ["desc"]="通关时某颜色元素英雄释放技能y次" + ["desc"]="通关时{0}英雄释放技能{1}次" }, [6]={ - ["desc"]="X回合内击败最终首领" + ["desc"]="{0}回合内击败最终首领" }, [7]={ - ["desc"]="通关时,某英雄造成伤害占比超过X%" + ["desc"]="通关时,{0}造成伤害占比超过{1}%" }, [8]={ - ["desc"]="通关时,某颜色元素英雄造成伤害占比超过X%" + ["desc"]="通关时,{0}造成伤害占比超过{1}%" } } local config = { diff --git a/lua/app/config/strings/de/act_sevenday_quest.lua b/lua/app/config/strings/de/act_sevenday_quest.lua new file mode 100644 index 00000000..0633327b --- /dev/null +++ b/lua/app/config/strings/de/act_sevenday_quest.lua @@ -0,0 +1,225 @@ +local act_sevenday_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + }, + [71]={ + + }, + [72]={ + + }, + [73]={ + + } +} +local config = { +data=act_sevenday_quest,count=73 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/de/act_sevenday_quest.lua.meta b/lua/app/config/strings/de/act_sevenday_quest.lua.meta new file mode 100644 index 00000000..5b221876 --- /dev/null +++ b/lua/app/config/strings/de/act_sevenday_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: cf1163060a9584e4592b7744e2a8786d +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/en/act_sevenday_quest.lua b/lua/app/config/strings/en/act_sevenday_quest.lua new file mode 100644 index 00000000..0633327b --- /dev/null +++ b/lua/app/config/strings/en/act_sevenday_quest.lua @@ -0,0 +1,225 @@ +local act_sevenday_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + }, + [71]={ + + }, + [72]={ + + }, + [73]={ + + } +} +local config = { +data=act_sevenday_quest,count=73 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/en/act_sevenday_quest.lua.meta b/lua/app/config/strings/en/act_sevenday_quest.lua.meta new file mode 100644 index 00000000..cf5ffcd7 --- /dev/null +++ b/lua/app/config/strings/en/act_sevenday_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 8d1f5600fa797854290ed1eca3ec3f45 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/fr/act_sevenday_quest.lua b/lua/app/config/strings/fr/act_sevenday_quest.lua new file mode 100644 index 00000000..0633327b --- /dev/null +++ b/lua/app/config/strings/fr/act_sevenday_quest.lua @@ -0,0 +1,225 @@ +local act_sevenday_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + }, + [71]={ + + }, + [72]={ + + }, + [73]={ + + } +} +local config = { +data=act_sevenday_quest,count=73 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/fr/act_sevenday_quest.lua.meta b/lua/app/config/strings/fr/act_sevenday_quest.lua.meta new file mode 100644 index 00000000..b705dce1 --- /dev/null +++ b/lua/app/config/strings/fr/act_sevenday_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 4cf41c65b215c15449c21f07c6d9f107 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/id/act_sevenday_quest.lua b/lua/app/config/strings/id/act_sevenday_quest.lua new file mode 100644 index 00000000..0633327b --- /dev/null +++ b/lua/app/config/strings/id/act_sevenday_quest.lua @@ -0,0 +1,225 @@ +local act_sevenday_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + }, + [71]={ + + }, + [72]={ + + }, + [73]={ + + } +} +local config = { +data=act_sevenday_quest,count=73 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/id/act_sevenday_quest.lua.meta b/lua/app/config/strings/id/act_sevenday_quest.lua.meta new file mode 100644 index 00000000..8206f688 --- /dev/null +++ b/lua/app/config/strings/id/act_sevenday_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: af7d69c396c5f0944aab0743e6e31421 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ja/act_sevenday_quest.lua b/lua/app/config/strings/ja/act_sevenday_quest.lua new file mode 100644 index 00000000..0633327b --- /dev/null +++ b/lua/app/config/strings/ja/act_sevenday_quest.lua @@ -0,0 +1,225 @@ +local act_sevenday_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + }, + [71]={ + + }, + [72]={ + + }, + [73]={ + + } +} +local config = { +data=act_sevenday_quest,count=73 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/act_sevenday_quest.lua.meta b/lua/app/config/strings/ja/act_sevenday_quest.lua.meta new file mode 100644 index 00000000..260222c0 --- /dev/null +++ b/lua/app/config/strings/ja/act_sevenday_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: f37241374b11a3e4e847398d7b2dab69 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ko/act_sevenday_quest.lua b/lua/app/config/strings/ko/act_sevenday_quest.lua new file mode 100644 index 00000000..0633327b --- /dev/null +++ b/lua/app/config/strings/ko/act_sevenday_quest.lua @@ -0,0 +1,225 @@ +local act_sevenday_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + }, + [71]={ + + }, + [72]={ + + }, + [73]={ + + } +} +local config = { +data=act_sevenday_quest,count=73 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ko/act_sevenday_quest.lua.meta b/lua/app/config/strings/ko/act_sevenday_quest.lua.meta new file mode 100644 index 00000000..1e448bdd --- /dev/null +++ b/lua/app/config/strings/ko/act_sevenday_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 06c613d9c819596448094903d121dcc7 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/pt/act_sevenday_quest.lua b/lua/app/config/strings/pt/act_sevenday_quest.lua new file mode 100644 index 00000000..0633327b --- /dev/null +++ b/lua/app/config/strings/pt/act_sevenday_quest.lua @@ -0,0 +1,225 @@ +local act_sevenday_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + }, + [71]={ + + }, + [72]={ + + }, + [73]={ + + } +} +local config = { +data=act_sevenday_quest,count=73 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/pt/act_sevenday_quest.lua.meta b/lua/app/config/strings/pt/act_sevenday_quest.lua.meta new file mode 100644 index 00000000..f95ff33a --- /dev/null +++ b/lua/app/config/strings/pt/act_sevenday_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 3c0426add8f96b546ba4bd93c1fa3094 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/th/act_sevenday_quest.lua b/lua/app/config/strings/th/act_sevenday_quest.lua new file mode 100644 index 00000000..0633327b --- /dev/null +++ b/lua/app/config/strings/th/act_sevenday_quest.lua @@ -0,0 +1,225 @@ +local act_sevenday_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + }, + [71]={ + + }, + [72]={ + + }, + [73]={ + + } +} +local config = { +data=act_sevenday_quest,count=73 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/th/act_sevenday_quest.lua.meta b/lua/app/config/strings/th/act_sevenday_quest.lua.meta new file mode 100644 index 00000000..6e9999b0 --- /dev/null +++ b/lua/app/config/strings/th/act_sevenday_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 33485f7fd33d3344f9dde1ea540435c6 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/vi/act_sevenday_quest.lua b/lua/app/config/strings/vi/act_sevenday_quest.lua new file mode 100644 index 00000000..0633327b --- /dev/null +++ b/lua/app/config/strings/vi/act_sevenday_quest.lua @@ -0,0 +1,225 @@ +local act_sevenday_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + }, + [71]={ + + }, + [72]={ + + }, + [73]={ + + } +} +local config = { +data=act_sevenday_quest,count=73 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/vi/act_sevenday_quest.lua.meta b/lua/app/config/strings/vi/act_sevenday_quest.lua.meta new file mode 100644 index 00000000..fd5b07fe --- /dev/null +++ b/lua/app/config/strings/vi/act_sevenday_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: ccd40ebad42aff14481fcc3a6501edd7 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/zh/act_sevenday_quest.lua b/lua/app/config/strings/zh/act_sevenday_quest.lua new file mode 100644 index 00000000..40aed422 --- /dev/null +++ b/lua/app/config/strings/zh/act_sevenday_quest.lua @@ -0,0 +1,225 @@ +local act_sevenday_quest = { + [1]={ + ["desc"]="累计签到1天" + }, + [2]={ + ["desc"]="通过主线章节2" + }, + [3]={ + ["desc"]="开启1次普通宝箱" + }, + [4]={ + ["desc"]="英雄最高等级达到3" + }, + [5]={ + ["desc"]="拥有5个英雄" + }, + [6]={ + ["desc"]="等级达到3" + }, + [7]={ + ["desc"]="消耗体力50点" + }, + [8]={ + ["desc"]="累计获取钻石50个" + }, + [9]={ + ["desc"]="累计获取金币1000个" + }, + [10]={ + ["desc"]="收看5次广告" + }, + [11]={ + ["desc"]="累计签到2天" + }, + [12]={ + ["desc"]="通过主线章节4" + }, + [13]={ + ["desc"]="开启3次普通宝箱" + }, + [14]={ + ["desc"]="英雄最高等级达到5" + }, + [15]={ + ["desc"]="拥有7个英雄" + }, + [16]={ + ["desc"]="等级达到7" + }, + [17]={ + ["desc"]="消耗体力100点" + }, + [18]={ + ["desc"]="累计获取钻石400个" + }, + [19]={ + ["desc"]="累计获取金币3000个" + }, + [20]={ + ["desc"]="收看10次广告" + }, + [21]={ + ["desc"]="累计签到3天" + }, + [22]={ + ["desc"]="通过主线章节6" + }, + [23]={ + ["desc"]="开启1次精致宝箱" + }, + [24]={ + ["desc"]="拥有9个英雄" + }, + [25]={ + ["desc"]="等级达到10" + }, + [26]={ + ["desc"]="消耗体力150点" + }, + [27]={ + ["desc"]="累计获取钻石800个" + }, + [28]={ + ["desc"]="累计获取金币6000个" + }, + [29]={ + ["desc"]="战斗中连接6消100次" + }, + [30]={ + ["desc"]="收看15次广告" + }, + [31]={ + ["desc"]="累计签到4天" + }, + [32]={ + ["desc"]="通过主线章节8" + }, + [33]={ + ["desc"]="开启2次精致宝箱" + }, + [34]={ + ["desc"]="英雄最高等级达到6" + }, + [35]={ + ["desc"]="拥有11个英雄" + }, + [36]={ + ["desc"]="等级达到13" + }, + [37]={ + ["desc"]="消耗体力200点" + }, + [38]={ + ["desc"]="累计获取钻石1000个" + }, + [39]={ + ["desc"]="累计获取金币10000个" + }, + [40]={ + ["desc"]="收看20次广告" + }, + [41]={ + ["desc"]="累计签到5天" + }, + [42]={ + ["desc"]="通过主线章节10" + }, + [43]={ + ["desc"]="开启1次珍贵宝箱" + }, + [44]={ + ["desc"]="英雄最高等级达到7" + }, + [45]={ + ["desc"]="拥有13个英雄" + }, + [46]={ + ["desc"]="等级达到16" + }, + [47]={ + ["desc"]="消耗体力300点" + }, + [48]={ + ["desc"]="累计获取钻石1500个" + }, + [49]={ + ["desc"]="累计获取金币12000个" + }, + [50]={ + ["desc"]="击杀小怪400个" + }, + [51]={ + ["desc"]="收看25次广告" + }, + [52]={ + ["desc"]="累计签到6天" + }, + [53]={ + ["desc"]="通过主线章节12" + }, + [54]={ + ["desc"]="开启3次精致宝箱" + }, + [55]={ + ["desc"]="拥有15个英雄" + }, + [56]={ + ["desc"]="等级达到18" + }, + [57]={ + ["desc"]="消耗体力400点" + }, + [58]={ + ["desc"]="累计获取钻石2000个" + }, + [59]={ + ["desc"]="累计获取金币15000个" + }, + [60]={ + ["desc"]="战斗中连接8消100次" + }, + [61]={ + ["desc"]="收看30次广告" + }, + [62]={ + ["desc"]="击杀首领150个" + }, + [63]={ + ["desc"]="累计签到7天" + }, + [64]={ + ["desc"]="通过主线章节14" + }, + [65]={ + ["desc"]="开启2次珍贵宝箱" + }, + [66]={ + ["desc"]="英雄最高等级达到8" + }, + [67]={ + ["desc"]="拥有16个英雄" + }, + [68]={ + ["desc"]="等级达到21" + }, + [69]={ + ["desc"]="消耗体力500点" + }, + [70]={ + ["desc"]="累计获取钻石3000个" + }, + [71]={ + ["desc"]="累计获取金币20000个" + }, + [72]={ + ["desc"]="战斗中连接10消40次" + }, + [73]={ + ["desc"]="收看40次广告" + } +} +local config = { +data=act_sevenday_quest,count=73 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/act_sevenday_quest.lua.meta b/lua/app/config/strings/zh/act_sevenday_quest.lua.meta new file mode 100644 index 00000000..6fb6f588 --- /dev/null +++ b/lua/app/config/strings/zh/act_sevenday_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: c4423273220b32a458415b29766e3a1e +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/module/activity/seven_day/seven_day_manager.lua b/lua/app/module/activity/seven_day/seven_day_manager.lua index 31e1c535..88f2f566 100644 --- a/lua/app/module/activity/seven_day/seven_day_manager.lua +++ b/lua/app/module/activity/seven_day/seven_day_manager.lua @@ -4,62 +4,14 @@ function SevenDayManager:showUI() UIManager:showUI("app/ui/activity/seven_day/seven_day_ui") end -function SevenDayManager:claimTask(ids) - if not DataManager.SevenDayData:getIsOpen() then - GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.ACTIVITY_OVER_DESC)) - return - end - - local rewards = {} - local tasks = {} - local specialType = {} - local specialTypeCount = 0 - - for _, id in ipairs(ids) do - if DataManager.SevenDayData:taskCollected(id) then - return - end - - if not DataManager.SevenDayData:canClaimTask(id) then - return - end - - local taskType = ModuleManager.TaskManager:dealTaskType(DataManager.SevenDayData:getTaskType(id), nil, true) - if taskType then - specialType[taskType] = true - specialTypeCount = specialTypeCount + 1 - end - - table.insert(rewards, GFunc.getRewardTableByReward(DataManager.SevenDayData:getTaskReward(id))) - tasks[id] = { - id = id, - -- progress = DataManager.SevenDayData:taskTotalCount(id), - progress = DataManager.SevenDayData:taskCount(id), - claimed = true - } - end - - local params = {ids = ids} - local responseData = { - rewards = rewards, - tasks = tasks, - } - - if specialTypeCount > 0 then - for tasktype, b in pairs(specialType) do - ModuleManager.TaskManager:dealTaskType(tasktype, function() - specialTypeCount = specialTypeCount - 1 - if specialTypeCount <= 0 then - self:sendMessage(ProtoMsgType.FromMsgEnum.TaskTutorRewardReq, {}, {}, self.claimTaskFinish, BIReport.ITEM_GET_TYPE.TUTORIAL_TASK) - end - end) - end - else - self:sendMessage(ProtoMsgType.FromMsgEnum.SevenDayTaskRewardReq, params, responseData, self.claimTaskFinish, BIReport.ITEM_GET_TYPE.SEVEN_DAY_TASK) - end +function SevenDayManager:claimTaskReward(id) + local args = { + ids = {id} + } + self:sendMessage(ProtoMsgType.FromMsgEnum.SevenDayTaskRewardReq, args, {}, self.onClaimTaskRewardFinish, BIReport.ITEM_GET_TYPE.SEVEN_DAY_TASK) end -function SevenDayManager:claimTaskFinish(result) +function SevenDayManager:onClaimTaskRewardFinish(result) if result.status == 0 then GFunc.showRewardBox(result.rewards) DataManager.SevenDayData:refreshTasks(result.tasks) diff --git a/lua/app/module/chapter/chapter_manager.lua b/lua/app/module/chapter/chapter_manager.lua index 8c51ee7f..6aba1fdb 100644 --- a/lua/app/module/chapter/chapter_manager.lua +++ b/lua/app/module/chapter/chapter_manager.lua @@ -104,6 +104,7 @@ function ChapterManager:endFightFinish(result) end -- 章节通关 标记可弹出章节礼包 DataManager.ShopData:markPopUpGiftForActChapterStore(newMaxChapter - 1) + ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_PASS_CHAPTER) end ModuleManager.TaskManager:addFightTaskProgress(reqData) diff --git a/lua/app/module/player/player_manager.lua b/lua/app/module/player/player_manager.lua index e5915907..43195b26 100644 --- a/lua/app/module/player/player_manager.lua +++ b/lua/app/module/player/player_manager.lua @@ -15,8 +15,12 @@ end function PlayerManager:onLevelUpFinish(result) if result.err_code == GConst.ERROR_STR.SUCCESS then local currLv = DataManager.PlayerData:getLv() + local diffLv = result.level - currLv DataManager.PlayerData:setLv(result.level, result.exp) - self:showPlayerUpUI(currLv, result.rewards) + if diffLv > 0 then + self:showPlayerUpUI(currLv, result.rewards) + ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_PLAYER_LV_REACH, diffLv) + end end end diff --git a/lua/app/module/task/task_const.lua b/lua/app/module/task/task_const.lua index 4015d2f0..250e0537 100644 --- a/lua/app/module/task/task_const.lua +++ b/lua/app/module/task/task_const.lua @@ -6,8 +6,8 @@ TaskConst.TASK_TYPE = { X_GEM_GOT = 3, X_GOLD_COST = 4, X_GEM_COST = 5, - X_OPEN_SHOP_BOX = 6, - X_OPEN_SHOP_EPIC_BOX = 7, + X_OPEN_SHOP_BOX = 6, -- 商城里的所有抽卡宝箱 + X_OPEN_SHOP_BOX_LEVEL_3 = 7, -- 商城里的3级抽卡宝箱 X_SKILL_BOX_GOT_IN_BATTLE = 8, X_BATTLE_VICTORY = 9, X_HERO_LV_UP = 10, @@ -21,7 +21,15 @@ TaskConst.TASK_TYPE = { X_USE_SKILL = 18, X_BATTLE_PASS_WAVE = 19, COMPLETED_DALY_TASK = 20, - DAILY_TASK_WATCH_AD_SPECIAL = 21 + DAILY_TASK_WATCH_AD_SPECIAL = 21, + X_LOGIN_DAY = 22, + X_PLAYER_LV_REACH = 23, + X_PASS_CHAPTER = 24, + X_HERO_MAX_LV_REACH = 25, -- 英雄最高等级达到X级 + X_VIT_COST = 26, -- 消耗体力 + X_NEW_HERO_GOT = 27, -- 拥有X个英雄 + X_OPEN_SHOP_BOX_LEVEL_1 = 28, -- 商城里的1级抽卡宝箱 + X_OPEN_SHOP_BOX_LEVEL_2 = 29, -- 商城里的2级抽卡宝箱 } return TaskConst \ No newline at end of file diff --git a/lua/app/module/task/task_manager.lua b/lua/app/module/task/task_manager.lua index 32d6a78c..ad54959e 100644 --- a/lua/app/module/task/task_manager.lua +++ b/lua/app/module/task/task_manager.lua @@ -180,8 +180,13 @@ function TaskManager:xBattleVictory() self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_BATTLE_VICTORY, 1) end -function TaskManager:xHeroLvUp() +function TaskManager:xHeroLvUp(level) self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_HERO_LV_UP, 1) + local maxLv = DataManager.TaskData:getMaxHeroLv() + if maxLv < level then + DataManager.TaskData:setMaxHeroLv(level) + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_HERO_MAX_LV_REACH, level - maxLv) + end end function TaskManager:xHeroFragmentGot(count) @@ -224,6 +229,45 @@ function TaskManager:xBattlePassWave(count) self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_BATTLE_PASS_WAVE, count) end +function TaskManager:xLoginDay() + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_LOGIN_DAY, 1) +end + +function TaskManager:xPlayerLvReach(count) + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_PLAYER_LV_REACH, count) +end + +function TaskManager:xPassChapter() + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_PASS_CHAPTER, 1) +end + +function TaskManager:xHeroMaxLvReach(maxlv) + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_HERO_MAX_LV_REACH, maxlv) +end + +function TaskManager:xVitCost(count) + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_VIT_COST, count) +end + +function TaskManager:xNewHeroGot() + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_NEW_HERO_GOT, 1) +end + +function TaskManager:xOpenShopBoxLevel1(count) + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_OPEN_SHOP_BOX_LEVEL_1, count) + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_OPEN_SHOP_BOX, count) +end + +function TaskManager:xOpenShopBoxLevel2(count) + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_OPEN_SHOP_BOX_LEVEL_2, count) + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_OPEN_SHOP_BOX, count) +end + +function TaskManager:xOpenShopBoxLevel3(count) + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_OPEN_SHOP_BOX_LEVEL_3, count) + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_OPEN_SHOP_BOX, count) +end + ---- 没有特殊说明,方法均返回任务增量 TaskManager.TYPE_DEAL_FUNC = { [GConst.TaskConst.TASK_TYPE.X_WATCH_AD] = TaskManager.xWatchAd, @@ -245,6 +289,14 @@ TaskManager.TYPE_DEAL_FUNC = { [GConst.TaskConst.TASK_TYPE.X_COMBO_TEN] = TaskManager.xComboTen, [GConst.TaskConst.TASK_TYPE.X_USE_SKILL] = TaskManager.xUseSkill, [GConst.TaskConst.TASK_TYPE.X_BATTLE_PASS_WAVE] = TaskManager.xBattlePassWave, + [GConst.TaskConst.TASK_TYPE.X_LOGIN_DAY] = TaskManager.xLoginDay, + [GConst.TaskConst.TASK_TYPE.X_PLAYER_LV_REACH] = TaskManager.xPlayerLvReach, + [GConst.TaskConst.TASK_TYPE.X_PASS_CHAPTER] = TaskManager.xPassChapter, + [GConst.TaskConst.TASK_TYPE.X_VIT_COST] = TaskManager.xVitCost, + [GConst.TaskConst.TASK_TYPE.X_NEW_HERO_GOT] = TaskManager.xNewHeroGot, + [GConst.TaskConst.TASK_TYPE.X_OPEN_SHOP_BOX_LEVEL_1] = TaskManager.xOpenShopBoxLevel1, + [GConst.TaskConst.TASK_TYPE.X_OPEN_SHOP_BOX_LEVEL_2] = TaskManager.xOpenShopBoxLevel2, + [GConst.TaskConst.TASK_TYPE.X_OPEN_SHOP_BOX_LEVEL_3] = TaskManager.xOpenShopBoxLevel3, } function TaskManager:taskGoto(taskType) @@ -261,34 +313,6 @@ TaskManager.gotoFunc = { [GConst.TaskConst.TASK_TYPE.X_KILL_MONSTER] = TaskManager.gotoMainUI, } -function TaskManager:getTaskDesc(type, count, totalCount) - local cfg = I18N:getConfig("task")[type] - if not cfg then - return GConst.EMPTY_STRING - end - - local str = "(" .. count .. "/" .. totalCount .. ")" - return I18N:getText("task", type, "desc", str) -end - -function TaskManager:getTaskTutorialDesc(type, count, totalCount) - local cfg = I18N:getConfig("task")[type] - if not cfg then - return GConst.EMPTY_STRING - end - - local endStr - if count then - endStr = "(" .. count .. "/" .. totalCount .. ")" - else - endStr = "(" .. totalCount .. ")" - end - - local str = I18N:getText("task", type, "tutorial_desc") .. endStr - return str -end - - function TaskManager:dealTaskType(taskType, callback, onlyGet) if taskType == GConst.TaskConst.TASK_TYPE.X_KILL_MONSTER then if onlyGet then diff --git a/lua/app/ui/activity/seven_day/cell/task_cell.lua b/lua/app/ui/activity/seven_day/cell/task_cell.lua index f0ffac86..137b8e28 100644 --- a/lua/app/ui/activity/seven_day/cell/task_cell.lua +++ b/lua/app/ui/activity/seven_day/cell/task_cell.lua @@ -1,11 +1,27 @@ local TaskCell = class("TaskCell", BaseCell) -local TIPS_ICON = { - "common_dec_9", - "common_dec_10" -} +function TaskCell:init() + local uiMap = self.baseObject:genAllChildren() + self.bg2 = uiMap["task_cell.bg.bg2"] + self.rewardCell = uiMap["task_cell.bg.reward_cell"]:addLuaComponent(GConst.TYPEOF_LUA_CLASS.REWARD_CELL) + self.desc = uiMap["task_cell.bg.desc"] + self.sliderOver = uiMap["task_cell.bg.slider_bg.slider_over"] + self.sliderComp = uiMap["task_cell.bg.slider_bg.slider"]:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_SLIDER) + self.sliderTx = uiMap["task_cell.bg.slider_bg.text"] + self.cliamBtn = uiMap["task_cell.bg.cliam_btn"] + self.cliamBtn:addClickListener(function() + if self.id and DataManager.SevenDayData:canClaimTask(self.id) then + ModuleManager.SevenDayManager:claimTaskReward(self.id) + end + end) + self.btnGreyImg = uiMap["task_cell.bg.cliam_btn.grey"] + self.mask = uiMap["task_cell.bg.mask"] + uiMap["task_cell.bg.cliam_btn.text"]:setText(I18N:getGlobalText(I18N.GlobalConst.BTN_CLAIM)) + uiMap["task_cell.bg.mask.text"]:setText(I18N:getGlobalText(I18N.GlobalConst.STR_COMPLETED)) +end -function TaskCell:refresh(id, idx, showAction) +function TaskCell:refresh(id) + self.id = id local canClaimTask = DataManager.SevenDayData:canClaimTask(id) local collected = DataManager.SevenDayData:taskCollected(id) local count = DataManager.SevenDayData:taskCount(id) @@ -13,97 +29,20 @@ function TaskCell:refresh(id, idx, showAction) if collected or count > totalCount then count = totalCount end - local isAdTask = false local reward = DataManager.SevenDayData:getTaskReward(id) + local taskDesc = DataManager.SevenDayData:getSevenDayTaskDesc(id) + self.desc:setText(taskDesc) - local uiMap = self:getUIMap() - local tipsIcon = uiMap["task_cell.bg.tips_icon"] - if canClaimTask or collected then - tipsIcon:setSprite(GConst.ATLAS_PATH.COMMON, TIPS_ICON[2]) - else - tipsIcon:setSprite(GConst.ATLAS_PATH.COMMON, TIPS_ICON[1]) - end - local desc = uiMap["task_cell.bg.desc"] - local progressStr = ModuleManager.TaskManager:getTaskDesc(DataManager.SevenDayData:getTaskType(id), count, totalCount) - desc:setText(progressStr) - - local sliderOver = uiMap["task_cell.bg.slider_bg.slider_over"] - sliderOver:setVisible(count >= totalCount) - - local sliderComp = uiMap["task_cell.bg.slider_bg.slider"] - sliderComp:setVisible(count < totalCount) - sliderComp:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_SLIDER).value = count / totalCount - - if not self.rewardCell then - self.rewardCell = CellManager:addCellComp(uiMap["task_cell.bg.reward_cell"], GConst.TYPEOF_LUA_CLASS.REWARD_CELL) - end + local isComplete = count >= totalCount + self.sliderOver:setVisible(isComplete) + self.bg2:setVisible(isComplete) + self.sliderComp.value = count / totalCount self.rewardCell:refreshByConfig(reward) - local claimBtn = uiMap["task_cell.bg.cliam_btn"] - claimBtn:addClickListener(function() - local list = DataManager.SevenDayData:getTaskListByDay(DataManager.SevenDayData:getTaskDay(id)) - local ids = {} - for _, taskId in ipairs(list) do - if DataManager.SevenDayData:canClaimTask(taskId) then - table.insert(ids, taskId) - end - end - if not ids[1] then - return - end - ModuleManager.SevenDayManager:claimTask(ids) - end) + self.sliderTx:setText(count .. "/" .. totalCount) - local claimAdIcon = uiMap["task_cell.bg.cliam_btn.icon"] - GFunc.setAdsSprite(claimAdIcon) - claimAdIcon:setVisible(isAdTask) + self.btnGreyImg:setVisible(not canClaimTask) - local claimBtntx = uiMap["task_cell.bg.cliam_btn.tx"] - if isAdTask then - claimBtntx:setText(GConst.EMPTY_STRING) - else - claimBtntx:setText(I18N:getGlobalText(I18N.GlobalConst.GET_REWARDS_1)) - end - - local greyBtn = uiMap["task_cell.bg.grey_btn"] - greyBtn:setVisible(not canClaimTask) - - local greyAdIcon = uiMap["task_cell.bg.grey_btn.icon"] - GFunc.setAdsSprite(greyAdIcon, true) - greyAdIcon:setVisible(isAdTask) - - local greyBtntx = uiMap["task_cell.bg.grey_btn.tx"] - if isAdTask then - greyBtntx:setText(GConst.EMPTY_STRING) - else - greyBtntx:setText(I18N:getGlobalText(I18N.GlobalConst.GET_REWARDS_1)) - end - - if collected then - greyAdIcon:setVisible(false) - greyBtntx:setText(I18N:getGlobalText(I18N.GlobalConst.BTN_DONE)) - end - - local mask = uiMap["task_cell.bg.mask"] - mask:setVisible(collected) - - local maskTips = uiMap["task_cell.bg.mask.tx"] - maskTips:setText(I18N:getGlobalText(I18N.GlobalConst.DAILY_TASK_DESC_2)) - - local overBg = uiMap["task_cell.bg.bg2"] - overBg:setVisible(count >= totalCount) - - local bg = uiMap["task_cell.bg"] - if not bg.aniSeq then - if showAction then - if bg.aniSeq then - bg:setAnchoredPositionX(0) - else - GFunc.createListMoveXAction(bg, (idx - 1)*0.1, 720, -100, 0) - end - else - bg:setAnchoredPositionX(0) - end - end + self.mask:setVisible(collected) end return TaskCell \ No newline at end of file diff --git a/lua/app/ui/activity/seven_day/seven_day_ui.lua b/lua/app/ui/activity/seven_day/seven_day_ui.lua index 11d7e23c..b4e2d518 100644 --- a/lua/app/ui/activity/seven_day/seven_day_ui.lua +++ b/lua/app/ui/activity/seven_day/seven_day_ui.lua @@ -6,11 +6,166 @@ function SevenDayUI:getPrefabPath() return "assets/prefabs/ui/activity/seven_day/seven_day_ui.prefab" end -function SevenDayUI:ctor() - self.day = 1 -- 默认 +function SevenDayUI:getCurrencyParams() + if self.currencyParams == nil then + self.currencyParams = { + itemIds = { + GConst.ItemConst.ITEM_ID_GOLD, + GConst.ItemConst.ITEM_ID_GEM, + GConst.ItemConst.ITEM_ID_VIT, + }, + showType = GConst.CURRENCY_TYPE.HORIZONTAL + } + end + return self.currencyParams end -function SevenDayUI:srotTaskList(day) +function SevenDayUI:ctor() + self.day = 1 +end + +function SevenDayUI:onLoadRootComplete() + self.uiMap = self.root:genAllChildren() + self:_display() + self:_bind() + + self:scheduleGlobal(function() + self:updateTime() + end, 1) + self:updateTime() +end + +function SevenDayUI:_display() + self.uiMap["seven_day_ui.title_bg.title_tx"]:setText("临时文本:新手七天乐") + self.uiMap["seven_day_ui.down.desc"]:setText("临时文本:每天将开启新的任务") + self.uiMap["seven_day_ui.down.close_btn"]:addClickListener(function() + self:closeUI() + end) + + self:initTop() + self:initTasks() +end + +function SevenDayUI:initTop() + self.dayTextList = {} + self.stepObjs = {} + for i = 1, 7 do + self.dayTextList[i] = self.uiMap["seven_day_ui.day_bg.day_" .. i] + self.dayTextList[i]:setText("临时文本:第" .. i .. "天") + self.dayTextList[i]:addClickListener(function() + if i > DataManager.SevenDayData:getActDay() then + GFunc.showToast(string.format("临时文本:第%s天解锁", i)) + return + end + self.day = i + self:refreshDay() + self:refreshScrollRect() + end) + + self.stepObjs[i] = { + icon = self.uiMap["seven_day_ui.slider_bg.icon_" .. i], + num = self.uiMap["seven_day_ui.slider_bg.num_" .. i], + } + end + self.finalBoxLight = self.uiMap["seven_day_ui.slider_bg.light_7"] + self.sevenDayDesc = self.uiMap["seven_day_ui.slider_bg.desc"] + self.sevenDaySliderComp = self.uiMap["seven_day_ui.slider_bg.slider"]:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_SLIDER) + self.daySelectImg = self.uiMap["seven_day_ui.day_bg.day_select"] + self.timeTx = self.uiMap["seven_day_ui.title_bg.time"] +end + +function SevenDayUI:initTasks() + self.scrollRectComp = self.uiMap["seven_day_ui.scrollrect"]:addLuaComponent(GConst.TYPEOF_LUA_CLASS.SCROLL_RECT_BASE) + self.scrollRectComp:addInitCallback(function() + return TASK_CELL + end) + self.scrollRectComp:addRefreshCallback(function(index, cell) + cell:refresh(self.taskList[index]) + end) + self.scrollRectComp:clearCells() + self.scrollRectComp:setTotalCount(0) +end + +function SevenDayUI:_bind() + self:bind(DataManager.SevenDayData, "isDirty", function() + self:onRefresh() + end) +end + +function SevenDayUI:onRefresh() + self:refreshDay() + self:refreshStepInfo() + self:refreshScrollRect() +end + +function SevenDayUI:refreshDay() + local actDay = DataManager.SevenDayData:getActDay() + for i = 1, 7 do + if i == self.day then + self.daySelectImg:setAnchoredPositionX(self.dayTextList[i]:fastGetAnchoredPositionX()) + end + if DataManager.SevenDayData:showRedPoint(i) and i <= actDay then + self.dayTextList[i]:addRedPoint(40, 26, 0.5) + else + self.dayTextList[i]:removeRedPoint() + end + end +end + +function SevenDayUI:refreshStepInfo() + local list = DataManager.SevenDayData:getStepRewardList() + for index, objs in ipairs(self.stepObjs) do + local id = list[index] + if id then + local reward = DataManager.SevenDayData:getStepReward(id) + objs.num:setText(DataManager.SevenDayData:getStepNum(id)) + if DataManager.SevenDayData:canClaimStepTask(id) then + objs.icon:addClickListener(function() + ModuleManager.SevenDayManager:claimStepReward(id) + end) + else + objs.icon:addClickListener(function() + ModuleManager.TipsManager:showRewardTips(reward.id, reward.type, objs.icon) + end) + end + end + end + + local count = DataManager.SevenDayData:getCollectedCount() + local totalCount = DataManager.SevenDayData:getTotalCount() + self.sevenDayDesc:setText(string.format("临时文本:已完成任务数:%s/%s", count, totalCount)) + self.sevenDaySliderComp.value = count / totalCount +end + +function SevenDayUI:refreshScrollRect() + self:sortTaskList(self.day) + if self.scrollRectComp:getTotalCount() ~= #self.taskList then -- 打开界面的时候定位到当前可领取的最低等级奖励,如果没有则定位到当前等级 + self.scrollRectComp:clearCells() + self.scrollRectComp:refillCells(#self.taskList) + else + self.scrollRectComp:updateAllCell() + end +end + +-- function SevenDayUI:_addListeners() +-- uiMap["seven_day_ui.img_3.btn_all"]:addClickListener(function() +-- local list = DataManager.SevenDayData:getTaskListByDay(self.day or 1) +-- local ids = {} +-- for _, id in ipairs(list) do +-- if DataManager.SevenDayData:canClaimTask(id) then +-- table.insert(ids, id) +-- end +-- end +-- if not ids[1] then +-- return +-- end +-- ModuleManager.SevenDayManager:claimTask(ids) +-- end) +-- end + + + +function SevenDayUI:sortTaskList(day) self.day = day self.taskList = DataManager.SevenDayData:getTaskListByDay(day or 1) table.sort(self.taskList, function(a, b) @@ -34,182 +189,16 @@ function SevenDayUI:srotTaskList(day) end) end -function SevenDayUI:onLoadRootComplete() - self:_display() - self:_addListeners() - self:_bind() - - self.sid = self:scheduleGlobal(function() - self:updateTime() - end, 1) - self:updateTime() -end - -function SevenDayUI:_display() - local uiMap = self.root:genAllChildren() - uiMap["seven_day_ui.title_bg.title_tx"]:setText(I18N:getGlobalText(I18N.GlobalConst.SEVEN_DAY_DESC_1)) - uiMap["seven_day_ui.img_3.btn_all.tx"]:setText(I18N:getGlobalText(I18N.GlobalConst.SEVEN_DAY_DESC_4)) - uiMap["seven_day_ui.img_3.tx"]:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_SEVENDAY_DESC)) - - local rect = uiMap["seven_day_ui.scrollrect"]:getRectSize() - self.maxVisibleCell = math.ceil(rect.height/120) - - self:refreshDay() - self:refreshStepInfo() - self:refreshScrollRect() -end - -function SevenDayUI:_addListeners() - local uiMap = self.root:genAllChildren() - uiMap["seven_day_ui.img_3.btn_close"]:addClickListener(function() - self:closeUI() - end) - - uiMap["seven_day_ui.img_3.btn_all"]:addClickListener(function() - local list = DataManager.SevenDayData:getTaskListByDay(self.day or 1) - local ids = {} - for _, id in ipairs(list) do - if DataManager.SevenDayData:canClaimTask(id) then - table.insert(ids, id) - end - end - if not ids[1] then - return - end - ModuleManager.SevenDayManager:claimTask(ids) - end) - - for i = 1, 7 do - local obj = uiMap["seven_day_ui.day_node.day_" .. i] - obj:addClickListener(function() - if i > DataManager.SevenDayData:getActDay() then - GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.ACT_SEVENDAY_DESC_1, i)) - return - end - self.day = i - self:refreshDay() - self:refreshScrollRect() - end) - end -end - -function SevenDayUI:_bind() - self:bind(DataManager.SevenDayData, "isDirty", function() - self:refreshDay() - self:refreshStepInfo() - self:refreshScrollRect() - end) -end - -function SevenDayUI:refreshStepInfo() - local uiMap = self.root:genAllChildren() - local list = DataManager.SevenDayData:getStepRewardList() - if not self.stepObjs then - self.stepObjs = {} - for i = 1, 7 do - self.stepObjs[i] = { - icon = uiMap["seven_day_ui.total_node.icon_" .. i], - line = uiMap["seven_day_ui.total_node.line_" .. i], - lock = uiMap["seven_day_ui.total_node.lock_" .. i], - check = uiMap["seven_day_ui.total_node.check_" .. i], - num = uiMap["seven_day_ui.total_node.num_" .. i], - count = uiMap["seven_day_ui.total_node.count_" .. i], - light = uiMap["seven_day_ui.total_node.light_" .. i] - } - end - end - - for index, objs in ipairs(self.stepObjs) do - local id = list[index] - if id then - local reward = DataManager.SevenDayData:getStepReward(id) - objs.icon:setSprite(ModuleManager.ItemManager:getItemIcon(reward.id)) - objs.num:setText("") - objs.line:setVisible(DataManager.SevenDayData:stepOver(id)) - objs.lock:setVisible(not DataManager.SevenDayData:stepOver(id)) - objs.check:setVisible(DataManager.SevenDayData:getStepCollected(id)) - objs.count:setText(DataManager.SevenDayData:getStepNum(id)) - if DataManager.SevenDayData:canClaimStepTask(id) then - objs.icon:addClickListener(function() - ModuleManager.SevenDayManager:claimStepReward(id) - end) - objs.light:setVisible(true) - else - objs.icon:addClickListener(function() - ModuleManager.TipsManager:showRewardTips(reward.id, reward.type, objs.icon) - end) - objs.light:setVisible(false) - end - - end - end - - local desc = uiMap["seven_day_ui.total_node.desc"] - local check = uiMap["seven_day_ui.total_node.check"] - local count = DataManager.SevenDayData:getCollectedCount() - local totalCount = DataManager.SevenDayData:getTotalCount() - desc:setText(I18N:getGlobalText(I18N.GlobalConst.SEVEN_DAY_DESC_3, count, totalCount)) - GFunc.centerImgAndTx(check, desc, 9) - - local slider = uiMap["seven_day_ui.total_node.slider"]:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_SLIDER) - slider.value = count / totalCount -end - -function SevenDayUI:refreshDay() - local uiMap = self.root:genAllChildren() - local highLight = uiMap["seven_day_ui.day_node.page_hl"] - local actDay = DataManager.SevenDayData:getActDay() - for i = 1, 7 do - local obj = uiMap["seven_day_ui.day_node.day_" .. i] - local dayStr = I18N:getGlobalText(I18N.GlobalConst.DAY_DESC1, i) - if i > actDay then - dayStr = string.format("%s", dayStr) - end - obj:setText(dayStr) - if i == self.day then - highLight:setAnchoredPositionX(obj:getAnchoredPosition().x) - end - if DataManager.SevenDayData:showRedPoint(i) and i <= actDay then - obj:addRedPoint(40, 26, 0.5) - else - obj:removeRedPoint() - end - end -end - -function SevenDayUI:refreshScrollRect() - self:srotTaskList(self.day) - if self.scrollRect then - self.scrollRect:updateAllCell() - return - end - - local uiMap = self.root:genAllChildren() - local scrollView = uiMap["seven_day_ui.scrollrect"] - self.scrollRect = scrollView:addLuaComponent(GConst.TYPEOF_LUA_CLASS.SCROLL_RECT_BASE) - self.scrollRect:addInitCallback(function() - return TASK_CELL - end) - self.scrollRect:addRefreshCallback(function(index, cell) - cell:refresh(self.taskList[index], index, self.maxVisibleCell > 0) - self.maxVisibleCell = self.maxVisibleCell - 1 - end) - self.scrollRect:clearCells() - self.scrollRect:refillCells(#self.taskList) -end - function SevenDayUI:updateTime() - local uiMap = self.root:genAllChildren() - local timeObj = uiMap["seven_day_ui.title_bg.time"] local endTime = DataManager.SevenDayData:getEndTime() local remainTime = endTime - Time:getServerTime() local str if remainTime > 0 then - str = I18N:getGlobalText(I18N.GlobalConst.SEVEN_DAY_DESC_2, Time:formatNumTimeStr(remainTime)) + str = GFunc.getTimeStr(remainTime) else - str = I18N:getGlobalText(I18N.GlobalConst.ADVENTURE_CLOSED) + str = "00:00:00" end - timeObj:setText(str) + self.timeTx:setText(str) end return SevenDayUI \ No newline at end of file diff --git a/lua/app/ui/main_city/cell/side_bar_seven_days_cell.lua b/lua/app/ui/main_city/cell/side_bar_seven_days_cell.lua index e4cd05b4..06f33981 100644 --- a/lua/app/ui/main_city/cell/side_bar_seven_days_cell.lua +++ b/lua/app/ui/main_city/cell/side_bar_seven_days_cell.lua @@ -2,7 +2,7 @@ local SideBarBaseCellComp = require "app/ui/main_city/cell/side_bar_base_cell" local SideBarSevenDaysCell = class("SideBarSevenDaysCell", SideBarBaseCellComp) function SideBarSevenDaysCell:getIsOpen() - return true + return DataManager.SevenDayData:getIsOpen() end function SideBarSevenDaysCell:getIconRes() @@ -10,7 +10,7 @@ function SideBarSevenDaysCell:getIconRes() end function SideBarSevenDaysCell:onClick() - + ModuleManager.SevenDayManager:showUI() end return SideBarSevenDaysCell \ No newline at end of file diff --git a/lua/app/userdata/activity/seven_day/seven_day_data.lua b/lua/app/userdata/activity/seven_day/seven_day_data.lua index 24694cfa..deff7070 100644 --- a/lua/app/userdata/activity/seven_day/seven_day_data.lua +++ b/lua/app/userdata/activity/seven_day/seven_day_data.lua @@ -1,62 +1,5 @@ local SevenDayData = class("SevenDayData", BaseData) -local TASK_CFG = ConfigManager:getConfig("act_sevenday_quest") -local TASK_REWARD_CFG = ConfigManager:getConfig("act_sevenday_quest_reward") -local TASK_MAX_COUNT = ConfigManager:getConfigNum("act_sevenday_quest") -local TASK_REWARD_MAX_COUNT = ConfigManager:getConfigNum("act_sevenday_quest_reward") - -function SevenDayData:getBg() - return "assets/arts/textures/background/activity/activity_dec_1.png" -end - -function SevenDayData:getTitleBg() - return "common_menu_bg_2" -end - -function SevenDayData:getTitleIcon() - return "activity_dec_1" -end - -function SevenDayData:getTitle() - return I18N:getGlobalText(I18N.GlobalConst.SEVEN_DAY_DESC_1) -end - -function SevenDayData:showTimeNode() - return true -end - -function SevenDayData:getTimeStr() - local str - local time = self.endTime - Time:getServerTime() - if time > 0 then - str = Time:formatNumTime(time) - else - str = I18N:getGlobalText(I18N.GlobalConst.ACT_OVER_DESC) - end - return str -end - -function SevenDayData:getRp() - return self:showRedPoint() -end - -function SevenDayData:gotoBtnFunc() - ModuleManager.SevenDayManager:showUI() -end - -function SevenDayData:getIsOpen() - local nowTime = Time:getServerTime() - if self.endTime < nowTime or self.openTs > nowTime then - return false - end - - if self.collectTaskCount >= TASK_MAX_COUNT and self.collectStepCount > TASK_REWARD_MAX_COUNT then - return false - end - - return true -end - function SevenDayData:ctor() self:clear() end @@ -73,15 +16,20 @@ function SevenDayData:clear() end function SevenDayData:init(data) - data = data or {} + data = data or GConst.EMPTY_TABLE self.openTs = GFunc.formatTimeStep(data.open_day_ts) - self.endTime = self.openTs - if self.openTs > 0 then + if self.openTs and self.openTs > 0 then + self.openTs = self.openTs - self.openTs % 86400 self.endTime = self.openTs + self:getDurationTime() + else + self.openTs = 0 + self.endTime = self.openTs end self.tasks = data.tasks or {} - self.stepRewards = data.Claimed or {} - self.actDay = data.login_day or 1 + self.stepRewards = data.claimed or {} + + local today = Time:getBeginningOfServerToday() + self.actDay = (today - self.openTs) // 86400 + 1 self:calCollectTaskCount() self:initTaskListener() @@ -92,9 +40,25 @@ function SevenDayData:init(data) end) end +function SevenDayData:getIsOpen() + if not ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.SEVEN_DAY, true) then + return false + end + local nowTime = Time:getServerTime() + if self.endTime < nowTime or self.openTs > nowTime then + return false + end + + if self.collectTaskCount >= self:getSevenDayTaskMaxCount() and self.collectStepCount > self:getSevenDayRewardMaxCount() then + return false + end + + return true +end + function SevenDayData:getDurationTime() if not self.durationTime then - self.durationTime = GFunc.getConstIntValue("seven_day_time") * 86400 + self.durationTime = GFunc.getConstIntValue("act_sevenday_time") * 86400 end return self.durationTime end @@ -148,16 +112,44 @@ function SevenDayData:setDirty() self.data.isDirty = not self.data.isDirty end +function SevenDayData:getSevenDayTaskCfg() + if self.sevenDayTaskCfg == nil then + self.sevenDayTaskCfg = ConfigManager:getConfig("act_sevenday_quest") + end + return self.sevenDayTaskCfg +end + +function SevenDayData:getSevenDayTaskMaxCount() + if self.sevenDayTaskMaxCount == nil then + self.sevenDayTaskMaxCount = ConfigManager:getConfigNum("act_sevenday_quest") + end + return self.sevenDayTaskMaxCount +end + +function SevenDayData:getSevenDayRewardCfg() + if self.sevenDayRewardCfg == nil then + self.sevenDayRewardCfg = ConfigManager:getConfig("act_sevenday_quest_reward") + end + return self.sevenDayRewardCfg +end + +function SevenDayData:getSevenDayRewardMaxCount() + if self.sevenDayRewardMaxCount == nil then + self.sevenDayRewardMaxCount = ConfigManager:getConfigNum("act_sevenday_quest_reward") + end + return self.sevenDayRewardMaxCount +end + function SevenDayData:calCollectTaskCount() self.collectTaskCount = 0 - for id, info in ipairs(TASK_CFG) do + for id, info in ipairs(self:getSevenDayTaskCfg()) do if self:taskCollected(id) then self.collectTaskCount = self.collectTaskCount + 1 end end self.collectStepCount = 0 - for id, info in ipairs(TASK_REWARD_CFG) do + for id, info in ipairs(self:getSevenDayRewardCfg()) do if self:getStepCollected(id) then self.collectStepCount = self.collectStepCount + 1 end @@ -167,7 +159,7 @@ end function SevenDayData:getTaskListByDay(day) if not self.taskList then self.taskList = {} - for id, info in ipairs(TASK_CFG) do + for id, info in ipairs(self:getSevenDayTaskCfg()) do if not self.taskList[info.day] then self.taskList[info.day] = {} end @@ -180,7 +172,7 @@ end function SevenDayData:getStepRewardList() if not self.stepRewardList then self.stepRewardList = {} - for id, info in ipairs(TASK_REWARD_CFG) do + for id, info in ipairs(self:getSevenDayRewardCfg()) do table.insert(self.stepRewardList, id) end end @@ -217,7 +209,7 @@ function SevenDayData:taskCount(id) end function SevenDayData:taskTotalCount(id) - local cfg = TASK_CFG[id] + local cfg = self:getSevenDayTaskCfg()[id] if not cfg then return 1 -- 防止除法报错 end @@ -225,7 +217,7 @@ function SevenDayData:taskTotalCount(id) end function SevenDayData:getTaskReward(id) - local cfg = TASK_CFG[id] + local cfg = self:getSevenDayTaskCfg()[id] if not cfg then return end @@ -233,7 +225,7 @@ function SevenDayData:getTaskReward(id) end function SevenDayData:getTaskDay(id) - local cfg = TASK_CFG[id] + local cfg = self:getSevenDayTaskCfg()[id] if not cfg then return 1 end @@ -241,7 +233,7 @@ function SevenDayData:getTaskDay(id) end function SevenDayData:getTaskType(id) - local cfg = TASK_CFG[id] + local cfg = self:getSevenDayTaskCfg()[id] if not cfg then return end @@ -249,7 +241,7 @@ function SevenDayData:getTaskType(id) end function SevenDayData:getTaskDayLimit(id) - local cfg = TASK_CFG[id] + local cfg = self:getSevenDayTaskCfg()[id] if not cfg or not cfg.count_type then return end @@ -259,7 +251,7 @@ end function SevenDayData:getTaskListByType(taskType) if not self.taskTypeMap then self.taskTypeMap = {} - for id, info in ipairs(TASK_CFG) do + for id, info in ipairs(self:getSevenDayTaskCfg()) do if not self.taskTypeMap[info.type] then self.taskTypeMap[info.type] = {} end @@ -271,9 +263,6 @@ function SevenDayData:getTaskListByType(taskType) end function SevenDayData:addTaskProgress(id, count) - if not self:getIsOpen() then - return - end local dayLimit = self:getTaskDayLimit(id) if dayLimit and dayLimit > self:getActDay() then return @@ -282,21 +271,6 @@ function SevenDayData:addTaskProgress(id, count) self:setDirty() end -function SevenDayData:setTaskProgress(id, count) - if not self:getIsOpen() then - return - end - local dayLimit = self:getTaskDayLimit(id) - if dayLimit and dayLimit > self:getActDay() then - return - end - if self:getTaskInfo(id).progress > count then - return - end - self:getTaskInfo(id).progress = count - self:setDirty() -end - function SevenDayData:canClaimTask(id) if self:taskCollected(id) then return false @@ -306,7 +280,7 @@ function SevenDayData:canClaimTask(id) end function SevenDayData:getStepNum(id) - local cfg = TASK_REWARD_CFG[id] + local cfg = self:getSevenDayRewardCfg()[id] if not cfg then return 1 -- 防止除法为0 end @@ -318,7 +292,7 @@ function SevenDayData:getStepCollected(id) end function SevenDayData:getStepReward(id) - local cfg = TASK_REWARD_CFG[id] + local cfg = self:getSevenDayRewardCfg()[id] if not cfg then return end @@ -348,7 +322,7 @@ function SevenDayData:showRedPoint(day) else local day = self:getActDay() for id, info in pairs(self.tasks) do - local cfg = TASK_CFG[id] + local cfg = self:getSevenDayTaskCfg()[id] if cfg and cfg.day <= day then if self:canClaimTask(id) then return true @@ -367,7 +341,34 @@ function SevenDayData:showRedPoint(day) return false end +function SevenDayData:getSevenDayTaskI18NCfg() + if self.sevenDayTaskI18NCfg == nil then + self.sevenDayTaskI18NCfg = I18N:getConfig("act_sevenday_quest") + end + return self.sevenDayTaskI18NCfg +end + +function SevenDayData:getSevenDayTaskDesc(id) + local cfg = self:getSevenDayTaskI18NCfg() + if cfg == nil then + return GConst.EMPTY_STRING + end + return cfg[id].desc +end + function SevenDayData:initTaskListener() + local cfg = self:getSevenDayTaskCfg() + for _, v in ipairs(cfg) do + local taskType = v.type + ModuleManager.TaskManager:registerTask("SevenDayData", taskType, function(count) + local list = self:getTaskListByType(taskType) + if #list > 0 then + for _, task in ipairs(list) do + self:addTaskProgress(task, taskType, count) + end + end + end) + end end return SevenDayData \ No newline at end of file diff --git a/lua/app/userdata/bag/item_data.lua b/lua/app/userdata/bag/item_data.lua index 77af1c82..19fde936 100644 --- a/lua/app/userdata/bag/item_data.lua +++ b/lua/app/userdata/bag/item_data.lua @@ -154,6 +154,7 @@ function ItemData:addItem(data, itemGetType) CS.ThinkingAnalytics.ThinkingAnalyticsAPI.UserAdd("user_gold", data.count) elseif data.id == GConst.ItemConst.ITEM_ID_VIT then if data.count < 0 then + ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_VIT_COST, -data.count) BIReport:postVitUse(data.count) else BIReport:postVitGet(data.count, itemGetType) diff --git a/lua/app/userdata/hero/hero_data.lua b/lua/app/userdata/hero/hero_data.lua index 5a0846c7..f397a7c5 100644 --- a/lua/app/userdata/hero/hero_data.lua +++ b/lua/app/userdata/hero/hero_data.lua @@ -6,6 +6,7 @@ function HeroData:ctor() self.data.activeCount = 0 self.data.isDirty = false self.matchActiveHeroMap = {} + self.maxHeroLvOnInit = 0 end function HeroData:clear() @@ -17,6 +18,9 @@ function HeroData:init(data) if data then for id, heroInfo in pairs(data) do self:addHero(heroInfo.id, heroInfo.level) + if self.maxHeroLvOnInit < heroInfo.level then + self.maxHeroLvOnInit = heroInfo.level + end end end @@ -85,6 +89,7 @@ function HeroData:setHeroLv(id, lv) local entity = self:getHeroById(id) if not entity:isActived() then self.data.activeCount = self.data.activeCount + 1 + ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_NEW_HERO_GOT) end entity:setLv(lv) if entity:isActived() then @@ -123,4 +128,8 @@ function HeroData:getRp() return false end +function HeroData:getMaxHeroLvOnInit() + return self.maxHeroLvOnInit +end + return HeroData \ No newline at end of file diff --git a/lua/app/userdata/hero/hero_entity.lua b/lua/app/userdata/hero/hero_entity.lua index a8a0bd6e..d0f4da5f 100644 --- a/lua/app/userdata/hero/hero_entity.lua +++ b/lua/app/userdata/hero/hero_entity.lua @@ -31,7 +31,7 @@ function HeroEntity:setLv(lv) return end self.data.lv = lv - ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_HERO_LV_UP) + ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_HERO_LV_UP, lv) self:setDirty() end diff --git a/lua/app/userdata/task/task_data.lua b/lua/app/userdata/task/task_data.lua new file mode 100644 index 00000000..f1eeab33 --- /dev/null +++ b/lua/app/userdata/task/task_data.lua @@ -0,0 +1,15 @@ +local TaskData = class("TaskData", BaseData) + +function TaskData:init() + self.maxHeroLv = DataManager.HeroData:getMaxHeroLvOnInit() +end + +function TaskData:getMaxHeroLv() + return self.maxHeroLv or 0 +end + +function TaskData:setMaxHeroLv(lv) + self.maxHeroLv = lv +end + +return TaskData \ No newline at end of file diff --git a/lua/app/userdata/task/task_data.lua.meta b/lua/app/userdata/task/task_data.lua.meta new file mode 100644 index 00000000..97850483 --- /dev/null +++ b/lua/app/userdata/task/task_data.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: d49487deb0a2a4d47996acdf0ec1c57c +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} From 0b6607d714cb2dde73e57948d7eeb26454baa046 Mon Sep 17 00:00:00 2001 From: chenxi Date: Fri, 26 May 2023 14:51:24 +0800 Subject: [PATCH 2/5] =?UTF-8?q?=E4=B8=83=E5=A4=A9=E4=B9=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/config/chapter.lua | 41 - lua/app/config/chapter_board.lua | 688 +- lua/app/config/hero.lua | 45 +- .../localization_global_const.lua | 8 + lua/app/config/monster_chapter.lua | 3440 +++++----- lua/app/config/skill.lua | 5599 ++++++++++++++++- lua/app/config/skill_rogue.lua | 6 +- lua/app/config/strings/cn/global.lua | 8 + lua/app/config/strings/cn/hero.lua | 60 +- lua/app/global/global_const.lua | 1 + lua/app/module/login/login_manager.lua | 3 +- lua/app/module/login/login_ui.lua | 2 +- lua/app/module/login/test_login_ui.lua | 2 +- lua/app/module/summon/summon_manager.lua | 14 +- lua/app/net/net_manager.lua | 4 +- lua/app/proto/proto_msg_type.lua | 6 + .../ui/activity/seven_day/seven_day_ui.lua | 55 +- .../cell/side_bar_seven_days_cell.lua | 5 + lua/app/ui/main_city/main_city_ui.lua | 8 +- 19 files changed, 7499 insertions(+), 2496 deletions(-) diff --git a/lua/app/config/chapter.lua b/lua/app/config/chapter.lua index ba15d969..e1b15a17 100644 --- a/lua/app/config/chapter.lua +++ b/lua/app/config/chapter.lua @@ -154,21 +154,6 @@ local chapter = { 1401, 1501 }, - ["mystery_box"]={ - 1 - }, - ["mystery_box_reward"]={ - { - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=2, - ["id_for_nothing"]="VA==", - ["num"]=10, - ["num_for_nothing"]="Vwg=" - } - } - }, ["wave_reward"]={ { ["type"]=1, @@ -321,32 +306,6 @@ local chapter = { 2901, 3001 }, - ["mystery_box"]={ - 1, - 3 - }, - ["mystery_box_reward"]={ - { - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=4, - ["id_for_nothing"]="Ug==", - ["num"]=10, - ["num_for_nothing"]="Vwg=" - } - }, - { - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=2, - ["id_for_nothing"]="VA==", - ["num"]=10, - ["num_for_nothing"]="Vwg=" - } - } - }, ["wave_reward"]={ { ["type"]=1, diff --git a/lua/app/config/chapter_board.lua b/lua/app/config/chapter_board.lua index bc579951..5e35d5f3 100644 --- a/lua/app/config/chapter_board.lua +++ b/lua/app/config/chapter_board.lua @@ -277,8 +277,8 @@ local chapter_board = { 0 }, { - 14, - 0 + 0, + 1 }, { 2, @@ -292,208 +292,10 @@ local chapter_board = { 2, 0 }, - { - 14, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 2, - 0 - }, - { - 2, - 0 - }, - { - 2, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 2, - 0 - }, - { - 1, - 0 - }, - { - 2, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - } - }, - ["mystery_box_board"]={ - { - 1, - 0 - }, - { - 2, - 0 - }, { 0, 1 }, - { - 0, - 2 - }, - { - 0, - 1 - }, - { - 2, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 3 - }, - { - 0, - 1 - }, - { - 0, - 3 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 14, - 0 - }, - { - 2, - 0 - }, - { - 2, - 0 - }, - { - 2, - 0 - }, - { - 14, - 0 - }, { 1, 0 @@ -539,7 +341,7 @@ local chapter_board = { 0 }, { - 15, + 1, 0 }, { @@ -735,16 +537,16 @@ local chapter_board = { 0 }, { - 14, - 0 + 0, + 1 }, { 2, 0 }, { - 14, - 0 + 0, + 1 }, { 1, @@ -1010,204 +812,6 @@ local chapter_board = { 1, 0 } - }, - ["mystery_box_board"]={ - { - 1, - 0 - }, - { - 2, - 0 - }, - { - 0, - 1 - }, - { - 0, - 2 - }, - { - 0, - 1 - }, - { - 2, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 2, - 0 - }, - { - 0, - 2 - }, - { - 0, - 1 - }, - { - 0, - 4 - }, - { - 2, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 2, - 0 - }, - { - 3, - 0 - }, - { - 0, - 2 - }, - { - 3, - 0 - }, - { - 2, - 0 - }, - { - 1, - 0 - }, - { - 14, - 0 - }, - { - 3, - 0 - }, - { - 2, - 0 - }, - { - 3, - 0 - }, - { - 2, - 0 - }, - { - 3, - 0 - }, - { - 14, - 0 - }, - { - 1, - 0 - }, - { - 2, - 0 - }, - { - 3, - 0 - }, - { - 2, - 0 - }, - { - 3, - 0 - }, - { - 2, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 3, - 0 - }, - { - 3, - 0 - }, - { - 3, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 15, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - } } }, [5]={ @@ -1608,204 +1212,6 @@ local chapter_board = { 1, 0 } - }, - ["mystery_box_board"]={ - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 2 - }, - { - 0, - 1 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 2 - }, - { - 0, - 3 - }, - { - 0, - 2 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 2, - 0 - }, - { - 0, - 1 - }, - { - 2, - 0 - }, - { - 0, - 1 - }, - { - 2, - 0 - }, - { - 1, - 0 - }, - { - 2, - 0 - }, - { - 3, - 0 - }, - { - 3, - 0 - }, - { - 2, - 0 - }, - { - 3, - 0 - }, - { - 3, - 0 - }, - { - 2, - 0 - }, - { - 14, - 0 - }, - { - 3, - 0 - }, - { - 3, - 0 - }, - { - 3, - 0 - }, - { - 3, - 0 - }, - { - 3, - 0 - }, - { - 14, - 0 - }, - { - 1, - 0 - }, - { - 3, - 0 - }, - { - 3, - 0 - }, - { - 15, - 0 - }, - { - 3, - 0 - }, - { - 3, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 3, - 0 - }, - { - 14, - 0 - }, - { - 3, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - } } }, [7]={ @@ -7789,7 +7195,7 @@ local chapter_board = { 0 }, { - 15, + 17, 0 }, { @@ -8367,7 +7773,7 @@ local chapter_board = { 0 }, { - 15, + 17, 0 }, { @@ -9185,7 +8591,7 @@ local chapter_board = { 0 }, { - 15, + 17, 0 }, { @@ -9583,7 +8989,7 @@ local chapter_board = { 0 }, { - 15, + 17, 0 }, { @@ -10153,7 +9559,7 @@ local chapter_board = { 5 }, { - 15, + 17, 0 }, { @@ -10979,7 +10385,7 @@ local chapter_board = { 1 }, { - 15, + 17, 0 }, { @@ -11549,7 +10955,7 @@ local chapter_board = { 0 }, { - 15, + 17, 0 }, { @@ -11975,7 +11381,7 @@ local chapter_board = { 0 }, { - 15, + 17, 0 }, { @@ -12573,7 +11979,7 @@ local chapter_board = { 0 }, { - 15, + 17, 0 }, { @@ -13355,7 +12761,7 @@ local chapter_board = { 0 }, { - 15, + 17, 0 }, { @@ -14169,7 +13575,7 @@ local chapter_board = { 1 }, { - 15, + 17, 0 }, { @@ -14523,7 +13929,7 @@ local chapter_board = { 0 }, { - 15, + 17, 0 }, { @@ -15177,7 +14583,7 @@ local chapter_board = { 4 }, { - 15, + 17, 0 } } @@ -15567,7 +14973,7 @@ local chapter_board = { 2 }, { - 15, + 17, 0 }, { @@ -16465,7 +15871,7 @@ local chapter_board = { 1 }, { - 15, + 17, 0 }, { @@ -16903,7 +16309,7 @@ local chapter_board = { 0 }, { - 15, + 17, 0 }, { @@ -17317,7 +16723,7 @@ local chapter_board = { 0 }, { - 15, + 17, 0 }, { @@ -17955,7 +17361,7 @@ local chapter_board = { 4 }, { - 15, + 17, 0 }, { @@ -18737,7 +18143,7 @@ local chapter_board = { 0 }, { - 15, + 17, 0 }, { @@ -19315,7 +18721,7 @@ local chapter_board = { 0 }, { - 15, + 17, 0 }, { @@ -19721,7 +19127,7 @@ local chapter_board = { 0 }, { - 15, + 17, 0 }, { @@ -20359,7 +19765,7 @@ local chapter_board = { 0 }, { - 15, + 17, 0 } } @@ -20957,7 +20363,7 @@ local chapter_board = { 1 }, { - 15, + 17, 0 } } @@ -21743,7 +21149,7 @@ local chapter_board = { 2 }, { - 15, + 17, 0 }, { @@ -22341,7 +21747,7 @@ local chapter_board = { 0 }, { - 15, + 17, 0 }, { @@ -22883,7 +22289,7 @@ local chapter_board = { 3 }, { - 15, + 17, 0 }, { @@ -23709,7 +23115,7 @@ local chapter_board = { 0 }, { - 15, + 17, 0 }, { @@ -24135,7 +23541,7 @@ local chapter_board = { 0 }, { - 15, + 17, 0 }, { @@ -24505,7 +23911,7 @@ local chapter_board = { 4 }, { - 15, + 17, 0 }, { @@ -25103,7 +24509,7 @@ local chapter_board = { 0 }, { - 15, + 17, 0 }, { @@ -26045,7 +25451,7 @@ local chapter_board = { 0 }, { - 15, + 17, 0 }, { @@ -26527,7 +25933,7 @@ local chapter_board = { 1 }, { - 15, + 17, 0 }, { @@ -27085,7 +26491,7 @@ local chapter_board = { 0 }, { - 15, + 17, 0 }, { @@ -27611,7 +27017,7 @@ local chapter_board = { 0 }, { - 15, + 17, 0 }, { @@ -28333,7 +27739,7 @@ local chapter_board = { 0 }, { - 15, + 17, 0 } } @@ -28691,7 +28097,7 @@ local chapter_board = { 2 }, { - 15, + 17, 0 }, { @@ -29461,7 +28867,7 @@ local chapter_board = { 0 }, { - 15, + 17, 0 }, { @@ -30019,7 +29425,7 @@ local chapter_board = { 2 }, { - 15, + 17, 0 }, { @@ -30885,7 +30291,7 @@ local chapter_board = { 0 }, { - 15, + 17, 0 }, { @@ -31227,7 +30633,7 @@ local chapter_board = { 0 }, { - 15, + 17, 0 }, { diff --git a/lua/app/config/hero.lua b/lua/app/config/hero.lua index 1a101352..41d8d6a9 100644 --- a/lua/app/config/hero.lua +++ b/lua/app/config/hero.lua @@ -113,7 +113,8 @@ local hero = { ["model_id"]="p0014", ["icon"]="5", ["item_id"]=13001, - ["unlock_chapter"]=3 + ["unlock_chapter"]=3, + ["is_show"]=1 }, [13002]={ ["position"]=1, @@ -171,7 +172,8 @@ local hero = { ["model_id"]="p0009", ["icon"]="5", ["item_id"]=13002, - ["unlock_chapter"]=3 + ["unlock_chapter"]=3, + ["is_show"]=1 }, [14001]={ ["position"]=1, @@ -229,7 +231,8 @@ local hero = { ["model_id"]="p0011", ["icon"]="5", ["item_id"]=14001, - ["unlock_chapter"]=3 + ["unlock_chapter"]=3, + ["is_show"]=1 }, [22001]={ ["position"]=2, @@ -345,7 +348,8 @@ local hero = { ["model_id"]="p0010", ["icon"]="5", ["item_id"]=23001, - ["unlock_chapter"]=3 + ["unlock_chapter"]=3, + ["is_show"]=1 }, [23002]={ ["position"]=2, @@ -403,7 +407,8 @@ local hero = { ["model_id"]="p0012", ["icon"]="5", ["item_id"]=23002, - ["unlock_chapter"]=3 + ["unlock_chapter"]=3, + ["is_show"]=1 }, [24001]={ ["position"]=2, @@ -461,7 +466,8 @@ local hero = { ["model_id"]="p0007", ["icon"]="7", ["item_id"]=24001, - ["unlock_chapter"]=3 + ["unlock_chapter"]=3, + ["is_show"]=1 }, [32001]={ ["position"]=3, @@ -577,7 +583,8 @@ local hero = { ["model_id"]="p0006", ["icon"]="6", ["item_id"]=33001, - ["unlock_chapter"]=3 + ["unlock_chapter"]=3, + ["is_show"]=1 }, [33002]={ ["position"]=3, @@ -635,7 +642,8 @@ local hero = { ["model_id"]="p0006", ["icon"]="6", ["item_id"]=33002, - ["unlock_chapter"]=3 + ["unlock_chapter"]=3, + ["is_show"]=1 }, [34001]={ ["position"]=3, @@ -693,7 +701,8 @@ local hero = { ["model_id"]="p0006", ["icon"]="6", ["item_id"]=34001, - ["unlock_chapter"]=3 + ["unlock_chapter"]=3, + ["is_show"]=1 }, [42001]={ ["position"]=4, @@ -809,7 +818,8 @@ local hero = { ["model_id"]="p0003", ["icon"]="3", ["item_id"]=43001, - ["unlock_chapter"]=3 + ["unlock_chapter"]=3, + ["is_show"]=1 }, [43002]={ ["position"]=4, @@ -867,7 +877,8 @@ local hero = { ["model_id"]="p0003", ["icon"]="3", ["item_id"]=43002, - ["unlock_chapter"]=3 + ["unlock_chapter"]=3, + ["is_show"]=1 }, [44001]={ ["position"]=4, @@ -925,7 +936,8 @@ local hero = { ["model_id"]="p0008", ["icon"]="8", ["item_id"]=44001, - ["unlock_chapter"]=3 + ["unlock_chapter"]=3, + ["is_show"]=1 }, [52001]={ ["position"]=5, @@ -1041,7 +1053,8 @@ local hero = { ["model_id"]="p0015", ["icon"]="4", ["item_id"]=53001, - ["unlock_chapter"]=3 + ["unlock_chapter"]=3, + ["is_show"]=1 }, [53002]={ ["position"]=5, @@ -1099,7 +1112,8 @@ local hero = { ["model_id"]="p0004", ["icon"]="4", ["item_id"]=53002, - ["unlock_chapter"]=3 + ["unlock_chapter"]=3, + ["is_show"]=1 }, [54001]={ ["position"]=5, @@ -1157,7 +1171,8 @@ local hero = { ["model_id"]="p0004", ["icon"]="4", ["item_id"]=54001, - ["unlock_chapter"]=3 + ["unlock_chapter"]=3, + ["is_show"]=1 } } local config = { diff --git a/lua/app/config/localization/localization_global_const.lua b/lua/app/config/localization/localization_global_const.lua index 408f4963..24061061 100644 --- a/lua/app/config/localization/localization_global_const.lua +++ b/lua/app/config/localization/localization_global_const.lua @@ -135,6 +135,14 @@ local LocalizationGlobalConst = LEVEL_FUND_DESC_1 = "LEVEL_FUND_DESC_1", BUFF_DESC = "BUFF_DESC", DAILY_CHALLENGE_DESC_1 = "DAILY_CHALLENGE_DESC_1", + DISCONNECT_RELOGIN = "DISCONNECT_RELOGIN", + RECONNECT = "RECONNECT", + RELOGIN = "RELOGIN", + SEVEN_DAY_TITLE = "SEVEN_DAY_TITLE", + SEVEN_DAY_DESC_1 = "SEVEN_DAY_DESC_1", + DAY_X = "DAY_X", + DAY_X_UNLOCK = "DAY_X_UNLOCK", + SEVEN_DAY_DESC_2 = "SEVEN_DAY_DESC_2", } return LocalizationGlobalConst \ No newline at end of file diff --git a/lua/app/config/monster_chapter.lua b/lua/app/config/monster_chapter.lua index 95007b9d..a4319153 100644 --- a/lua/app/config/monster_chapter.lua +++ b/lua/app/config/monster_chapter.lua @@ -5,9 +5,9 @@ local monster_chapter = { ["atk"]=200000, ["atk_times"]=2, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20001, + 20002, + 20003 }, ["monster_exp"]=11000 }, @@ -17,9 +17,9 @@ local monster_chapter = { ["atk"]=200000, ["atk_times"]=2, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20004, + 20005, + 20006 }, ["monster_exp"]=4000 }, @@ -29,9 +29,9 @@ local monster_chapter = { ["atk"]=200000, ["atk_times"]=2, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20007, + 20008, + 20009 }, ["monster_exp"]=8000 }, @@ -41,9 +41,9 @@ local monster_chapter = { ["atk"]=200000, ["atk_times"]=2, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20013, + 20014, + 20015 }, ["monster_exp"]=12000 }, @@ -54,9 +54,9 @@ local monster_chapter = { ["atk"]=250000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30010, + 30011, + 30012 }, ["skill"]={ 10015 @@ -69,9 +69,9 @@ local monster_chapter = { ["atk"]=250000, ["atk_times"]=2, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20022, + 20023, + 20024 }, ["monster_exp"]=11000 }, @@ -81,9 +81,9 @@ local monster_chapter = { ["atk"]=250000, ["atk_times"]=2, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20010, + 20011, + 20012 }, ["monster_exp"]=11000 }, @@ -93,9 +93,9 @@ local monster_chapter = { ["atk"]=250000, ["atk_times"]=2, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20001, + 20002, + 20003 }, ["monster_exp"]=17000 }, @@ -105,9 +105,9 @@ local monster_chapter = { ["atk"]=280000, ["atk_times"]=2, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20019, + 20020, + 20021 }, ["monster_exp"]=19000 }, @@ -118,9 +118,9 @@ local monster_chapter = { ["atk"]=340000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30040, + 30041, + 30042 }, ["skill"]={ 10016 @@ -136,9 +136,9 @@ local monster_chapter = { ["atk"]=300000, ["atk_times"]=2, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20016, + 20017, + 20018 }, ["monster_exp"]=9000 }, @@ -148,9 +148,9 @@ local monster_chapter = { ["atk"]=310000, ["atk_times"]=2, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20019, + 20020, + 20021 }, ["monster_exp"]=10000 }, @@ -160,9 +160,9 @@ local monster_chapter = { ["atk"]=320000, ["atk_times"]=2, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20004, + 20005, + 20006 }, ["monster_exp"]=11000 }, @@ -172,9 +172,9 @@ local monster_chapter = { ["atk"]=330000, ["atk_times"]=2, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20013, + 20014, + 20015 }, ["monster_exp"]=12000 }, @@ -185,9 +185,9 @@ local monster_chapter = { ["atk"]=380000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30043, + 30044, + 30045 }, ["skill"]={ 10016 @@ -203,9 +203,9 @@ local monster_chapter = { ["atk"]=250000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20025, + 20026, + 20027 }, ["monster_exp"]=11000 }, @@ -215,9 +215,9 @@ local monster_chapter = { ["atk"]=250000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20001, + 20002, + 20003 }, ["monster_exp"]=11000 }, @@ -227,9 +227,9 @@ local monster_chapter = { ["atk"]=250000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20109, + 20110, + 20111 }, ["monster_exp"]=17000 }, @@ -239,9 +239,9 @@ local monster_chapter = { ["atk"]=280000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20019, + 20020, + 20021 }, ["monster_exp"]=19000 }, @@ -252,9 +252,9 @@ local monster_chapter = { ["atk"]=340000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30010, + 30011, + 30012 }, ["skill"]={ 10015 @@ -267,9 +267,9 @@ local monster_chapter = { ["atk"]=300000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20109, + 20110, + 20111 }, ["monster_exp"]=9000 }, @@ -279,9 +279,9 @@ local monster_chapter = { ["atk"]=310000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20019, + 20020, + 20021 }, ["monster_exp"]=10000 }, @@ -291,9 +291,9 @@ local monster_chapter = { ["atk"]=320000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20028, + 20029, + 20030 }, ["monster_exp"]=11000 }, @@ -303,9 +303,9 @@ local monster_chapter = { ["atk"]=340000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20001, + 20002, + 20003 }, ["monster_exp"]=12000 }, @@ -316,9 +316,9 @@ local monster_chapter = { ["atk"]=390000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30043, + 30044, + 30045 }, ["skill"]={ 10016 @@ -334,9 +334,9 @@ local monster_chapter = { ["atk"]=330000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20112, + 20113, + 20114 }, ["monster_exp"]=16000 }, @@ -346,9 +346,9 @@ local monster_chapter = { ["atk"]=340000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20004, + 20005, + 20006 }, ["monster_exp"]=18000 }, @@ -358,9 +358,9 @@ local monster_chapter = { ["atk"]=350000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20001, + 20002, + 20003 }, ["monster_exp"]=21000 }, @@ -370,9 +370,9 @@ local monster_chapter = { ["atk"]=360000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20025, + 20026, + 20027 }, ["monster_exp"]=22000 }, @@ -383,9 +383,9 @@ local monster_chapter = { ["atk"]=420000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30034, + 30035, + 30036 }, ["skill"]={ 10017 @@ -398,9 +398,9 @@ local monster_chapter = { ["atk"]=250000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20028, + 20029, + 20030 }, ["monster_exp"]=11000 }, @@ -410,9 +410,9 @@ local monster_chapter = { ["atk"]=270000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20112, + 20113, + 20114 }, ["monster_exp"]=11000 }, @@ -422,9 +422,9 @@ local monster_chapter = { ["atk"]=290000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20115, + 20116, + 20117 }, ["monster_exp"]=17000 }, @@ -434,9 +434,9 @@ local monster_chapter = { ["atk"]=310000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20109, + 20110, + 20111 }, ["monster_exp"]=19000 }, @@ -447,9 +447,9 @@ local monster_chapter = { ["atk"]=370000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30031, + 30032, + 30033 }, ["monster_exp"]=18000 }, @@ -459,9 +459,9 @@ local monster_chapter = { ["atk"]=310000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20025, + 20026, + 20027 }, ["monster_exp"]=9000 }, @@ -471,9 +471,9 @@ local monster_chapter = { ["atk"]=330000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20028, + 20029, + 20030 }, ["monster_exp"]=10000 }, @@ -483,9 +483,9 @@ local monster_chapter = { ["atk"]=330000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20109, + 20110, + 20111 }, ["monster_exp"]=11000 }, @@ -495,9 +495,9 @@ local monster_chapter = { ["atk"]=350000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20115, + 20116, + 20117 }, ["monster_exp"]=12000 }, @@ -508,9 +508,9 @@ local monster_chapter = { ["atk"]=400000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30034, + 30035, + 30036 }, ["skill"]={ 10017 @@ -523,9 +523,9 @@ local monster_chapter = { ["atk"]=350000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20112, + 20113, + 20114 }, ["monster_exp"]=16000 }, @@ -535,9 +535,9 @@ local monster_chapter = { ["atk"]=370000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20115, + 20116, + 20117 }, ["monster_exp"]=18000 }, @@ -547,9 +547,9 @@ local monster_chapter = { ["atk"]=390000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20109, + 20110, + 20111 }, ["monster_exp"]=21000 }, @@ -559,9 +559,9 @@ local monster_chapter = { ["atk"]=410000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20025, + 20026, + 20027 }, ["monster_exp"]=22000 }, @@ -572,9 +572,9 @@ local monster_chapter = { ["atk"]=640000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30043, + 30044, + 30045 }, ["skill"]={ 10016 @@ -590,9 +590,9 @@ local monster_chapter = { ["atk"]=430000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20115, + 20116, + 20117 }, ["monster_exp"]=15000 }, @@ -602,9 +602,9 @@ local monster_chapter = { ["atk"]=450000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20025, + 20026, + 20027 }, ["monster_exp"]=16000 }, @@ -614,9 +614,9 @@ local monster_chapter = { ["atk"]=470000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20109, + 20110, + 20111 }, ["monster_exp"]=17000 }, @@ -626,9 +626,9 @@ local monster_chapter = { ["atk"]=490000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20112, + 20113, + 20114 }, ["monster_exp"]=17000 }, @@ -639,9 +639,9 @@ local monster_chapter = { ["atk"]=550000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30085, + 30086, + 30087 }, ["skill"]={ 10018 @@ -654,9 +654,9 @@ local monster_chapter = { ["atk"]=350000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20043, + 20044, + 20045 }, ["monster_exp"]=11000 }, @@ -666,9 +666,9 @@ local monster_chapter = { ["atk"]=370000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20004, + 20005, + 20006 }, ["monster_exp"]=11000 }, @@ -678,9 +678,9 @@ local monster_chapter = { ["atk"]=390000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20007, + 20008, + 20009 }, ["monster_exp"]=17000 }, @@ -690,9 +690,9 @@ local monster_chapter = { ["atk"]=410000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20052, + 20053, + 20054 }, ["monster_exp"]=19000 }, @@ -703,9 +703,9 @@ local monster_chapter = { ["atk"]=470000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30004, + 30005, + 30006 }, ["skill"]={ 10019 @@ -718,9 +718,9 @@ local monster_chapter = { ["atk"]=430000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20019, + 20020, + 20021 }, ["monster_exp"]=9000 }, @@ -730,9 +730,9 @@ local monster_chapter = { ["atk"]=490000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20046, + 20047, + 20048 }, ["monster_exp"]=10000 }, @@ -742,9 +742,9 @@ local monster_chapter = { ["atk"]=450000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20010, + 20011, + 20012 }, ["monster_exp"]=11000 }, @@ -754,9 +754,9 @@ local monster_chapter = { ["atk"]=510000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20049, + 20050, + 20051 }, ["monster_exp"]=12000 }, @@ -767,9 +767,9 @@ local monster_chapter = { ["atk"]=570000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30040, + 30041, + 30042 }, ["skill"]={ 10016 @@ -785,9 +785,9 @@ local monster_chapter = { ["atk"]=530000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20052, + 20053, + 20054 }, ["monster_exp"]=16000 }, @@ -797,9 +797,9 @@ local monster_chapter = { ["atk"]=550000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20022, + 20023, + 20024 }, ["monster_exp"]=18000 }, @@ -809,9 +809,9 @@ local monster_chapter = { ["atk"]=570000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20043, + 20044, + 20045 }, ["monster_exp"]=21000 }, @@ -821,9 +821,9 @@ local monster_chapter = { ["atk"]=590000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20007, + 20008, + 20009 }, ["monster_exp"]=22000 }, @@ -834,9 +834,9 @@ local monster_chapter = { ["atk"]=590000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30043, + 30044, + 30045 }, ["skill"]={ 10016 @@ -852,9 +852,9 @@ local monster_chapter = { ["atk"]=610000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20049, + 20050, + 20051 }, ["monster_exp"]=15000 }, @@ -864,9 +864,9 @@ local monster_chapter = { ["atk"]=630000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20010, + 20011, + 20012 }, ["monster_exp"]=16000 }, @@ -876,9 +876,9 @@ local monster_chapter = { ["atk"]=650000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20019, + 20020, + 20021 }, ["monster_exp"]=17000 }, @@ -888,9 +888,9 @@ local monster_chapter = { ["atk"]=670000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20046, + 20047, + 20048 }, ["monster_exp"]=17000 }, @@ -901,9 +901,9 @@ local monster_chapter = { ["atk"]=920000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30001, + 30002, + 30003 }, ["skill"]={ 10020 @@ -916,9 +916,9 @@ local monster_chapter = { ["atk"]=380000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20121, + 20122, + 20123 }, ["monster_exp"]=11000 }, @@ -928,9 +928,9 @@ local monster_chapter = { ["atk"]=400000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20118, + 20119, + 20120 }, ["monster_exp"]=11000 }, @@ -940,9 +940,9 @@ local monster_chapter = { ["atk"]=420000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20034, + 20035, + 20036 }, ["monster_exp"]=17000 }, @@ -952,9 +952,9 @@ local monster_chapter = { ["atk"]=440000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20052, + 20053, + 20054 }, ["monster_exp"]=19000 }, @@ -965,9 +965,9 @@ local monster_chapter = { ["atk"]=490000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30064, + 30065, + 30066 }, ["monster_exp"]=18000 }, @@ -977,9 +977,9 @@ local monster_chapter = { ["atk"]=500000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20001, + 20002, + 20003 }, ["monster_exp"]=9000 }, @@ -989,9 +989,9 @@ local monster_chapter = { ["atk"]=570000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20013, + 20014, + 20015 }, ["monster_exp"]=10000 }, @@ -1001,9 +1001,9 @@ local monster_chapter = { ["atk"]=520000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20118, + 20119, + 20120 }, ["monster_exp"]=11000 }, @@ -1013,9 +1013,9 @@ local monster_chapter = { ["atk"]=590000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20034, + 20035, + 20036 }, ["monster_exp"]=12000 }, @@ -1026,9 +1026,9 @@ local monster_chapter = { ["atk"]=600000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30067, + 30068, + 30069 }, ["monster_exp"]=12000 }, @@ -1038,9 +1038,9 @@ local monster_chapter = { ["atk"]=560000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20121, + 20122, + 20123 }, ["monster_exp"]=16000 }, @@ -1050,9 +1050,9 @@ local monster_chapter = { ["atk"]=580000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20001, + 20002, + 20003 }, ["monster_exp"]=18000 }, @@ -1062,9 +1062,9 @@ local monster_chapter = { ["atk"]=600000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20034, + 20035, + 20036 }, ["monster_exp"]=21000 }, @@ -1074,9 +1074,9 @@ local monster_chapter = { ["atk"]=620000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20127, + 20128, + 20129 }, ["monster_exp"]=22000 }, @@ -1087,9 +1087,9 @@ local monster_chapter = { ["atk"]=620000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30064, + 30065, + 30066 }, ["monster_exp"]=24000 }, @@ -1099,9 +1099,9 @@ local monster_chapter = { ["atk"]=700000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20118, + 20119, + 20120 }, ["monster_exp"]=15000 }, @@ -1111,9 +1111,9 @@ local monster_chapter = { ["atk"]=720000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20001, + 20002, + 20003 }, ["monster_exp"]=16000 }, @@ -1123,9 +1123,9 @@ local monster_chapter = { ["atk"]=750000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20121, + 20122, + 20123 }, ["monster_exp"]=17000 }, @@ -1135,9 +1135,9 @@ local monster_chapter = { ["atk"]=770000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20127, + 20128, + 20129 }, ["monster_exp"]=17000 }, @@ -1148,10 +1148,10 @@ local monster_chapter = { ["atk"]=1070000, ["atk_times"]=4, ["hurt_skill"]={ - 10004, - 10005, - 10006, - 10007 + 40001, + 40002, + 40003, + 40004 }, ["skill"]={ 10021, @@ -1165,9 +1165,9 @@ local monster_chapter = { ["atk"]=500000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20118, + 20119, + 20120 }, ["monster_exp"]=11000 }, @@ -1177,9 +1177,9 @@ local monster_chapter = { ["atk"]=520000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20001, + 20002, + 20003 }, ["monster_exp"]=11000 }, @@ -1189,9 +1189,9 @@ local monster_chapter = { ["atk"]=550000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20034, + 20035, + 20036 }, ["monster_exp"]=17000 }, @@ -1201,9 +1201,9 @@ local monster_chapter = { ["atk"]=580000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20127, + 20128, + 20129 }, ["monster_exp"]=19000 }, @@ -1214,9 +1214,9 @@ local monster_chapter = { ["atk"]=640000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30076, + 30077, + 30078 }, ["monster_exp"]=18000 }, @@ -1226,9 +1226,9 @@ local monster_chapter = { ["atk"]=600000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20001, + 20002, + 20003 }, ["monster_exp"]=9000 }, @@ -1238,9 +1238,9 @@ local monster_chapter = { ["atk"]=670000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20121, + 20122, + 20123 }, ["monster_exp"]=10000 }, @@ -1250,9 +1250,9 @@ local monster_chapter = { ["atk"]=630000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20013, + 20014, + 20015 }, ["monster_exp"]=11000 }, @@ -1262,9 +1262,9 @@ local monster_chapter = { ["atk"]=700000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20034, + 20035, + 20036 }, ["monster_exp"]=12000 }, @@ -1275,9 +1275,9 @@ local monster_chapter = { ["atk"]=690000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30064, + 30065, + 30066 }, ["monster_exp"]=12000 }, @@ -1287,9 +1287,9 @@ local monster_chapter = { ["atk"]=650000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20001, + 20002, + 20003 }, ["monster_exp"]=16000 }, @@ -1299,9 +1299,9 @@ local monster_chapter = { ["atk"]=670000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20121, + 20122, + 20123 }, ["monster_exp"]=18000 }, @@ -1311,9 +1311,9 @@ local monster_chapter = { ["atk"]=700000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20034, + 20035, + 20036 }, ["monster_exp"]=21000 }, @@ -1323,9 +1323,9 @@ local monster_chapter = { ["atk"]=720000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20001, + 20002, + 20003 }, ["monster_exp"]=22000 }, @@ -1336,9 +1336,9 @@ local monster_chapter = { ["atk"]=710000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30067, + 30068, + 30069 }, ["monster_exp"]=24000 }, @@ -1348,9 +1348,9 @@ local monster_chapter = { ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20121, + 20122, + 20123 }, ["monster_exp"]=15000 }, @@ -1360,9 +1360,9 @@ local monster_chapter = { ["atk"]=780000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20127, + 20128, + 20129 }, ["monster_exp"]=16000 }, @@ -1372,9 +1372,9 @@ local monster_chapter = { ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20034, + 20035, + 20036 }, ["monster_exp"]=17000 }, @@ -1384,9 +1384,9 @@ local monster_chapter = { ["atk"]=830000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20118, + 20119, + 20120 }, ["monster_exp"]=17000 }, @@ -1397,9 +1397,9 @@ local monster_chapter = { ["atk"]=1210000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30073, + 30074, + 30075 }, ["skill"]={ 10023 @@ -1412,9 +1412,9 @@ local monster_chapter = { ["atk"]=590000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20028, + 20029, + 20030 }, ["monster_exp"]=11000 }, @@ -1424,9 +1424,9 @@ local monster_chapter = { ["atk"]=620000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20025, + 20026, + 20027 }, ["monster_exp"]=11000 }, @@ -1436,9 +1436,9 @@ local monster_chapter = { ["atk"]=650000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20109, + 20110, + 20111 }, ["monster_exp"]=17000 }, @@ -1448,9 +1448,9 @@ local monster_chapter = { ["atk"]=680000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20112, + 20113, + 20114 }, ["monster_exp"]=19000 }, @@ -1461,9 +1461,9 @@ local monster_chapter = { ["atk"]=750000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30034, + 30035, + 30036 }, ["skill"]={ 10017 @@ -1476,9 +1476,9 @@ local monster_chapter = { ["atk"]=700000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20034, + 20035, + 20036 }, ["monster_exp"]=9000 }, @@ -1488,9 +1488,9 @@ local monster_chapter = { ["atk"]=790000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20043, + 20044, + 20045 }, ["monster_exp"]=10000 }, @@ -1500,9 +1500,9 @@ local monster_chapter = { ["atk"]=740000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20040, + 20041, + 20042 }, ["monster_exp"]=11000 }, @@ -1512,9 +1512,9 @@ local monster_chapter = { ["atk"]=830000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20046, + 20047, + 20048 }, ["monster_exp"]=12000 }, @@ -1525,9 +1525,9 @@ local monster_chapter = { ["atk"]=800000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30043, + 30044, + 30045 }, ["skill"]={ 10016 @@ -1543,9 +1543,9 @@ local monster_chapter = { ["atk"]=760000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20049, + 20050, + 20051 }, ["monster_exp"]=16000 }, @@ -1555,9 +1555,9 @@ local monster_chapter = { ["atk"]=790000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20007, + 20008, + 20009 }, ["monster_exp"]=18000 }, @@ -1567,9 +1567,9 @@ local monster_chapter = { ["atk"]=820000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20016, + 20017, + 20018 }, ["monster_exp"]=21000 }, @@ -1579,9 +1579,9 @@ local monster_chapter = { ["atk"]=840000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20037, + 20038, + 20039 }, ["monster_exp"]=22000 }, @@ -1592,9 +1592,9 @@ local monster_chapter = { ["atk"]=870000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30001, + 30002, + 30003 }, ["skill"]={ 10020 @@ -1607,9 +1607,9 @@ local monster_chapter = { ["atk"]=910000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20085, + 20086, + 20087 }, ["monster_exp"]=15000 }, @@ -1619,9 +1619,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20091, + 20092, + 20093 }, ["monster_exp"]=16000 }, @@ -1631,9 +1631,9 @@ local monster_chapter = { ["atk"]=960000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20088, + 20089, + 20090 }, ["monster_exp"]=17000 }, @@ -1643,9 +1643,9 @@ local monster_chapter = { ["atk"]=990000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20094, + 20095, + 20096 }, ["monster_exp"]=17000 }, @@ -1656,9 +1656,9 @@ local monster_chapter = { ["atk"]=1320000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30013, + 30014, + 30015 }, ["skill"]={ 10024 @@ -1671,9 +1671,9 @@ local monster_chapter = { ["atk"]=640000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20085, + 20086, + 20087 }, ["monster_exp"]=11000 }, @@ -1683,9 +1683,9 @@ local monster_chapter = { ["atk"]=670000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20094, + 20095, + 20096 }, ["monster_exp"]=11000 }, @@ -1695,9 +1695,9 @@ local monster_chapter = { ["atk"]=700000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20052, + 20053, + 20054 }, ["monster_exp"]=17000 }, @@ -1707,9 +1707,9 @@ local monster_chapter = { ["atk"]=740000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20031, + 20032, + 20033 }, ["monster_exp"]=19000 }, @@ -1720,9 +1720,9 @@ local monster_chapter = { ["atk"]=850000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30043, + 30044, + 30045 }, ["skill"]={ 10016 @@ -1738,9 +1738,9 @@ local monster_chapter = { ["atk"]=810000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20046, + 20047, + 20048 }, ["monster_exp"]=9000 }, @@ -1750,9 +1750,9 @@ local monster_chapter = { ["atk"]=900000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20034, + 20035, + 20036 }, ["monster_exp"]=10000 }, @@ -1762,9 +1762,9 @@ local monster_chapter = { ["atk"]=840000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20091, + 20092, + 20093 }, ["monster_exp"]=11000 }, @@ -1774,9 +1774,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20094, + 20095, + 20096 }, ["monster_exp"]=12000 }, @@ -1787,9 +1787,9 @@ local monster_chapter = { ["atk"]=910000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30013, + 30014, + 30015 }, ["skill"]={ 10024 @@ -1802,9 +1802,9 @@ local monster_chapter = { ["atk"]=870000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20088, + 20089, + 20090 }, ["monster_exp"]=16000 }, @@ -1814,9 +1814,9 @@ local monster_chapter = { ["atk"]=900000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20097, + 20098, + 20099 }, ["monster_exp"]=18000 }, @@ -1826,9 +1826,9 @@ local monster_chapter = { ["atk"]=930000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20007, + 20008, + 20009 }, ["monster_exp"]=21000 }, @@ -1838,9 +1838,9 @@ local monster_chapter = { ["atk"]=960000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20037, + 20038, + 20039 }, ["monster_exp"]=22000 }, @@ -1851,9 +1851,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30001, + 30002, + 30003 }, ["skill"]={ 10020 @@ -1866,9 +1866,9 @@ local monster_chapter = { ["atk"]=990000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20040, + 20041, + 20042 }, ["monster_exp"]=15000 }, @@ -1878,9 +1878,9 @@ local monster_chapter = { ["atk"]=1020000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20043, + 20044, + 20045 }, ["monster_exp"]=16000 }, @@ -1890,9 +1890,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20085, + 20086, + 20087 }, ["monster_exp"]=17000 }, @@ -1902,9 +1902,9 @@ local monster_chapter = { ["atk"]=1080000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20100, + 20101, + 20102 }, ["monster_exp"]=17000 }, @@ -1915,10 +1915,10 @@ local monster_chapter = { ["atk"]=1480000, ["atk_times"]=4, ["hurt_skill"]={ - 10004, - 10005, - 10006, - 10007 + 40005, + 40006, + 40007, + 40008 }, ["skill"]={ 10025, @@ -1932,9 +1932,9 @@ local monster_chapter = { ["atk"]=770000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20097, + 20098, + 20099 }, ["monster_exp"]=11000 }, @@ -1944,9 +1944,9 @@ local monster_chapter = { ["atk"]=800000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20091, + 20092, + 20093 }, ["monster_exp"]=11000 }, @@ -1956,9 +1956,9 @@ local monster_chapter = { ["atk"]=840000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20004, + 20005, + 20006 }, ["monster_exp"]=17000 }, @@ -1968,9 +1968,9 @@ local monster_chapter = { ["atk"]=880000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20013, + 20014, + 20015 }, ["monster_exp"]=19000 }, @@ -1981,9 +1981,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30019, + 30020, + 30021 }, ["skill"]={ 10015 @@ -1996,9 +1996,9 @@ local monster_chapter = { ["atk"]=900000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20001, + 20002, + 20003 }, ["monster_exp"]=9000 }, @@ -2008,9 +2008,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20019, + 20020, + 20021 }, ["monster_exp"]=10000 }, @@ -2020,9 +2020,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20115, + 20116, + 20117 }, ["monster_exp"]=11000 }, @@ -2032,9 +2032,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20112, + 20113, + 20114 }, ["monster_exp"]=12000 }, @@ -2045,9 +2045,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30034, + 30035, + 30036 }, ["skill"]={ 10017 @@ -2060,9 +2060,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20112, + 20113, + 20114 }, ["monster_exp"]=16000 }, @@ -2072,9 +2072,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20109, + 20110, + 20111 }, ["monster_exp"]=18000 }, @@ -2084,9 +2084,9 @@ local monster_chapter = { ["atk"]=1080000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20037, + 20038, + 20039 }, ["monster_exp"]=21000 }, @@ -2096,9 +2096,9 @@ local monster_chapter = { ["atk"]=1110000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20052, + 20053, + 20054 }, ["monster_exp"]=22000 }, @@ -2109,9 +2109,9 @@ local monster_chapter = { ["atk"]=1160000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30043, + 30044, + 30045 }, ["skill"]={ 10016 @@ -2127,9 +2127,9 @@ local monster_chapter = { ["atk"]=1270000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20043, + 20044, + 20045 }, ["monster_exp"]=15000 }, @@ -2139,9 +2139,9 @@ local monster_chapter = { ["atk"]=1300000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20013, + 20014, + 20015 }, ["monster_exp"]=16000 }, @@ -2151,9 +2151,9 @@ local monster_chapter = { ["atk"]=1340000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20115, + 20116, + 20117 }, ["monster_exp"]=17000 }, @@ -2163,9 +2163,9 @@ local monster_chapter = { ["atk"]=1380000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20112, + 20113, + 20114 }, ["monster_exp"]=17000 }, @@ -2176,9 +2176,9 @@ local monster_chapter = { ["atk"]=2000000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30049, + 30050, + 30051 }, ["skill"]={ 10027, @@ -2192,9 +2192,9 @@ local monster_chapter = { ["atk"]=770000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20028, + 20029, + 20030 }, ["monster_exp"]=11000 }, @@ -2204,9 +2204,9 @@ local monster_chapter = { ["atk"]=800000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20109, + 20110, + 20111 }, ["monster_exp"]=11000 }, @@ -2216,9 +2216,9 @@ local monster_chapter = { ["atk"]=840000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20094, + 20095, + 20096 }, ["monster_exp"]=17000 }, @@ -2228,9 +2228,9 @@ local monster_chapter = { ["atk"]=880000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20088, + 20089, + 20090 }, ["monster_exp"]=19000 }, @@ -2241,9 +2241,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30013, + 30014, + 30015 }, ["skill"]={ 10024 @@ -2256,9 +2256,9 @@ local monster_chapter = { ["atk"]=900000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20085, + 20086, + 20087 }, ["monster_exp"]=9000 }, @@ -2268,9 +2268,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20100, + 20101, + 20102 }, ["monster_exp"]=10000 }, @@ -2280,9 +2280,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20112, + 20113, + 20114 }, ["monster_exp"]=11000 }, @@ -2292,9 +2292,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20028, + 20029, + 20030 }, ["monster_exp"]=12000 }, @@ -2305,9 +2305,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30049, + 30050, + 30051 }, ["skill"]={ 10027, @@ -2321,9 +2321,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20109, + 20110, + 20111 }, ["monster_exp"]=16000 }, @@ -2333,9 +2333,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20115, + 20116, + 20117 }, ["monster_exp"]=18000 }, @@ -2345,9 +2345,9 @@ local monster_chapter = { ["atk"]=1080000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20028, + 20029, + 20030 }, ["monster_exp"]=21000 }, @@ -2357,9 +2357,9 @@ local monster_chapter = { ["atk"]=1110000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20112, + 20113, + 20114 }, ["monster_exp"]=22000 }, @@ -2370,9 +2370,9 @@ local monster_chapter = { ["atk"]=1160000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30034, + 30035, + 30036 }, ["skill"]={ 10017 @@ -2385,9 +2385,9 @@ local monster_chapter = { ["atk"]=1270000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20091, + 20092, + 20093 }, ["monster_exp"]=15000 }, @@ -2397,9 +2397,9 @@ local monster_chapter = { ["atk"]=1300000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20097, + 20098, + 20099 }, ["monster_exp"]=16000 }, @@ -2409,9 +2409,9 @@ local monster_chapter = { ["atk"]=1340000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20100, + 20101, + 20102 }, ["monster_exp"]=17000 }, @@ -2421,9 +2421,9 @@ local monster_chapter = { ["atk"]=1380000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20094, + 20095, + 20096 }, ["monster_exp"]=17000 }, @@ -2434,9 +2434,9 @@ local monster_chapter = { ["atk"]=2000000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30007, + 30008, + 30009 }, ["skill"]={ 10029, @@ -2453,9 +2453,9 @@ local monster_chapter = { ["atk"]=770000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20055, + 20056, + 20057 }, ["monster_exp"]=11000 }, @@ -2465,9 +2465,9 @@ local monster_chapter = { ["atk"]=800000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20109, + 20110, + 20111 }, ["monster_exp"]=11000 }, @@ -2477,9 +2477,9 @@ local monster_chapter = { ["atk"]=840000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20058, + 20059, + 20060 }, ["monster_exp"]=17000 }, @@ -2489,9 +2489,9 @@ local monster_chapter = { ["atk"]=880000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20115, + 20116, + 20117 }, ["monster_exp"]=19000 }, @@ -2502,9 +2502,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30049, + 30050, + 30051 }, ["skill"]={ 10027, @@ -2518,9 +2518,9 @@ local monster_chapter = { ["atk"]=900000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20061, + 20062, + 20063 }, ["monster_exp"]=9000 }, @@ -2530,9 +2530,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20010, + 20011, + 20012 }, ["monster_exp"]=10000 }, @@ -2542,9 +2542,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20064, + 20065, + 20066 }, ["monster_exp"]=11000 }, @@ -2554,9 +2554,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20019, + 20020, + 20021 }, ["monster_exp"]=12000 }, @@ -2567,9 +2567,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30019, + 30020, + 30021 }, ["skill"]={ 10015 @@ -2582,9 +2582,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20139, + 20140, + 20141 }, ["monster_exp"]=16000 }, @@ -2594,9 +2594,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20064, + 20065, + 20066 }, ["monster_exp"]=18000 }, @@ -2606,9 +2606,9 @@ local monster_chapter = { ["atk"]=1080000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20016, + 20017, + 20018 }, ["monster_exp"]=21000 }, @@ -2618,9 +2618,9 @@ local monster_chapter = { ["atk"]=1110000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20136, + 20137, + 20138 }, ["monster_exp"]=22000 }, @@ -2631,9 +2631,9 @@ local monster_chapter = { ["atk"]=1160000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30043, + 30044, + 30045 }, ["skill"]={ 10016 @@ -2649,9 +2649,9 @@ local monster_chapter = { ["atk"]=1270000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20058, + 20059, + 20060 }, ["monster_exp"]=15000 }, @@ -2661,9 +2661,9 @@ local monster_chapter = { ["atk"]=1300000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20016, + 20017, + 20018 }, ["monster_exp"]=16000 }, @@ -2673,9 +2673,9 @@ local monster_chapter = { ["atk"]=1340000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20139, + 20140, + 20141 }, ["monster_exp"]=17000 }, @@ -2685,9 +2685,9 @@ local monster_chapter = { ["atk"]=1380000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20064, + 20065, + 20066 }, ["monster_exp"]=17000 }, @@ -2698,10 +2698,10 @@ local monster_chapter = { ["atk"]=2000000, ["atk_times"]=4, ["hurt_skill"]={ - 10004, - 10005, - 10006, - 10007 + 40009, + 40010, + 40011, + 40012 }, ["skill"]={ 10031 @@ -2714,9 +2714,9 @@ local monster_chapter = { ["atk"]=770000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20067, + 20068, + 20069 }, ["monster_exp"]=11000 }, @@ -2726,9 +2726,9 @@ local monster_chapter = { ["atk"]=800000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20016, + 20017, + 20018 }, ["monster_exp"]=11000 }, @@ -2738,9 +2738,9 @@ local monster_chapter = { ["atk"]=840000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20019, + 20020, + 20021 }, ["monster_exp"]=17000 }, @@ -2750,9 +2750,9 @@ local monster_chapter = { ["atk"]=880000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20064, + 20065, + 20066 }, ["monster_exp"]=19000 }, @@ -2763,9 +2763,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30043, + 30044, + 30045 }, ["skill"]={ 10016 @@ -2781,9 +2781,9 @@ local monster_chapter = { ["atk"]=900000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20139, + 20140, + 20141 }, ["monster_exp"]=9000 }, @@ -2793,9 +2793,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20070, + 20071, + 20072 }, ["monster_exp"]=10000 }, @@ -2805,9 +2805,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20010, + 20011, + 20012 }, ["monster_exp"]=11000 }, @@ -2817,9 +2817,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20061, + 20062, + 20063 }, ["monster_exp"]=12000 }, @@ -2830,9 +2830,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30013, + 30014, + 30015 }, ["skill"]={ 10024 @@ -2845,9 +2845,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20136, + 20137, + 20138 }, ["monster_exp"]=16000 }, @@ -2857,9 +2857,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20073, + 20074, + 20075 }, ["monster_exp"]=18000 }, @@ -2869,9 +2869,9 @@ local monster_chapter = { ["atk"]=1080000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20016, + 20017, + 20018 }, ["monster_exp"]=21000 }, @@ -2881,9 +2881,9 @@ local monster_chapter = { ["atk"]=1110000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20115, + 20116, + 20117 }, ["monster_exp"]=22000 }, @@ -2894,9 +2894,9 @@ local monster_chapter = { ["atk"]=1160000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30049, + 30050, + 30051 }, ["skill"]={ 10027, @@ -2910,9 +2910,9 @@ local monster_chapter = { ["atk"]=1270000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20055, + 20056, + 20057 }, ["monster_exp"]=15000 }, @@ -2922,9 +2922,9 @@ local monster_chapter = { ["atk"]=1300000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20028, + 20029, + 20030 }, ["monster_exp"]=16000 }, @@ -2934,9 +2934,9 @@ local monster_chapter = { ["atk"]=1340000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20109, + 20110, + 20111 }, ["monster_exp"]=17000 }, @@ -2946,9 +2946,9 @@ local monster_chapter = { ["atk"]=1380000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20076, + 20077, + 20078 }, ["monster_exp"]=17000 }, @@ -2959,9 +2959,9 @@ local monster_chapter = { ["atk"]=2000000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30022, + 30023, + 30024 }, ["skill"]={ 10032 @@ -2974,9 +2974,9 @@ local monster_chapter = { ["atk"]=770000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20013, + 20014, + 20015 }, ["monster_exp"]=11000 }, @@ -2986,9 +2986,9 @@ local monster_chapter = { ["atk"]=800000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20061, + 20062, + 20063 }, ["monster_exp"]=11000 }, @@ -2998,9 +2998,9 @@ local monster_chapter = { ["atk"]=840000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20013, + 20014, + 20015 }, ["monster_exp"]=17000 }, @@ -3010,9 +3010,9 @@ local monster_chapter = { ["atk"]=880000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20073, + 20074, + 20075 }, ["monster_exp"]=19000 }, @@ -3023,9 +3023,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30040, + 30041, + 30042 }, ["skill"]={ 10016 @@ -3041,9 +3041,9 @@ local monster_chapter = { ["atk"]=900000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20061, + 20062, + 20063 }, ["monster_exp"]=9000 }, @@ -3053,9 +3053,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20073, + 20074, + 20075 }, ["monster_exp"]=10000 }, @@ -3065,9 +3065,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20091, + 20092, + 20093 }, ["monster_exp"]=11000 }, @@ -3077,9 +3077,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20127, + 20128, + 20129 }, ["monster_exp"]=12000 }, @@ -3090,9 +3090,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30043, + 30044, + 30045 }, ["skill"]={ 10016 @@ -3108,9 +3108,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20001, + 20002, + 20003 }, ["monster_exp"]=16000 }, @@ -3120,9 +3120,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20061, + 20062, + 20063 }, ["monster_exp"]=18000 }, @@ -3132,9 +3132,9 @@ local monster_chapter = { ["atk"]=1080000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20127, + 20128, + 20129 }, ["monster_exp"]=21000 }, @@ -3144,9 +3144,9 @@ local monster_chapter = { ["atk"]=1110000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20052, + 20053, + 20054 }, ["monster_exp"]=22000 }, @@ -3157,9 +3157,9 @@ local monster_chapter = { ["atk"]=1160000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30001, + 30002, + 30003 }, ["skill"]={ 10020 @@ -3172,9 +3172,9 @@ local monster_chapter = { ["atk"]=1270000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20034, + 20035, + 20036 }, ["monster_exp"]=15000 }, @@ -3184,9 +3184,9 @@ local monster_chapter = { ["atk"]=1300000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20013, + 20014, + 20015 }, ["monster_exp"]=16000 }, @@ -3196,9 +3196,9 @@ local monster_chapter = { ["atk"]=1340000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20073, + 20074, + 20075 }, ["monster_exp"]=17000 }, @@ -3208,9 +3208,9 @@ local monster_chapter = { ["atk"]=1380000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20091, + 20092, + 20093 }, ["monster_exp"]=17000 }, @@ -3221,9 +3221,9 @@ local monster_chapter = { ["atk"]=2000000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30016, + 30017, + 30018 }, ["skill"]={ 10033 @@ -3239,9 +3239,9 @@ local monster_chapter = { ["atk"]=770000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20127, + 20128, + 20129 }, ["monster_exp"]=11000 }, @@ -3251,9 +3251,9 @@ local monster_chapter = { ["atk"]=800000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20034, + 20035, + 20036 }, ["monster_exp"]=11000 }, @@ -3263,9 +3263,9 @@ local monster_chapter = { ["atk"]=840000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20001, + 20002, + 20003 }, ["monster_exp"]=17000 }, @@ -3275,9 +3275,9 @@ local monster_chapter = { ["atk"]=880000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20073, + 20074, + 20075 }, ["monster_exp"]=19000 }, @@ -3288,9 +3288,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30043, + 30044, + 30045 }, ["skill"]={ 10016 @@ -3306,9 +3306,9 @@ local monster_chapter = { ["atk"]=900000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20061, + 20062, + 20063 }, ["monster_exp"]=9000 }, @@ -3318,9 +3318,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20127, + 20128, + 20129 }, ["monster_exp"]=10000 }, @@ -3330,9 +3330,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20091, + 20092, + 20093 }, ["monster_exp"]=11000 }, @@ -3342,9 +3342,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20052, + 20053, + 20054 }, ["monster_exp"]=12000 }, @@ -3355,9 +3355,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30022, + 30023, + 30024 }, ["skill"]={ 10032 @@ -3370,9 +3370,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20073, + 20074, + 20075 }, ["monster_exp"]=16000 }, @@ -3382,9 +3382,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20001, + 20002, + 20003 }, ["monster_exp"]=18000 }, @@ -3394,9 +3394,9 @@ local monster_chapter = { ["atk"]=1080000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20127, + 20128, + 20129 }, ["monster_exp"]=21000 }, @@ -3406,9 +3406,9 @@ local monster_chapter = { ["atk"]=1110000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20034, + 20035, + 20036 }, ["monster_exp"]=22000 }, @@ -3419,9 +3419,9 @@ local monster_chapter = { ["atk"]=1160000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30004, + 30005, + 30006 }, ["skill"]={ 10019 @@ -3434,9 +3434,9 @@ local monster_chapter = { ["atk"]=1270000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20001, + 20002, + 20003 }, ["monster_exp"]=15000 }, @@ -3446,9 +3446,9 @@ local monster_chapter = { ["atk"]=1300000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20091, + 20092, + 20093 }, ["monster_exp"]=16000 }, @@ -3458,9 +3458,9 @@ local monster_chapter = { ["atk"]=1340000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20061, + 20062, + 20063 }, ["monster_exp"]=17000 }, @@ -3470,9 +3470,9 @@ local monster_chapter = { ["atk"]=1380000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20013, + 20014, + 20015 }, ["monster_exp"]=17000 }, @@ -3483,9 +3483,9 @@ local monster_chapter = { ["atk"]=2000000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30061, + 30062, + 30063 }, ["skill"]={ 10034 @@ -3502,9 +3502,9 @@ local monster_chapter = { ["atk"]=770000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20061, + 20062, + 20063 }, ["monster_exp"]=11000 }, @@ -3514,9 +3514,9 @@ local monster_chapter = { ["atk"]=800000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20127, + 20128, + 20129 }, ["monster_exp"]=11000 }, @@ -3526,9 +3526,9 @@ local monster_chapter = { ["atk"]=840000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20091, + 20092, + 20093 }, ["monster_exp"]=17000 }, @@ -3538,9 +3538,9 @@ local monster_chapter = { ["atk"]=880000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20052, + 20053, + 20054 }, ["monster_exp"]=19000 }, @@ -3551,9 +3551,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30022, + 30023, + 30024 }, ["skill"]={ 10032 @@ -3566,9 +3566,9 @@ local monster_chapter = { ["atk"]=900000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20013, + 20014, + 20015 }, ["monster_exp"]=9000 }, @@ -3578,9 +3578,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20061, + 20062, + 20063 }, ["monster_exp"]=10000 }, @@ -3590,9 +3590,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20013, + 20014, + 20015 }, ["monster_exp"]=11000 }, @@ -3602,9 +3602,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20073, + 20074, + 20075 }, ["monster_exp"]=12000 }, @@ -3615,9 +3615,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30040, + 30041, + 30042 }, ["skill"]={ 10016 @@ -3633,9 +3633,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20034, + 20035, + 20036 }, ["monster_exp"]=16000 }, @@ -3645,9 +3645,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20013, + 20014, + 20015 }, ["monster_exp"]=18000 }, @@ -3657,9 +3657,9 @@ local monster_chapter = { ["atk"]=1080000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20073, + 20074, + 20075 }, ["monster_exp"]=21000 }, @@ -3669,9 +3669,9 @@ local monster_chapter = { ["atk"]=1110000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20091, + 20092, + 20093 }, ["monster_exp"]=22000 }, @@ -3682,9 +3682,9 @@ local monster_chapter = { ["atk"]=1160000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30016, + 30017, + 30018 }, ["skill"]={ 10033 @@ -3700,9 +3700,9 @@ local monster_chapter = { ["atk"]=1270000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20034, + 20035, + 20036 }, ["monster_exp"]=15000 }, @@ -3712,9 +3712,9 @@ local monster_chapter = { ["atk"]=1300000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20013, + 20014, + 20015 }, ["monster_exp"]=16000 }, @@ -3724,9 +3724,9 @@ local monster_chapter = { ["atk"]=1340000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20073, + 20074, + 20075 }, ["monster_exp"]=17000 }, @@ -3736,9 +3736,9 @@ local monster_chapter = { ["atk"]=1380000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20001, + 20002, + 20003 }, ["monster_exp"]=17000 }, @@ -3749,10 +3749,10 @@ local monster_chapter = { ["atk"]=2000000, ["atk_times"]=4, ["hurt_skill"]={ - 10004, - 10005, - 10006, - 10007 + 40013, + 40014, + 40015, + 40016 }, ["skill"]={ 10035 @@ -3765,9 +3765,9 @@ local monster_chapter = { ["atk"]=770000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20034, + 20035, + 20036 }, ["monster_exp"]=11000 }, @@ -3777,9 +3777,9 @@ local monster_chapter = { ["atk"]=800000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20013, + 20014, + 20015 }, ["monster_exp"]=11000 }, @@ -3789,9 +3789,9 @@ local monster_chapter = { ["atk"]=840000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20073, + 20074, + 20075 }, ["monster_exp"]=17000 }, @@ -3801,9 +3801,9 @@ local monster_chapter = { ["atk"]=880000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20091, + 20092, + 20093 }, ["monster_exp"]=19000 }, @@ -3814,9 +3814,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30016, + 30017, + 30018 }, ["skill"]={ 10033 @@ -3832,9 +3832,9 @@ local monster_chapter = { ["atk"]=900000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20001, + 20002, + 20003 }, ["monster_exp"]=9000 }, @@ -3844,9 +3844,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20091, + 20092, + 20093 }, ["monster_exp"]=10000 }, @@ -3856,9 +3856,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20061, + 20062, + 20063 }, ["monster_exp"]=11000 }, @@ -3868,9 +3868,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20013, + 20014, + 20015 }, ["monster_exp"]=12000 }, @@ -3881,9 +3881,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30061, + 30062, + 30063 }, ["skill"]={ 10034 @@ -3900,9 +3900,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20061, + 20062, + 20063 }, ["monster_exp"]=16000 }, @@ -3912,9 +3912,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20010, + 20011, + 20012 }, ["monster_exp"]=18000 }, @@ -3924,9 +3924,9 @@ local monster_chapter = { ["atk"]=1080000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20064, + 20065, + 20066 }, ["monster_exp"]=21000 }, @@ -3936,9 +3936,9 @@ local monster_chapter = { ["atk"]=1110000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20019, + 20020, + 20021 }, ["monster_exp"]=22000 }, @@ -3949,9 +3949,9 @@ local monster_chapter = { ["atk"]=1160000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30019, + 30020, + 30021 }, ["skill"]={ 10015 @@ -3964,9 +3964,9 @@ local monster_chapter = { ["atk"]=1270000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20052, + 20053, + 20054 }, ["monster_exp"]=15000 }, @@ -3976,9 +3976,9 @@ local monster_chapter = { ["atk"]=1300000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20064, + 20065, + 20066 }, ["monster_exp"]=16000 }, @@ -3988,9 +3988,9 @@ local monster_chapter = { ["atk"]=1340000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20013, + 20014, + 20015 }, ["monster_exp"]=17000 }, @@ -4000,9 +4000,9 @@ local monster_chapter = { ["atk"]=1380000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20094, + 20095, + 20096 }, ["monster_exp"]=17000 }, @@ -4013,9 +4013,9 @@ local monster_chapter = { ["atk"]=2000000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30046, + 30047, + 30048 }, ["skill"]={ 10036 @@ -4032,9 +4032,9 @@ local monster_chapter = { ["atk"]=770000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20073, + 20074, + 20075 }, ["monster_exp"]=11000 }, @@ -4044,9 +4044,9 @@ local monster_chapter = { ["atk"]=800000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20001, + 20002, + 20003 }, ["monster_exp"]=11000 }, @@ -4056,9 +4056,9 @@ local monster_chapter = { ["atk"]=840000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20127, + 20128, + 20129 }, ["monster_exp"]=17000 }, @@ -4068,9 +4068,9 @@ local monster_chapter = { ["atk"]=880000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20034, + 20035, + 20036 }, ["monster_exp"]=19000 }, @@ -4081,9 +4081,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30004, + 30005, + 30006 }, ["skill"]={ 10019 @@ -4096,9 +4096,9 @@ local monster_chapter = { ["atk"]=900000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20139, + 20140, + 20141 }, ["monster_exp"]=9000 }, @@ -4108,9 +4108,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20016, + 20017, + 20018 }, ["monster_exp"]=10000 }, @@ -4120,9 +4120,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20031, + 20032, + 20033 }, ["monster_exp"]=11000 }, @@ -4132,9 +4132,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20010, + 20011, + 20012 }, ["monster_exp"]=12000 }, @@ -4145,9 +4145,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30010, + 30011, + 30012 }, ["skill"]={ 10015 @@ -4160,9 +4160,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20067, + 20068, + 20069 }, ["monster_exp"]=16000 }, @@ -4172,9 +4172,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20127, + 20128, + 20129 }, ["monster_exp"]=18000 }, @@ -4184,9 +4184,9 @@ local monster_chapter = { ["atk"]=1080000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20043, + 20044, + 20045 }, ["monster_exp"]=21000 }, @@ -4196,9 +4196,9 @@ local monster_chapter = { ["atk"]=1110000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20052, + 20053, + 20054 }, ["monster_exp"]=22000 }, @@ -4209,9 +4209,9 @@ local monster_chapter = { ["atk"]=1160000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30022, + 30023, + 30024 }, ["skill"]={ 10032 @@ -4224,9 +4224,9 @@ local monster_chapter = { ["atk"]=1270000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20010, + 20011, + 20012 }, ["monster_exp"]=15000 }, @@ -4236,9 +4236,9 @@ local monster_chapter = { ["atk"]=1300000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20016, + 20017, + 20018 }, ["monster_exp"]=16000 }, @@ -4248,9 +4248,9 @@ local monster_chapter = { ["atk"]=1340000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20139, + 20140, + 20141 }, ["monster_exp"]=17000 }, @@ -4260,9 +4260,9 @@ local monster_chapter = { ["atk"]=1380000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20106, + 20107, + 20108 }, ["monster_exp"]=17000 }, @@ -4273,10 +4273,10 @@ local monster_chapter = { ["atk"]=2000000, ["atk_times"]=4, ["hurt_skill"]={ - 10004, - 10005, - 10006, - 10007 + 40017, + 40018, + 40019, + 40020 }, ["skill"]={ 10038 @@ -4292,9 +4292,9 @@ local monster_chapter = { ["atk"]=770000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20142, + 20143, + 20144 }, ["monster_exp"]=11000 }, @@ -4304,9 +4304,9 @@ local monster_chapter = { ["atk"]=800000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20013, + 20014, + 20015 }, ["monster_exp"]=11000 }, @@ -4316,9 +4316,9 @@ local monster_chapter = { ["atk"]=840000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20067, + 20068, + 20069 }, ["monster_exp"]=17000 }, @@ -4328,9 +4328,9 @@ local monster_chapter = { ["atk"]=880000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20031, + 20032, + 20033 }, ["monster_exp"]=19000 }, @@ -4341,9 +4341,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30016, + 30017, + 30018 }, ["skill"]={ 10033 @@ -4359,9 +4359,9 @@ local monster_chapter = { ["atk"]=900000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20139, + 20140, + 20141 }, ["monster_exp"]=9000 }, @@ -4371,9 +4371,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20142, + 20143, + 20144 }, ["monster_exp"]=10000 }, @@ -4383,9 +4383,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20010, + 20011, + 20012 }, ["monster_exp"]=11000 }, @@ -4395,9 +4395,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20016, + 20017, + 20018 }, ["monster_exp"]=12000 }, @@ -4408,9 +4408,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30019, + 30020, + 30021 }, ["skill"]={ 10015 @@ -4423,9 +4423,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20055, + 20056, + 20057 }, ["monster_exp"]=16000 }, @@ -4435,9 +4435,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20067, + 20068, + 20069 }, ["monster_exp"]=18000 }, @@ -4447,9 +4447,9 @@ local monster_chapter = { ["atk"]=1080000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20031, + 20032, + 20033 }, ["monster_exp"]=21000 }, @@ -4459,9 +4459,9 @@ local monster_chapter = { ["atk"]=1110000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20043, + 20044, + 20045 }, ["monster_exp"]=22000 }, @@ -4472,9 +4472,9 @@ local monster_chapter = { ["atk"]=1160000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30004, + 30005, + 30006 }, ["skill"]={ 10019 @@ -4487,9 +4487,9 @@ local monster_chapter = { ["atk"]=1270000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20010, + 20011, + 20012 }, ["monster_exp"]=15000 }, @@ -4499,9 +4499,9 @@ local monster_chapter = { ["atk"]=1300000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20031, + 20032, + 20033 }, ["monster_exp"]=16000 }, @@ -4511,9 +4511,9 @@ local monster_chapter = { ["atk"]=1340000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20142, + 20143, + 20144 }, ["monster_exp"]=17000 }, @@ -4523,9 +4523,9 @@ local monster_chapter = { ["atk"]=1380000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20139, + 20140, + 20141 }, ["monster_exp"]=17000 }, @@ -4536,9 +4536,9 @@ local monster_chapter = { ["atk"]=2000000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30025, + 30026, + 30027 }, ["skill"]={ 10039 @@ -4555,9 +4555,9 @@ local monster_chapter = { ["atk"]=770000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20010, + 20011, + 20012 }, ["monster_exp"]=11000 }, @@ -4567,9 +4567,9 @@ local monster_chapter = { ["atk"]=800000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20055, + 20056, + 20057 }, ["monster_exp"]=11000 }, @@ -4579,9 +4579,9 @@ local monster_chapter = { ["atk"]=840000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20139, + 20140, + 20141 }, ["monster_exp"]=17000 }, @@ -4591,9 +4591,9 @@ local monster_chapter = { ["atk"]=880000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20031, + 20032, + 20033 }, ["monster_exp"]=19000 }, @@ -4604,9 +4604,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30040, + 30041, + 30042 }, ["skill"]={ 10016 @@ -4622,9 +4622,9 @@ local monster_chapter = { ["atk"]=900000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20010, + 20011, + 20012 }, ["monster_exp"]=9000 }, @@ -4634,9 +4634,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20031, + 20032, + 20033 }, ["monster_exp"]=10000 }, @@ -4646,9 +4646,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20106, + 20107, + 20108 }, ["monster_exp"]=11000 }, @@ -4658,9 +4658,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20139, + 20140, + 20141 }, ["monster_exp"]=12000 }, @@ -4671,9 +4671,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30025, + 30026, + 30027 }, ["skill"]={ 10039 @@ -4690,9 +4690,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20037, + 20038, + 20039 }, ["monster_exp"]=16000 }, @@ -4702,9 +4702,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20076, + 20077, + 20078 }, ["monster_exp"]=18000 }, @@ -4714,9 +4714,9 @@ local monster_chapter = { ["atk"]=1080000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20046, + 20047, + 20048 }, ["monster_exp"]=21000 }, @@ -4726,9 +4726,9 @@ local monster_chapter = { ["atk"]=1110000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20064, + 20065, + 20066 }, ["monster_exp"]=22000 }, @@ -4739,9 +4739,9 @@ local monster_chapter = { ["atk"]=1160000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30043, + 30044, + 30045 }, ["skill"]={ 10016 @@ -4757,9 +4757,9 @@ local monster_chapter = { ["atk"]=1270000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20037, + 20038, + 20039 }, ["monster_exp"]=15000 }, @@ -4769,9 +4769,9 @@ local monster_chapter = { ["atk"]=1300000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20004, + 20005, + 20006 }, ["monster_exp"]=16000 }, @@ -4781,9 +4781,9 @@ local monster_chapter = { ["atk"]=1340000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20082, + 20083, + 20084 }, ["monster_exp"]=17000 }, @@ -4793,9 +4793,9 @@ local monster_chapter = { ["atk"]=1380000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20103, + 20104, + 20105 }, ["monster_exp"]=17000 }, @@ -4806,10 +4806,10 @@ local monster_chapter = { ["atk"]=2000000, ["atk_times"]=4, ["hurt_skill"]={ - 10004, - 10005, - 10006, - 10007 + 40021, + 40022, + 40023, + 40024 }, ["skill"]={ 10040 @@ -4822,9 +4822,9 @@ local monster_chapter = { ["atk"]=770000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20157, + 20158, + 20159 }, ["monster_exp"]=11000 }, @@ -4834,9 +4834,9 @@ local monster_chapter = { ["atk"]=800000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20067, + 20068, + 20069 }, ["monster_exp"]=11000 }, @@ -4846,9 +4846,9 @@ local monster_chapter = { ["atk"]=840000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20031, + 20032, + 20033 }, ["monster_exp"]=17000 }, @@ -4858,9 +4858,9 @@ local monster_chapter = { ["atk"]=880000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20139, + 20140, + 20141 }, ["monster_exp"]=19000 }, @@ -4871,9 +4871,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30025, + 30026, + 30027 }, ["skill"]={ 10039 @@ -4890,9 +4890,9 @@ local monster_chapter = { ["atk"]=900000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20139, + 20140, + 20141 }, ["monster_exp"]=9000 }, @@ -4902,9 +4902,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20157, + 20158, + 20159 }, ["monster_exp"]=10000 }, @@ -4914,9 +4914,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20031, + 20032, + 20033 }, ["monster_exp"]=11000 }, @@ -4926,9 +4926,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20067, + 20068, + 20069 }, ["monster_exp"]=12000 }, @@ -4939,9 +4939,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30016, + 30017, + 30018 }, ["skill"]={ 10033 @@ -4957,9 +4957,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20055, + 20056, + 20057 }, ["monster_exp"]=16000 }, @@ -4969,9 +4969,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20154, + 20155, + 20156 }, ["monster_exp"]=18000 }, @@ -4981,9 +4981,9 @@ local monster_chapter = { ["atk"]=1080000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20016, + 20017, + 20018 }, ["monster_exp"]=21000 }, @@ -4993,9 +4993,9 @@ local monster_chapter = { ["atk"]=1110000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20010, + 20011, + 20012 }, ["monster_exp"]=22000 }, @@ -5006,9 +5006,9 @@ local monster_chapter = { ["atk"]=1160000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30010, + 30011, + 30012 }, ["skill"]={ 10015 @@ -5021,9 +5021,9 @@ local monster_chapter = { ["atk"]=1270000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20154, + 20155, + 20156 }, ["monster_exp"]=15000 }, @@ -5033,9 +5033,9 @@ local monster_chapter = { ["atk"]=1300000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20142, + 20143, + 20144 }, ["monster_exp"]=16000 }, @@ -5045,9 +5045,9 @@ local monster_chapter = { ["atk"]=1340000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20055, + 20056, + 20057 }, ["monster_exp"]=17000 }, @@ -5057,9 +5057,9 @@ local monster_chapter = { ["atk"]=1380000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20157, + 20158, + 20159 }, ["monster_exp"]=17000 }, @@ -5070,9 +5070,9 @@ local monster_chapter = { ["atk"]=2000000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30028, + 30029, + 30030 }, ["skill"]={ 10041 @@ -5090,9 +5090,9 @@ local monster_chapter = { ["atk"]=770000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20151, + 20152, + 20153 }, ["monster_exp"]=11000 }, @@ -5102,9 +5102,9 @@ local monster_chapter = { ["atk"]=800000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20145, + 20146, + 20147 }, ["monster_exp"]=11000 }, @@ -5114,9 +5114,9 @@ local monster_chapter = { ["atk"]=840000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20028, + 20029, + 20030 }, ["monster_exp"]=17000 }, @@ -5126,9 +5126,9 @@ local monster_chapter = { ["atk"]=880000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20154, + 20155, + 20156 }, ["monster_exp"]=19000 }, @@ -5139,9 +5139,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30013, + 30014, + 30015 }, ["skill"]={ 10024 @@ -5154,9 +5154,9 @@ local monster_chapter = { ["atk"]=900000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20115, + 20116, + 20117 }, ["monster_exp"]=9000 }, @@ -5166,9 +5166,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20151, + 20152, + 20153 }, ["monster_exp"]=10000 }, @@ -5178,9 +5178,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20157, + 20158, + 20159 }, ["monster_exp"]=11000 }, @@ -5190,9 +5190,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20109, + 20110, + 20111 }, ["monster_exp"]=12000 }, @@ -5203,9 +5203,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30043, + 30044, + 30045 }, ["skill"]={ 10016 @@ -5221,9 +5221,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20025, + 20026, + 20027 }, ["monster_exp"]=16000 }, @@ -5233,9 +5233,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20157, + 20158, + 20159 }, ["monster_exp"]=18000 }, @@ -5245,9 +5245,9 @@ local monster_chapter = { ["atk"]=1080000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20151, + 20152, + 20153 }, ["monster_exp"]=21000 }, @@ -5257,9 +5257,9 @@ local monster_chapter = { ["atk"]=1110000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20145, + 20146, + 20147 }, ["monster_exp"]=22000 }, @@ -5270,9 +5270,9 @@ local monster_chapter = { ["atk"]=1160000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30022, + 30023, + 30024 }, ["skill"]={ 10032 @@ -5285,9 +5285,9 @@ local monster_chapter = { ["atk"]=1270000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20109, + 20110, + 20111 }, ["monster_exp"]=15000 }, @@ -5297,9 +5297,9 @@ local monster_chapter = { ["atk"]=1300000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20154, + 20155, + 20156 }, ["monster_exp"]=16000 }, @@ -5309,9 +5309,9 @@ local monster_chapter = { ["atk"]=1340000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20145, + 20146, + 20147 }, ["monster_exp"]=17000 }, @@ -5321,9 +5321,9 @@ local monster_chapter = { ["atk"]=1380000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20115, + 20116, + 20117 }, ["monster_exp"]=17000 }, @@ -5334,10 +5334,10 @@ local monster_chapter = { ["atk"]=2000000, ["atk_times"]=4, ["hurt_skill"]={ - 10004, - 10005, - 10006, - 10007 + 40025, + 40026, + 40027, + 40028 }, ["skill"]={ 10042 @@ -5350,9 +5350,9 @@ local monster_chapter = { ["atk"]=770000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20124, + 20125, + 20126 }, ["monster_exp"]=11000 }, @@ -5362,9 +5362,9 @@ local monster_chapter = { ["atk"]=800000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20157, + 20158, + 20159 }, ["monster_exp"]=11000 }, @@ -5374,9 +5374,9 @@ local monster_chapter = { ["atk"]=840000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20109, + 20110, + 20111 }, ["monster_exp"]=17000 }, @@ -5386,9 +5386,9 @@ local monster_chapter = { ["atk"]=880000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20154, + 20155, + 20156 }, ["monster_exp"]=19000 }, @@ -5399,9 +5399,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30028, + 30029, + 30030 }, ["skill"]={ 10041 @@ -5419,9 +5419,9 @@ local monster_chapter = { ["atk"]=900000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20109, + 20110, + 20111 }, ["monster_exp"]=9000 }, @@ -5431,9 +5431,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20154, + 20155, + 20156 }, ["monster_exp"]=10000 }, @@ -5443,9 +5443,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20016, + 20017, + 20018 }, ["monster_exp"]=11000 }, @@ -5455,9 +5455,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20010, + 20011, + 20012 }, ["monster_exp"]=12000 }, @@ -5468,9 +5468,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30010, + 30011, + 30012 }, ["skill"]={ 10015 @@ -5483,9 +5483,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20151, + 20152, + 20153 }, ["monster_exp"]=16000 }, @@ -5495,9 +5495,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20145, + 20146, + 20147 }, ["monster_exp"]=18000 }, @@ -5507,9 +5507,9 @@ local monster_chapter = { ["atk"]=1080000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20028, + 20029, + 20030 }, ["monster_exp"]=21000 }, @@ -5519,9 +5519,9 @@ local monster_chapter = { ["atk"]=1110000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20112, + 20113, + 20114 }, ["monster_exp"]=22000 }, @@ -5532,9 +5532,9 @@ local monster_chapter = { ["atk"]=1160000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30013, + 30014, + 30015 }, ["skill"]={ 10024 @@ -5547,9 +5547,9 @@ local monster_chapter = { ["atk"]=1270000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20115, + 20116, + 20117 }, ["monster_exp"]=15000 }, @@ -5559,9 +5559,9 @@ local monster_chapter = { ["atk"]=1300000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20028, + 20029, + 20030 }, ["monster_exp"]=16000 }, @@ -5571,9 +5571,9 @@ local monster_chapter = { ["atk"]=1340000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20115, + 20116, + 20117 }, ["monster_exp"]=17000 }, @@ -5583,9 +5583,9 @@ local monster_chapter = { ["atk"]=1380000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20025, + 20026, + 20027 }, ["monster_exp"]=17000 }, @@ -5596,9 +5596,9 @@ local monster_chapter = { ["atk"]=2000000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30070, + 30071, + 30072 }, ["skill"]={ 10043, @@ -5612,9 +5612,9 @@ local monster_chapter = { ["atk"]=770000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20025, + 20026, + 20027 }, ["monster_exp"]=11000 }, @@ -5624,9 +5624,9 @@ local monster_chapter = { ["atk"]=800000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20157, + 20158, + 20159 }, ["monster_exp"]=11000 }, @@ -5636,9 +5636,9 @@ local monster_chapter = { ["atk"]=840000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20151, + 20152, + 20153 }, ["monster_exp"]=17000 }, @@ -5648,9 +5648,9 @@ local monster_chapter = { ["atk"]=880000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20145, + 20146, + 20147 }, ["monster_exp"]=19000 }, @@ -5661,9 +5661,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30022, + 30023, + 30024 }, ["skill"]={ 10032 @@ -5676,9 +5676,9 @@ local monster_chapter = { ["atk"]=900000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20127, + 20128, + 20129 }, ["monster_exp"]=9000 }, @@ -5688,9 +5688,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20157, + 20158, + 20159 }, ["monster_exp"]=10000 }, @@ -5700,9 +5700,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20037, + 20038, + 20039 }, ["monster_exp"]=11000 }, @@ -5712,9 +5712,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20049, + 20050, + 20051 }, ["monster_exp"]=12000 }, @@ -5725,9 +5725,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30040, + 30041, + 30042 }, ["skill"]={ 10016 @@ -5743,9 +5743,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20025, + 20026, + 20027 }, ["monster_exp"]=16000 }, @@ -5755,9 +5755,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20028, + 20029, + 20030 }, ["monster_exp"]=18000 }, @@ -5767,9 +5767,9 @@ local monster_chapter = { ["atk"]=1080000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20154, + 20155, + 20156 }, ["monster_exp"]=21000 }, @@ -5779,9 +5779,9 @@ local monster_chapter = { ["atk"]=1110000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20112, + 20113, + 20114 }, ["monster_exp"]=22000 }, @@ -5792,9 +5792,9 @@ local monster_chapter = { ["atk"]=1160000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30034, + 30035, + 30036 }, ["skill"]={ 10017 @@ -5807,9 +5807,9 @@ local monster_chapter = { ["atk"]=1270000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20151, + 20152, + 20153 }, ["monster_exp"]=15000 }, @@ -5819,9 +5819,9 @@ local monster_chapter = { ["atk"]=1300000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20124, + 20125, + 20126 }, ["monster_exp"]=16000 }, @@ -5831,9 +5831,9 @@ local monster_chapter = { ["atk"]=1340000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20157, + 20158, + 20159 }, ["monster_exp"]=17000 }, @@ -5843,9 +5843,9 @@ local monster_chapter = { ["atk"]=1380000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20145, + 20146, + 20147 }, ["monster_exp"]=17000 }, @@ -5856,9 +5856,9 @@ local monster_chapter = { ["atk"]=2000000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30055, + 30056, + 30057 }, ["skill"]={ 10045 @@ -5875,9 +5875,9 @@ local monster_chapter = { ["atk"]=770000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20133, + 20134, + 20135 }, ["monster_exp"]=11000 }, @@ -5887,9 +5887,9 @@ local monster_chapter = { ["atk"]=800000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20124, + 20125, + 20126 }, ["monster_exp"]=11000 }, @@ -5899,9 +5899,9 @@ local monster_chapter = { ["atk"]=840000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20145, + 20146, + 20147 }, ["monster_exp"]=17000 }, @@ -5911,9 +5911,9 @@ local monster_chapter = { ["atk"]=880000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20157, + 20158, + 20159 }, ["monster_exp"]=19000 }, @@ -5924,9 +5924,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30028, + 30029, + 30030 }, ["skill"]={ 10041 @@ -5944,9 +5944,9 @@ local monster_chapter = { ["atk"]=900000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20151, + 20152, + 20153 }, ["monster_exp"]=9000 }, @@ -5956,9 +5956,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20130, + 20131, + 20132 }, ["monster_exp"]=10000 }, @@ -5968,9 +5968,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20124, + 20125, + 20126 }, ["monster_exp"]=11000 }, @@ -5980,9 +5980,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20154, + 20155, + 20156 }, ["monster_exp"]=12000 }, @@ -5993,9 +5993,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30013, + 30014, + 30015 }, ["skill"]={ 10024 @@ -6008,9 +6008,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20130, + 20131, + 20132 }, ["monster_exp"]=16000 }, @@ -6020,9 +6020,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20151, + 20152, + 20153 }, ["monster_exp"]=18000 }, @@ -6032,9 +6032,9 @@ local monster_chapter = { ["atk"]=1080000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20028, + 20029, + 20030 }, ["monster_exp"]=21000 }, @@ -6044,9 +6044,9 @@ local monster_chapter = { ["atk"]=1110000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20112, + 20113, + 20114 }, ["monster_exp"]=22000 }, @@ -6057,9 +6057,9 @@ local monster_chapter = { ["atk"]=1160000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30034, + 30035, + 30036 }, ["skill"]={ 10017 @@ -6072,9 +6072,9 @@ local monster_chapter = { ["atk"]=1270000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20145, + 20146, + 20147 }, ["monster_exp"]=15000 }, @@ -6084,9 +6084,9 @@ local monster_chapter = { ["atk"]=1300000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20124, + 20125, + 20126 }, ["monster_exp"]=16000 }, @@ -6096,9 +6096,9 @@ local monster_chapter = { ["atk"]=1340000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20133, + 20134, + 20135 }, ["monster_exp"]=17000 }, @@ -6108,9 +6108,9 @@ local monster_chapter = { ["atk"]=1380000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20157, + 20158, + 20159 }, ["monster_exp"]=17000 }, @@ -6121,9 +6121,9 @@ local monster_chapter = { ["atk"]=2000000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30058, + 30059, + 30060 }, ["skill"]={ 10047 @@ -6140,9 +6140,9 @@ local monster_chapter = { ["atk"]=770000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20136, + 20137, + 20138 }, ["monster_exp"]=11000 }, @@ -6152,9 +6152,9 @@ local monster_chapter = { ["atk"]=800000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20109, + 20110, + 20111 }, ["monster_exp"]=11000 }, @@ -6164,9 +6164,9 @@ local monster_chapter = { ["atk"]=840000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20058, + 20059, + 20060 }, ["monster_exp"]=17000 }, @@ -6176,9 +6176,9 @@ local monster_chapter = { ["atk"]=880000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20115, + 20116, + 20117 }, ["monster_exp"]=19000 }, @@ -6189,9 +6189,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30049, + 30050, + 30051 }, ["skill"]={ 10027, @@ -6205,9 +6205,9 @@ local monster_chapter = { ["atk"]=900000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20028, + 20029, + 20030 }, ["monster_exp"]=9000 }, @@ -6217,9 +6217,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20112, + 20113, + 20114 }, ["monster_exp"]=10000 }, @@ -6229,9 +6229,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20115, + 20116, + 20117 }, ["monster_exp"]=11000 }, @@ -6241,9 +6241,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20025, + 20026, + 20027 }, ["monster_exp"]=12000 }, @@ -6254,9 +6254,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30070, + 30071, + 30072 }, ["skill"]={ 10043, @@ -6270,9 +6270,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20151, + 20152, + 20153 }, ["monster_exp"]=16000 }, @@ -6282,9 +6282,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20124, + 20125, + 20126 }, ["monster_exp"]=18000 }, @@ -6294,9 +6294,9 @@ local monster_chapter = { ["atk"]=1080000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20145, + 20146, + 20147 }, ["monster_exp"]=21000 }, @@ -6306,9 +6306,9 @@ local monster_chapter = { ["atk"]=1110000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20157, + 20158, + 20159 }, ["monster_exp"]=22000 }, @@ -6319,9 +6319,9 @@ local monster_chapter = { ["atk"]=1160000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30055, + 30056, + 30057 }, ["skill"]={ 10045 @@ -6338,9 +6338,9 @@ local monster_chapter = { ["atk"]=1270000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20082, + 20083, + 20084 }, ["monster_exp"]=15000 }, @@ -6350,9 +6350,9 @@ local monster_chapter = { ["atk"]=1300000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20145, + 20146, + 20147 }, ["monster_exp"]=16000 }, @@ -6362,9 +6362,9 @@ local monster_chapter = { ["atk"]=1340000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20124, + 20125, + 20126 }, ["monster_exp"]=17000 }, @@ -6374,9 +6374,9 @@ local monster_chapter = { ["atk"]=1380000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20079, + 20080, + 20081 }, ["monster_exp"]=17000 }, @@ -6387,9 +6387,9 @@ local monster_chapter = { ["atk"]=2000000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30037, + 30038, + 30039 }, ["skill"]={ 10049, @@ -6403,9 +6403,9 @@ local monster_chapter = { ["atk"]=770000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20151, + 20152, + 20153 }, ["monster_exp"]=11000 }, @@ -6415,9 +6415,9 @@ local monster_chapter = { ["atk"]=800000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20130, + 20131, + 20132 }, ["monster_exp"]=11000 }, @@ -6427,9 +6427,9 @@ local monster_chapter = { ["atk"]=840000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20124, + 20125, + 20126 }, ["monster_exp"]=17000 }, @@ -6439,9 +6439,9 @@ local monster_chapter = { ["atk"]=880000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20154, + 20155, + 20156 }, ["monster_exp"]=19000 }, @@ -6452,9 +6452,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30013, + 30014, + 30015 }, ["skill"]={ 10024 @@ -6467,9 +6467,9 @@ local monster_chapter = { ["atk"]=900000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20028, + 20029, + 20030 }, ["monster_exp"]=9000 }, @@ -6479,9 +6479,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20112, + 20113, + 20114 }, ["monster_exp"]=10000 }, @@ -6491,9 +6491,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20115, + 20116, + 20117 }, ["monster_exp"]=11000 }, @@ -6503,9 +6503,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20025, + 20026, + 20027 }, ["monster_exp"]=12000 }, @@ -6516,9 +6516,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30070, + 30071, + 30072 }, ["skill"]={ 10043, @@ -6532,9 +6532,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20115, + 20116, + 20117 }, ["monster_exp"]=16000 }, @@ -6544,9 +6544,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20112, + 20113, + 20114 }, ["monster_exp"]=18000 }, @@ -6556,9 +6556,9 @@ local monster_chapter = { ["atk"]=1080000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20028, + 20029, + 20030 }, ["monster_exp"]=21000 }, @@ -6568,9 +6568,9 @@ local monster_chapter = { ["atk"]=1110000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20112, + 20113, + 20114 }, ["monster_exp"]=22000 }, @@ -6581,9 +6581,9 @@ local monster_chapter = { ["atk"]=1160000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30034, + 30035, + 30036 }, ["skill"]={ 10017 @@ -6596,9 +6596,9 @@ local monster_chapter = { ["atk"]=1270000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20028, + 20029, + 20030 }, ["monster_exp"]=15000 }, @@ -6608,9 +6608,9 @@ local monster_chapter = { ["atk"]=1300000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20115, + 20116, + 20117 }, ["monster_exp"]=16000 }, @@ -6620,9 +6620,9 @@ local monster_chapter = { ["atk"]=1340000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20109, + 20110, + 20111 }, ["monster_exp"]=17000 }, @@ -6632,9 +6632,9 @@ local monster_chapter = { ["atk"]=1380000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20091, + 20092, + 20093 }, ["monster_exp"]=17000 }, @@ -6645,9 +6645,9 @@ local monster_chapter = { ["atk"]=2000000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30052, + 30053, + 30054 }, ["skill"]={ 10051 @@ -6664,9 +6664,9 @@ local monster_chapter = { ["atk"]=770000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20094, + 20095, + 20096 }, ["monster_exp"]=11000 }, @@ -6676,9 +6676,9 @@ local monster_chapter = { ["atk"]=800000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20082, + 20083, + 20084 }, ["monster_exp"]=11000 }, @@ -6688,9 +6688,9 @@ local monster_chapter = { ["atk"]=840000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20088, + 20089, + 20090 }, ["monster_exp"]=17000 }, @@ -6700,9 +6700,9 @@ local monster_chapter = { ["atk"]=880000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20079, + 20080, + 20081 }, ["monster_exp"]=19000 }, @@ -6713,9 +6713,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30037, + 30038, + 30039 }, ["skill"]={ 10049, @@ -6729,9 +6729,9 @@ local monster_chapter = { ["atk"]=900000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20085, + 20086, + 20087 }, ["monster_exp"]=9000 }, @@ -6741,9 +6741,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20082, + 20083, + 20084 }, ["monster_exp"]=10000 }, @@ -6753,9 +6753,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20094, + 20095, + 20096 }, ["monster_exp"]=11000 }, @@ -6765,9 +6765,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20157, + 20158, + 20159 }, ["monster_exp"]=12000 }, @@ -6778,9 +6778,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30028, + 30029, + 30030 }, ["skill"]={ 10041 @@ -6798,9 +6798,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20154, + 20155, + 20156 }, ["monster_exp"]=16000 }, @@ -6810,9 +6810,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20094, + 20095, + 20096 }, ["monster_exp"]=18000 }, @@ -6822,9 +6822,9 @@ local monster_chapter = { ["atk"]=1080000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20082, + 20083, + 20084 }, ["monster_exp"]=21000 }, @@ -6834,9 +6834,9 @@ local monster_chapter = { ["atk"]=1110000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20157, + 20158, + 20159 }, ["monster_exp"]=22000 }, @@ -6847,9 +6847,9 @@ local monster_chapter = { ["atk"]=1160000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30058, + 30059, + 30060 }, ["skill"]={ 10047 @@ -6866,9 +6866,9 @@ local monster_chapter = { ["atk"]=1270000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20154, + 20155, + 20156 }, ["monster_exp"]=15000 }, @@ -6878,9 +6878,9 @@ local monster_chapter = { ["atk"]=1300000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20079, + 20080, + 20081 }, ["monster_exp"]=16000 }, @@ -6890,9 +6890,9 @@ local monster_chapter = { ["atk"]=1340000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20133, + 20134, + 20135 }, ["monster_exp"]=17000 }, @@ -6902,9 +6902,9 @@ local monster_chapter = { ["atk"]=1380000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20169, + 20170, + 20171 }, ["monster_exp"]=17000 }, @@ -6915,9 +6915,9 @@ local monster_chapter = { ["atk"]=2000000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30094, + 30095, + 30096 }, ["skill"]={ 10052, @@ -6937,9 +6937,9 @@ local monster_chapter = { ["atk"]=770000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20166, + 20167, + 20168 }, ["monster_exp"]=11000 }, @@ -6949,9 +6949,9 @@ local monster_chapter = { ["atk"]=800000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20133, + 20134, + 20135 }, ["monster_exp"]=11000 }, @@ -6961,9 +6961,9 @@ local monster_chapter = { ["atk"]=840000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20151, + 20152, + 20153 }, ["monster_exp"]=17000 }, @@ -6973,9 +6973,9 @@ local monster_chapter = { ["atk"]=880000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20082, + 20083, + 20084 }, ["monster_exp"]=19000 }, @@ -6986,9 +6986,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30022, + 30023, + 30024 }, ["skill"]={ 10032 @@ -7001,9 +7001,9 @@ local monster_chapter = { ["atk"]=900000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20169, + 20170, + 20171 }, ["monster_exp"]=9000 }, @@ -7013,9 +7013,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20094, + 20095, + 20096 }, ["monster_exp"]=10000 }, @@ -7025,9 +7025,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20127, + 20128, + 20129 }, ["monster_exp"]=11000 }, @@ -7037,9 +7037,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20154, + 20155, + 20156 }, ["monster_exp"]=12000 }, @@ -7050,9 +7050,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30031, + 30032, + 30033 }, ["monster_exp"]=12000 }, @@ -7062,9 +7062,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20082, + 20083, + 20084 }, ["monster_exp"]=16000 }, @@ -7074,9 +7074,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20169, + 20170, + 20171 }, ["monster_exp"]=18000 }, @@ -7086,9 +7086,9 @@ local monster_chapter = { ["atk"]=1080000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20151, + 20152, + 20153 }, ["monster_exp"]=21000 }, @@ -7098,9 +7098,9 @@ local monster_chapter = { ["atk"]=1110000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20157, + 20158, + 20159 }, ["monster_exp"]=22000 }, @@ -7111,9 +7111,9 @@ local monster_chapter = { ["atk"]=1160000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30013, + 30014, + 30015 }, ["skill"]={ 10024 @@ -7126,9 +7126,9 @@ local monster_chapter = { ["atk"]=1270000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20154, + 20155, + 20156 }, ["monster_exp"]=15000 }, @@ -7138,9 +7138,9 @@ local monster_chapter = { ["atk"]=1300000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20079, + 20080, + 20081 }, ["monster_exp"]=16000 }, @@ -7150,9 +7150,9 @@ local monster_chapter = { ["atk"]=1340000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20133, + 20134, + 20135 }, ["monster_exp"]=17000 }, @@ -7162,9 +7162,9 @@ local monster_chapter = { ["atk"]=1380000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20166, + 20167, + 20168 }, ["monster_exp"]=17000 }, @@ -7175,9 +7175,9 @@ local monster_chapter = { ["atk"]=2000000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30094, + 30095, + 30096 }, ["skill"]={ 10052, @@ -7199,9 +7199,9 @@ local monster_chapter = { ["atk"]=2000000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30088, + 30089, + 30090 }, ["skill"]={ 10056, @@ -7218,9 +7218,9 @@ local monster_chapter = { ["atk"]=770000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20163, + 20164, + 20165 }, ["monster_exp"]=11000 }, @@ -7230,9 +7230,9 @@ local monster_chapter = { ["atk"]=800000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20025, + 20026, + 20027 }, ["monster_exp"]=11000 }, @@ -7242,9 +7242,9 @@ local monster_chapter = { ["atk"]=840000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20028, + 20029, + 20030 }, ["monster_exp"]=17000 }, @@ -7254,9 +7254,9 @@ local monster_chapter = { ["atk"]=880000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20112, + 20113, + 20114 }, ["monster_exp"]=19000 }, @@ -7267,9 +7267,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30034, + 30035, + 30036 }, ["skill"]={ 10017 @@ -7282,9 +7282,9 @@ local monster_chapter = { ["atk"]=900000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20025, + 20026, + 20027 }, ["monster_exp"]=9000 }, @@ -7294,9 +7294,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20160, + 20161, + 20162 }, ["monster_exp"]=10000 }, @@ -7306,9 +7306,9 @@ local monster_chapter = { ["atk"]=940000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20133, + 20134, + 20135 }, ["monster_exp"]=11000 }, @@ -7318,9 +7318,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20166, + 20167, + 20168 }, ["monster_exp"]=12000 }, @@ -7331,9 +7331,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30088, + 30089, + 30090 }, ["skill"]={ 10056, @@ -7350,9 +7350,9 @@ local monster_chapter = { ["atk"]=1010000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20169, + 20170, + 20171 }, ["monster_exp"]=16000 }, @@ -7362,9 +7362,9 @@ local monster_chapter = { ["atk"]=1050000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20148, + 20149, + 20150 }, ["monster_exp"]=18000 }, @@ -7374,9 +7374,9 @@ local monster_chapter = { ["atk"]=1080000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20154, + 20155, + 20156 }, ["monster_exp"]=21000 }, @@ -7386,9 +7386,9 @@ local monster_chapter = { ["atk"]=1110000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20160, + 20161, + 20162 }, ["monster_exp"]=22000 }, @@ -7399,9 +7399,9 @@ local monster_chapter = { ["atk"]=1160000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30085, + 30086, + 30087 }, ["skill"]={ 10018 @@ -7414,9 +7414,9 @@ local monster_chapter = { ["atk"]=1270000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20169, + 20170, + 20171 }, ["monster_exp"]=15000 }, @@ -7426,9 +7426,9 @@ local monster_chapter = { ["atk"]=1300000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20148, + 20149, + 20150 }, ["monster_exp"]=16000 }, @@ -7438,9 +7438,9 @@ local monster_chapter = { ["atk"]=1340000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20160, + 20161, + 20162 }, ["monster_exp"]=17000 }, @@ -7450,9 +7450,9 @@ local monster_chapter = { ["atk"]=1380000, ["atk_times"]=3, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 20166, + 20167, + 20168 }, ["monster_exp"]=17000 }, @@ -7463,9 +7463,9 @@ local monster_chapter = { ["atk"]=2000000, ["atk_times"]=4, ["hurt_skill"]={ - 10001, - 10002, - 10003 + 30091, + 30092, + 30093 }, ["skill"]={ 10058, diff --git a/lua/app/config/skill.lua b/lua/app/config/skill.lua index 03e5ac63..f1be0253 100644 --- a/lua/app/config/skill.lua +++ b/lua/app/config/skill.lua @@ -1936,7 +1936,7 @@ local skill = { }, ["condition_rel"]={ { - 1, + 2, 1 } }, @@ -1973,7 +1973,7 @@ local skill = { }, ["condition_rel"]={ { - 1, + 2, 1 } }, @@ -2073,6 +2073,20 @@ local skill = { 400 } }, + [2400125]={ + ["position"]=2, + ["effect_type"]=2, + ["trigger"]=7, + ["effect"]={ + { + ["type"]="skill_hurt_add", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=1 + } + }, + ["obj"]=2 + }, [3200110]={ ["position"]=3, ["effect_type"]=1, @@ -4374,6 +4388,7 @@ local skill = { } }, ["obj"]=2, + ["skill_position"]=1, ["shake_time"]=100, ["shake_type"]=1, ["sound_hit"]=5200111, @@ -4391,6 +4406,7 @@ local skill = { } }, ["obj"]=2, + ["skill_position"]=1, ["shake_time"]=100, ["shake_type"]=1, ["sound_hit"]=5200112, @@ -4408,6 +4424,7 @@ local skill = { } }, ["obj"]=2, + ["skill_position"]=1, ["shake_time"]=100, ["shake_type"]=1, ["sound_hit"]=5200113, @@ -4425,6 +4442,7 @@ local skill = { } }, ["obj"]=2, + ["skill_position"]=1, ["shake_time"]=100, ["shake_type"]=1, ["sound_hit"]=5200111, @@ -4442,6 +4460,7 @@ local skill = { } }, ["obj"]=2, + ["skill_position"]=1, ["shake_time"]=100, ["shake_type"]=1, ["sound_hit"]=5200112, @@ -4459,6 +4478,7 @@ local skill = { } }, ["obj"]=2, + ["skill_position"]=1, ["shake_time"]=100, ["shake_type"]=1, ["sound_hit"]=5200113, @@ -4476,6 +4496,7 @@ local skill = { } }, ["obj"]=2, + ["skill_position"]=1, ["shake_time"]=100, ["shake_type"]=1, ["sound_hit"]=5200114, @@ -4666,12 +4687,22 @@ local skill = { ["effect"]={ { ["type"]="hurt", - ["num"]=30000, + ["num"]=15000, + ["ratio"]=10000, + ["round"]=0 + }, + { + ["type"]="hurt", + ["num"]=1500, ["ratio"]=10000, ["round"]=0 } }, ["obj"]=2, + ["effect_block"]={ + 1, + 2 + }, ["skill_position"]=1, ["cd"]=2, ["cd_start"]=2, @@ -4845,6 +4876,12 @@ local skill = { } }, ["obj"]=2, + ["effect_block"]={ + 1 + }, + ["block_time"]={ + 1000 + }, ["skill_position"]=1, ["cd"]=2, ["cd_start"]=0, @@ -4864,31 +4901,31 @@ local skill = { ["trigger"]=1, ["effect"]={ { - ["type"]="hurt_yellow", + ["type"]="hurt", ["num"]=10000, ["ratio"]=10000, ["round"]=0 }, { - ["type"]="hurt_yellow", + ["type"]="hurt", ["num"]=10000, ["ratio"]=10000, ["round"]=0 }, { - ["type"]="hurt_yellow", + ["type"]="hurt", ["num"]=10000, ["ratio"]=10000, ["round"]=0 }, { - ["type"]="hurt_yellow", + ["type"]="hurt", ["num"]=10000, ["ratio"]=10000, ["round"]=0 }, { - ["type"]="hurt_yellow", + ["type"]="hurt", ["num"]=10000, ["ratio"]=10000, ["round"]=0 @@ -4959,6 +4996,12 @@ local skill = { } }, ["obj"]=2, + ["effect_block"]={ + 1 + }, + ["block_time"]={ + 1000 + }, ["skill_position"]=2, ["cd"]=3, ["cd_start"]=0, @@ -5155,6 +5198,12 @@ local skill = { } }, ["obj"]=2, + ["effect_block"]={ + 1 + }, + ["block_time"]={ + 1000 + }, ["skill_position"]=2, ["cd"]=2, ["cd_start"]=0, @@ -5252,6 +5301,12 @@ local skill = { } }, ["obj"]=2, + ["effect_block"]={ + 1 + }, + ["block_time"]={ + 1000 + }, ["skill_position"]=2, ["cd"]=2, ["cd_start"]=0, @@ -5496,6 +5551,12 @@ local skill = { } }, ["obj"]=2, + ["effect_block"]={ + 1 + }, + ["block_time"]={ + 1000 + }, ["cd"]=3, ["cd_start"]=2, ["name_act"]="skill01" @@ -5516,12 +5577,18 @@ local skill = { } }, ["obj"]=2, + ["effect_block"]={ + 1 + }, + ["block_time"]={ + 1000 + }, ["cd"]=3, ["cd_start"]=0, ["shake_time"]=200, ["shake_type"]=6, ["sound_hit"]=4200120, - ["name_act"]="skill01", + ["name_act"]="skill02", ["fx_target"]=300011 }, [10045]={ @@ -5541,6 +5608,12 @@ local skill = { } }, ["obj"]=2, + ["effect_block"]={ + 1 + }, + ["block_time"]={ + 1000 + }, ["cd"]=3, ["cd_start"]=0, ["shake_time"]=200, @@ -5581,6 +5654,12 @@ local skill = { } }, ["obj"]=2, + ["effect_block"]={ + 1 + }, + ["block_time"]={ + 1000 + }, ["cd"]=3, ["cd_start"]=0, ["shake_time"]=200, @@ -5617,6 +5696,12 @@ local skill = { } }, ["obj"]=2, + ["effect_block"]={ + 1 + }, + ["block_time"]={ + 1000 + }, ["cd"]=2, ["cd_start"]=0, ["shake_time"]=200, @@ -5643,6 +5728,12 @@ local skill = { } }, ["obj"]=2, + ["effect_block"]={ + 1 + }, + ["block_time"]={ + 1000 + }, ["cd"]=2, ["cd_start"]=1, ["shake_time"]=200, @@ -5669,6 +5760,12 @@ local skill = { } }, ["obj"]=2, + ["effect_block"]={ + 1 + }, + ["block_time"]={ + 2500 + }, ["cd"]=3, ["cd_start"]=0, ["name_act"]="skill01" @@ -5710,12 +5807,18 @@ local skill = { } }, ["obj"]=2, + ["effect_block"]={ + 1 + }, + ["block_time"]={ + 2500 + }, ["cd"]=3, ["cd_start"]=2, ["shake_time"]=200, ["shake_type"]=6, ["sound_hit"]=4200120, - ["name_act"]="skill01", + ["name_act"]="skill02", ["fx_target"]=300011 }, [10054]={ @@ -5764,6 +5867,12 @@ local skill = { } }, ["obj"]=2, + ["effect_block"]={ + 1 + }, + ["block_time"]={ + 1000 + }, ["cd"]=3, ["cd_start"]=0, ["shake_time"]=200, @@ -5789,12 +5898,18 @@ local skill = { } }, ["obj"]=2, + ["effect_block"]={ + 1 + }, + ["block_time"]={ + 1000 + }, ["cd"]=3, ["cd_start"]=2, ["shake_time"]=200, ["shake_type"]=6, ["sound_hit"]=4200120, - ["name_act"]="skill01", + ["name_act"]="skill02", ["fx_target"]=300011 }, [10058]={ @@ -5815,6 +5930,12 @@ local skill = { } }, ["obj"]=2, + ["effect_block"]={ + 1 + }, + ["block_time"]={ + 1000 + }, ["cd"]=3, ["cd_start"]=0, ["shake_time"]=200, @@ -5829,9 +5950,5459 @@ local skill = { 34, 2 }, + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=30000, + ["ratio"]=10000, + ["round"]=0 + }, + { + ["type"]="burn", + ["num"]=5000, + ["ratio"]=10000, + ["round"]=2 + } + }, + ["obj"]=2, + ["effect_block"]={ + 1 + }, + ["block_time"]={ + 1000 + }, ["cd"]=3, - ["cd_start"]=1, - ["name_act"]="skill01" + ["cd_start"]=2, + ["shake_time"]=200, + ["shake_type"]=6, + ["sound_hit"]=4200120, + ["name_act"]="skill02" + }, + [20001]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20002]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20003]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20004]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20005]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20006]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20007]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20008]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20009]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20010]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20011]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20012]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20013]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20014]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20015]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20016]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20017]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20018]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20019]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20020]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20021]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20022]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20023]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20024]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20025]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20026]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20027]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20028]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20029]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20030]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20031]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20032]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20033]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20034]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20035]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20036]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20037]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20038]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20039]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20040]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20041]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20042]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20043]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20044]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20045]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20046]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20047]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20048]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20049]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20050]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20051]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20052]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20053]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20054]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20055]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20056]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20057]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20058]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20059]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20060]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20061]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20062]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20063]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20064]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20065]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20066]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20067]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20068]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20069]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20070]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20071]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20072]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20073]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20074]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20075]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20076]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20077]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20078]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20079]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20080]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20081]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20082]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20083]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20084]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20085]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20086]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20087]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20088]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20089]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20090]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20091]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20092]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20093]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20094]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20095]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20096]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20097]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20098]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20099]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20100]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20101]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20102]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20103]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20104]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20105]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20106]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20107]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20108]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20109]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20110]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20111]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20112]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20113]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20114]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20115]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20116]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20117]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20118]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20119]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20120]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20121]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20122]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20123]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20124]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20125]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20126]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20127]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20128]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20129]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20130]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20131]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20132]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20133]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20134]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20135]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20136]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20137]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20138]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20139]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20140]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20141]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20142]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20143]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20144]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20145]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20146]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20147]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20148]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20149]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20150]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20151]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20152]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20153]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20154]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20155]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20156]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20157]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20158]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20159]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20160]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20161]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20162]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20163]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20164]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20165]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20166]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20167]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20168]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20169]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20170]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20171]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [20172]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [20173]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [20174]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30001]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30002]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30003]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30004]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30005]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30006]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30007]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30008]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30009]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30010]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30011]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30012]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30013]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30014]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30015]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30016]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30017]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30018]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30019]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30020]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30021]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30022]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30023]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30024]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30025]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30026]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30027]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30028]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30029]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30030]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30031]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30032]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30033]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30034]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30035]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30036]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30037]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30038]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30039]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30040]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30041]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30042]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30043]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30044]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30045]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30046]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30047]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30048]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30049]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30050]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30051]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30052]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30053]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30054]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30055]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30056]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30057]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30058]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30059]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30060]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30061]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30062]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30063]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30064]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30065]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30066]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30067]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30068]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30069]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30070]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30071]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30072]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30073]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30074]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30075]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30076]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30077]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30078]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30079]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30080]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30081]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30082]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30083]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30084]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30085]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30086]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30087]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30088]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30089]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30090]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30091]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30092]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30093]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [30094]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01" + }, + [30095]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02" + }, + [30096]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03" + }, + [40001]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=4200111, + ["name_act"]="attack01", + ["fx_target"]=300009 + }, + [40002]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=4200112, + ["name_act"]="attack02", + ["fx_target"]=300010 + }, + [40003]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=4200113, + ["name_act"]="attack03", + ["fx_target"]=300011 + }, + [40004]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=4200114, + ["name_act"]="attack04", + ["fx_target"]=300012 + }, + [40005]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=2200111, + ["name_act"]="attack01", + ["fx_self"]=300004, + ["fx_target"]=4, + ["fx_target_delay"]=366 + }, + [40006]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=2200112, + ["name_act"]="attack02", + ["fx_self"]=300005, + ["fx_target"]=4, + ["fx_target_delay"]=400 + }, + [40007]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=2200113, + ["name_act"]="attack03", + ["fx_self"]=300006, + ["fx_target"]=4, + ["fx_target_delay"]=333 + }, + [40008]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=2200114, + ["name_act"]="attack04", + ["fx_self"]=300007, + ["fx_target"]=4, + ["fx_target_delay"]=433 + }, + [40009]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=1200111, + ["name_act"]="attack01", + ["fx_self"]=300017, + ["fx_target"]=2, + ["fx_target_delay"]=300 + }, + [40010]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=1200112, + ["name_act"]="attack02", + ["fx_self"]=300018, + ["fx_target"]=2, + ["fx_target_delay"]=333 + }, + [40011]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=1200113, + ["name_act"]="attack03", + ["fx_self"]=300019, + ["fx_target"]=2, + ["fx_target_delay"]=300 + }, + [40012]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=1200114, + ["name_act"]="attack04", + ["fx_self"]=300020, + ["fx_target"]=2, + ["fx_target_delay"]=333 + }, + [40013]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=2200111, + ["name_act"]="attack01", + ["fx_self"]=300004, + ["fx_target"]=4, + ["fx_target_delay"]=366 + }, + [40014]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=2200112, + ["name_act"]="attack02", + ["fx_self"]=300005, + ["fx_target"]=4, + ["fx_target_delay"]=400 + }, + [40015]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=2200113, + ["name_act"]="attack03", + ["fx_self"]=300006, + ["fx_target"]=4, + ["fx_target_delay"]=333 + }, + [40016]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=2200114, + ["name_act"]="attack04", + ["fx_self"]=300007, + ["fx_target"]=4, + ["fx_target_delay"]=433 + }, + [40017]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=3300111, + ["name_act"]="attack01", + ["fx_target"]=300021 + }, + [40018]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=3300112, + ["name_act"]="attack02", + ["fx_target"]=300022 + }, + [40019]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=3300113, + ["name_act"]="attack03", + ["fx_target"]=300023 + }, + [40020]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=3300114, + ["name_act"]="attack04", + ["fx_target"]=300024 + }, + [40021]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=1200111, + ["name_act"]="attack01", + ["fx_self"]=300017, + ["fx_target"]=2, + ["fx_target_delay"]=300 + }, + [40022]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=1200112, + ["name_act"]="attack02", + ["fx_self"]=300018, + ["fx_target"]=2, + ["fx_target_delay"]=333 + }, + [40023]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=1200113, + ["name_act"]="attack03", + ["fx_self"]=300019, + ["fx_target"]=2, + ["fx_target_delay"]=300 + }, + [40024]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=1, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=1200114, + ["name_act"]="attack04", + ["fx_self"]=300020, + ["fx_target"]=2, + ["fx_target_delay"]=333 + }, + [40025]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200111, + ["name_act"]="attack01", + ["fx_target"]=300013 + }, + [40026]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200112, + ["name_act"]="attack02", + ["fx_target"]=300013 + }, + [40027]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200113, + ["name_act"]="attack03", + ["fx_target"]=300014 + }, + [40028]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]=2, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]=5200114, + ["name_act"]="attack04", + ["fx_target"]=300015 }, [110001]={ ["skill_type"]=5, @@ -5911,6 +11482,6 @@ local skill = { } } local config = { -data=skill,count=252 +data=skill,count=551 } return config \ No newline at end of file diff --git a/lua/app/config/skill_rogue.lua b/lua/app/config/skill_rogue.lua index 84e97720..15a97a36 100644 --- a/lua/app/config/skill_rogue.lua +++ b/lua/app/config/skill_rogue.lua @@ -1746,10 +1746,10 @@ local skill_rogue = { ["skill_position"]=2, ["effect"]={ { - ["type"]="hurt_yellow", - ["num"]=33400, + ["type"]="add_skill", + ["num"]=2400125, ["ratio"]=10000, - ["round"]=0 + ["round"]=1 } }, ["obj"]=2, diff --git a/lua/app/config/strings/cn/global.lua b/lua/app/config/strings/cn/global.lua index 0f2008af..46da0048 100644 --- a/lua/app/config/strings/cn/global.lua +++ b/lua/app/config/strings/cn/global.lua @@ -135,6 +135,14 @@ local localization_global = ["LEVEL_FUND_DESC_1"] = "购买成长基金{0}后,可通过提升等级获得钻石。\n多档基金可同时购买", ["BUFF_DESC"] = "BUFF", ["DAILY_CHALLENGE_DESC_1"] = "今日剩余挑战次数不足", + ["DISCONNECT_RELOGIN"] = "网络连接已断开, 请重新登录", + ["RECONNECT"] = "网络连接已断开,是否重连", + ["RELOGIN"] = "重新登录", + ["SEVEN_DAY_TITLE"] = "新手七天乐", + ["SEVEN_DAY_DESC_1"] = "每天将开启新的任务", + ["DAY_X"] = "第{0}天", + ["DAY_X_UNLOCK"] = "第{0}天解锁", + ["SEVEN_DAY_DESC_2"] = "已完成任务数:{0}/{1}", } return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/cn/hero.lua b/lua/app/config/strings/cn/hero.lua index 4a627485..11d6bf5f 100644 --- a/lua/app/config/strings/cn/hero.lua +++ b/lua/app/config/strings/cn/hero.lua @@ -1,63 +1,83 @@ local hero = { [12001]={ - ["name"]="舞娘" + ["name"]="舞娘", + ["desc"]="舞娘起舞,轻盈的舞步甩在敌人的脸上。" }, [13001]={ - ["name"]="克劳德" + ["name"]="克劳德", + ["desc"]="克劳德挥舞大剑,剑气形成旋风,灼灼逼人。" }, [13002]={ - ["name"]="火旺" + ["name"]="火旺", + ["desc"]="火旺擅长炎拳,拳拳带火花,有谁不服,就是邦邦两拳。" }, [14001]={ - ["name"]="亚历山大" + ["name"]="亚历山大", + ["desc"]="亚历山大的装备,可不是用来好看的。" }, [22001]={ - ["name"]="刀妹" + ["name"]="刀妹", + ["desc"]="刀妹使用一次拔刀斩终结技,造成大量伤害。" }, [23001]={ - ["name"]="野蛮人" + ["name"]="野蛮人", + ["desc"]="野蛮人的多段伤害,附加流血。" }, [23002]={ - ["name"]="二丫" + ["name"]="二丫", + ["desc"]="二丫的链接可以增伤。" }, [24001]={ - ["name"]="巨剑魔童" + ["name"]="巨剑魔童", + ["desc"]="巨剑魔童可以造成大量伤害,并概率眩晕敌人。" }, [32001]={ - ["name"]="洋葱头" + ["name"]="洋葱头", + ["desc"]="洋葱头使用一次长枪突刺终结技,造成大量伤害并恢复自身血量。" }, [33001]={ - ["name"]="小鹿" + ["name"]="小鹿", + ["desc"]="小鹿的急速治疗法,起死回生不过一瞬。" }, [33002]={ - ["name"]="森林狼" + ["name"]="森林狼", + ["desc"]="森林狼的链接可以增伤,概率附加易伤效果。" }, [34001]={ - ["name"]="木兰" + ["name"]="木兰", + ["desc"]="木兰的链接可以增伤,并附加易伤效果。" }, [42001]={ - ["name"]="冰心" + ["name"]="冰心", + ["desc"]="冰心的攻击随机消除额外元素,并造成伤害,有概率冰冻敌人。" }, [43001]={ - ["name"]="冰女" + ["name"]="冰女", + ["desc"]="冰女的攻击附加冰霜,并增加灼烧伤害。" }, [43002]={ - ["name"]="鸦姐" + ["name"]="鸦姐", + ["desc"]="鸦姐的攻击一定给敌人附加腐败状态。" }, [44001]={ - ["name"]="寒冰妖姬" + ["name"]="寒冰妖姬", + ["desc"]="寒冰妖姬随机消除元素,释放一次附带冰霜效果的剑舞攻击。" }, [52001]={ - ["name"]="忍者伦" + ["name"]="忍者伦", + ["desc"]="忍者伦生成的魔法罩可以承受伤害。" }, [53001]={ - ["name"]="魔女琪琪" + ["name"]="魔女琪琪", + ["desc"]="魔女琪琪的扫帚攻击命中可以附加负面负面状态。" }, [53002]={ - ["name"]="灵魂猎手" + ["name"]="灵魂猎手", + ["desc"]="灵魂猎手攻击冰霜敌人概率冰冻敌人。" }, [54001]={ - ["name"]="蝴蝶" + ["name"]="蝴蝶", + ["desc"]="蝴蝶的技能可以随机增加技能的能量。" } } local config = { diff --git a/lua/app/global/global_const.lua b/lua/app/global/global_const.lua index 6a26b946..9ece3038 100644 --- a/lua/app/global/global_const.lua +++ b/lua/app/global/global_const.lua @@ -188,6 +188,7 @@ GConst.ATLAS_PATH = { SHOP = "assets/arts/atlas/ui/shop.asset", HERO = "assets/arts/atlas/ui/hero.asset", FUND = "assets/arts/atlas/ui/fund.asset", + SEVEN_DAY = "assets/arts/atlas/ui/sevenday.asset", } GConst.TOUCH_EVENT = { diff --git a/lua/app/module/login/login_manager.lua b/lua/app/module/login/login_manager.lua index c5617065..7016bf8d 100644 --- a/lua/app/module/login/login_manager.lua +++ b/lua/app/module/login/login_manager.lua @@ -160,7 +160,7 @@ function LoginManager:loginFinish(data) end end -function LoginManager:saveAuthArgs(name) +function LoginManager:saveAuthArgs(isReconnect, name) local args = LocalData:getLastLoginInfo() if name then args.type = NetManager.LOGIN_TYPE.ANONYMOUS @@ -171,6 +171,7 @@ function LoginManager:saveAuthArgs(name) end args.client_info = self:getClientInfo() + args.reconnect = isReconnect local sendQueue = LocalData:getSendQueue() args.sync = { diff --git a/lua/app/module/login/login_ui.lua b/lua/app/module/login/login_ui.lua index 84c0f597..70c1e556 100644 --- a/lua/app/module/login/login_ui.lua +++ b/lua/app/module/login/login_ui.lua @@ -60,7 +60,7 @@ function LoginUI:onLoadRootComplete() end self:refreshServerList(serverList) - ModuleManager.LoginManager:saveAuthArgs() + ModuleManager.LoginManager:saveAuthArgs(false) ModuleManager.LoginManager:initSocket() local info = LocalData:getLastLoginInfo() diff --git a/lua/app/module/login/test_login_ui.lua b/lua/app/module/login/test_login_ui.lua index 2d0c6985..dddb2844 100644 --- a/lua/app/module/login/test_login_ui.lua +++ b/lua/app/module/login/test_login_ui.lua @@ -78,7 +78,7 @@ function TestLoginUI:loginGame() if name == "" then name = nil end - ModuleManager.LoginManager:saveAuthArgs(name) + ModuleManager.LoginManager:saveAuthArgs(false, name) ModuleManager.LoginManager:initSocket() self.uiMap["test_login_ui.login_node.login_btn"]:setTouchEnable(false) diff --git a/lua/app/module/summon/summon_manager.lua b/lua/app/module/summon/summon_manager.lua index d801b146..3aa1dd6d 100644 --- a/lua/app/module/summon/summon_manager.lua +++ b/lua/app/module/summon/summon_manager.lua @@ -30,7 +30,19 @@ function SummonManager:summonFinish(result) if result.err_code == GConst.ERROR_STR.SUCCESS then DataManager.SummonData:cacheSummonRewards(result.rewards) -- 缓存一下 防止有其他地方需要使用 DataManager.SummonData:init(result.summon_info) - ModuleManager.ShopManager:showBoxOpenUI({type = result.reqData.type}) + + if result.reqData then + local summonType = result.reqData.type + ModuleManager.ShopManager:showBoxOpenUI({type = summonType}) + -- 任务 + if summonType == GConst.SummonConst.SUMMON_TYPE.LV_1 then + ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_OPEN_SHOP_BOX_LEVEL_1) + elseif summonType == GConst.SummonConst.SUMMON_TYPE.LV_2 then + ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_OPEN_SHOP_BOX_LEVEL_2) + elseif summonType == GConst.SummonConst.SUMMON_TYPE.LV_3 then + ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_OPEN_SHOP_BOX_LEVEL_3) + end + end end end diff --git a/lua/app/net/net_manager.lua b/lua/app/net/net_manager.lua index c394122d..f4dbb5f4 100644 --- a/lua/app/net/net_manager.lua +++ b/lua/app/net/net_manager.lua @@ -227,12 +227,12 @@ function NetManager:connect(domain, port, callback, socketName) return end LocalData:setLastLoginInfo(lastLoginType, params.id, params.token) - ModuleManager.LoginManager:saveAuthArgs() + ModuleManager.LoginManager:saveAuthArgs(true) ModuleManager.LoginManager:initSocket() end, loginType) else LocalData:setLastLoginInfo() - ModuleManager.LoginManager:saveAuthArgs() + ModuleManager.LoginManager:saveAuthArgs(true) local params = { content = I18N:getGlobalText(I18N.GlobalConst.DISCONNECT_RELOGIN), okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK), diff --git a/lua/app/proto/proto_msg_type.lua b/lua/app/proto/proto_msg_type.lua index dcec8238..32f5544b 100644 --- a/lua/app/proto/proto_msg_type.lua +++ b/lua/app/proto/proto_msg_type.lua @@ -27,6 +27,8 @@ local ProtoMsgType = { [1068771132] = "ReconnectRsp", [1070841461] = "LoginReq", [1070843294] = "LoginRsp", + [1433352538] = "ChapterDailyChallengeResetReq", + [1433354371] = "ChapterDailyChallengeResetRsp", [1471116409] = "BindReq", [1471118242] = "BindRsp", [1584689751] = "ActPaidResultReq", @@ -139,6 +141,8 @@ local ProtoMsgType = { ReconnectRsp = 1068771132, LoginReq = 1070841461, LoginRsp = 1070843294, + ChapterDailyChallengeResetReq = 1433352538, + ChapterDailyChallengeResetRsp = 1433354371, BindReq = 1471116409, BindRsp = 1471118242, ActPaidResultReq = 1584689751, @@ -251,6 +255,8 @@ local ProtoMsgType = { ReconnectRsp = "ReconnectRsp", LoginReq = "LoginReq", LoginRsp = "LoginRsp", + ChapterDailyChallengeResetReq = "ChapterDailyChallengeResetReq", + ChapterDailyChallengeResetRsp = "ChapterDailyChallengeResetRsp", BindReq = "BindReq", BindRsp = "BindRsp", ActPaidResultReq = "ActPaidResultReq", diff --git a/lua/app/ui/activity/seven_day/seven_day_ui.lua b/lua/app/ui/activity/seven_day/seven_day_ui.lua index b4e2d518..eb577539 100644 --- a/lua/app/ui/activity/seven_day/seven_day_ui.lua +++ b/lua/app/ui/activity/seven_day/seven_day_ui.lua @@ -36,8 +36,8 @@ function SevenDayUI:onLoadRootComplete() end function SevenDayUI:_display() - self.uiMap["seven_day_ui.title_bg.title_tx"]:setText("临时文本:新手七天乐") - self.uiMap["seven_day_ui.down.desc"]:setText("临时文本:每天将开启新的任务") + self.uiMap["seven_day_ui.title_bg.title_tx"]:setText(I18N:getGlobalText(I18N.GlobalConst.SEVEN_DAY_TITLE)) + self.uiMap["seven_day_ui.down.desc"]:setText(I18N:getGlobalText(I18N.GlobalConst.SEVEN_DAY_DESC_1)) self.uiMap["seven_day_ui.down.close_btn"]:addClickListener(function() self:closeUI() end) @@ -51,10 +51,10 @@ function SevenDayUI:initTop() self.stepObjs = {} for i = 1, 7 do self.dayTextList[i] = self.uiMap["seven_day_ui.day_bg.day_" .. i] - self.dayTextList[i]:setText("临时文本:第" .. i .. "天") + self.dayTextList[i]:setText(I18N:getGlobalText(I18N.GlobalConst.DAY_X, i)) self.dayTextList[i]:addClickListener(function() if i > DataManager.SevenDayData:getActDay() then - GFunc.showToast(string.format("临时文本:第%s天解锁", i)) + GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.DAY_X_UNLOCK, i)) return end self.day = i @@ -66,6 +66,18 @@ function SevenDayUI:initTop() icon = self.uiMap["seven_day_ui.slider_bg.icon_" .. i], num = self.uiMap["seven_day_ui.slider_bg.num_" .. i], } + self.stepObjs[i].icon:addClickListener(function() + local list = DataManager.SevenDayData:getStepRewardList() + local id = list[i] + if id then + if DataManager.SevenDayData:canClaimStepTask(id) then + ModuleManager.SevenDayManager:claimStepReward(id) + else + local reward = DataManager.SevenDayData:getStepReward(id) + ModuleManager.TipsManager:showRewardTips(reward.id, reward.type, self.stepObjs[i].icon) + end + end + end) end self.finalBoxLight = self.uiMap["seven_day_ui.slider_bg.light_7"] self.sevenDayDesc = self.uiMap["seven_day_ui.slider_bg.desc"] @@ -117,23 +129,20 @@ function SevenDayUI:refreshStepInfo() for index, objs in ipairs(self.stepObjs) do local id = list[index] if id then - local reward = DataManager.SevenDayData:getStepReward(id) objs.num:setText(DataManager.SevenDayData:getStepNum(id)) - if DataManager.SevenDayData:canClaimStepTask(id) then - objs.icon:addClickListener(function() - ModuleManager.SevenDayManager:claimStepReward(id) - end) - else - objs.icon:addClickListener(function() - ModuleManager.TipsManager:showRewardTips(reward.id, reward.type, objs.icon) - end) + if index ~= 7 then + if DataManager.SevenDayData:stepOver(id) then + objs.icon:setSprite(GConst.ATLAS_PATH.SEVEN_DAY, "sevenday_chest_1") + else + objs.icon:setSprite(GConst.ATLAS_PATH.SEVEN_DAY, "sevenday_chest_2") + end end end end local count = DataManager.SevenDayData:getCollectedCount() local totalCount = DataManager.SevenDayData:getTotalCount() - self.sevenDayDesc:setText(string.format("临时文本:已完成任务数:%s/%s", count, totalCount)) + self.sevenDayDesc:setText(I18N:getGlobalText(I18N.GlobalConst.SEVEN_DAY_DESC_2, count, totalCount)) self.sevenDaySliderComp.value = count / totalCount end @@ -147,24 +156,6 @@ function SevenDayUI:refreshScrollRect() end end --- function SevenDayUI:_addListeners() --- uiMap["seven_day_ui.img_3.btn_all"]:addClickListener(function() --- local list = DataManager.SevenDayData:getTaskListByDay(self.day or 1) --- local ids = {} --- for _, id in ipairs(list) do --- if DataManager.SevenDayData:canClaimTask(id) then --- table.insert(ids, id) --- end --- end --- if not ids[1] then --- return --- end --- ModuleManager.SevenDayManager:claimTask(ids) --- end) --- end - - - function SevenDayUI:sortTaskList(day) self.day = day self.taskList = DataManager.SevenDayData:getTaskListByDay(day or 1) diff --git a/lua/app/ui/main_city/cell/side_bar_seven_days_cell.lua b/lua/app/ui/main_city/cell/side_bar_seven_days_cell.lua index 06f33981..a2f3969e 100644 --- a/lua/app/ui/main_city/cell/side_bar_seven_days_cell.lua +++ b/lua/app/ui/main_city/cell/side_bar_seven_days_cell.lua @@ -13,4 +13,9 @@ function SideBarSevenDaysCell:onClick() ModuleManager.SevenDayManager:showUI() end +function SideBarSevenDaysCell:getIsShowRedPoint() + return DataManager.SevenDayData:showRedPoint() +end + + return SideBarSevenDaysCell \ No newline at end of file diff --git a/lua/app/ui/main_city/main_city_ui.lua b/lua/app/ui/main_city/main_city_ui.lua index c0acd0e3..d6c38c5c 100644 --- a/lua/app/ui/main_city/main_city_ui.lua +++ b/lua/app/ui/main_city/main_city_ui.lua @@ -695,9 +695,9 @@ function MainCityUI:setLeftSideBarArrowRedPoint(isShow) end if isShow then if ModuleManager.MaincityManager:getIsMainCityLeftSideBarClose() then - self.leftArrowBtn:removeRedPoint() - else self.leftArrowBtn:addRedPoint() + else + self.leftArrowBtn:removeRedPoint() end else self.leftArrowBtn:removeRedPoint() @@ -710,9 +710,9 @@ function MainCityUI:setRightSideBarArrowRedPoint(isShow) end if isShow then if ModuleManager.MaincityManager:getIsMainCityRightSideBarClose() then - self.rightArrowBtn:removeRedPoint() - else self.rightArrowBtn:addRedPoint() + else + self.rightArrowBtn:removeRedPoint() end else self.rightArrowBtn:removeRedPoint() From 8eccf012ba711c51d1f4dd73581aadd283e09e0e Mon Sep 17 00:00:00 2001 From: chenxi Date: Fri, 26 May 2023 15:38:55 +0800 Subject: [PATCH 3/5] =?UTF-8?q?=E4=B8=83=E5=A4=A9=E4=B9=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/common/bi_report.lua | 1 + .../activity/seven_day/seven_day_manager.lua | 19 ++++------------- lua/app/module/gm/gm_const.lua | 8 +++++++ lua/app/module/summon/summon_manager.lua | 6 +++--- .../ui/activity/seven_day/seven_day_ui.lua | 14 ++++++++----- .../cell/side_bar_seven_days_cell.lua | 21 +++++++++++++++++++ .../activity/seven_day/seven_day_data.lua | 18 +++++++++++----- 7 files changed, 59 insertions(+), 28 deletions(-) diff --git a/lua/app/common/bi_report.lua b/lua/app/common/bi_report.lua index f2c22139..944fc2b2 100644 --- a/lua/app/common/bi_report.lua +++ b/lua/app/common/bi_report.lua @@ -86,6 +86,7 @@ BIReport.ITEM_GET_TYPE = { BATTLE_SKILL_REFRESH = "BattleSkillRefresh", LEVEL_FUND = "LevelFund", SEVEN_DAY_TASK = "SevenDayTask", + SEVEN_DAY_STEP_REWARD = "SevenDayStepReward", } BIReport.ADS_CLICK_TYPE = { diff --git a/lua/app/module/activity/seven_day/seven_day_manager.lua b/lua/app/module/activity/seven_day/seven_day_manager.lua index 88f2f566..e74f83a2 100644 --- a/lua/app/module/activity/seven_day/seven_day_manager.lua +++ b/lua/app/module/activity/seven_day/seven_day_manager.lua @@ -20,30 +20,19 @@ function SevenDayManager:onClaimTaskRewardFinish(result) end function SevenDayManager:claimStepReward(id) - if not DataManager.SevenDayData:getIsOpen() then - GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.ACTIVITY_OVER_DESC)) - return - end - if DataManager.SevenDayData:getStepCollected(id) then return end - if not DataManager.SevenDayData:canClaimStepTask(id) then return end - - local params = {id = id} - local responseData = { - rewards = {GFunc.getRewardTableByReward(DataManager.SevenDayData:getStepReward(id))}, - Claimed = { - [id] = true - } + local params = { + id = id } - self:sendMessage(ProtoMsgType.FromMsgEnum.SevenDayRewardReq, params, responseData, self.claimStepRewardFinish, BIReport.ITEM_GET_TYPE.SEVEN_DAY_STEP_REWARD) + self:sendMessage(ProtoMsgType.FromMsgEnum.SevenDayRewardReq, params, {}, self.onClaimStepRewardFinish, BIReport.ITEM_GET_TYPE.SEVEN_DAY_STEP_REWARD) end -function SevenDayManager:claimStepRewardFinish(result) +function SevenDayManager:onClaimStepRewardFinish(result) if result.status == 0 then GFunc.showRewardBox(result.rewards) DataManager.SevenDayData:refreshClaimed(result.Claimed) diff --git a/lua/app/module/gm/gm_const.lua b/lua/app/module/gm/gm_const.lua index 8983f07b..c2b0bef8 100644 --- a/lua/app/module/gm/gm_const.lua +++ b/lua/app/module/gm/gm_const.lua @@ -73,6 +73,14 @@ arg1:邮件id Example: add_mail 1]], type = "add_mail" }, + { + title = "触发任务", + desc = [[触发任务 type:trig_event +arg1:任务类型 +arg2:任务参数 +Example: trig_event 22 5]], + type = "trig_event" + }, } return GMConst \ No newline at end of file diff --git a/lua/app/module/summon/summon_manager.lua b/lua/app/module/summon/summon_manager.lua index 3aa1dd6d..091759c6 100644 --- a/lua/app/module/summon/summon_manager.lua +++ b/lua/app/module/summon/summon_manager.lua @@ -36,11 +36,11 @@ function SummonManager:summonFinish(result) ModuleManager.ShopManager:showBoxOpenUI({type = summonType}) -- 任务 if summonType == GConst.SummonConst.SUMMON_TYPE.LV_1 then - ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_OPEN_SHOP_BOX_LEVEL_1) + ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_OPEN_SHOP_BOX_LEVEL_1, 1) elseif summonType == GConst.SummonConst.SUMMON_TYPE.LV_2 then - ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_OPEN_SHOP_BOX_LEVEL_2) + ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_OPEN_SHOP_BOX_LEVEL_2, 1) elseif summonType == GConst.SummonConst.SUMMON_TYPE.LV_3 then - ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_OPEN_SHOP_BOX_LEVEL_3) + ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_OPEN_SHOP_BOX_LEVEL_3, 1) end end end diff --git a/lua/app/ui/activity/seven_day/seven_day_ui.lua b/lua/app/ui/activity/seven_day/seven_day_ui.lua index eb577539..ff2aeddf 100644 --- a/lua/app/ui/activity/seven_day/seven_day_ui.lua +++ b/lua/app/ui/activity/seven_day/seven_day_ui.lua @@ -84,6 +84,7 @@ function SevenDayUI:initTop() self.sevenDaySliderComp = self.uiMap["seven_day_ui.slider_bg.slider"]:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_SLIDER) self.daySelectImg = self.uiMap["seven_day_ui.day_bg.day_select"] self.timeTx = self.uiMap["seven_day_ui.title_bg.time"] + self.timeIcon = self.uiMap["seven_day_ui.title_bg.time_icon"] end function SevenDayUI:initTasks() @@ -183,13 +184,16 @@ end function SevenDayUI:updateTime() local endTime = DataManager.SevenDayData:getEndTime() local remainTime = endTime - Time:getServerTime() - local str - if remainTime > 0 then - str = GFunc.getTimeStr(remainTime) + if remainTime >= 0 then + self.timeTx:setText(GFunc.getTimeStr(remainTime)) + local remainDay = remainTime // 86400 + if self.remainDay ~= remainDay then + self.remainDay = remainDay + GFunc.centerImgAndTx(self.timeIcon, self.timeTx, 14) + end else - str = "00:00:00" + self:closeUI() end - self.timeTx:setText(str) end return SevenDayUI \ No newline at end of file diff --git a/lua/app/ui/main_city/cell/side_bar_seven_days_cell.lua b/lua/app/ui/main_city/cell/side_bar_seven_days_cell.lua index a2f3969e..ab2ef947 100644 --- a/lua/app/ui/main_city/cell/side_bar_seven_days_cell.lua +++ b/lua/app/ui/main_city/cell/side_bar_seven_days_cell.lua @@ -17,5 +17,26 @@ function SideBarSevenDaysCell:getIsShowRedPoint() return DataManager.SevenDayData:showRedPoint() end +function SideBarSevenDaysCell:onRefresh() + self.timeBg:setVisible(true) + self:_refreshTime() +end + +function SideBarSevenDaysCell:updateTime() + if self:getIsOpen() then + self:_refreshTime() + else + self:closeBtn() + end +end + +function SideBarSevenDaysCell:_refreshTime() + local remainTime = DataManager.SevenDayData:getEndTime() - Time:getServerTime() + if remainTime >= 0 then + self.timeTx:setText(GFunc.getTimeStr(remainTime)) + else + self.timeTx:setText("00:00:00") + end +end return SideBarSevenDaysCell \ No newline at end of file diff --git a/lua/app/userdata/activity/seven_day/seven_day_data.lua b/lua/app/userdata/activity/seven_day/seven_day_data.lua index deff7070..09b072df 100644 --- a/lua/app/userdata/activity/seven_day/seven_day_data.lua +++ b/lua/app/userdata/activity/seven_day/seven_day_data.lua @@ -48,11 +48,9 @@ function SevenDayData:getIsOpen() if self.endTime < nowTime or self.openTs > nowTime then return false end - - if self.collectTaskCount >= self:getSevenDayTaskMaxCount() and self.collectStepCount > self:getSevenDayRewardMaxCount() then + if self.collectTaskCount >= self:getSevenDayTaskMaxCount() and self.collectStepCount >= self:getSevenDayRewardMaxCount() then return false end - return true end @@ -357,14 +355,24 @@ function SevenDayData:getSevenDayTaskDesc(id) end function SevenDayData:initTaskListener() + local nowTime = Time:getServerTime() + -- 活动结束就不用监听了 + if self.endTime < nowTime then + return false + end + -- 完成了就不用监听了 + if self.collectTaskCount >= self:getSevenDayTaskMaxCount() and self.collectStepCount >= self:getSevenDayRewardMaxCount() then + return false + end + local cfg = self:getSevenDayTaskCfg() for _, v in ipairs(cfg) do local taskType = v.type ModuleManager.TaskManager:registerTask("SevenDayData", taskType, function(count) local list = self:getTaskListByType(taskType) if #list > 0 then - for _, task in ipairs(list) do - self:addTaskProgress(task, taskType, count) + for _, id in ipairs(list) do + self:addTaskProgress(id, count) end end end) From 01922a4c0d85296c0bba7ded5bfbde778176da3e Mon Sep 17 00:00:00 2001 From: CloudJ Date: Fri, 26 May 2023 15:44:35 +0800 Subject: [PATCH 4/5] =?UTF-8?q?=E6=88=90=E9=95=BF=E7=A4=BC=E5=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/common/bi_report.lua | 4 +- lua/app/common/data_manager.lua | 2 +- lua/app/common/pay_manager.lua | 3 + lua/app/common/server_push_manager.lua | 1 + lua/app/module/shop/shop_const.lua | 2 +- lua/app/module/shop/shop_manager.lua | 12 +++ lua/app/module/summon/summon_const.lua | 2 +- lua/app/proto/proto_msg_type.lua | 6 ++ lua/app/ui/main_city/main_city_ui.lua | 6 ++ lua/app/ui/shop/cell/beginner_sell_cell.lua | 4 +- lua/app/ui/shop/cell/chapter_cell.lua | 12 ++- lua/app/ui/shop/cell/coin_sell_cell.lua | 4 +- lua/app/ui/shop/cell/grow_cell.lua | 33 ++++--- lua/app/ui/shop/cell/grow_sell_cell.lua | 37 ++++---- lua/app/ui/shop/cell/level_cell.lua | 4 +- lua/app/ui/shop/gift_pop_ui.lua | 5 +- lua/app/ui/shop/shop_comp.lua | 3 + lua/app/userdata/shop/shop_data.lua | 99 +++++++++++++++++---- 18 files changed, 178 insertions(+), 61 deletions(-) diff --git a/lua/app/common/bi_report.lua b/lua/app/common/bi_report.lua index ed920bc5..ed49c1aa 100644 --- a/lua/app/common/bi_report.lua +++ b/lua/app/common/bi_report.lua @@ -84,7 +84,8 @@ BIReport.ITEM_GET_TYPE = { PLAYER_LV_UP = "PlayerLvUp", GOLD_PIG = "GoldPig", BATTLE_SKILL_REFRESH = "BattleSkillRefresh", - LEVEL_FUND = "LevelFund" + LEVEL_FUND = "LevelFund", + GROW_UP_GIFT = "GrowUpGift", -- 成长礼包 } BIReport.ADS_CLICK_TYPE = { @@ -135,6 +136,7 @@ BIReport.GIFT_TYPE = { MALL_TREASURE = "MallTreasure", ACT_CHAPTER_STORE = "ActChapterStore", LEVEL_FUND = "LevelFund", + GROW_UP_GIFT = "GrowUpGift", } BIReport.COIN_TYPE = { diff --git a/lua/app/common/data_manager.lua b/lua/app/common/data_manager.lua index 7427cfab..33f3319c 100644 --- a/lua/app/common/data_manager.lua +++ b/lua/app/common/data_manager.lua @@ -129,7 +129,7 @@ function DataManager:initWithServerData(data) self.ShopData:initActGift(data.act) -- 礼包购买信息 self.ShopData:initMallDaily(data.mall_daily) -- 每日特惠 self.ShopData:initCommonDailyGoldGift(data.mall_idle and data.mall_idle.ad_count) -- 常驻金币礼包 - self.ShopData:initGrowUpGift(data.act_grow_up_gift) -- 成长礼包 + self.ShopData:initGrowUpGift(data.act_grow_up_gift, data.now_ts) -- 成长礼包 self.ShopData:initLevelUpGift(data.act_level_up_gift) -- 助力/金币礼包 self.SummonData:init(data.summon, true) -- 成长基金要在ShopData和PlayerDataBagData还有之后初始化,依赖这些数据 diff --git a/lua/app/common/pay_manager.lua b/lua/app/common/pay_manager.lua index a87604fb..9fc449b8 100644 --- a/lua/app/common/pay_manager.lua +++ b/lua/app/common/pay_manager.lua @@ -24,6 +24,7 @@ PayManager.PURCHARSE_TYPE_CONFIG = { [PayManager.PURCHARSE_TYPE.ACT_GOLD_PIG] = "act_gold_pig", [PayManager.PURCHARSE_TYPE.MALL_TREASURE] = "mall_treasure", [PayManager.PURCHARSE_TYPE.CHAPTER_GIFT] = "act_chapter_store", + [PayManager.PURCHARSE_TYPE.GROW_UP_GIFT] = "act_growup_gift", } PayManager.BI_ITEM_GET_TYPE = { @@ -38,6 +39,7 @@ PayManager.BI_ITEM_GET_TYPE = { [PayManager.PURCHARSE_TYPE.ACT_GOLD_PIG] = BIReport.ITEM_GET_TYPE.GOLD_PIG, [PayManager.PURCHARSE_TYPE.MALL_TREASURE] = BIReport.ITEM_GET_TYPE.MALL_TREASURE, [PayManager.PURCHARSE_TYPE.CHAPTER_GIFT] = BIReport.ITEM_GET_TYPE.ACT_CHAPTER_STORE, + [PayManager.PURCHARSE_TYPE.GROW_UP_GIFT] = BIReport.ITEM_GET_TYPE.GROW_UP_GIFT, } PayManager.BI_GIFT_TYPE = { @@ -52,6 +54,7 @@ PayManager.BI_GIFT_TYPE = { [PayManager.PURCHARSE_TYPE.ACT_GOLD_PIG] = BIReport.GIFT_TYPE.GOLD_PIG, [PayManager.PURCHARSE_TYPE.MALL_TREASURE] = BIReport.GIFT_TYPE.MALL_TREASURE, [PayManager.PURCHARSE_TYPE.CHAPTER_GIFT] = BIReport.GIFT_TYPE.ACT_CHAPTER_STORE, + [PayManager.PURCHARSE_TYPE.GROW_UP_GIFT] = BIReport.GIFT_TYPE.GROW_UP_GIFT, } function PayManager:getItemGetType(purchaseType, id) diff --git a/lua/app/common/server_push_manager.lua b/lua/app/common/server_push_manager.lua index c9660f92..9084d100 100644 --- a/lua/app/common/server_push_manager.lua +++ b/lua/app/common/server_push_manager.lua @@ -17,6 +17,7 @@ function ServerPushManager:initWhenLogin() self:addServerPushListener(ProtoMsgType.FromMsgEnum.NewMailNtf, ModuleManager.MailManager, ModuleManager.MailManager.needUpdateMail) self:addServerPushListener(ProtoMsgType.FromMsgEnum.PigLevelUpNtf, ModuleManager.ActivityManager, ModuleManager.ActivityManager.onBoughtGoldPigFinish) self:addServerPushListener(ProtoMsgType.FromMsgEnum.TriggerLevelUpGiftNtf, ModuleManager.ShopManager, ModuleManager.ShopManager.onTriggerLevelUpGift) + self:addServerPushListener(ProtoMsgType.FromMsgEnum.TriggerGrowUpGiftNtf, ModuleManager.ShopManager, ModuleManager.ShopManager.onTriggerGrowUpGift) self:addServerPushListener(ProtoMsgType.FromMsgEnum.MallDailyResetNtf, ModuleManager.ShopManager, ModuleManager.ShopManager.onMallDailyReset) end diff --git a/lua/app/module/shop/shop_const.lua b/lua/app/module/shop/shop_const.lua index af8609ea..02eee668 100644 --- a/lua/app/module/shop/shop_const.lua +++ b/lua/app/module/shop/shop_const.lua @@ -1,4 +1,4 @@ -local ShopConst = class("ShopConst", BaseModule) +local ShopConst = {} ShopConst.BEGINNER_GIFT_ID = 40102 -- 新手礼包ID ShopConst.MAIN_UI_POP_TYPE = { -- 当触发弹窗时,相关联的类型礼包也要触发 diff --git a/lua/app/module/shop/shop_manager.lua b/lua/app/module/shop/shop_manager.lua index 1dc608a3..7f455710 100644 --- a/lua/app/module/shop/shop_manager.lua +++ b/lua/app/module/shop/shop_manager.lua @@ -32,6 +32,11 @@ function ShopManager:triggerCoinGiftPopUI(actId) self:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, actId) end +-- 触发成长礼包 +function ShopManager:triggerGrowUpGiftPopUI(actId) + self:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.GROW_UP_GIFT, actId) +end + -- 购买每日特惠商品 function ShopManager:buyMallDailyGift(id, isAd) if not DataManager.ShopData:getMallDailyIsOpen() then @@ -164,4 +169,11 @@ function ShopManager:tryTriggerCoinGiftFinish(result) end end +-- 推送成长礼包 +function ShopManager:onTriggerGrowUpGift(result) + DataManager.ShopData:onTriggerGrowUpGift(result.add_grow_up_gift) + -- 立即触发弹窗 + self:triggerGrowUpGiftPopUI(result.add_grow_up_gift.current_grow_up_id) +end + return ShopManager \ No newline at end of file diff --git a/lua/app/module/summon/summon_const.lua b/lua/app/module/summon/summon_const.lua index 9e11e300..2f0ab07c 100644 --- a/lua/app/module/summon/summon_const.lua +++ b/lua/app/module/summon/summon_const.lua @@ -1,4 +1,4 @@ -local SummonConst = class("SummonConst", BaseModule) +local SummonConst = {} SummonConst.SUMMON_TYPE = { LV_1 = 1, diff --git a/lua/app/proto/proto_msg_type.lua b/lua/app/proto/proto_msg_type.lua index dcec8238..32f5544b 100644 --- a/lua/app/proto/proto_msg_type.lua +++ b/lua/app/proto/proto_msg_type.lua @@ -27,6 +27,8 @@ local ProtoMsgType = { [1068771132] = "ReconnectRsp", [1070841461] = "LoginReq", [1070843294] = "LoginRsp", + [1433352538] = "ChapterDailyChallengeResetReq", + [1433354371] = "ChapterDailyChallengeResetRsp", [1471116409] = "BindReq", [1471118242] = "BindRsp", [1584689751] = "ActPaidResultReq", @@ -139,6 +141,8 @@ local ProtoMsgType = { ReconnectRsp = 1068771132, LoginReq = 1070841461, LoginRsp = 1070843294, + ChapterDailyChallengeResetReq = 1433352538, + ChapterDailyChallengeResetRsp = 1433354371, BindReq = 1471116409, BindRsp = 1471118242, ActPaidResultReq = 1584689751, @@ -251,6 +255,8 @@ local ProtoMsgType = { ReconnectRsp = "ReconnectRsp", LoginReq = "LoginReq", LoginRsp = "LoginRsp", + ChapterDailyChallengeResetReq = "ChapterDailyChallengeResetReq", + ChapterDailyChallengeResetRsp = "ChapterDailyChallengeResetRsp", BindReq = "BindReq", BindRsp = "BindRsp", ActPaidResultReq = "ActPaidResultReq", diff --git a/lua/app/ui/main_city/main_city_ui.lua b/lua/app/ui/main_city/main_city_ui.lua index c0acd0e3..d1ad8f4f 100644 --- a/lua/app/ui/main_city/main_city_ui.lua +++ b/lua/app/ui/main_city/main_city_ui.lua @@ -849,6 +849,12 @@ function MainCityUI:checkGift() return true end + -- 特殊的 成长礼包 + local popUpGift = DataManager.ShopData:getPopUpGiftByType(PayManager.PURCHARSE_TYPE.GROW_UP_GIFT) + if popUpGift and #popUpGift > 0 then + ModuleManager.ShopManager:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.GROW_UP_GIFT, popUpGift[1]) + return true + end end return MainCityUI \ No newline at end of file diff --git a/lua/app/ui/shop/cell/beginner_sell_cell.lua b/lua/app/ui/shop/cell/beginner_sell_cell.lua index de630864..d0674590 100644 --- a/lua/app/ui/shop/cell/beginner_sell_cell.lua +++ b/lua/app/ui/shop/cell/beginner_sell_cell.lua @@ -36,6 +36,8 @@ function BeginnerSellCell:init() self.timeImg = uiMap["gift_cell.bg.time_img"] self.timeText = uiMap["gift_cell.bg.time_img.text"] + + self.clickArea = uiMap["gift_cell.bg.click_area"] end function BeginnerSellCell:refresh() @@ -77,7 +79,7 @@ function BeginnerSellCell:refresh() -- 限时(隐藏) self.timeImg:setVisible(false) - self:addClickListener(function() + self.clickArea:addClickListener(function() self:onClickGift(actGiftId) end) end diff --git a/lua/app/ui/shop/cell/chapter_cell.lua b/lua/app/ui/shop/cell/chapter_cell.lua index fb9ca3b9..ceb58a85 100644 --- a/lua/app/ui/shop/cell/chapter_cell.lua +++ b/lua/app/ui/shop/cell/chapter_cell.lua @@ -37,6 +37,8 @@ function ChapterCell:init() self.timeImg = uiMap["gift_cell.bg.time_img"] self.timeText = uiMap["gift_cell.bg.time_img.text"] + + self.clickArea = uiMap["gift_cell.bg.click_area"] end function ChapterCell:refresh(idx, cfgInfo, totalCount, arrowCallback) @@ -53,10 +55,14 @@ function ChapterCell:refresh(idx, cfgInfo, totalCount, arrowCallback) self.rightArrow:setVisible(showRightArrow) self.leftArrow:addClickListener(function() - arrowCallback(1) + if idx > 1 then + arrowCallback(1) + end end) self.rightArrow:addClickListener(function() - arrowCallback(-1) + if idx < totalCount then + arrowCallback(-1) + end end) -- 超值 self.offText:setText(tostring(cfgInfo.value * 100) .. "%") @@ -90,7 +96,7 @@ function ChapterCell:refresh(idx, cfgInfo, totalCount, arrowCallback) -- 限时(隐藏) self.timeImg:setVisible(false) - self:addClickListener(function() + self.clickArea:addClickListener(function() self:onClickGift(cfgInfo.id) end) end diff --git a/lua/app/ui/shop/cell/coin_sell_cell.lua b/lua/app/ui/shop/cell/coin_sell_cell.lua index f71a6c01..914eb2be 100644 --- a/lua/app/ui/shop/cell/coin_sell_cell.lua +++ b/lua/app/ui/shop/cell/coin_sell_cell.lua @@ -36,6 +36,8 @@ function CoinSellCell:init() self.timeImg = uiMap["gift_cell.bg.time_img"] self.timeText = uiMap["gift_cell.bg.time_img.text"] + + self.clickArea = uiMap["gift_cell.bg.click_area"] end function CoinSellCell:refresh() @@ -74,7 +76,7 @@ function CoinSellCell:refresh() self.timeImg:setVisible(true) self:refreshTime() - self:addClickListener(function() + self.clickArea:addClickListener(function() self:onClickGift(actGiftId) end) end diff --git a/lua/app/ui/shop/cell/grow_cell.lua b/lua/app/ui/shop/cell/grow_cell.lua index 4d971015..6abd2af5 100644 --- a/lua/app/ui/shop/cell/grow_cell.lua +++ b/lua/app/ui/shop/cell/grow_cell.lua @@ -35,9 +35,14 @@ function GrowCell:init() self.timeImg = uiMap["gift_cell.bg.time_img"] self.timeText = uiMap["gift_cell.bg.time_img.text"] + + self.clickArea = uiMap["gift_cell.bg.click_area"] end -function GrowCell:refresh(idx, cfgInfo, clickCallback) +function GrowCell:refresh(idx, gift) + self.gift = gift + self.actId = gift.current_grow_up_id + local cfgInfo = DataManager.ShopData:getActGrowUpGiftConfig()[self.actId] -- 超值 self.offText:setText(tostring(cfgInfo.value) .. "%") -- 限购 @@ -68,22 +73,30 @@ function GrowCell:refresh(idx, cfgInfo, clickCallback) self.priceText2:setText(GFunc.getFormatPrice(cfgInfo.recharge_id)) -- 限时 self.timeImg:setVisible(true) - self:updateTime() + self:refreshTime() - if clickCallback then - self:addClickListener(function() - clickCallback(cfgInfo.id) - end) - end + self.clickArea:addClickListener(function() + self:onClickGift(self.actId) + end) end function GrowCell:setVisible(visible) self.baseObject:setVisible(visible) end -function GrowCell:updateTime() - local leftTime = 3600 -- 数据结构暂无 临时测试 TODOJ - self.timeText:setText(Time:formatNumTimeStr(leftTime)) +function GrowCell:refreshTime() + local remainTime = 0 + local cfgInfo = DataManager.ShopData:getActGrowUpGiftConfig()[self.actId] + local triggerTime = self.gift.trigger_at // 1000 + remainTime = triggerTime + (cfgInfo.limit_time or 0) * 3600 - Time:getServerTime() + if remainTime <= 0 then + remainTime = 0 + end + self.timeText:setText(Time:formatNumTimeStr(remainTime)) +end + +function GrowCell:onClickGift(id) + PayManager:purchasePackage(id, PayManager.PURCHARSE_TYPE.GROW_UP_GIFT) end return GrowCell \ No newline at end of file diff --git a/lua/app/ui/shop/cell/grow_sell_cell.lua b/lua/app/ui/shop/cell/grow_sell_cell.lua index 546f3879..6c461618 100644 --- a/lua/app/ui/shop/cell/grow_sell_cell.lua +++ b/lua/app/ui/shop/cell/grow_sell_cell.lua @@ -11,10 +11,8 @@ function GrowSellCell:init() return GROW_CELL end) self.scrollRect:addRefreshCallback(function(idx, cell) - if self.actGrowUpGiftCfg and self.actGrowUpGiftCfg[idx] then - cell:refresh(idx, self.actGrowUpGiftCfg[idx], function() - self:onClickGift(self.actGrowUpGiftCfg[idx].id) - end) + if self.actGifts and self.actGifts[idx] then + cell:refresh(idx, self.actGifts[idx]) end end) self.scrollRect:clearCells() @@ -23,36 +21,35 @@ function GrowSellCell:init() end function GrowSellCell:refresh() - -- 暂无数据部分 测试用 TODOJ - local tmpIds = {1014, 2014} - self.actGrowUpGiftCfg = {} - local actGrowUpGiftCfg = ConfigManager:getConfig("act_growup_gift") - for i = 1, #tmpIds do - local cfgInfo = clone(actGrowUpGiftCfg[tmpIds[i]]) - cfgInfo.id = tmpIds[i] - table.insert(self.actGrowUpGiftCfg, cfgInfo) - end - self.scrollRect:refillCells(#self.actGrowUpGiftCfg) + self.actGifts = DataManager.ShopData:getValidGrowUpGifts() + self.scrollRect:refillCells(#self.actGifts) self:getBaseObject():setSizeDeltaY(self:getCellHeight()) self.scrollRectObj:setSizeDeltaY(self:getCellHeight()) end +function GrowSellCell:refreshTime() + if self.scrollRect then + if self.curCellCount ~= #self.actGifts then + self.curCellCount = self.actGifts + self:refresh() + else + self.scrollRect:refreshAll() + end + end +end + function GrowSellCell:getCellHeight() - local cellCount = self.actGrowUpGiftCfg and #self.actGrowUpGiftCfg or 0 + local cellCount = self.actGifts and #self.actGifts or 0 return BASE_CELL_HEIGHT * cellCount end function GrowSellCell:getIsOpen() - return false -- true -- TOODJ + return #DataManager.ShopData:getValidGrowUpGifts() > 0 end function GrowSellCell:setVisible(visible) self.baseObject:setVisible(visible) end -function GrowSellCell:onClickGift(id) - Logger.logHighlight("Click id:%s", id) -- TODOJ -end - return GrowSellCell \ No newline at end of file diff --git a/lua/app/ui/shop/cell/level_cell.lua b/lua/app/ui/shop/cell/level_cell.lua index b515aa53..95f716e0 100644 --- a/lua/app/ui/shop/cell/level_cell.lua +++ b/lua/app/ui/shop/cell/level_cell.lua @@ -35,6 +35,8 @@ function LevelCell:init() self.timeImg = uiMap["gift_cell.bg.time_img"] self.timeText = uiMap["gift_cell.bg.time_img.text"] + + self.clickArea = uiMap["gift_cell.bg.click_area"] end function LevelCell:refresh(idx, cfgInfo, clickCallback) @@ -69,7 +71,7 @@ function LevelCell:refresh(idx, cfgInfo, clickCallback) -- 限时(隐藏) self.timeImg:setVisible(false) - self:addClickListener(function() + self.clickArea:addClickListener(function() self:onClickGift(cfgInfo.id) end) end diff --git a/lua/app/ui/shop/gift_pop_ui.lua b/lua/app/ui/shop/gift_pop_ui.lua index 9857c44c..a3f02793 100644 --- a/lua/app/ui/shop/gift_pop_ui.lua +++ b/lua/app/ui/shop/gift_pop_ui.lua @@ -7,6 +7,7 @@ local GIFT_BG_NAME = { [PayManager.PURCHARSE_ACT_TYPE.LEVEL_UP_GIFT] = "assets/arts/textures/background/shop/shop_gift_banner_3_1.png", -- TODOJ }, [PayManager.PURCHARSE_TYPE.CHAPTER_GIFT] = "assets/arts/textures/background/shop/shop_gift_banner_1_1.png", -- TODOJ + [PayManager.PURCHARSE_TYPE.GROW_UP_GIFT] = "assets/arts/textures/background/shop/shop_gift_banner_4_1.png", -- TODOJ } local GIFT_TITLE_TEXT = { [PayManager.PURCHARSE_TYPE.ACT_GIFT] = { @@ -15,6 +16,7 @@ local GIFT_TITLE_TEXT = { [PayManager.PURCHARSE_ACT_TYPE.LEVEL_UP_GIFT] = "助力礼包TD", -- TODOJ }, [PayManager.PURCHARSE_TYPE.CHAPTER_GIFT] = "章节礼包TD", -- TODOJ + [PayManager.PURCHARSE_TYPE.GROW_UP_GIFT] = "成长礼包TD", -- TODOJ } local MAX_ITEM_NUM = 4 @@ -96,9 +98,6 @@ function GiftPopUI:refresh(needCheck) return end end - - Logger.logHighlight("refresh -- type:%s id:%s", self.actType, self.actId) - if self.actType == PayManager.PURCHARSE_TYPE.ACT_GIFT then local type = PayManager:getGiftConfigInfo(self.actType, self.actId).type self.titleTx:setText(GIFT_TITLE_TEXT[self.actType][type]) diff --git a/lua/app/ui/shop/shop_comp.lua b/lua/app/ui/shop/shop_comp.lua index 9bc3d06d..c96e151f 100644 --- a/lua/app/ui/shop/shop_comp.lua +++ b/lua/app/ui/shop/shop_comp.lua @@ -141,6 +141,9 @@ function ShopComp:refreshTime() if self.coinSellCell and self.coinSellCell:getIsOpen() then self.coinSellCell:refreshTime() end + if self.growSellCell and self.growSellCell:getIsOpen() then + self.growSellCell:refreshTime() + end end function ShopComp:refreshDiscountPage() diff --git a/lua/app/userdata/shop/shop_data.lua b/lua/app/userdata/shop/shop_data.lua index e4bab0e1..4083955c 100644 --- a/lua/app/userdata/shop/shop_data.lua +++ b/lua/app/userdata/shop/shop_data.lua @@ -211,10 +211,10 @@ end -- 初始化每日特惠 function ShopData:initMallDaily(mallDaily) - if EDITOR_MODE then - Logger.logHighlight("初始化 initMallDaily") - Logger.printTable(mallDaily) - end + -- if EDITOR_MODE then + -- Logger.logHighlight("初始化 initMallDaily") + -- Logger.printTable(mallDaily) + -- end mallDaily = mallDaily or {} self.mallDailyAdResetCount = mallDaily.ad_reset_Count or 0 @@ -324,10 +324,10 @@ function ShopData:getMallGoldConfig() end function ShopData:initCommonDailyGoldGift(ad_count) - if EDITOR_MODE then - Logger.logHighlight("初始化 initCommonDailyGoldGift") - Logger.printTable(ad_count) - end + -- if EDITOR_MODE then + -- Logger.logHighlight("初始化 initCommonDailyGoldGift") + -- Logger.printTable(ad_count) + -- end ad_count = ad_count or {} self.commonDailyGoldBuyCount = ad_count[1] or 0 -- 已购的金币广告礼包次数 @@ -427,10 +427,10 @@ end -- 初始化助力与金币礼包 function ShopData:initLevelUpGift(levelUpGift) - if EDITOR_MODE then - Logger.logHighlight("初始化 助力与金币礼包") - Logger.printTable(levelUpGift) - end + -- if EDITOR_MODE then + -- Logger.logHighlight("初始化 助力与金币礼包") + -- Logger.printTable(levelUpGift) + -- end levelUpGift = levelUpGift or {} self.levelUpGifts = levelUpGift.gifts or {} -- [{trigger_level,current_level_up_gift,trigger_at}] @@ -442,9 +442,9 @@ function ShopData:initLevelUpGift(levelUpGift) end function ShopData:initCoinGift(id, triggerTime) - if EDITOR_MODE then - Logger.logHighlight("初始化 金币礼包 -- id:%s time:%s", id, triggerTime) - end + -- if EDITOR_MODE then + -- Logger.logHighlight("初始化 金币礼包 -- id:%s time:%s", id, triggerTime) + -- end self.coinGiftId = id or 0 -- 金币礼包触发id self.coinGiftTriggerTime = triggerTime or 0 -- 金币礼包触发时间 @@ -485,7 +485,6 @@ function ShopData:getLevelUpGiftActIds() local list = {} for index, gift in ipairs(self.levelUpGifts) do -- 剔除已购的助力礼包 这个礼包只会有一次 - if self:getGiftBoughtNum(PayManager.PURCHARSE_TYPE.ACT_GIFT, gift.current_level_up_gift) == 0 then table.insert(list, gift.current_level_up_gift) end @@ -527,7 +526,6 @@ function ShopData:getValidCoinGiftId() return actId end end - else -- 没有买过,这个肯定可以购买 return actId end @@ -599,8 +597,73 @@ end -- 成长礼包 ********************************************************************************************** +function ShopData:getActGrowUpGiftConfig() + return ConfigManager:getConfig("act_growup_gift") +end + -- 初始化成长礼包 -function ShopData:initGrowUpGift(growUpGift) +function ShopData:initGrowUpGift(growUpGift, loginTime) + if EDITOR_MODE then + Logger.logHighlight("初始化成长礼包 growUpGift -- now_ts:%s", loginTime) + Logger.printTable(growUpGift) + end + + growUpGift = growUpGift or {} + + self.growUpGifts = growUpGift.grow_up_gift or {} -- {hero_id, current_grow_up_id, trigger_at} + for _, gift in ipairs(self.growUpGifts) do -- 标记需要弹出的礼包 + if gift.trigger_at == loginTime then + self:markPopUpGiftForGrowUpGift(gift.current_grow_up_id) + end + end + self:setDirty() +end + +function ShopData:getGrowUpGifts() + return self.growUpGifts +end + +-- 获取目前时间有效的成长礼包 +function ShopData:getValidGrowUpGifts() + local list = {} + for index, gift in ipairs(self:getGrowUpGifts()) do + local cfgInfo = self:getActGrowUpGiftConfig()[gift.current_grow_up_id] + if cfgInfo then + local cd = (cfgInfo.cd or 0) * 3600 + local durationTime = (cfgInfo.limit_time or 0) * 3600 + local triggerTime = gift.trigger_at // 1000 + local maxDurationTime = triggerTime + durationTime + local maxEndTime = triggerTime + cd + -- 是否在有效范围内 + local isInDurationTime = Time:getServerTime() < maxDurationTime + if isInDurationTime then + -- 从通用act里找到这个礼包的最后购买时间 如果有且在这个范围内 则这个礼包已经被购买了 + local hasBuy = false + local actGiftDetailData = self:getActGiftDetailData(PayManager.PURCHARSE_TYPE.GROW_UP_GIFT, gift.current_grow_up_id) + if actGiftDetailData then + local latestBuyTime = actGiftDetailData.latest_buy_at // 1000 + if latestBuyTime > 0 and triggerTime < latestBuyTime and latestBuyTime < maxEndTime then + hasBuy = true + end + end + if not hasBuy then + table.insert(list, gift) + end + end + end + end + return list +end + +-- 触发了成长礼包 +function ShopData:onTriggerGrowUpGift(gift) + table.insert(self.growUpGifts, gift) + + self:setDirty() +end + +function ShopData:markPopUpGiftForGrowUpGift(actId) + self:markPopUpGift(PayManager.PURCHARSE_TYPE.GROW_UP_GIFT, actId) end -- 成长礼包结束 ---------------------------------------------------------------------------------------------- From fcd79434d1c40a6115a8daafaed31a66e5119f0b Mon Sep 17 00:00:00 2001 From: chenxi Date: Fri, 26 May 2023 15:44:52 +0800 Subject: [PATCH 5/5] =?UTF-8?q?=E4=B8=83=E5=A4=A9=E4=B9=90=E6=8C=89?= =?UTF-8?q?=E9=92=AE=E6=96=87=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/ui/activity/seven_day/cell/task_cell.lua | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lua/app/ui/activity/seven_day/cell/task_cell.lua b/lua/app/ui/activity/seven_day/cell/task_cell.lua index 137b8e28..59011440 100644 --- a/lua/app/ui/activity/seven_day/cell/task_cell.lua +++ b/lua/app/ui/activity/seven_day/cell/task_cell.lua @@ -16,7 +16,7 @@ function TaskCell:init() end) self.btnGreyImg = uiMap["task_cell.bg.cliam_btn.grey"] self.mask = uiMap["task_cell.bg.mask"] - uiMap["task_cell.bg.cliam_btn.text"]:setText(I18N:getGlobalText(I18N.GlobalConst.BTN_CLAIM)) + self.cliamBtnTx = uiMap["task_cell.bg.cliam_btn.text"] uiMap["task_cell.bg.mask.text"]:setText(I18N:getGlobalText(I18N.GlobalConst.STR_COMPLETED)) end @@ -41,8 +41,12 @@ function TaskCell:refresh(id) self.sliderTx:setText(count .. "/" .. totalCount) self.btnGreyImg:setVisible(not canClaimTask) - self.mask:setVisible(collected) + if collected then + self.cliamBtnTx:setText(I18N:getGlobalText(I18N.GlobalConst.BTN_DONE)) + else + self.cliamBtnTx:setText(I18N:getGlobalText(I18N.GlobalConst.BTN_CLAIM)) + end end return TaskCell \ No newline at end of file