From 45e600be696cf00c727538e78257a99e5c5f1c6a Mon Sep 17 00:00:00 2001
From: puxuan <413323644@qq.com>
Date: Tue, 7 Oct 2025 19:59:53 +0800
Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=8A=A0=E4=BB=BB=E5=8A=A1?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
lua/app/common/data_manager.lua | 29 +-
lua/app/config/act_sevenday_quest.lua | 6 +-
lua/app/config/buff.lua | 4 +-
lua/app/config/chapter_daily_challenge.lua | 1576 ++++++-
lua/app/config/daily_challenge_level.lua | 84 +-
lua/app/config/fx.lua | 65 +-
lua/app/config/monster_chapter.lua | 2530 +++++------
lua/app/config/monster_daily_challenge.lua | 3803 ++++++++++-------
lua/app/config/skill.lua | 189 +-
lua/app/config/skill_rogue.lua | 833 ++--
lua/app/config/strings/cn/attr.lua | 82 +-
lua/app/config/strings/cn/skill_rogue.lua | 140 +-
lua/app/config/strings/de/attr.lua | 69 +-
lua/app/config/strings/de/skill_rogue.lua | 20 +-
lua/app/config/strings/en/attr.lua | 69 +-
lua/app/config/strings/en/skill_rogue.lua | 20 +-
lua/app/config/strings/es/attr.lua | 69 +-
lua/app/config/strings/es/skill_rogue.lua | 20 +-
lua/app/config/strings/fr/attr.lua | 69 +-
lua/app/config/strings/fr/skill_rogue.lua | 20 +-
lua/app/config/strings/id/attr.lua | 69 +-
lua/app/config/strings/id/skill_rogue.lua | 20 +-
lua/app/config/strings/ja/attr.lua | 69 +-
lua/app/config/strings/ja/skill_rogue.lua | 20 +-
lua/app/config/strings/ko/attr.lua | 69 +-
lua/app/config/strings/ko/skill_rogue.lua | 20 +-
lua/app/config/strings/pt/attr.lua | 69 +-
lua/app/config/strings/pt/skill_rogue.lua | 20 +-
lua/app/config/strings/ru/attr.lua | 69 +-
lua/app/config/strings/ru/skill_rogue.lua | 20 +-
lua/app/config/strings/th/attr.lua | 69 +-
lua/app/config/strings/th/skill_rogue.lua | 20 +-
lua/app/config/strings/vi/attr.lua | 69 +-
lua/app/config/strings/vi/skill_rogue.lua | 20 +-
lua/app/config/strings/zh/attr.lua | 69 +-
lua/app/config/strings/zh/skill_rogue.lua | 20 +-
lua/app/config/task_daily_challenge.lua | 144 +-
lua/app/global/global_func.lua | 8 +-
lua/app/module/hero/hero_manager.lua | 9 +
lua/app/module/shop/shop_const.lua | 8 +
lua/app/module/shop/shop_manager.lua | 10 +-
lua/app/module/talent/talent_manager.lua | 1 +
lua/app/module/task/task_const.lua | 4 +
lua/app/module/task/task_manager.lua | 20 +-
.../activity/act_seven_day/cell/task_cell.lua | 16 +-
.../ui/currency_bar/cell/currency_cell.lua | 4 +-
lua/app/ui/main_city/main_city_ui.lua | 19 +-
lua/app/ui/shop/shop_comp.lua | 20 +-
.../ui/task/cell/achievement_task_cell.lua | 6 +
.../act_seven_day/act_seven_day_data.lua | 2 +-
lua/app/userdata/arena/arena_data.lua | 5 +-
51 files changed, 6443 insertions(+), 4242 deletions(-)
diff --git a/lua/app/common/data_manager.lua b/lua/app/common/data_manager.lua
index 44f13d5c..f70e89a4 100644
--- a/lua/app/common/data_manager.lua
+++ b/lua/app/common/data_manager.lua
@@ -121,6 +121,7 @@ function DataManager:initWithServerData(data)
Time:setServerTimeZone(0)
Time:updateServerTime(data.now_ts)
Time:updateServerTimeToday(data.today_ts)
+ self.loginCount = data.stat and data.stat.login_day_count or 1
if EDITOR_MODE then
Logger.logHighlight("initWithServerData")
@@ -323,6 +324,7 @@ function DataManager:scheduleGlobal()
self.crossDayTS = Time:getDayOverTimeStamp()
self.weekOverTime = Time:getWeekOverTimeStamp()
self.monthOverTime = Time:getMonthOverTimeStamp()
+ self.loginCount = self.loginCount + 1
-- 跨天先刷新活动时间
DataManager.ActTimeData:refreshActTime(true)
Logger.logHighlight("跨天===========================================================================")
@@ -471,28 +473,6 @@ function DataManager:clearTryOpenFunc()
end
end
-function DataManager:getSignInfo()
- local nowTime = Time:getServerTime()
- local lastSignTime = self.signInfo.latest_at // 1000
- local todayBeginTime = nowTime - nowTime % 86400
- local canSign = lastSignTime < todayBeginTime
- if not ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.SIGNIN) then
- canSign = false
- end
- return self.signInfo.count or 0, canSign, self.hasSigned
-end
-
-function DataManager:setSignCount(count)
- self.hasSigned = true
- self.signInfo.count = count
- self.signInfo.latest_at = Time:getServerTime() * 1000
- --Logger.logHighlight("签到成功次数:"..count)
-end
-
-function DataManager:resetSignInInfo()
- self.hasSigned = false
-end
-
function DataManager:setLoginSuccess(success)
self.loginSuccess = success
end
@@ -501,4 +481,9 @@ function DataManager:getLoginSuccess()
return self.loginSuccess
end
+-- 获取登录天数
+function DataManager:getLoginCount()
+ return self.loginCount or 1
+end
+
return DataManager
\ No newline at end of file
diff --git a/lua/app/config/act_sevenday_quest.lua b/lua/app/config/act_sevenday_quest.lua
index 9a7a3439..82af4b28 100644
--- a/lua/app/config/act_sevenday_quest.lua
+++ b/lua/app/config/act_sevenday_quest.lua
@@ -324,7 +324,7 @@ local act_sevenday_quest = {
[215]={
["day"]=3,
["type"]=31,
- ["number"]=2,
+ ["number"]=1000,
["reward"]={
{
["type"]=1,
@@ -531,7 +531,7 @@ local act_sevenday_quest = {
[224]={
["day"]=5,
["type"]=31,
- ["number"]=4,
+ ["number"]=1200,
["reward"]={
{
["type"]=1,
@@ -784,7 +784,7 @@ local act_sevenday_quest = {
[235]={
["day"]=7,
["type"]=31,
- ["number"]=7,
+ ["number"]=1800,
["reward"]={
{
["type"]=1,
diff --git a/lua/app/config/buff.lua b/lua/app/config/buff.lua
index a778b971..03b73437 100644
--- a/lua/app/config/buff.lua
+++ b/lua/app/config/buff.lua
@@ -328,7 +328,7 @@ local buff = {
["buff_type"]=1,
["stack"]=2,
["decr"]=1,
- ["icon"]="normal_attack_add",
+ ["icon"]="high",
["show_name"]=true,
["fx_get"]={
30
@@ -972,7 +972,7 @@ local buff = {
["buff_type"]=1,
["stack"]=2,
["decr"]=1,
- ["icon"]="normal_attack_add",
+ ["icon"]="high",
["show_name"]=true,
["fx_get"]={
30
diff --git a/lua/app/config/chapter_daily_challenge.lua b/lua/app/config/chapter_daily_challenge.lua
index 08dbf92a..755e6777 100644
--- a/lua/app/config/chapter_daily_challenge.lua
+++ b/lua/app/config/chapter_daily_challenge.lua
@@ -27,6 +27,24 @@ local chapter_daily_challenge = {
11402,
11502
},
+ ["wave_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=3,
+ ["id_for_nothing"]="VQ==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=19,
+ ["id_for_nothing"]="VwE=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ }
+ },
["begin_buff_id"]={
{
1,
@@ -202,21 +220,39 @@ local chapter_daily_challenge = {
6
},
["monster"]={
- 20102,
- 20202,
- 20302,
- 20402,
- 20502,
- 20602,
- 20702,
- 20802,
- 20902,
- 21002,
- 21102,
- 21202,
- 21302,
- 21402,
- 21502
+ 11602,
+ 11702,
+ 11802,
+ 11902,
+ 12002,
+ 12102,
+ 12202,
+ 12302,
+ 12402,
+ 12502,
+ 12602,
+ 12702,
+ 12802,
+ 12902,
+ 13002
+ },
+ ["wave_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=3,
+ ["id_for_nothing"]="VQ==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=19,
+ ["id_for_nothing"]="VwE=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ }
},
["begin_buff_id"]={
{
@@ -393,21 +429,39 @@ local chapter_daily_challenge = {
9
},
["monster"]={
- 30102,
- 30202,
- 30302,
- 30402,
- 30502,
- 30602,
- 30702,
- 30802,
- 30902,
- 31002,
- 31102,
- 31202,
- 31302,
- 31402,
- 31502
+ 13102,
+ 13202,
+ 13302,
+ 13402,
+ 13502,
+ 13602,
+ 13702,
+ 13802,
+ 13902,
+ 14002,
+ 14102,
+ 14202,
+ 14302,
+ 14402,
+ 14502
+ },
+ ["wave_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=3,
+ ["id_for_nothing"]="VQ==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=19,
+ ["id_for_nothing"]="VwE=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ }
},
["begin_buff_id"]={
{
@@ -584,21 +638,39 @@ local chapter_daily_challenge = {
12
},
["monster"]={
- 40102,
- 40202,
- 40302,
- 40402,
- 40502,
- 40602,
- 40702,
- 40802,
- 40902,
- 41002,
- 41102,
- 41202,
- 41302,
- 41402,
- 41502
+ 14602,
+ 14702,
+ 14802,
+ 14902,
+ 15002,
+ 15102,
+ 15202,
+ 15302,
+ 15402,
+ 15502,
+ 15602,
+ 15702,
+ 15802,
+ 15902,
+ 16002
+ },
+ ["wave_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=3,
+ ["id_for_nothing"]="VQ==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=19,
+ ["id_for_nothing"]="VwE=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ }
},
["begin_buff_id"]={
{
@@ -775,21 +847,39 @@ local chapter_daily_challenge = {
15
},
["monster"]={
- 50102,
- 50202,
- 50302,
- 50402,
- 50502,
- 50602,
- 50702,
- 50802,
- 50902,
- 51002,
- 51102,
- 51202,
- 51302,
- 51402,
- 51502
+ 16102,
+ 16202,
+ 16302,
+ 16402,
+ 16502,
+ 16602,
+ 16702,
+ 16802,
+ 16902,
+ 17002,
+ 17102,
+ 17202,
+ 17302,
+ 17402,
+ 17502
+ },
+ ["wave_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=3,
+ ["id_for_nothing"]="VQ==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=19,
+ ["id_for_nothing"]="VwE=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ }
},
["begin_buff_id"]={
{
@@ -966,21 +1056,39 @@ local chapter_daily_challenge = {
18
},
["monster"]={
- 60102,
- 60202,
- 60302,
- 60402,
- 60502,
- 60602,
- 60702,
- 60802,
- 60902,
- 61002,
- 61102,
- 61202,
- 61302,
- 61402,
- 61502
+ 17602,
+ 17702,
+ 17802,
+ 17902,
+ 18002,
+ 18102,
+ 18202,
+ 18302,
+ 18402,
+ 18502,
+ 18602,
+ 18702,
+ 18802,
+ 18902,
+ 19002
+ },
+ ["wave_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=3,
+ ["id_for_nothing"]="VQ==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=19,
+ ["id_for_nothing"]="VwE=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ }
},
["begin_buff_id"]={
{
@@ -1157,21 +1265,39 @@ local chapter_daily_challenge = {
21
},
["monster"]={
- 70102,
- 70202,
- 70302,
- 70402,
- 70502,
- 70602,
- 70702,
- 70802,
- 70902,
- 71002,
- 71102,
- 71202,
- 71302,
- 71402,
- 71502
+ 19102,
+ 19202,
+ 19302,
+ 19402,
+ 19502,
+ 19602,
+ 19702,
+ 19802,
+ 19902,
+ 20002,
+ 20102,
+ 20202,
+ 20302,
+ 20402,
+ 20502
+ },
+ ["wave_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=3,
+ ["id_for_nothing"]="VQ==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=19,
+ ["id_for_nothing"]="VwE=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ }
},
["begin_buff_id"]={
{
@@ -1348,21 +1474,39 @@ local chapter_daily_challenge = {
24
},
["monster"]={
- 80102,
- 80202,
- 80302,
- 80402,
- 80502,
- 80602,
- 80702,
- 80802,
- 80902,
- 81002,
- 81102,
- 81202,
- 81302,
- 81402,
- 81502
+ 20602,
+ 20702,
+ 20802,
+ 20902,
+ 21002,
+ 21102,
+ 21202,
+ 21302,
+ 21402,
+ 21502,
+ 21602,
+ 21702,
+ 21802,
+ 21902,
+ 22002
+ },
+ ["wave_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=3,
+ ["id_for_nothing"]="VQ==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=19,
+ ["id_for_nothing"]="VwE=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ }
},
["begin_buff_id"]={
{
@@ -1539,21 +1683,39 @@ local chapter_daily_challenge = {
27
},
["monster"]={
- 90102,
- 90202,
- 90302,
- 90402,
- 90502,
- 90602,
- 90702,
- 90802,
- 90902,
- 91002,
- 91102,
- 91202,
- 91302,
- 91402,
- 91502
+ 22102,
+ 22202,
+ 22302,
+ 22402,
+ 22502,
+ 22602,
+ 22702,
+ 22802,
+ 22902,
+ 23002,
+ 23102,
+ 23202,
+ 23302,
+ 23402,
+ 23502
+ },
+ ["wave_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=3,
+ ["id_for_nothing"]="VQ==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=19,
+ ["id_for_nothing"]="VwE=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ }
},
["begin_buff_id"]={
{
@@ -1730,21 +1892,39 @@ local chapter_daily_challenge = {
30
},
["monster"]={
- 100102,
- 100202,
- 100302,
- 100402,
- 100502,
- 100602,
- 100702,
- 100802,
- 100902,
- 101002,
- 101102,
- 101202,
- 101302,
- 101402,
- 101502
+ 23602,
+ 23702,
+ 23802,
+ 23902,
+ 24002,
+ 24102,
+ 24202,
+ 24302,
+ 24402,
+ 24502,
+ 24602,
+ 24702,
+ 24802,
+ 24902,
+ 25002
+ },
+ ["wave_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=3,
+ ["id_for_nothing"]="VQ==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=19,
+ ["id_for_nothing"]="VwE=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ }
},
["begin_buff_id"]={
{
@@ -1921,21 +2101,39 @@ local chapter_daily_challenge = {
33
},
["monster"]={
- 110102,
- 110202,
- 110302,
- 110402,
- 110502,
- 110602,
- 110702,
- 110802,
- 110902,
- 111002,
- 111102,
- 111202,
- 111302,
- 111402,
- 111502
+ 25102,
+ 25202,
+ 25302,
+ 25402,
+ 25502,
+ 25602,
+ 25702,
+ 25802,
+ 25902,
+ 26002,
+ 26102,
+ 26202,
+ 26302,
+ 26402,
+ 26502
+ },
+ ["wave_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=3,
+ ["id_for_nothing"]="VQ==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=19,
+ ["id_for_nothing"]="VwE=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ }
},
["begin_buff_id"]={
{
@@ -2112,21 +2310,39 @@ local chapter_daily_challenge = {
36
},
["monster"]={
- 120102,
- 120202,
- 120302,
- 120402,
- 120502,
- 120602,
- 120702,
- 120802,
- 120902,
- 121002,
- 121102,
- 121202,
- 121302,
- 121402,
- 121502
+ 26602,
+ 26702,
+ 26802,
+ 26902,
+ 27002,
+ 27102,
+ 27202,
+ 27302,
+ 27402,
+ 27502,
+ 27602,
+ 27702,
+ 27802,
+ 27902,
+ 28002
+ },
+ ["wave_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=3,
+ ["id_for_nothing"]="VQ==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=19,
+ ["id_for_nothing"]="VwE=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ }
},
["begin_buff_id"]={
{
@@ -2303,21 +2519,39 @@ local chapter_daily_challenge = {
39
},
["monster"]={
- 130102,
- 130202,
- 130302,
- 130402,
- 130502,
- 130602,
- 130702,
- 130802,
- 130902,
- 131002,
- 131102,
- 131202,
- 131302,
- 131402,
- 131502
+ 28102,
+ 28202,
+ 28302,
+ 28402,
+ 28502,
+ 28602,
+ 28702,
+ 28802,
+ 28902,
+ 29002,
+ 29102,
+ 29202,
+ 29302,
+ 29402,
+ 29502
+ },
+ ["wave_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=3,
+ ["id_for_nothing"]="VQ==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=19,
+ ["id_for_nothing"]="VwE=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ }
},
["begin_buff_id"]={
{
@@ -2494,21 +2728,39 @@ local chapter_daily_challenge = {
42
},
["monster"]={
- 140102,
- 140202,
- 140302,
- 140402,
- 140502,
- 140602,
- 140702,
- 140802,
- 140902,
- 141002,
- 141102,
- 141202,
- 141302,
- 141402,
- 141502
+ 29602,
+ 29702,
+ 29802,
+ 29902,
+ 30002,
+ 30102,
+ 30202,
+ 30302,
+ 30402,
+ 30502,
+ 30602,
+ 30702,
+ 30802,
+ 30902,
+ 31002
+ },
+ ["wave_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=3,
+ ["id_for_nothing"]="VQ==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=19,
+ ["id_for_nothing"]="VwE=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ }
},
["begin_buff_id"]={
{
@@ -2685,21 +2937,39 @@ local chapter_daily_challenge = {
45
},
["monster"]={
- 150102,
- 150202,
- 150302,
- 150402,
- 150502,
- 150602,
- 150702,
- 150802,
- 150902,
- 151002,
- 151102,
- 151202,
- 151302,
- 151402,
- 151502
+ 31102,
+ 31202,
+ 31302,
+ 31402,
+ 31502,
+ 31602,
+ 31702,
+ 31802,
+ 31902,
+ 32002,
+ 32102,
+ 32202,
+ 32302,
+ 32402,
+ 32502
+ },
+ ["wave_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=3,
+ ["id_for_nothing"]="VQ==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=19,
+ ["id_for_nothing"]="VwE=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ }
},
["begin_buff_id"]={
{
@@ -2876,21 +3146,875 @@ local chapter_daily_challenge = {
48
},
["monster"]={
- 160102,
- 160202,
- 160302,
- 160402,
- 160502,
- 160602,
- 160702,
- 160802,
- 160902,
- 161002,
- 161102,
- 161202,
- 161302,
- 161402,
- 161502
+ 32602,
+ 32702,
+ 32802,
+ 32902,
+ 33002,
+ 33102,
+ 33202,
+ 33302,
+ 33402,
+ 33502,
+ 33602,
+ 33702,
+ 33802,
+ 33902,
+ 34002
+ },
+ ["wave_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=3,
+ ["id_for_nothing"]="VQ==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=19,
+ ["id_for_nothing"]="VwE=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ }
+ },
+ ["begin_buff_id"]={
+ {
+ 1,
+ 8
+ },
+ {
+ 1,
+ 9
+ },
+ {
+ 1,
+ 10
+ },
+ {
+ 1,
+ 11
+ },
+ {
+ 1,
+ 12
+ },
+ {
+ 1,
+ 13
+ },
+ {
+ 2,
+ 8
+ },
+ {
+ 2,
+ 9
+ },
+ {
+ 2,
+ 10
+ },
+ {
+ 2,
+ 11
+ },
+ {
+ 2,
+ 12
+ },
+ {
+ 2,
+ 13
+ },
+ {
+ 3,
+ 8
+ },
+ {
+ 3,
+ 9
+ },
+ {
+ 3,
+ 10
+ },
+ {
+ 3,
+ 11
+ },
+ {
+ 3,
+ 12
+ },
+ {
+ 3,
+ 13
+ },
+ {
+ 4,
+ 8
+ },
+ {
+ 4,
+ 9
+ },
+ {
+ 4,
+ 10
+ },
+ {
+ 4,
+ 11
+ },
+ {
+ 4,
+ 12
+ },
+ {
+ 4,
+ 13
+ },
+ {
+ 5,
+ 8
+ },
+ {
+ 5,
+ 9
+ },
+ {
+ 5,
+ 10
+ },
+ {
+ 5,
+ 11
+ },
+ {
+ 5,
+ 12
+ },
+ {
+ 5,
+ 13
+ },
+ {
+ 6,
+ 8
+ },
+ {
+ 6,
+ 9
+ },
+ {
+ 6,
+ 10
+ },
+ {
+ 6,
+ 12
+ },
+ {
+ 6,
+ 13
+ },
+ {
+ 7,
+ 8
+ },
+ {
+ 7,
+ 9
+ },
+ {
+ 7,
+ 10
+ },
+ {
+ 7,
+ 12
+ },
+ {
+ 7,
+ 13
+ }
+ }
+ },
+ [17]={
+ ["max_chapter"]=72,
+ ["icon"]="chapter_2",
+ ["scene"]="bg_2",
+ ["block_icon"]="battle_hinder_2",
+ ["chess_board"]="chessboard_2",
+ ["chapter_board_daily_challenge"]={
+ 49,
+ 50,
+ 51
+ },
+ ["monster"]={
+ 34102,
+ 34202,
+ 34302,
+ 34402,
+ 34502,
+ 34602,
+ 34702,
+ 34802,
+ 34902,
+ 35002,
+ 35102,
+ 35202,
+ 35302,
+ 35402,
+ 35502
+ },
+ ["wave_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=3,
+ ["id_for_nothing"]="VQ==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=19,
+ ["id_for_nothing"]="VwE=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ }
+ },
+ ["begin_buff_id"]={
+ {
+ 1,
+ 8
+ },
+ {
+ 1,
+ 9
+ },
+ {
+ 1,
+ 10
+ },
+ {
+ 1,
+ 11
+ },
+ {
+ 1,
+ 12
+ },
+ {
+ 1,
+ 13
+ },
+ {
+ 2,
+ 8
+ },
+ {
+ 2,
+ 9
+ },
+ {
+ 2,
+ 10
+ },
+ {
+ 2,
+ 11
+ },
+ {
+ 2,
+ 12
+ },
+ {
+ 2,
+ 13
+ },
+ {
+ 3,
+ 8
+ },
+ {
+ 3,
+ 9
+ },
+ {
+ 3,
+ 10
+ },
+ {
+ 3,
+ 11
+ },
+ {
+ 3,
+ 12
+ },
+ {
+ 3,
+ 13
+ },
+ {
+ 4,
+ 8
+ },
+ {
+ 4,
+ 9
+ },
+ {
+ 4,
+ 10
+ },
+ {
+ 4,
+ 11
+ },
+ {
+ 4,
+ 12
+ },
+ {
+ 4,
+ 13
+ },
+ {
+ 5,
+ 8
+ },
+ {
+ 5,
+ 9
+ },
+ {
+ 5,
+ 10
+ },
+ {
+ 5,
+ 11
+ },
+ {
+ 5,
+ 12
+ },
+ {
+ 5,
+ 13
+ },
+ {
+ 6,
+ 8
+ },
+ {
+ 6,
+ 9
+ },
+ {
+ 6,
+ 10
+ },
+ {
+ 6,
+ 12
+ },
+ {
+ 6,
+ 13
+ },
+ {
+ 7,
+ 8
+ },
+ {
+ 7,
+ 9
+ },
+ {
+ 7,
+ 10
+ },
+ {
+ 7,
+ 12
+ },
+ {
+ 7,
+ 13
+ }
+ }
+ },
+ [18]={
+ ["max_chapter"]=77,
+ ["icon"]="chapter_3",
+ ["scene"]="bg_3",
+ ["block_icon"]="battle_hinder_3",
+ ["chess_board"]="chessboard_3",
+ ["chapter_board_daily_challenge"]={
+ 52,
+ 53,
+ 54
+ },
+ ["monster"]={
+ 35602,
+ 35702,
+ 35802,
+ 35902,
+ 36002,
+ 36102,
+ 36202,
+ 36302,
+ 36402,
+ 36502,
+ 36602,
+ 36702,
+ 36802,
+ 36902,
+ 37002
+ },
+ ["wave_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=3,
+ ["id_for_nothing"]="VQ==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=19,
+ ["id_for_nothing"]="VwE=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ }
+ },
+ ["begin_buff_id"]={
+ {
+ 1,
+ 8
+ },
+ {
+ 1,
+ 9
+ },
+ {
+ 1,
+ 10
+ },
+ {
+ 1,
+ 11
+ },
+ {
+ 1,
+ 12
+ },
+ {
+ 1,
+ 13
+ },
+ {
+ 2,
+ 8
+ },
+ {
+ 2,
+ 9
+ },
+ {
+ 2,
+ 10
+ },
+ {
+ 2,
+ 11
+ },
+ {
+ 2,
+ 12
+ },
+ {
+ 2,
+ 13
+ },
+ {
+ 3,
+ 8
+ },
+ {
+ 3,
+ 9
+ },
+ {
+ 3,
+ 10
+ },
+ {
+ 3,
+ 11
+ },
+ {
+ 3,
+ 12
+ },
+ {
+ 3,
+ 13
+ },
+ {
+ 4,
+ 8
+ },
+ {
+ 4,
+ 9
+ },
+ {
+ 4,
+ 10
+ },
+ {
+ 4,
+ 11
+ },
+ {
+ 4,
+ 12
+ },
+ {
+ 4,
+ 13
+ },
+ {
+ 5,
+ 8
+ },
+ {
+ 5,
+ 9
+ },
+ {
+ 5,
+ 10
+ },
+ {
+ 5,
+ 11
+ },
+ {
+ 5,
+ 12
+ },
+ {
+ 5,
+ 13
+ },
+ {
+ 6,
+ 8
+ },
+ {
+ 6,
+ 9
+ },
+ {
+ 6,
+ 10
+ },
+ {
+ 6,
+ 12
+ },
+ {
+ 6,
+ 13
+ },
+ {
+ 7,
+ 8
+ },
+ {
+ 7,
+ 9
+ },
+ {
+ 7,
+ 10
+ },
+ {
+ 7,
+ 12
+ },
+ {
+ 7,
+ 13
+ }
+ }
+ },
+ [19]={
+ ["max_chapter"]=82,
+ ["icon"]="chapter_4",
+ ["scene"]="bg_4",
+ ["block_icon"]="battle_hinder_4",
+ ["chess_board"]="chessboard_4",
+ ["chapter_board_daily_challenge"]={
+ 55,
+ 56,
+ 57
+ },
+ ["monster"]={
+ 37102,
+ 37202,
+ 37302,
+ 37402,
+ 37502,
+ 37602,
+ 37702,
+ 37802,
+ 37902,
+ 38002,
+ 38102,
+ 38202,
+ 38302,
+ 38402,
+ 38502
+ },
+ ["wave_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=3,
+ ["id_for_nothing"]="VQ==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=19,
+ ["id_for_nothing"]="VwE=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ }
+ },
+ ["begin_buff_id"]={
+ {
+ 1,
+ 8
+ },
+ {
+ 1,
+ 9
+ },
+ {
+ 1,
+ 10
+ },
+ {
+ 1,
+ 11
+ },
+ {
+ 1,
+ 12
+ },
+ {
+ 1,
+ 13
+ },
+ {
+ 2,
+ 8
+ },
+ {
+ 2,
+ 9
+ },
+ {
+ 2,
+ 10
+ },
+ {
+ 2,
+ 11
+ },
+ {
+ 2,
+ 12
+ },
+ {
+ 2,
+ 13
+ },
+ {
+ 3,
+ 8
+ },
+ {
+ 3,
+ 9
+ },
+ {
+ 3,
+ 10
+ },
+ {
+ 3,
+ 11
+ },
+ {
+ 3,
+ 12
+ },
+ {
+ 3,
+ 13
+ },
+ {
+ 4,
+ 8
+ },
+ {
+ 4,
+ 9
+ },
+ {
+ 4,
+ 10
+ },
+ {
+ 4,
+ 11
+ },
+ {
+ 4,
+ 12
+ },
+ {
+ 4,
+ 13
+ },
+ {
+ 5,
+ 8
+ },
+ {
+ 5,
+ 9
+ },
+ {
+ 5,
+ 10
+ },
+ {
+ 5,
+ 11
+ },
+ {
+ 5,
+ 12
+ },
+ {
+ 5,
+ 13
+ },
+ {
+ 6,
+ 8
+ },
+ {
+ 6,
+ 9
+ },
+ {
+ 6,
+ 10
+ },
+ {
+ 6,
+ 12
+ },
+ {
+ 6,
+ 13
+ },
+ {
+ 7,
+ 8
+ },
+ {
+ 7,
+ 9
+ },
+ {
+ 7,
+ 10
+ },
+ {
+ 7,
+ 12
+ },
+ {
+ 7,
+ 13
+ }
+ }
+ },
+ [20]={
+ ["max_chapter"]=87,
+ ["icon"]="chapter_5",
+ ["scene"]="bg_5",
+ ["block_icon"]="battle_hinder_5",
+ ["chess_board"]="chessboard_5",
+ ["chapter_board_daily_challenge"]={
+ 58,
+ 59,
+ 60
+ },
+ ["monster"]={
+ 38602,
+ 38702,
+ 38802,
+ 38902,
+ 39002,
+ 39102,
+ 39202,
+ 39302,
+ 39402,
+ 39502,
+ 39602,
+ 39702,
+ 39802,
+ 39902,
+ 40002
+ },
+ ["wave_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=3,
+ ["id_for_nothing"]="VQ==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=19,
+ ["id_for_nothing"]="VwE=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ }
},
["begin_buff_id"]={
{
@@ -3057,6 +4181,6 @@ local chapter_daily_challenge = {
}
}
local config = {
-data=chapter_daily_challenge,count=16
+data=chapter_daily_challenge,count=20
}
return config
\ No newline at end of file
diff --git a/lua/app/config/daily_challenge_level.lua b/lua/app/config/daily_challenge_level.lua
index 25458bdc..75dc060f 100644
--- a/lua/app/config/daily_challenge_level.lua
+++ b/lua/app/config/daily_challenge_level.lua
@@ -76,10 +76,10 @@ local daily_challenge_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
},
{
["type"]=1,
@@ -100,8 +100,8 @@ local daily_challenge_level = {
}
},
["daily_challenge_difficulty"]={
- 73333,
- 8333
+ 272222,
+ 73333
}
},
[2]={
@@ -181,10 +181,10 @@ local daily_challenge_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
},
{
["type"]=1,
@@ -205,8 +205,8 @@ local daily_challenge_level = {
}
},
["daily_challenge_difficulty"]={
- 146667,
- 24556
+ 335556,
+ 146667
}
},
[3]={
@@ -286,10 +286,10 @@ local daily_challenge_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
},
{
["type"]=1,
@@ -310,8 +310,8 @@ local daily_challenge_level = {
}
},
["daily_challenge_difficulty"]={
- 226667,
- 34889
+ 438889,
+ 226667
}
},
[4]={
@@ -391,10 +391,10 @@ local daily_challenge_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
},
{
["type"]=1,
@@ -415,8 +415,8 @@ local daily_challenge_level = {
}
},
["daily_challenge_difficulty"]={
- 374444,
- 46222
+ 552222,
+ 374444
}
},
[5]={
@@ -496,10 +496,10 @@ local daily_challenge_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
},
{
["type"]=1,
@@ -520,8 +520,8 @@ local daily_challenge_level = {
}
},
["daily_challenge_difficulty"]={
- 633333,
- 55222
+ 642222,
+ 633333
}
},
[6]={
@@ -601,10 +601,10 @@ local daily_challenge_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
},
{
["type"]=1,
@@ -625,8 +625,8 @@ local daily_challenge_level = {
}
},
["daily_challenge_difficulty"]={
- 985556,
- 64889
+ 738889,
+ 985556
}
},
[7]={
@@ -706,10 +706,10 @@ local daily_challenge_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
},
{
["type"]=1,
@@ -730,8 +730,8 @@ local daily_challenge_level = {
}
},
["daily_challenge_difficulty"]={
- 2140000,
- 92222
+ 1012222,
+ 2140000
}
}
}
diff --git a/lua/app/config/fx.lua b/lua/app/config/fx.lua
index 1abce96c..9d062938 100644
--- a/lua/app/config/fx.lua
+++ b/lua/app/config/fx.lua
@@ -759,34 +759,6 @@ local fx = {
["res"]="sfx_c1_p45001_05",
["bind"]="root"
},
- [300074]={
- ["res"]="sfx_c1_p44001_01",
- ["bind"]="root"
- },
- [300075]={
- ["res"]="sfx_c1_p44001_02",
- ["bind"]="root"
- },
- [300076]={
- ["res"]="sfx_c1_p24001_01",
- ["bind"]="root"
- },
- [300077]={
- ["res"]="sfx_c1_p24001_02",
- ["bind"]="root"
- },
- [300078]={
- ["res"]="sfx_c1_p24001_03",
- ["bind"]="root"
- },
- [300079]={
- ["res"]="sfx_c1_p24001_04",
- ["bind"]="root"
- },
- [300080]={
- ["res"]="sfx_c1_p24001_05",
- ["bind"]="root"
- },
[400001]={
["res"]="sfx_c1_p45002_01",
["bind"]="root",
@@ -1121,44 +1093,9 @@ local fx = {
["res"]="sfx_c1_p45001_05",
["bind"]="root",
["flip"]=1
- },
- [400074]={
- ["res"]="sfx_c1_p44001_01",
- ["bind"]="root",
- ["flip"]=1
- },
- [400075]={
- ["res"]="sfx_c1_p44001_02",
- ["bind"]="root",
- ["flip"]=1
- },
- [400076]={
- ["res"]="sfx_c1_p24001_01",
- ["bind"]="root",
- ["flip"]=1
- },
- [400077]={
- ["res"]="sfx_c1_p24001_02",
- ["bind"]="root",
- ["flip"]=1
- },
- [400078]={
- ["res"]="sfx_c1_p24001_03",
- ["bind"]="root",
- ["flip"]=1
- },
- [400079]={
- ["res"]="sfx_c1_p24001_04",
- ["bind"]="root",
- ["flip"]=1
- },
- [400080]={
- ["res"]="sfx_c1_p24001_05",
- ["bind"]="root",
- ["flip"]=1
}
}
local config = {
-data=fx,count=267
+data=fx,count=253
}
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 2ba2fb6c..2cd441f9 100644
--- a/lua/app/config/monster_chapter.lua
+++ b/lua/app/config/monster_chapter.lua
@@ -198,7 +198,7 @@ local monster_chapter = {
},
[2010101]={
["monster_base"]=10004,
- ["atk"]=1580000,
+ ["atk"]=1510000,
["hp"]=40000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -210,7 +210,7 @@ local monster_chapter = {
},
[2010201]={
["monster_base"]=10001,
- ["atk"]=1738000,
+ ["atk"]=1661000,
["hp"]=50000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -222,7 +222,7 @@ local monster_chapter = {
},
[2010301]={
["monster_base"]=10005,
- ["atk"]=1896000,
+ ["atk"]=1812000,
["hp"]=50000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -234,7 +234,7 @@ local monster_chapter = {
},
[2010401]={
["monster_base"]=10002,
- ["atk"]=2054000,
+ ["atk"]=1963000,
["hp"]=50000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -247,7 +247,7 @@ local monster_chapter = {
[2010501]={
["monster_base"]=20001,
["is_boss"]=1,
- ["atk"]=2212000,
+ ["atk"]=2114000,
["hp"]=60000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -265,7 +265,7 @@ local monster_chapter = {
},
[2010601]={
["monster_base"]=10002,
- ["atk"]=1738000,
+ ["atk"]=1661000,
["hp"]=55000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -277,7 +277,7 @@ local monster_chapter = {
},
[2010701]={
["monster_base"]=10001,
- ["atk"]=1896000,
+ ["atk"]=1812000,
["hp"]=55000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -289,7 +289,7 @@ local monster_chapter = {
},
[2010801]={
["monster_base"]=10004,
- ["atk"]=2054000,
+ ["atk"]=1963000,
["hp"]=60000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -301,7 +301,7 @@ local monster_chapter = {
},
[2010901]={
["monster_base"]=10005,
- ["atk"]=2212000,
+ ["atk"]=2114000,
["hp"]=60000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -314,7 +314,7 @@ local monster_chapter = {
[2011001]={
["monster_base"]=20002,
["is_boss"]=2,
- ["atk"]=2370000,
+ ["atk"]=2265000,
["hp"]=80000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -329,7 +329,7 @@ local monster_chapter = {
},
[2020101]={
["monster_base"]=10002,
- ["atk"]=1670000,
+ ["atk"]=1510000,
["hp"]=52800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -341,7 +341,7 @@ local monster_chapter = {
},
[2020201]={
["monster_base"]=10001,
- ["atk"]=1837000,
+ ["atk"]=1661000,
["hp"]=66000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -353,7 +353,7 @@ local monster_chapter = {
},
[2020301]={
["monster_base"]=10004,
- ["atk"]=2004000,
+ ["atk"]=1812000,
["hp"]=66000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -365,7 +365,7 @@ local monster_chapter = {
},
[2020401]={
["monster_base"]=10005,
- ["atk"]=2171000,
+ ["atk"]=1963000,
["hp"]=66000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -378,7 +378,7 @@ local monster_chapter = {
[2020501]={
["monster_base"]=20002,
["is_boss"]=1,
- ["atk"]=2338000,
+ ["atk"]=2114000,
["hp"]=79200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -393,7 +393,7 @@ local monster_chapter = {
},
[2020601]={
["monster_base"]=10004,
- ["atk"]=1837000,
+ ["atk"]=1661000,
["hp"]=72600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -405,7 +405,7 @@ local monster_chapter = {
},
[2020701]={
["monster_base"]=10001,
- ["atk"]=2004000,
+ ["atk"]=1812000,
["hp"]=72600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -417,7 +417,7 @@ local monster_chapter = {
},
[2020801]={
["monster_base"]=10005,
- ["atk"]=2171000,
+ ["atk"]=1963000,
["hp"]=79200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -429,7 +429,7 @@ local monster_chapter = {
},
[2020901]={
["monster_base"]=10002,
- ["atk"]=2338000,
+ ["atk"]=2114000,
["hp"]=79200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -442,7 +442,7 @@ local monster_chapter = {
[2021001]={
["monster_base"]=20003,
["is_boss"]=2,
- ["atk"]=2505000,
+ ["atk"]=2265000,
["hp"]=105600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -457,7 +457,7 @@ local monster_chapter = {
},
[2030101]={
["monster_base"]=10002,
- ["atk"]=1770000,
+ ["atk"]=1510000,
["hp"]=67200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -469,7 +469,7 @@ local monster_chapter = {
},
[2030201]={
["monster_base"]=10001,
- ["atk"]=1947000,
+ ["atk"]=1661000,
["hp"]=84000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -481,7 +481,7 @@ local monster_chapter = {
},
[2030301]={
["monster_base"]=10004,
- ["atk"]=2124000,
+ ["atk"]=1812000,
["hp"]=84000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -493,7 +493,7 @@ local monster_chapter = {
},
[2030401]={
["monster_base"]=10005,
- ["atk"]=2301000,
+ ["atk"]=1963000,
["hp"]=84000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -506,7 +506,7 @@ local monster_chapter = {
[2030501]={
["monster_base"]=20002,
["is_boss"]=1,
- ["atk"]=2478000,
+ ["atk"]=2114000,
["hp"]=100800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -521,7 +521,7 @@ local monster_chapter = {
},
[2030601]={
["monster_base"]=10004,
- ["atk"]=1947000,
+ ["atk"]=1661000,
["hp"]=92400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -533,7 +533,7 @@ local monster_chapter = {
},
[2030701]={
["monster_base"]=10001,
- ["atk"]=2124000,
+ ["atk"]=1812000,
["hp"]=92400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -545,7 +545,7 @@ local monster_chapter = {
},
[2030801]={
["monster_base"]=10005,
- ["atk"]=2301000,
+ ["atk"]=1963000,
["hp"]=100800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -557,7 +557,7 @@ local monster_chapter = {
},
[2030901]={
["monster_base"]=10002,
- ["atk"]=2478000,
+ ["atk"]=2114000,
["hp"]=100800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -570,7 +570,7 @@ local monster_chapter = {
[2031001]={
["monster_base"]=20001,
["is_boss"]=1,
- ["atk"]=2655000,
+ ["atk"]=2265000,
["hp"]=134400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -588,7 +588,7 @@ local monster_chapter = {
},
[2031101]={
["monster_base"]=10002,
- ["atk"]=2124000,
+ ["atk"]=1812000,
["hp"]=109200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -600,7 +600,7 @@ local monster_chapter = {
},
[2031201]={
["monster_base"]=10001,
- ["atk"]=2301000,
+ ["atk"]=1963000,
["hp"]=126000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -612,7 +612,7 @@ local monster_chapter = {
},
[2031301]={
["monster_base"]=10004,
- ["atk"]=2478000,
+ ["atk"]=2114000,
["hp"]=126000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -624,7 +624,7 @@ local monster_chapter = {
},
[2031401]={
["monster_base"]=10005,
- ["atk"]=2655000,
+ ["atk"]=2265000,
["hp"]=126000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -637,7 +637,7 @@ local monster_chapter = {
[2031501]={
["monster_base"]=20003,
["is_boss"]=2,
- ["atk"]=3186000,
+ ["atk"]=2718000,
["hp"]=168000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -652,7 +652,7 @@ local monster_chapter = {
},
[3010101]={
["monster_base"]=10006,
- ["atk"]=1820000,
+ ["atk"]=1510000,
["hp"]=80000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -664,7 +664,7 @@ local monster_chapter = {
},
[3010201]={
["monster_base"]=10004,
- ["atk"]=2002000,
+ ["atk"]=1661000,
["hp"]=100000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -676,7 +676,7 @@ local monster_chapter = {
},
[3010301]={
["monster_base"]=10007,
- ["atk"]=2184000,
+ ["atk"]=1812000,
["hp"]=100000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -688,7 +688,7 @@ local monster_chapter = {
},
[3010401]={
["monster_base"]=10008,
- ["atk"]=2366000,
+ ["atk"]=1963000,
["hp"]=100000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -701,7 +701,7 @@ local monster_chapter = {
[3010501]={
["monster_base"]=20004,
["is_boss"]=1,
- ["atk"]=2548000,
+ ["atk"]=2114000,
["hp"]=120000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -716,7 +716,7 @@ local monster_chapter = {
},
[3010601]={
["monster_base"]=10005,
- ["atk"]=2002000,
+ ["atk"]=1661000,
["hp"]=110000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -728,7 +728,7 @@ local monster_chapter = {
},
[3010701]={
["monster_base"]=10007,
- ["atk"]=2184000,
+ ["atk"]=1812000,
["hp"]=110000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -740,7 +740,7 @@ local monster_chapter = {
},
[3010801]={
["monster_base"]=10004,
- ["atk"]=2366000,
+ ["atk"]=1963000,
["hp"]=120000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -752,7 +752,7 @@ local monster_chapter = {
},
[3010901]={
["monster_base"]=10006,
- ["atk"]=2548000,
+ ["atk"]=2114000,
["hp"]=120000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -765,7 +765,7 @@ local monster_chapter = {
[3011001]={
["monster_base"]=20001,
["is_boss"]=1,
- ["atk"]=2730000,
+ ["atk"]=2265000,
["hp"]=160000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -783,7 +783,7 @@ local monster_chapter = {
},
[3011101]={
["monster_base"]=10008,
- ["atk"]=2184000,
+ ["atk"]=1812000,
["hp"]=130000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -795,7 +795,7 @@ local monster_chapter = {
},
[3011201]={
["monster_base"]=10004,
- ["atk"]=2366000,
+ ["atk"]=1963000,
["hp"]=150000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -807,7 +807,7 @@ local monster_chapter = {
},
[3011301]={
["monster_base"]=10006,
- ["atk"]=2548000,
+ ["atk"]=2114000,
["hp"]=150000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -819,7 +819,7 @@ local monster_chapter = {
},
[3011401]={
["monster_base"]=10007,
- ["atk"]=2730000,
+ ["atk"]=2265000,
["hp"]=150000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -832,7 +832,7 @@ local monster_chapter = {
[3011501]={
["monster_base"]=20002,
["is_boss"]=2,
- ["atk"]=3276000,
+ ["atk"]=2718000,
["hp"]=200000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -847,7 +847,7 @@ local monster_chapter = {
},
[3020101]={
["monster_base"]=10008,
- ["atk"]=2150000,
+ ["atk"]=1520000,
["hp"]=92800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -859,7 +859,7 @@ local monster_chapter = {
},
[3020201]={
["monster_base"]=10004,
- ["atk"]=2365000,
+ ["atk"]=1672000,
["hp"]=116000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -871,7 +871,7 @@ local monster_chapter = {
},
[3020301]={
["monster_base"]=10006,
- ["atk"]=2580000,
+ ["atk"]=1824000,
["hp"]=116000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -883,7 +883,7 @@ local monster_chapter = {
},
[3020401]={
["monster_base"]=10007,
- ["atk"]=2795000,
+ ["atk"]=1976000,
["hp"]=116000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -896,7 +896,7 @@ local monster_chapter = {
[3020501]={
["monster_base"]=20002,
["is_boss"]=1,
- ["atk"]=3010000,
+ ["atk"]=2128000,
["hp"]=139200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -911,7 +911,7 @@ local monster_chapter = {
},
[3020601]={
["monster_base"]=10006,
- ["atk"]=2365000,
+ ["atk"]=1672000,
["hp"]=127600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -923,7 +923,7 @@ local monster_chapter = {
},
[3020701]={
["monster_base"]=10004,
- ["atk"]=2580000,
+ ["atk"]=1824000,
["hp"]=127600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -935,7 +935,7 @@ local monster_chapter = {
},
[3020801]={
["monster_base"]=10007,
- ["atk"]=2795000,
+ ["atk"]=1976000,
["hp"]=139200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -947,7 +947,7 @@ local monster_chapter = {
},
[3020901]={
["monster_base"]=10008,
- ["atk"]=3010000,
+ ["atk"]=2128000,
["hp"]=139200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -960,7 +960,7 @@ local monster_chapter = {
[3021001]={
["monster_base"]=20004,
["is_boss"]=1,
- ["atk"]=3225000,
+ ["atk"]=2280000,
["hp"]=185600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -975,7 +975,7 @@ local monster_chapter = {
},
[3021101]={
["monster_base"]=10005,
- ["atk"]=2580000,
+ ["atk"]=1824000,
["hp"]=150800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -987,7 +987,7 @@ local monster_chapter = {
},
[3021201]={
["monster_base"]=10007,
- ["atk"]=2795000,
+ ["atk"]=1976000,
["hp"]=174000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -999,7 +999,7 @@ local monster_chapter = {
},
[3021301]={
["monster_base"]=10004,
- ["atk"]=3010000,
+ ["atk"]=2128000,
["hp"]=174000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1011,7 +1011,7 @@ local monster_chapter = {
},
[3021401]={
["monster_base"]=10006,
- ["atk"]=3225000,
+ ["atk"]=2280000,
["hp"]=174000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1024,7 +1024,7 @@ local monster_chapter = {
[3021501]={
["monster_base"]=20003,
["is_boss"]=2,
- ["atk"]=3870000,
+ ["atk"]=2736000,
["hp"]=232000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1039,7 +1039,7 @@ local monster_chapter = {
},
[3030101]={
["monster_base"]=10006,
- ["atk"]=2430000,
+ ["atk"]=1520000,
["hp"]=105600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1051,7 +1051,7 @@ local monster_chapter = {
},
[3030201]={
["monster_base"]=10004,
- ["atk"]=2673000,
+ ["atk"]=1672000,
["hp"]=132000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1063,7 +1063,7 @@ local monster_chapter = {
},
[3030301]={
["monster_base"]=10007,
- ["atk"]=2916000,
+ ["atk"]=1824000,
["hp"]=132000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1075,7 +1075,7 @@ local monster_chapter = {
},
[3030401]={
["monster_base"]=10008,
- ["atk"]=3159000,
+ ["atk"]=1976000,
["hp"]=132000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1088,7 +1088,7 @@ local monster_chapter = {
[3030501]={
["monster_base"]=20001,
["is_boss"]=1,
- ["atk"]=3402000,
+ ["atk"]=2128000,
["hp"]=158400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1106,7 +1106,7 @@ local monster_chapter = {
},
[3030601]={
["monster_base"]=10007,
- ["atk"]=2673000,
+ ["atk"]=1672000,
["hp"]=145200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1118,7 +1118,7 @@ local monster_chapter = {
},
[3030701]={
["monster_base"]=10004,
- ["atk"]=2916000,
+ ["atk"]=1824000,
["hp"]=145200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1130,7 +1130,7 @@ local monster_chapter = {
},
[3030801]={
["monster_base"]=10006,
- ["atk"]=3159000,
+ ["atk"]=1976000,
["hp"]=158400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1142,7 +1142,7 @@ local monster_chapter = {
},
[3030901]={
["monster_base"]=10005,
- ["atk"]=3402000,
+ ["atk"]=2128000,
["hp"]=158400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1155,7 +1155,7 @@ local monster_chapter = {
[3031001]={
["monster_base"]=20004,
["is_boss"]=1,
- ["atk"]=3645000,
+ ["atk"]=2280000,
["hp"]=211200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1170,7 +1170,7 @@ local monster_chapter = {
},
[3031101]={
["monster_base"]=10008,
- ["atk"]=2916000,
+ ["atk"]=1824000,
["hp"]=171600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1182,7 +1182,7 @@ local monster_chapter = {
},
[3031201]={
["monster_base"]=10004,
- ["atk"]=3159000,
+ ["atk"]=1976000,
["hp"]=198000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1194,7 +1194,7 @@ local monster_chapter = {
},
[3031301]={
["monster_base"]=10006,
- ["atk"]=3402000,
+ ["atk"]=2128000,
["hp"]=198000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1206,7 +1206,7 @@ local monster_chapter = {
},
[3031401]={
["monster_base"]=10007,
- ["atk"]=3645000,
+ ["atk"]=2280000,
["hp"]=198000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1219,7 +1219,7 @@ local monster_chapter = {
[3031501]={
["monster_base"]=20003,
["is_boss"]=2,
- ["atk"]=4374000,
+ ["atk"]=2736000,
["hp"]=264000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1234,7 +1234,7 @@ local monster_chapter = {
},
[4010101]={
["monster_base"]=10009,
- ["atk"]=2750000,
+ ["atk"]=1520000,
["hp"]=120000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1246,7 +1246,7 @@ local monster_chapter = {
},
[4010201]={
["monster_base"]=10007,
- ["atk"]=3025000,
+ ["atk"]=1672000,
["hp"]=150000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1258,7 +1258,7 @@ local monster_chapter = {
},
[4010301]={
["monster_base"]=10011,
- ["atk"]=3300000,
+ ["atk"]=1824000,
["hp"]=150000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1270,7 +1270,7 @@ local monster_chapter = {
},
[4010401]={
["monster_base"]=10004,
- ["atk"]=3575000,
+ ["atk"]=1976000,
["hp"]=150000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1283,7 +1283,7 @@ local monster_chapter = {
[4010501]={
["monster_base"]=20002,
["is_boss"]=1,
- ["atk"]=3850000,
+ ["atk"]=2128000,
["hp"]=180000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1298,7 +1298,7 @@ local monster_chapter = {
},
[4010601]={
["monster_base"]=10009,
- ["atk"]=3025000,
+ ["atk"]=1672000,
["hp"]=165000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1310,7 +1310,7 @@ local monster_chapter = {
},
[4010701]={
["monster_base"]=10004,
- ["atk"]=3300000,
+ ["atk"]=1824000,
["hp"]=165000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1322,7 +1322,7 @@ local monster_chapter = {
},
[4010801]={
["monster_base"]=10011,
- ["atk"]=3575000,
+ ["atk"]=1976000,
["hp"]=180000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1334,7 +1334,7 @@ local monster_chapter = {
},
[4010901]={
["monster_base"]=10010,
- ["atk"]=3850000,
+ ["atk"]=2128000,
["hp"]=180000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1347,7 +1347,7 @@ local monster_chapter = {
[4011001]={
["monster_base"]=20004,
["is_boss"]=1,
- ["atk"]=4125000,
+ ["atk"]=2280000,
["hp"]=240000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1362,7 +1362,7 @@ local monster_chapter = {
},
[4011101]={
["monster_base"]=10011,
- ["atk"]=3300000,
+ ["atk"]=1824000,
["hp"]=195000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1374,7 +1374,7 @@ local monster_chapter = {
},
[4011201]={
["monster_base"]=10010,
- ["atk"]=3575000,
+ ["atk"]=1976000,
["hp"]=225000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1386,7 +1386,7 @@ local monster_chapter = {
},
[4011301]={
["monster_base"]=10007,
- ["atk"]=3850000,
+ ["atk"]=2128000,
["hp"]=225000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1398,7 +1398,7 @@ local monster_chapter = {
},
[4011401]={
["monster_base"]=10009,
- ["atk"]=4125000,
+ ["atk"]=2280000,
["hp"]=225000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1411,7 +1411,7 @@ local monster_chapter = {
[4011501]={
["monster_base"]=20003,
["is_boss"]=2,
- ["atk"]=4950000,
+ ["atk"]=2736000,
["hp"]=300000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1426,7 +1426,7 @@ local monster_chapter = {
},
[4020101]={
["monster_base"]=10010,
- ["atk"]=3070000,
+ ["atk"]=1520000,
["hp"]=134400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1438,7 +1438,7 @@ local monster_chapter = {
},
[4020201]={
["monster_base"]=10007,
- ["atk"]=3377000,
+ ["atk"]=1672000,
["hp"]=168000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1450,7 +1450,7 @@ local monster_chapter = {
},
[4020301]={
["monster_base"]=10011,
- ["atk"]=3684000,
+ ["atk"]=1824000,
["hp"]=168000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1462,7 +1462,7 @@ local monster_chapter = {
},
[4020401]={
["monster_base"]=10009,
- ["atk"]=3991000,
+ ["atk"]=1976000,
["hp"]=168000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1475,7 +1475,7 @@ local monster_chapter = {
[4020501]={
["monster_base"]=20002,
["is_boss"]=1,
- ["atk"]=4298000,
+ ["atk"]=2128000,
["hp"]=201600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1490,7 +1490,7 @@ local monster_chapter = {
},
[4020601]={
["monster_base"]=10007,
- ["atk"]=3377000,
+ ["atk"]=1672000,
["hp"]=184800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1502,7 +1502,7 @@ local monster_chapter = {
},
[4020701]={
["monster_base"]=10009,
- ["atk"]=3684000,
+ ["atk"]=1824000,
["hp"]=184800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1514,7 +1514,7 @@ local monster_chapter = {
},
[4020801]={
["monster_base"]=10004,
- ["atk"]=3991000,
+ ["atk"]=1976000,
["hp"]=201600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1526,7 +1526,7 @@ local monster_chapter = {
},
[4020901]={
["monster_base"]=10010,
- ["atk"]=4298000,
+ ["atk"]=2128000,
["hp"]=201600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1539,7 +1539,7 @@ local monster_chapter = {
[4021001]={
["monster_base"]=20003,
["is_boss"]=1,
- ["atk"]=4605000,
+ ["atk"]=2280000,
["hp"]=268800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1554,7 +1554,7 @@ local monster_chapter = {
},
[4021101]={
["monster_base"]=10010,
- ["atk"]=3684000,
+ ["atk"]=1824000,
["hp"]=218400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1566,7 +1566,7 @@ local monster_chapter = {
},
[4021201]={
["monster_base"]=10011,
- ["atk"]=3991000,
+ ["atk"]=1976000,
["hp"]=252000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1578,7 +1578,7 @@ local monster_chapter = {
},
[4021301]={
["monster_base"]=10004,
- ["atk"]=4298000,
+ ["atk"]=2128000,
["hp"]=252000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1590,7 +1590,7 @@ local monster_chapter = {
},
[4021401]={
["monster_base"]=10009,
- ["atk"]=4605000,
+ ["atk"]=2280000,
["hp"]=252000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1603,7 +1603,7 @@ local monster_chapter = {
[4021501]={
["monster_base"]=20005,
["is_boss"]=2,
- ["atk"]=5526000,
+ ["atk"]=2736000,
["hp"]=336000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1618,7 +1618,7 @@ local monster_chapter = {
},
[4030101]={
["monster_base"]=10011,
- ["atk"]=3350000,
+ ["atk"]=1530000,
["hp"]=147200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1630,7 +1630,7 @@ local monster_chapter = {
},
[4030201]={
["monster_base"]=10007,
- ["atk"]=3685000,
+ ["atk"]=1683000,
["hp"]=184000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1642,7 +1642,7 @@ local monster_chapter = {
},
[4030301]={
["monster_base"]=10010,
- ["atk"]=4020000,
+ ["atk"]=1836000,
["hp"]=184000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1654,7 +1654,7 @@ local monster_chapter = {
},
[4030401]={
["monster_base"]=10004,
- ["atk"]=4355000,
+ ["atk"]=1989000,
["hp"]=184000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1667,7 +1667,7 @@ local monster_chapter = {
[4030501]={
["monster_base"]=20004,
["is_boss"]=1,
- ["atk"]=4690000,
+ ["atk"]=2142000,
["hp"]=220800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1682,7 +1682,7 @@ local monster_chapter = {
},
[4030601]={
["monster_base"]=10007,
- ["atk"]=3685000,
+ ["atk"]=1683000,
["hp"]=202400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1694,7 +1694,7 @@ local monster_chapter = {
},
[4030701]={
["monster_base"]=10009,
- ["atk"]=4020000,
+ ["atk"]=1836000,
["hp"]=202400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1706,7 +1706,7 @@ local monster_chapter = {
},
[4030801]={
["monster_base"]=10004,
- ["atk"]=4355000,
+ ["atk"]=1989000,
["hp"]=220800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1718,7 +1718,7 @@ local monster_chapter = {
},
[4030901]={
["monster_base"]=10010,
- ["atk"]=4690000,
+ ["atk"]=2142000,
["hp"]=220800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1731,7 +1731,7 @@ local monster_chapter = {
[4031001]={
["monster_base"]=20005,
["is_boss"]=1,
- ["atk"]=5025000,
+ ["atk"]=2295000,
["hp"]=294400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1746,7 +1746,7 @@ local monster_chapter = {
},
[4031101]={
["monster_base"]=10010,
- ["atk"]=4020000,
+ ["atk"]=1836000,
["hp"]=239200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1758,7 +1758,7 @@ local monster_chapter = {
},
[4031201]={
["monster_base"]=10007,
- ["atk"]=4355000,
+ ["atk"]=1989000,
["hp"]=276000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1770,7 +1770,7 @@ local monster_chapter = {
},
[4031301]={
["monster_base"]=10011,
- ["atk"]=4690000,
+ ["atk"]=2142000,
["hp"]=276000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1782,7 +1782,7 @@ local monster_chapter = {
},
[4031401]={
["monster_base"]=10009,
- ["atk"]=5025000,
+ ["atk"]=2295000,
["hp"]=276000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1795,7 +1795,7 @@ local monster_chapter = {
[4031501]={
["monster_base"]=30001,
["is_boss"]=2,
- ["atk"]=6030000,
+ ["atk"]=2754000,
["hp"]=368000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -1815,7 +1815,7 @@ local monster_chapter = {
},
[5010101]={
["monster_base"]=10012,
- ["atk"]=3680000,
+ ["atk"]=1530000,
["hp"]=160000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1827,7 +1827,7 @@ local monster_chapter = {
},
[5010201]={
["monster_base"]=10009,
- ["atk"]=4048000,
+ ["atk"]=1683000,
["hp"]=200000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1839,7 +1839,7 @@ local monster_chapter = {
},
[5010301]={
["monster_base"]=10013,
- ["atk"]=4416000,
+ ["atk"]=1836000,
["hp"]=200000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1851,7 +1851,7 @@ local monster_chapter = {
},
[5010401]={
["monster_base"]=10007,
- ["atk"]=4784000,
+ ["atk"]=1989000,
["hp"]=200000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1864,7 +1864,7 @@ local monster_chapter = {
[5010501]={
["monster_base"]=20001,
["is_boss"]=1,
- ["atk"]=5152000,
+ ["atk"]=2142000,
["hp"]=240000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1882,7 +1882,7 @@ local monster_chapter = {
},
[5010601]={
["monster_base"]=10007,
- ["atk"]=4048000,
+ ["atk"]=1683000,
["hp"]=220000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1894,7 +1894,7 @@ local monster_chapter = {
},
[5010701]={
["monster_base"]=10012,
- ["atk"]=4416000,
+ ["atk"]=1836000,
["hp"]=220000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1906,7 +1906,7 @@ local monster_chapter = {
},
[5010801]={
["monster_base"]=10009,
- ["atk"]=4784000,
+ ["atk"]=1989000,
["hp"]=240000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1918,7 +1918,7 @@ local monster_chapter = {
},
[5010901]={
["monster_base"]=10013,
- ["atk"]=5152000,
+ ["atk"]=2142000,
["hp"]=240000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1931,7 +1931,7 @@ local monster_chapter = {
[5011001]={
["monster_base"]=20004,
["is_boss"]=1,
- ["atk"]=5520000,
+ ["atk"]=2295000,
["hp"]=320000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1946,7 +1946,7 @@ local monster_chapter = {
},
[5011101]={
["monster_base"]=10013,
- ["atk"]=4416000,
+ ["atk"]=1836000,
["hp"]=260000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1958,7 +1958,7 @@ local monster_chapter = {
},
[5011201]={
["monster_base"]=10009,
- ["atk"]=4784000,
+ ["atk"]=1989000,
["hp"]=300000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1970,7 +1970,7 @@ local monster_chapter = {
},
[5011301]={
["monster_base"]=10007,
- ["atk"]=5152000,
+ ["atk"]=2142000,
["hp"]=300000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1982,7 +1982,7 @@ local monster_chapter = {
},
[5011401]={
["monster_base"]=10012,
- ["atk"]=5520000,
+ ["atk"]=2295000,
["hp"]=300000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -1995,7 +1995,7 @@ local monster_chapter = {
[5011501]={
["monster_base"]=20005,
["is_boss"]=2,
- ["atk"]=6624000,
+ ["atk"]=2754000,
["hp"]=400000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2010,7 +2010,7 @@ local monster_chapter = {
},
[5020101]={
["monster_base"]=10012,
- ["atk"]=3970000,
+ ["atk"]=1540000,
["hp"]=172800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2022,7 +2022,7 @@ local monster_chapter = {
},
[5020201]={
["monster_base"]=10007,
- ["atk"]=4367000,
+ ["atk"]=1694000,
["hp"]=216000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2034,7 +2034,7 @@ local monster_chapter = {
},
[5020301]={
["monster_base"]=10013,
- ["atk"]=4764000,
+ ["atk"]=1848000,
["hp"]=216000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2046,7 +2046,7 @@ local monster_chapter = {
},
[5020401]={
["monster_base"]=10009,
- ["atk"]=5161000,
+ ["atk"]=2002000,
["hp"]=216000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2059,7 +2059,7 @@ local monster_chapter = {
[5020501]={
["monster_base"]=20001,
["is_boss"]=1,
- ["atk"]=5558000,
+ ["atk"]=2156000,
["hp"]=259200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2077,7 +2077,7 @@ local monster_chapter = {
},
[5020601]={
["monster_base"]=10009,
- ["atk"]=4367000,
+ ["atk"]=1694000,
["hp"]=237600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2089,7 +2089,7 @@ local monster_chapter = {
},
[5020701]={
["monster_base"]=10012,
- ["atk"]=4764000,
+ ["atk"]=1848000,
["hp"]=237600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2101,7 +2101,7 @@ local monster_chapter = {
},
[5020801]={
["monster_base"]=10007,
- ["atk"]=5161000,
+ ["atk"]=2002000,
["hp"]=259200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2113,7 +2113,7 @@ local monster_chapter = {
},
[5020901]={
["monster_base"]=10013,
- ["atk"]=5558000,
+ ["atk"]=2156000,
["hp"]=259200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2126,7 +2126,7 @@ local monster_chapter = {
[5021001]={
["monster_base"]=20005,
["is_boss"]=1,
- ["atk"]=5955000,
+ ["atk"]=2310000,
["hp"]=345600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2141,7 +2141,7 @@ local monster_chapter = {
},
[5021101]={
["monster_base"]=10013,
- ["atk"]=4764000,
+ ["atk"]=1848000,
["hp"]=280800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2153,7 +2153,7 @@ local monster_chapter = {
},
[5021201]={
["monster_base"]=10007,
- ["atk"]=5161000,
+ ["atk"]=2002000,
["hp"]=324000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2165,7 +2165,7 @@ local monster_chapter = {
},
[5021301]={
["monster_base"]=10012,
- ["atk"]=5558000,
+ ["atk"]=2156000,
["hp"]=324000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2177,7 +2177,7 @@ local monster_chapter = {
},
[5021401]={
["monster_base"]=10009,
- ["atk"]=5955000,
+ ["atk"]=2310000,
["hp"]=324000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2190,7 +2190,7 @@ local monster_chapter = {
[5021501]={
["monster_base"]=20006,
["is_boss"]=2,
- ["atk"]=7146000,
+ ["atk"]=2772000,
["hp"]=432000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2205,7 +2205,7 @@ local monster_chapter = {
},
[5030101]={
["monster_base"]=10007,
- ["atk"]=4280000,
+ ["atk"]=1540000,
["hp"]=187200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2217,7 +2217,7 @@ local monster_chapter = {
},
[5030201]={
["monster_base"]=10012,
- ["atk"]=4708000,
+ ["atk"]=1694000,
["hp"]=234000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2229,7 +2229,7 @@ local monster_chapter = {
},
[5030301]={
["monster_base"]=10009,
- ["atk"]=5136000,
+ ["atk"]=1848000,
["hp"]=234000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2241,7 +2241,7 @@ local monster_chapter = {
},
[5030401]={
["monster_base"]=10013,
- ["atk"]=5564000,
+ ["atk"]=2002000,
["hp"]=234000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2254,7 +2254,7 @@ local monster_chapter = {
[5030501]={
["monster_base"]=20004,
["is_boss"]=1,
- ["atk"]=5992000,
+ ["atk"]=2156000,
["hp"]=280800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2269,7 +2269,7 @@ local monster_chapter = {
},
[5030601]={
["monster_base"]=10012,
- ["atk"]=4708000,
+ ["atk"]=1694000,
["hp"]=257400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2281,7 +2281,7 @@ local monster_chapter = {
},
[5030701]={
["monster_base"]=10009,
- ["atk"]=5136000,
+ ["atk"]=1848000,
["hp"]=257400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2293,7 +2293,7 @@ local monster_chapter = {
},
[5030801]={
["monster_base"]=10013,
- ["atk"]=5564000,
+ ["atk"]=2002000,
["hp"]=280800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2305,7 +2305,7 @@ local monster_chapter = {
},
[5030901]={
["monster_base"]=10007,
- ["atk"]=5992000,
+ ["atk"]=2156000,
["hp"]=280800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2318,7 +2318,7 @@ local monster_chapter = {
[5031001]={
["monster_base"]=20006,
["is_boss"]=1,
- ["atk"]=6420000,
+ ["atk"]=2310000,
["hp"]=374400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2333,7 +2333,7 @@ local monster_chapter = {
},
[5031101]={
["monster_base"]=10013,
- ["atk"]=5136000,
+ ["atk"]=1848000,
["hp"]=304200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2345,7 +2345,7 @@ local monster_chapter = {
},
[5031201]={
["monster_base"]=10007,
- ["atk"]=5564000,
+ ["atk"]=2002000,
["hp"]=351000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2357,7 +2357,7 @@ local monster_chapter = {
},
[5031301]={
["monster_base"]=10012,
- ["atk"]=5992000,
+ ["atk"]=2156000,
["hp"]=351000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2369,7 +2369,7 @@ local monster_chapter = {
},
[5031401]={
["monster_base"]=10009,
- ["atk"]=6420000,
+ ["atk"]=2310000,
["hp"]=351000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2382,7 +2382,7 @@ local monster_chapter = {
[5031501]={
["monster_base"]=30002,
["is_boss"]=2,
- ["atk"]=7704000,
+ ["atk"]=2772000,
["hp"]=468000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -2402,7 +2402,7 @@ local monster_chapter = {
},
[5040101]={
["monster_base"]=10012,
- ["atk"]=4570000,
+ ["atk"]=1640000,
["hp"]=200000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2414,7 +2414,7 @@ local monster_chapter = {
},
[5040201]={
["monster_base"]=10007,
- ["atk"]=5027000,
+ ["atk"]=1804000,
["hp"]=250000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2426,7 +2426,7 @@ local monster_chapter = {
},
[5040301]={
["monster_base"]=10013,
- ["atk"]=5484000,
+ ["atk"]=1968000,
["hp"]=250000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2438,7 +2438,7 @@ local monster_chapter = {
},
[5040401]={
["monster_base"]=10009,
- ["atk"]=5941000,
+ ["atk"]=2132000,
["hp"]=250000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2451,7 +2451,7 @@ local monster_chapter = {
[5040501]={
["monster_base"]=20005,
["is_boss"]=1,
- ["atk"]=6398000,
+ ["atk"]=2296000,
["hp"]=300000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2466,7 +2466,7 @@ local monster_chapter = {
},
[5040601]={
["monster_base"]=10009,
- ["atk"]=5027000,
+ ["atk"]=1804000,
["hp"]=275000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2478,7 +2478,7 @@ local monster_chapter = {
},
[5040701]={
["monster_base"]=10012,
- ["atk"]=5484000,
+ ["atk"]=1968000,
["hp"]=275000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2490,7 +2490,7 @@ local monster_chapter = {
},
[5040801]={
["monster_base"]=10007,
- ["atk"]=5941000,
+ ["atk"]=2132000,
["hp"]=300000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2502,7 +2502,7 @@ local monster_chapter = {
},
[5040901]={
["monster_base"]=10013,
- ["atk"]=6398000,
+ ["atk"]=2296000,
["hp"]=300000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2515,7 +2515,7 @@ local monster_chapter = {
[5041001]={
["monster_base"]=20006,
["is_boss"]=1,
- ["atk"]=6855000,
+ ["atk"]=2460000,
["hp"]=400000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2530,7 +2530,7 @@ local monster_chapter = {
},
[5041101]={
["monster_base"]=10013,
- ["atk"]=5484000,
+ ["atk"]=1968000,
["hp"]=325000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2542,7 +2542,7 @@ local monster_chapter = {
},
[5041201]={
["monster_base"]=10007,
- ["atk"]=5941000,
+ ["atk"]=2132000,
["hp"]=375000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2554,7 +2554,7 @@ local monster_chapter = {
},
[5041301]={
["monster_base"]=10012,
- ["atk"]=6398000,
+ ["atk"]=2296000,
["hp"]=375000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2566,7 +2566,7 @@ local monster_chapter = {
},
[5041401]={
["monster_base"]=10009,
- ["atk"]=6855000,
+ ["atk"]=2460000,
["hp"]=375000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2579,7 +2579,7 @@ local monster_chapter = {
[5041501]={
["monster_base"]=30002,
["is_boss"]=2,
- ["atk"]=8226000,
+ ["atk"]=2952000,
["hp"]=500000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -2599,7 +2599,7 @@ local monster_chapter = {
},
[6010101]={
["monster_base"]=10014,
- ["atk"]=4900000,
+ ["atk"]=1760000,
["hp"]=212800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2611,7 +2611,7 @@ local monster_chapter = {
},
[6010201]={
["monster_base"]=10013,
- ["atk"]=5390000,
+ ["atk"]=1936000,
["hp"]=266000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2623,7 +2623,7 @@ local monster_chapter = {
},
[6010301]={
["monster_base"]=10012,
- ["atk"]=5880000,
+ ["atk"]=2112000,
["hp"]=266000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2635,7 +2635,7 @@ local monster_chapter = {
},
[6010401]={
["monster_base"]=10010,
- ["atk"]=6370000,
+ ["atk"]=2288000,
["hp"]=266000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2648,7 +2648,7 @@ local monster_chapter = {
[6010501]={
["monster_base"]=20001,
["is_boss"]=1,
- ["atk"]=6860000,
+ ["atk"]=2464000,
["hp"]=319200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2666,7 +2666,7 @@ local monster_chapter = {
},
[6010601]={
["monster_base"]=10014,
- ["atk"]=5390000,
+ ["atk"]=1936000,
["hp"]=292600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2678,7 +2678,7 @@ local monster_chapter = {
},
[6010701]={
["monster_base"]=10010,
- ["atk"]=5880000,
+ ["atk"]=2112000,
["hp"]=292600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2690,7 +2690,7 @@ local monster_chapter = {
},
[6010801]={
["monster_base"]=10012,
- ["atk"]=6370000,
+ ["atk"]=2288000,
["hp"]=319200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2702,7 +2702,7 @@ local monster_chapter = {
},
[6010901]={
["monster_base"]=10013,
- ["atk"]=6860000,
+ ["atk"]=2464000,
["hp"]=319200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2715,7 +2715,7 @@ local monster_chapter = {
[6011001]={
["monster_base"]=20004,
["is_boss"]=1,
- ["atk"]=7350000,
+ ["atk"]=2640000,
["hp"]=425600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2730,7 +2730,7 @@ local monster_chapter = {
},
[6011101]={
["monster_base"]=10010,
- ["atk"]=5880000,
+ ["atk"]=2112000,
["hp"]=345800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2742,7 +2742,7 @@ local monster_chapter = {
},
[6011201]={
["monster_base"]=10014,
- ["atk"]=6370000,
+ ["atk"]=2288000,
["hp"]=399000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2754,7 +2754,7 @@ local monster_chapter = {
},
[6011301]={
["monster_base"]=10013,
- ["atk"]=6860000,
+ ["atk"]=2464000,
["hp"]=399000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2766,7 +2766,7 @@ local monster_chapter = {
},
[6011401]={
["monster_base"]=10012,
- ["atk"]=7350000,
+ ["atk"]=2640000,
["hp"]=399000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2779,7 +2779,7 @@ local monster_chapter = {
[6011501]={
["monster_base"]=20006,
["is_boss"]=2,
- ["atk"]=8820000,
+ ["atk"]=3168000,
["hp"]=532000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2794,7 +2794,7 @@ local monster_chapter = {
},
[6020101]={
["monster_base"]=10014,
- ["atk"]=5180000,
+ ["atk"]=1870000,
["hp"]=225600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2806,7 +2806,7 @@ local monster_chapter = {
},
[6020201]={
["monster_base"]=10010,
- ["atk"]=5698000,
+ ["atk"]=2057000,
["hp"]=282000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2818,7 +2818,7 @@ local monster_chapter = {
},
[6020301]={
["monster_base"]=10012,
- ["atk"]=6216000,
+ ["atk"]=2244000,
["hp"]=282000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2830,7 +2830,7 @@ local monster_chapter = {
},
[6020401]={
["monster_base"]=10013,
- ["atk"]=6734000,
+ ["atk"]=2431000,
["hp"]=282000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2843,7 +2843,7 @@ local monster_chapter = {
[6020501]={
["monster_base"]=20001,
["is_boss"]=1,
- ["atk"]=7252000,
+ ["atk"]=2618000,
["hp"]=338400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2861,7 +2861,7 @@ local monster_chapter = {
},
[6020601]={
["monster_base"]=10012,
- ["atk"]=5698000,
+ ["atk"]=2057000,
["hp"]=310200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2873,7 +2873,7 @@ local monster_chapter = {
},
[6020701]={
["monster_base"]=10013,
- ["atk"]=6216000,
+ ["atk"]=2244000,
["hp"]=310200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2885,7 +2885,7 @@ local monster_chapter = {
},
[6020801]={
["monster_base"]=10010,
- ["atk"]=6734000,
+ ["atk"]=2431000,
["hp"]=338400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2897,7 +2897,7 @@ local monster_chapter = {
},
[6020901]={
["monster_base"]=10014,
- ["atk"]=7252000,
+ ["atk"]=2618000,
["hp"]=338400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2910,7 +2910,7 @@ local monster_chapter = {
[6021001]={
["monster_base"]=20005,
["is_boss"]=1,
- ["atk"]=7770000,
+ ["atk"]=2805000,
["hp"]=451200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2925,7 +2925,7 @@ local monster_chapter = {
},
[6021101]={
["monster_base"]=10014,
- ["atk"]=6216000,
+ ["atk"]=2244000,
["hp"]=366600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2937,7 +2937,7 @@ local monster_chapter = {
},
[6021201]={
["monster_base"]=10013,
- ["atk"]=6734000,
+ ["atk"]=2431000,
["hp"]=423000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2949,7 +2949,7 @@ local monster_chapter = {
},
[6021301]={
["monster_base"]=10012,
- ["atk"]=7252000,
+ ["atk"]=2618000,
["hp"]=423000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2961,7 +2961,7 @@ local monster_chapter = {
},
[6021401]={
["monster_base"]=10010,
- ["atk"]=7770000,
+ ["atk"]=2805000,
["hp"]=423000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2974,7 +2974,7 @@ local monster_chapter = {
[6021501]={
["monster_base"]=20006,
["is_boss"]=2,
- ["atk"]=9324000,
+ ["atk"]=3366000,
["hp"]=564000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -2989,7 +2989,7 @@ local monster_chapter = {
},
[6030101]={
["monster_base"]=10013,
- ["atk"]=5500000,
+ ["atk"]=1980000,
["hp"]=240000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3001,7 +3001,7 @@ local monster_chapter = {
},
[6030201]={
["monster_base"]=10014,
- ["atk"]=6050000,
+ ["atk"]=2178000,
["hp"]=300000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3013,7 +3013,7 @@ local monster_chapter = {
},
[6030301]={
["monster_base"]=10010,
- ["atk"]=6600000,
+ ["atk"]=2376000,
["hp"]=300000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3025,7 +3025,7 @@ local monster_chapter = {
},
[6030401]={
["monster_base"]=10012,
- ["atk"]=7150000,
+ ["atk"]=2574000,
["hp"]=300000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3038,7 +3038,7 @@ local monster_chapter = {
[6030501]={
["monster_base"]=20004,
["is_boss"]=1,
- ["atk"]=7700000,
+ ["atk"]=2772000,
["hp"]=360000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3053,7 +3053,7 @@ local monster_chapter = {
},
[6030601]={
["monster_base"]=10014,
- ["atk"]=6050000,
+ ["atk"]=2178000,
["hp"]=330000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3065,7 +3065,7 @@ local monster_chapter = {
},
[6030701]={
["monster_base"]=10013,
- ["atk"]=6600000,
+ ["atk"]=2376000,
["hp"]=330000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3077,7 +3077,7 @@ local monster_chapter = {
},
[6030801]={
["monster_base"]=10012,
- ["atk"]=7150000,
+ ["atk"]=2574000,
["hp"]=360000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3089,7 +3089,7 @@ local monster_chapter = {
},
[6030901]={
["monster_base"]=10010,
- ["atk"]=7700000,
+ ["atk"]=2772000,
["hp"]=360000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3102,7 +3102,7 @@ local monster_chapter = {
[6031001]={
["monster_base"]=20006,
["is_boss"]=1,
- ["atk"]=8250000,
+ ["atk"]=2970000,
["hp"]=480000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3117,7 +3117,7 @@ local monster_chapter = {
},
[6031101]={
["monster_base"]=10010,
- ["atk"]=6600000,
+ ["atk"]=2376000,
["hp"]=390000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3129,7 +3129,7 @@ local monster_chapter = {
},
[6031201]={
["monster_base"]=10014,
- ["atk"]=7150000,
+ ["atk"]=2574000,
["hp"]=450000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3141,7 +3141,7 @@ local monster_chapter = {
},
[6031301]={
["monster_base"]=10013,
- ["atk"]=7700000,
+ ["atk"]=2772000,
["hp"]=450000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3153,7 +3153,7 @@ local monster_chapter = {
},
[6031401]={
["monster_base"]=10012,
- ["atk"]=8250000,
+ ["atk"]=2970000,
["hp"]=450000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3166,7 +3166,7 @@ local monster_chapter = {
[6031501]={
["monster_base"]=30003,
["is_boss"]=2,
- ["atk"]=9900000,
+ ["atk"]=3564000,
["hp"]=600000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -3185,7 +3185,7 @@ local monster_chapter = {
},
[6040101]={
["monster_base"]=10014,
- ["atk"]=5570000,
+ ["atk"]=2000000,
["hp"]=244800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3197,7 +3197,7 @@ local monster_chapter = {
},
[6040201]={
["monster_base"]=10010,
- ["atk"]=6127000,
+ ["atk"]=2200000,
["hp"]=306000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3209,7 +3209,7 @@ local monster_chapter = {
},
[6040301]={
["monster_base"]=10012,
- ["atk"]=6684000,
+ ["atk"]=2400000,
["hp"]=306000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3221,7 +3221,7 @@ local monster_chapter = {
},
[6040401]={
["monster_base"]=10013,
- ["atk"]=7241000,
+ ["atk"]=2600000,
["hp"]=306000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3234,7 +3234,7 @@ local monster_chapter = {
[6040501]={
["monster_base"]=20005,
["is_boss"]=1,
- ["atk"]=7798000,
+ ["atk"]=2800000,
["hp"]=367200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3249,7 +3249,7 @@ local monster_chapter = {
},
[6040601]={
["monster_base"]=10012,
- ["atk"]=6127000,
+ ["atk"]=2200000,
["hp"]=336600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3261,7 +3261,7 @@ local monster_chapter = {
},
[6040701]={
["monster_base"]=10010,
- ["atk"]=6684000,
+ ["atk"]=2400000,
["hp"]=336600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3273,7 +3273,7 @@ local monster_chapter = {
},
[6040801]={
["monster_base"]=10014,
- ["atk"]=7241000,
+ ["atk"]=2600000,
["hp"]=367200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3285,7 +3285,7 @@ local monster_chapter = {
},
[6040901]={
["monster_base"]=10013,
- ["atk"]=7798000,
+ ["atk"]=2800000,
["hp"]=367200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3298,7 +3298,7 @@ local monster_chapter = {
[6041001]={
["monster_base"]=20006,
["is_boss"]=1,
- ["atk"]=8355000,
+ ["atk"]=3000000,
["hp"]=489600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3313,7 +3313,7 @@ local monster_chapter = {
},
[6041101]={
["monster_base"]=10013,
- ["atk"]=6684000,
+ ["atk"]=2400000,
["hp"]=397800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3325,7 +3325,7 @@ local monster_chapter = {
},
[6041201]={
["monster_base"]=10010,
- ["atk"]=7241000,
+ ["atk"]=2600000,
["hp"]=459000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3337,7 +3337,7 @@ local monster_chapter = {
},
[6041301]={
["monster_base"]=10012,
- ["atk"]=7798000,
+ ["atk"]=2800000,
["hp"]=459000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3349,7 +3349,7 @@ local monster_chapter = {
},
[6041401]={
["monster_base"]=10014,
- ["atk"]=8355000,
+ ["atk"]=3000000,
["hp"]=459000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3362,7 +3362,7 @@ local monster_chapter = {
[6041501]={
["monster_base"]=30003,
["is_boss"]=2,
- ["atk"]=10026000,
+ ["atk"]=3600000,
["hp"]=612000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -3381,7 +3381,7 @@ local monster_chapter = {
},
[7010101]={
["monster_base"]=10016,
- ["atk"]=5650000,
+ ["atk"]=2030000,
["hp"]=252800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3393,7 +3393,7 @@ local monster_chapter = {
},
[7010201]={
["monster_base"]=10007,
- ["atk"]=6215000,
+ ["atk"]=2233000,
["hp"]=316000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3405,7 +3405,7 @@ local monster_chapter = {
},
[7010301]={
["monster_base"]=10013,
- ["atk"]=6780000,
+ ["atk"]=2436000,
["hp"]=316000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3417,7 +3417,7 @@ local monster_chapter = {
},
[7010401]={
["monster_base"]=10006,
- ["atk"]=7345000,
+ ["atk"]=2639000,
["hp"]=316000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3430,7 +3430,7 @@ local monster_chapter = {
[7010501]={
["monster_base"]=20002,
["is_boss"]=1,
- ["atk"]=7910000,
+ ["atk"]=2842000,
["hp"]=379200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3445,7 +3445,7 @@ local monster_chapter = {
},
[7010601]={
["monster_base"]=10016,
- ["atk"]=6215000,
+ ["atk"]=2233000,
["hp"]=347600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3457,7 +3457,7 @@ local monster_chapter = {
},
[7010701]={
["monster_base"]=10006,
- ["atk"]=6780000,
+ ["atk"]=2436000,
["hp"]=347600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3469,7 +3469,7 @@ local monster_chapter = {
},
[7010801]={
["monster_base"]=10013,
- ["atk"]=7345000,
+ ["atk"]=2639000,
["hp"]=379200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3481,7 +3481,7 @@ local monster_chapter = {
},
[7010901]={
["monster_base"]=10015,
- ["atk"]=7910000,
+ ["atk"]=2842000,
["hp"]=379200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3494,7 +3494,7 @@ local monster_chapter = {
[7011001]={
["monster_base"]=20003,
["is_boss"]=1,
- ["atk"]=8475000,
+ ["atk"]=3045000,
["hp"]=505600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3509,7 +3509,7 @@ local monster_chapter = {
},
[7011101]={
["monster_base"]=10015,
- ["atk"]=6780000,
+ ["atk"]=2436000,
["hp"]=410800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3521,7 +3521,7 @@ local monster_chapter = {
},
[7011201]={
["monster_base"]=10013,
- ["atk"]=7345000,
+ ["atk"]=2639000,
["hp"]=474000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3533,7 +3533,7 @@ local monster_chapter = {
},
[7011301]={
["monster_base"]=10006,
- ["atk"]=7910000,
+ ["atk"]=2842000,
["hp"]=474000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3545,7 +3545,7 @@ local monster_chapter = {
},
[7011401]={
["monster_base"]=10016,
- ["atk"]=8475000,
+ ["atk"]=3045000,
["hp"]=474000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3558,7 +3558,7 @@ local monster_chapter = {
[7011501]={
["monster_base"]=20005,
["is_boss"]=2,
- ["atk"]=10170000,
+ ["atk"]=3654000,
["hp"]=632000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3573,7 +3573,7 @@ local monster_chapter = {
},
[7020101]={
["monster_base"]=10016,
- ["atk"]=5720000,
+ ["atk"]=2060000,
["hp"]=257600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3585,7 +3585,7 @@ local monster_chapter = {
},
[7020201]={
["monster_base"]=10006,
- ["atk"]=6292000,
+ ["atk"]=2266000,
["hp"]=322000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3597,7 +3597,7 @@ local monster_chapter = {
},
[7020301]={
["monster_base"]=10013,
- ["atk"]=6864000,
+ ["atk"]=2472000,
["hp"]=322000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3609,7 +3609,7 @@ local monster_chapter = {
},
[7020401]={
["monster_base"]=10015,
- ["atk"]=7436000,
+ ["atk"]=2678000,
["hp"]=322000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3622,7 +3622,7 @@ local monster_chapter = {
[7020501]={
["monster_base"]=20003,
["is_boss"]=1,
- ["atk"]=8008000,
+ ["atk"]=2884000,
["hp"]=386400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3637,7 +3637,7 @@ local monster_chapter = {
},
[7020601]={
["monster_base"]=10013,
- ["atk"]=6292000,
+ ["atk"]=2266000,
["hp"]=354200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3649,7 +3649,7 @@ local monster_chapter = {
},
[7020701]={
["monster_base"]=10015,
- ["atk"]=6864000,
+ ["atk"]=2472000,
["hp"]=354200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3661,7 +3661,7 @@ local monster_chapter = {
},
[7020801]={
["monster_base"]=10007,
- ["atk"]=7436000,
+ ["atk"]=2678000,
["hp"]=386400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3673,7 +3673,7 @@ local monster_chapter = {
},
[7020901]={
["monster_base"]=10016,
- ["atk"]=8008000,
+ ["atk"]=2884000,
["hp"]=386400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3686,7 +3686,7 @@ local monster_chapter = {
[7021001]={
["monster_base"]=20005,
["is_boss"]=1,
- ["atk"]=8580000,
+ ["atk"]=3090000,
["hp"]=515200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3701,7 +3701,7 @@ local monster_chapter = {
},
[7021101]={
["monster_base"]=10016,
- ["atk"]=6864000,
+ ["atk"]=2472000,
["hp"]=418600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3713,7 +3713,7 @@ local monster_chapter = {
},
[7021201]={
["monster_base"]=10007,
- ["atk"]=7436000,
+ ["atk"]=2678000,
["hp"]=483000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3725,7 +3725,7 @@ local monster_chapter = {
},
[7021301]={
["monster_base"]=10013,
- ["atk"]=8008000,
+ ["atk"]=2884000,
["hp"]=483000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3737,7 +3737,7 @@ local monster_chapter = {
},
[7021401]={
["monster_base"]=10006,
- ["atk"]=8580000,
+ ["atk"]=3090000,
["hp"]=483000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3750,7 +3750,7 @@ local monster_chapter = {
[7021501]={
["monster_base"]=20007,
["is_boss"]=2,
- ["atk"]=10296000,
+ ["atk"]=3708000,
["hp"]=644000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3765,7 +3765,7 @@ local monster_chapter = {
},
[7030101]={
["monster_base"]=10015,
- ["atk"]=6150000,
+ ["atk"]=2210000,
["hp"]=292800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3777,7 +3777,7 @@ local monster_chapter = {
},
[7030201]={
["monster_base"]=10007,
- ["atk"]=6765000,
+ ["atk"]=2431000,
["hp"]=366000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3789,7 +3789,7 @@ local monster_chapter = {
},
[7030301]={
["monster_base"]=10013,
- ["atk"]=7380000,
+ ["atk"]=2652000,
["hp"]=366000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3801,7 +3801,7 @@ local monster_chapter = {
},
[7030401]={
["monster_base"]=10016,
- ["atk"]=7995000,
+ ["atk"]=2873000,
["hp"]=366000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3814,7 +3814,7 @@ local monster_chapter = {
[7030501]={
["monster_base"]=20002,
["is_boss"]=1,
- ["atk"]=8610000,
+ ["atk"]=3094000,
["hp"]=439200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3829,7 +3829,7 @@ local monster_chapter = {
},
[7030601]={
["monster_base"]=10016,
- ["atk"]=6765000,
+ ["atk"]=2431000,
["hp"]=402600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3841,7 +3841,7 @@ local monster_chapter = {
},
[7030701]={
["monster_base"]=10007,
- ["atk"]=7380000,
+ ["atk"]=2652000,
["hp"]=402600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3853,7 +3853,7 @@ local monster_chapter = {
},
[7030801]={
["monster_base"]=10013,
- ["atk"]=7995000,
+ ["atk"]=2873000,
["hp"]=439200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3865,7 +3865,7 @@ local monster_chapter = {
},
[7030901]={
["monster_base"]=10006,
- ["atk"]=8610000,
+ ["atk"]=3094000,
["hp"]=439200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3878,7 +3878,7 @@ local monster_chapter = {
[7031001]={
["monster_base"]=20005,
["is_boss"]=1,
- ["atk"]=9225000,
+ ["atk"]=3315000,
["hp"]=585600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3893,7 +3893,7 @@ local monster_chapter = {
},
[7031101]={
["monster_base"]=10015,
- ["atk"]=7380000,
+ ["atk"]=2652000,
["hp"]=475800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3905,7 +3905,7 @@ local monster_chapter = {
},
[7031201]={
["monster_base"]=10013,
- ["atk"]=7995000,
+ ["atk"]=2873000,
["hp"]=549000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3917,7 +3917,7 @@ local monster_chapter = {
},
[7031301]={
["monster_base"]=10006,
- ["atk"]=8610000,
+ ["atk"]=3094000,
["hp"]=549000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3929,7 +3929,7 @@ local monster_chapter = {
},
[7031401]={
["monster_base"]=10016,
- ["atk"]=9225000,
+ ["atk"]=3315000,
["hp"]=549000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3942,7 +3942,7 @@ local monster_chapter = {
[7031501]={
["monster_base"]=30004,
["is_boss"]=2,
- ["atk"]=11070000,
+ ["atk"]=3978000,
["hp"]=732000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -3962,7 +3962,7 @@ local monster_chapter = {
},
[7040101]={
["monster_base"]=10016,
- ["atk"]=6580000,
+ ["atk"]=2370000,
["hp"]=328000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3974,7 +3974,7 @@ local monster_chapter = {
},
[7040201]={
["monster_base"]=10006,
- ["atk"]=7238000,
+ ["atk"]=2607000,
["hp"]=410000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3986,7 +3986,7 @@ local monster_chapter = {
},
[7040301]={
["monster_base"]=10013,
- ["atk"]=7896000,
+ ["atk"]=2844000,
["hp"]=410000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -3998,7 +3998,7 @@ local monster_chapter = {
},
[7040401]={
["monster_base"]=10015,
- ["atk"]=8554000,
+ ["atk"]=3081000,
["hp"]=410000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4011,7 +4011,7 @@ local monster_chapter = {
[7040501]={
["monster_base"]=20005,
["is_boss"]=1,
- ["atk"]=9212000,
+ ["atk"]=3318000,
["hp"]=492000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4026,7 +4026,7 @@ local monster_chapter = {
},
[7040601]={
["monster_base"]=10013,
- ["atk"]=7238000,
+ ["atk"]=2607000,
["hp"]=451000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4038,7 +4038,7 @@ local monster_chapter = {
},
[7040701]={
["monster_base"]=10007,
- ["atk"]=7896000,
+ ["atk"]=2844000,
["hp"]=451000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4050,7 +4050,7 @@ local monster_chapter = {
},
[7040801]={
["monster_base"]=10015,
- ["atk"]=8554000,
+ ["atk"]=3081000,
["hp"]=492000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4062,7 +4062,7 @@ local monster_chapter = {
},
[7040901]={
["monster_base"]=10006,
- ["atk"]=9212000,
+ ["atk"]=3318000,
["hp"]=492000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4075,7 +4075,7 @@ local monster_chapter = {
[7041001]={
["monster_base"]=20007,
["is_boss"]=1,
- ["atk"]=9870000,
+ ["atk"]=3555000,
["hp"]=656000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4090,7 +4090,7 @@ local monster_chapter = {
},
[7041101]={
["monster_base"]=10007,
- ["atk"]=7896000,
+ ["atk"]=2844000,
["hp"]=533000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4102,7 +4102,7 @@ local monster_chapter = {
},
[7041201]={
["monster_base"]=10016,
- ["atk"]=8554000,
+ ["atk"]=3081000,
["hp"]=615000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4114,7 +4114,7 @@ local monster_chapter = {
},
[7041301]={
["monster_base"]=10006,
- ["atk"]=9212000,
+ ["atk"]=3318000,
["hp"]=615000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4126,7 +4126,7 @@ local monster_chapter = {
},
[7041401]={
["monster_base"]=10015,
- ["atk"]=9870000,
+ ["atk"]=3555000,
["hp"]=615000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4139,7 +4139,7 @@ local monster_chapter = {
[7041501]={
["monster_base"]=30004,
["is_boss"]=2,
- ["atk"]=11844000,
+ ["atk"]=4266000,
["hp"]=820000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -4159,7 +4159,7 @@ local monster_chapter = {
},
[8010101]={
["monster_base"]=10017,
- ["atk"]=6650000,
+ ["atk"]=2390000,
["hp"]=332800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4171,7 +4171,7 @@ local monster_chapter = {
},
[8010201]={
["monster_base"]=10016,
- ["atk"]=7315000,
+ ["atk"]=2629000,
["hp"]=416000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4183,7 +4183,7 @@ local monster_chapter = {
},
[8010301]={
["monster_base"]=10018,
- ["atk"]=7980000,
+ ["atk"]=2868000,
["hp"]=416000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4195,7 +4195,7 @@ local monster_chapter = {
},
[8010401]={
["monster_base"]=10015,
- ["atk"]=8645000,
+ ["atk"]=3107000,
["hp"]=416000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4208,7 +4208,7 @@ local monster_chapter = {
[8010501]={
["monster_base"]=20004,
["is_boss"]=1,
- ["atk"]=9310000,
+ ["atk"]=3346000,
["hp"]=499200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4223,7 +4223,7 @@ local monster_chapter = {
},
[8010601]={
["monster_base"]=10017,
- ["atk"]=7315000,
+ ["atk"]=2629000,
["hp"]=457600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4235,7 +4235,7 @@ local monster_chapter = {
},
[8010701]={
["monster_base"]=10015,
- ["atk"]=7980000,
+ ["atk"]=2868000,
["hp"]=457600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4247,7 +4247,7 @@ local monster_chapter = {
},
[8010801]={
["monster_base"]=10018,
- ["atk"]=8645000,
+ ["atk"]=3107000,
["hp"]=499200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4259,7 +4259,7 @@ local monster_chapter = {
},
[8010901]={
["monster_base"]=10019,
- ["atk"]=9310000,
+ ["atk"]=3346000,
["hp"]=499200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4272,7 +4272,7 @@ local monster_chapter = {
[8011001]={
["monster_base"]=20006,
["is_boss"]=1,
- ["atk"]=9975000,
+ ["atk"]=3585000,
["hp"]=665600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4287,7 +4287,7 @@ local monster_chapter = {
},
[8011101]={
["monster_base"]=10019,
- ["atk"]=7980000,
+ ["atk"]=2868000,
["hp"]=540800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4299,7 +4299,7 @@ local monster_chapter = {
},
[8011201]={
["monster_base"]=10018,
- ["atk"]=8645000,
+ ["atk"]=3107000,
["hp"]=624000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4311,7 +4311,7 @@ local monster_chapter = {
},
[8011301]={
["monster_base"]=10015,
- ["atk"]=9310000,
+ ["atk"]=3346000,
["hp"]=624000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4323,7 +4323,7 @@ local monster_chapter = {
},
[8011401]={
["monster_base"]=10017,
- ["atk"]=9975000,
+ ["atk"]=3585000,
["hp"]=624000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4336,7 +4336,7 @@ local monster_chapter = {
[8011501]={
["monster_base"]=20007,
["is_boss"]=2,
- ["atk"]=11970000,
+ ["atk"]=4302000,
["hp"]=832000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4351,7 +4351,7 @@ local monster_chapter = {
},
[8020101]={
["monster_base"]=10017,
- ["atk"]=6730000,
+ ["atk"]=2420000,
["hp"]=340800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4363,7 +4363,7 @@ local monster_chapter = {
},
[8020201]={
["monster_base"]=10015,
- ["atk"]=7403000,
+ ["atk"]=2662000,
["hp"]=426000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4375,7 +4375,7 @@ local monster_chapter = {
},
[8020301]={
["monster_base"]=10018,
- ["atk"]=8076000,
+ ["atk"]=2904000,
["hp"]=426000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4387,7 +4387,7 @@ local monster_chapter = {
},
[8020401]={
["monster_base"]=10019,
- ["atk"]=8749000,
+ ["atk"]=3146000,
["hp"]=426000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4400,7 +4400,7 @@ local monster_chapter = {
[8020501]={
["monster_base"]=20004,
["is_boss"]=1,
- ["atk"]=9422000,
+ ["atk"]=3388000,
["hp"]=511200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4415,7 +4415,7 @@ local monster_chapter = {
},
[8020601]={
["monster_base"]=10018,
- ["atk"]=7403000,
+ ["atk"]=2662000,
["hp"]=468600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4427,7 +4427,7 @@ local monster_chapter = {
},
[8020701]={
["monster_base"]=10019,
- ["atk"]=8076000,
+ ["atk"]=2904000,
["hp"]=468600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4439,7 +4439,7 @@ local monster_chapter = {
},
[8020801]={
["monster_base"]=10016,
- ["atk"]=8749000,
+ ["atk"]=3146000,
["hp"]=511200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4451,7 +4451,7 @@ local monster_chapter = {
},
[8020901]={
["monster_base"]=10017,
- ["atk"]=9422000,
+ ["atk"]=3388000,
["hp"]=511200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4464,7 +4464,7 @@ local monster_chapter = {
[8021001]={
["monster_base"]=20006,
["is_boss"]=1,
- ["atk"]=10095000,
+ ["atk"]=3630000,
["hp"]=681600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4479,7 +4479,7 @@ local monster_chapter = {
},
[8021101]={
["monster_base"]=10017,
- ["atk"]=8076000,
+ ["atk"]=2904000,
["hp"]=553800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4491,7 +4491,7 @@ local monster_chapter = {
},
[8021201]={
["monster_base"]=10016,
- ["atk"]=8749000,
+ ["atk"]=3146000,
["hp"]=639000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4503,7 +4503,7 @@ local monster_chapter = {
},
[8021301]={
["monster_base"]=10018,
- ["atk"]=9422000,
+ ["atk"]=3388000,
["hp"]=639000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4515,7 +4515,7 @@ local monster_chapter = {
},
[8021401]={
["monster_base"]=10015,
- ["atk"]=10095000,
+ ["atk"]=3630000,
["hp"]=639000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4528,7 +4528,7 @@ local monster_chapter = {
[8021501]={
["monster_base"]=20008,
["is_boss"]=2,
- ["atk"]=12114000,
+ ["atk"]=4356000,
["hp"]=852000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4543,7 +4543,7 @@ local monster_chapter = {
},
[8030101]={
["monster_base"]=10019,
- ["atk"]=6800000,
+ ["atk"]=2450000,
["hp"]=345600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4555,7 +4555,7 @@ local monster_chapter = {
},
[8030201]={
["monster_base"]=10016,
- ["atk"]=7480000,
+ ["atk"]=2695000,
["hp"]=432000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4567,7 +4567,7 @@ local monster_chapter = {
},
[8030301]={
["monster_base"]=10018,
- ["atk"]=8160000,
+ ["atk"]=2940000,
["hp"]=432000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4579,7 +4579,7 @@ local monster_chapter = {
},
[8030401]={
["monster_base"]=10017,
- ["atk"]=8840000,
+ ["atk"]=3185000,
["hp"]=432000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4592,7 +4592,7 @@ local monster_chapter = {
[8030501]={
["monster_base"]=20006,
["is_boss"]=1,
- ["atk"]=9520000,
+ ["atk"]=3430000,
["hp"]=518400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4607,7 +4607,7 @@ local monster_chapter = {
},
[8030601]={
["monster_base"]=10017,
- ["atk"]=7480000,
+ ["atk"]=2695000,
["hp"]=475200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4619,7 +4619,7 @@ local monster_chapter = {
},
[8030701]={
["monster_base"]=10016,
- ["atk"]=8160000,
+ ["atk"]=2940000,
["hp"]=475200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4631,7 +4631,7 @@ local monster_chapter = {
},
[8030801]={
["monster_base"]=10018,
- ["atk"]=8840000,
+ ["atk"]=3185000,
["hp"]=518400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4643,7 +4643,7 @@ local monster_chapter = {
},
[8030901]={
["monster_base"]=10015,
- ["atk"]=9520000,
+ ["atk"]=3430000,
["hp"]=518400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4656,7 +4656,7 @@ local monster_chapter = {
[8031001]={
["monster_base"]=20007,
["is_boss"]=1,
- ["atk"]=10200000,
+ ["atk"]=3675000,
["hp"]=691200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4671,7 +4671,7 @@ local monster_chapter = {
},
[8031101]={
["monster_base"]=10019,
- ["atk"]=8160000,
+ ["atk"]=2940000,
["hp"]=561600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4683,7 +4683,7 @@ local monster_chapter = {
},
[8031201]={
["monster_base"]=10018,
- ["atk"]=8840000,
+ ["atk"]=3185000,
["hp"]=648000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4695,7 +4695,7 @@ local monster_chapter = {
},
[8031301]={
["monster_base"]=10015,
- ["atk"]=9520000,
+ ["atk"]=3430000,
["hp"]=648000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4707,7 +4707,7 @@ local monster_chapter = {
},
[8031401]={
["monster_base"]=10017,
- ["atk"]=10200000,
+ ["atk"]=3675000,
["hp"]=648000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4720,7 +4720,7 @@ local monster_chapter = {
[8031501]={
["monster_base"]=30006,
["is_boss"]=2,
- ["atk"]=12240000,
+ ["atk"]=4410000,
["hp"]=864000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -4740,7 +4740,7 @@ local monster_chapter = {
},
[8040101]={
["monster_base"]=10017,
- ["atk"]=7230000,
+ ["atk"]=2600000,
["hp"]=380800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4752,7 +4752,7 @@ local monster_chapter = {
},
[8040201]={
["monster_base"]=10015,
- ["atk"]=7953000,
+ ["atk"]=2860000,
["hp"]=476000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4764,7 +4764,7 @@ local monster_chapter = {
},
[8040301]={
["monster_base"]=10018,
- ["atk"]=8676000,
+ ["atk"]=3120000,
["hp"]=476000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4776,7 +4776,7 @@ local monster_chapter = {
},
[8040401]={
["monster_base"]=10019,
- ["atk"]=9399000,
+ ["atk"]=3380000,
["hp"]=476000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4789,7 +4789,7 @@ local monster_chapter = {
[8040501]={
["monster_base"]=20007,
["is_boss"]=1,
- ["atk"]=10122000,
+ ["atk"]=3640000,
["hp"]=571200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4804,7 +4804,7 @@ local monster_chapter = {
},
[8040601]={
["monster_base"]=10018,
- ["atk"]=7953000,
+ ["atk"]=2860000,
["hp"]=523600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4816,7 +4816,7 @@ local monster_chapter = {
},
[8040701]={
["monster_base"]=10016,
- ["atk"]=8676000,
+ ["atk"]=3120000,
["hp"]=523600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4828,7 +4828,7 @@ local monster_chapter = {
},
[8040801]={
["monster_base"]=10019,
- ["atk"]=9399000,
+ ["atk"]=3380000,
["hp"]=571200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4840,7 +4840,7 @@ local monster_chapter = {
},
[8040901]={
["monster_base"]=10015,
- ["atk"]=10122000,
+ ["atk"]=3640000,
["hp"]=571200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4853,7 +4853,7 @@ local monster_chapter = {
[8041001]={
["monster_base"]=20008,
["is_boss"]=1,
- ["atk"]=10845000,
+ ["atk"]=3900000,
["hp"]=761600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4868,7 +4868,7 @@ local monster_chapter = {
},
[8041101]={
["monster_base"]=10016,
- ["atk"]=8676000,
+ ["atk"]=3120000,
["hp"]=618800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4880,7 +4880,7 @@ local monster_chapter = {
},
[8041201]={
["monster_base"]=10017,
- ["atk"]=9399000,
+ ["atk"]=3380000,
["hp"]=714000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4892,7 +4892,7 @@ local monster_chapter = {
},
[8041301]={
["monster_base"]=10015,
- ["atk"]=10122000,
+ ["atk"]=3640000,
["hp"]=714000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4904,7 +4904,7 @@ local monster_chapter = {
},
[8041401]={
["monster_base"]=10019,
- ["atk"]=10845000,
+ ["atk"]=3900000,
["hp"]=714000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4917,7 +4917,7 @@ local monster_chapter = {
[8041501]={
["monster_base"]=30006,
["is_boss"]=2,
- ["atk"]=13014000,
+ ["atk"]=4680000,
["hp"]=952000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -4937,7 +4937,7 @@ local monster_chapter = {
},
[9010101]={
["monster_base"]=10013,
- ["atk"]=7670000,
+ ["atk"]=2760000,
["hp"]=416000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4949,7 +4949,7 @@ local monster_chapter = {
},
[9010201]={
["monster_base"]=10019,
- ["atk"]=8437000,
+ ["atk"]=3036000,
["hp"]=520000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4961,7 +4961,7 @@ local monster_chapter = {
},
[9010301]={
["monster_base"]=10014,
- ["atk"]=9204000,
+ ["atk"]=3312000,
["hp"]=520000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4973,7 +4973,7 @@ local monster_chapter = {
},
[9010401]={
["monster_base"]=10017,
- ["atk"]=9971000,
+ ["atk"]=3588000,
["hp"]=520000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -4986,7 +4986,7 @@ local monster_chapter = {
[9010501]={
["monster_base"]=20003,
["is_boss"]=1,
- ["atk"]=10738000,
+ ["atk"]=3864000,
["hp"]=624000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5001,7 +5001,7 @@ local monster_chapter = {
},
[9010601]={
["monster_base"]=10013,
- ["atk"]=8437000,
+ ["atk"]=3036000,
["hp"]=572000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5013,7 +5013,7 @@ local monster_chapter = {
},
[9010701]={
["monster_base"]=10017,
- ["atk"]=9204000,
+ ["atk"]=3312000,
["hp"]=572000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5025,7 +5025,7 @@ local monster_chapter = {
},
[9010801]={
["monster_base"]=10014,
- ["atk"]=9971000,
+ ["atk"]=3588000,
["hp"]=624000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5037,7 +5037,7 @@ local monster_chapter = {
},
[9010901]={
["monster_base"]=10019,
- ["atk"]=10738000,
+ ["atk"]=3864000,
["hp"]=624000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5050,7 +5050,7 @@ local monster_chapter = {
[9011001]={
["monster_base"]=20006,
["is_boss"]=1,
- ["atk"]=11505000,
+ ["atk"]=4140000,
["hp"]=832000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5065,7 +5065,7 @@ local monster_chapter = {
},
[9011101]={
["monster_base"]=10017,
- ["atk"]=9204000,
+ ["atk"]=3312000,
["hp"]=676000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5077,7 +5077,7 @@ local monster_chapter = {
},
[9011201]={
["monster_base"]=10013,
- ["atk"]=9971000,
+ ["atk"]=3588000,
["hp"]=780000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5089,7 +5089,7 @@ local monster_chapter = {
},
[9011301]={
["monster_base"]=10019,
- ["atk"]=10738000,
+ ["atk"]=3864000,
["hp"]=780000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5101,7 +5101,7 @@ local monster_chapter = {
},
[9011401]={
["monster_base"]=10014,
- ["atk"]=11505000,
+ ["atk"]=4140000,
["hp"]=780000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5114,7 +5114,7 @@ local monster_chapter = {
[9011501]={
["monster_base"]=20008,
["is_boss"]=2,
- ["atk"]=13806000,
+ ["atk"]=4968000,
["hp"]=1040000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5129,7 +5129,7 @@ local monster_chapter = {
},
[9020101]={
["monster_base"]=10013,
- ["atk"]=7700000,
+ ["atk"]=2770000,
["hp"]=422400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5141,7 +5141,7 @@ local monster_chapter = {
},
[9020201]={
["monster_base"]=10017,
- ["atk"]=8470000,
+ ["atk"]=3047000,
["hp"]=528000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5153,7 +5153,7 @@ local monster_chapter = {
},
[9020301]={
["monster_base"]=10014,
- ["atk"]=9240000,
+ ["atk"]=3324000,
["hp"]=528000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5165,7 +5165,7 @@ local monster_chapter = {
},
[9020401]={
["monster_base"]=10019,
- ["atk"]=10010000,
+ ["atk"]=3601000,
["hp"]=528000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5178,7 +5178,7 @@ local monster_chapter = {
[9020501]={
["monster_base"]=20006,
["is_boss"]=1,
- ["atk"]=10780000,
+ ["atk"]=3878000,
["hp"]=633600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5193,7 +5193,7 @@ local monster_chapter = {
},
[9020601]={
["monster_base"]=10014,
- ["atk"]=8470000,
+ ["atk"]=3047000,
["hp"]=580800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5205,7 +5205,7 @@ local monster_chapter = {
},
[9020701]={
["monster_base"]=10019,
- ["atk"]=9240000,
+ ["atk"]=3324000,
["hp"]=580800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5217,7 +5217,7 @@ local monster_chapter = {
},
[9020801]={
["monster_base"]=10017,
- ["atk"]=10010000,
+ ["atk"]=3601000,
["hp"]=633600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5229,7 +5229,7 @@ local monster_chapter = {
},
[9020901]={
["monster_base"]=10013,
- ["atk"]=10780000,
+ ["atk"]=3878000,
["hp"]=633600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5242,7 +5242,7 @@ local monster_chapter = {
[9021001]={
["monster_base"]=20008,
["is_boss"]=1,
- ["atk"]=11550000,
+ ["atk"]=4155000,
["hp"]=844800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5257,7 +5257,7 @@ local monster_chapter = {
},
[9021101]={
["monster_base"]=10013,
- ["atk"]=9240000,
+ ["atk"]=3324000,
["hp"]=686400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5269,7 +5269,7 @@ local monster_chapter = {
},
[9021201]={
["monster_base"]=10019,
- ["atk"]=10010000,
+ ["atk"]=3601000,
["hp"]=792000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5281,7 +5281,7 @@ local monster_chapter = {
},
[9021301]={
["monster_base"]=10014,
- ["atk"]=10780000,
+ ["atk"]=3878000,
["hp"]=792000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5293,7 +5293,7 @@ local monster_chapter = {
},
[9021401]={
["monster_base"]=10017,
- ["atk"]=11550000,
+ ["atk"]=4155000,
["hp"]=792000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5306,7 +5306,7 @@ local monster_chapter = {
[9021501]={
["monster_base"]=20007,
["is_boss"]=2,
- ["atk"]=13860000,
+ ["atk"]=4986000,
["hp"]=1056000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5321,7 +5321,7 @@ local monster_chapter = {
},
[9030101]={
["monster_base"]=10019,
- ["atk"]=7770000,
+ ["atk"]=2800000,
["hp"]=432000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5333,7 +5333,7 @@ local monster_chapter = {
},
[9030201]={
["monster_base"]=10013,
- ["atk"]=8547000,
+ ["atk"]=3080000,
["hp"]=540000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5345,7 +5345,7 @@ local monster_chapter = {
},
[9030301]={
["monster_base"]=10017,
- ["atk"]=9324000,
+ ["atk"]=3360000,
["hp"]=540000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5357,7 +5357,7 @@ local monster_chapter = {
},
[9030401]={
["monster_base"]=10014,
- ["atk"]=10101000,
+ ["atk"]=3640000,
["hp"]=540000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5370,7 +5370,7 @@ local monster_chapter = {
[9030501]={
["monster_base"]=20003,
["is_boss"]=1,
- ["atk"]=10878000,
+ ["atk"]=3920000,
["hp"]=648000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5385,7 +5385,7 @@ local monster_chapter = {
},
[9030601]={
["monster_base"]=10013,
- ["atk"]=8547000,
+ ["atk"]=3080000,
["hp"]=594000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5397,7 +5397,7 @@ local monster_chapter = {
},
[9030701]={
["monster_base"]=10019,
- ["atk"]=9324000,
+ ["atk"]=3360000,
["hp"]=594000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5409,7 +5409,7 @@ local monster_chapter = {
},
[9030801]={
["monster_base"]=10014,
- ["atk"]=10101000,
+ ["atk"]=3640000,
["hp"]=648000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5421,7 +5421,7 @@ local monster_chapter = {
},
[9030901]={
["monster_base"]=10017,
- ["atk"]=10878000,
+ ["atk"]=3920000,
["hp"]=648000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5434,7 +5434,7 @@ local monster_chapter = {
[9031001]={
["monster_base"]=20006,
["is_boss"]=1,
- ["atk"]=11655000,
+ ["atk"]=4200000,
["hp"]=864000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5449,7 +5449,7 @@ local monster_chapter = {
},
[9031101]={
["monster_base"]=10017,
- ["atk"]=9324000,
+ ["atk"]=3360000,
["hp"]=702000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5461,7 +5461,7 @@ local monster_chapter = {
},
[9031201]={
["monster_base"]=10013,
- ["atk"]=10101000,
+ ["atk"]=3640000,
["hp"]=810000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5473,7 +5473,7 @@ local monster_chapter = {
},
[9031301]={
["monster_base"]=10019,
- ["atk"]=10878000,
+ ["atk"]=3920000,
["hp"]=810000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5485,7 +5485,7 @@ local monster_chapter = {
},
[9031401]={
["monster_base"]=10014,
- ["atk"]=11655000,
+ ["atk"]=4200000,
["hp"]=810000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5498,7 +5498,7 @@ local monster_chapter = {
[9031501]={
["monster_base"]=30007,
["is_boss"]=2,
- ["atk"]=13986000,
+ ["atk"]=5040000,
["hp"]=1080000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -5518,7 +5518,7 @@ local monster_chapter = {
},
[9040101]={
["monster_base"]=10013,
- ["atk"]=7800000,
+ ["atk"]=2810000,
["hp"]=440000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5530,7 +5530,7 @@ local monster_chapter = {
},
[9040201]={
["monster_base"]=10017,
- ["atk"]=8580000,
+ ["atk"]=3091000,
["hp"]=550000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5542,7 +5542,7 @@ local monster_chapter = {
},
[9040301]={
["monster_base"]=10014,
- ["atk"]=9360000,
+ ["atk"]=3372000,
["hp"]=550000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5554,7 +5554,7 @@ local monster_chapter = {
},
[9040401]={
["monster_base"]=10019,
- ["atk"]=10140000,
+ ["atk"]=3653000,
["hp"]=550000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5567,7 +5567,7 @@ local monster_chapter = {
[9040501]={
["monster_base"]=20003,
["is_boss"]=1,
- ["atk"]=10920000,
+ ["atk"]=3934000,
["hp"]=660000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5582,7 +5582,7 @@ local monster_chapter = {
},
[9040601]={
["monster_base"]=10014,
- ["atk"]=8580000,
+ ["atk"]=3091000,
["hp"]=605000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5594,7 +5594,7 @@ local monster_chapter = {
},
[9040701]={
["monster_base"]=10017,
- ["atk"]=9360000,
+ ["atk"]=3372000,
["hp"]=605000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5606,7 +5606,7 @@ local monster_chapter = {
},
[9040801]={
["monster_base"]=10013,
- ["atk"]=10140000,
+ ["atk"]=3653000,
["hp"]=660000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5618,7 +5618,7 @@ local monster_chapter = {
},
[9040901]={
["monster_base"]=10019,
- ["atk"]=10920000,
+ ["atk"]=3934000,
["hp"]=660000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5631,7 +5631,7 @@ local monster_chapter = {
[9041001]={
["monster_base"]=20008,
["is_boss"]=1,
- ["atk"]=11700000,
+ ["atk"]=4215000,
["hp"]=880000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5646,7 +5646,7 @@ local monster_chapter = {
},
[9041101]={
["monster_base"]=10019,
- ["atk"]=9360000,
+ ["atk"]=3372000,
["hp"]=715000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5658,7 +5658,7 @@ local monster_chapter = {
},
[9041201]={
["monster_base"]=10017,
- ["atk"]=10140000,
+ ["atk"]=3653000,
["hp"]=825000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5670,7 +5670,7 @@ local monster_chapter = {
},
[9041301]={
["monster_base"]=10014,
- ["atk"]=10920000,
+ ["atk"]=3934000,
["hp"]=825000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5682,7 +5682,7 @@ local monster_chapter = {
},
[9041401]={
["monster_base"]=10013,
- ["atk"]=11700000,
+ ["atk"]=4215000,
["hp"]=825000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5695,7 +5695,7 @@ local monster_chapter = {
[9041501]={
["monster_base"]=30007,
["is_boss"]=2,
- ["atk"]=14040000,
+ ["atk"]=5058000,
["hp"]=1100000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -5715,7 +5715,7 @@ local monster_chapter = {
},
[9050101]={
["monster_base"]=10014,
- ["atk"]=8070000,
+ ["atk"]=2900000,
["hp"]=488000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5727,7 +5727,7 @@ local monster_chapter = {
},
[9050201]={
["monster_base"]=10019,
- ["atk"]=8877000,
+ ["atk"]=3190000,
["hp"]=610000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5739,7 +5739,7 @@ local monster_chapter = {
},
[9050301]={
["monster_base"]=10017,
- ["atk"]=9684000,
+ ["atk"]=3480000,
["hp"]=610000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5751,7 +5751,7 @@ local monster_chapter = {
},
[9050401]={
["monster_base"]=10013,
- ["atk"]=10491000,
+ ["atk"]=3770000,
["hp"]=610000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5764,7 +5764,7 @@ local monster_chapter = {
[9050501]={
["monster_base"]=20008,
["is_boss"]=1,
- ["atk"]=11298000,
+ ["atk"]=4060000,
["hp"]=732000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5779,7 +5779,7 @@ local monster_chapter = {
},
[9050601]={
["monster_base"]=10013,
- ["atk"]=8877000,
+ ["atk"]=3190000,
["hp"]=671000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5791,7 +5791,7 @@ local monster_chapter = {
},
[9050701]={
["monster_base"]=10017,
- ["atk"]=9684000,
+ ["atk"]=3480000,
["hp"]=671000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5803,7 +5803,7 @@ local monster_chapter = {
},
[9050801]={
["monster_base"]=10014,
- ["atk"]=10491000,
+ ["atk"]=3770000,
["hp"]=732000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5815,7 +5815,7 @@ local monster_chapter = {
},
[9050901]={
["monster_base"]=10019,
- ["atk"]=11298000,
+ ["atk"]=4060000,
["hp"]=732000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5828,7 +5828,7 @@ local monster_chapter = {
[9051001]={
["monster_base"]=20007,
["is_boss"]=1,
- ["atk"]=12105000,
+ ["atk"]=4350000,
["hp"]=976000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5843,7 +5843,7 @@ local monster_chapter = {
},
[9051101]={
["monster_base"]=10019,
- ["atk"]=9684000,
+ ["atk"]=3480000,
["hp"]=793000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5855,7 +5855,7 @@ local monster_chapter = {
},
[9051201]={
["monster_base"]=10013,
- ["atk"]=10491000,
+ ["atk"]=3770000,
["hp"]=915000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5867,7 +5867,7 @@ local monster_chapter = {
},
[9051301]={
["monster_base"]=10017,
- ["atk"]=11298000,
+ ["atk"]=4060000,
["hp"]=915000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5879,7 +5879,7 @@ local monster_chapter = {
},
[9051401]={
["monster_base"]=10014,
- ["atk"]=12105000,
+ ["atk"]=4350000,
["hp"]=915000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5892,7 +5892,7 @@ local monster_chapter = {
[9051501]={
["monster_base"]=30007,
["is_boss"]=2,
- ["atk"]=14526000,
+ ["atk"]=5220000,
["hp"]=1220000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -5912,7 +5912,7 @@ local monster_chapter = {
},
[10010101]={
["monster_base"]=10010,
- ["atk"]=8330000,
+ ["atk"]=3000000,
["hp"]=536000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5924,7 +5924,7 @@ local monster_chapter = {
},
[10010201]={
["monster_base"]=10006,
- ["atk"]=9163000,
+ ["atk"]=3300000,
["hp"]=670000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5936,7 +5936,7 @@ local monster_chapter = {
},
[10010301]={
["monster_base"]=10011,
- ["atk"]=9996000,
+ ["atk"]=3600000,
["hp"]=670000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5948,7 +5948,7 @@ local monster_chapter = {
},
[10010401]={
["monster_base"]=10015,
- ["atk"]=10829000,
+ ["atk"]=3900000,
["hp"]=670000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5961,7 +5961,7 @@ local monster_chapter = {
[10010501]={
["monster_base"]=20006,
["is_boss"]=1,
- ["atk"]=11662000,
+ ["atk"]=4200000,
["hp"]=804000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5976,7 +5976,7 @@ local monster_chapter = {
},
[10010601]={
["monster_base"]=10010,
- ["atk"]=9163000,
+ ["atk"]=3300000,
["hp"]=737000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -5988,7 +5988,7 @@ local monster_chapter = {
},
[10010701]={
["monster_base"]=10015,
- ["atk"]=9996000,
+ ["atk"]=3600000,
["hp"]=737000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6000,7 +6000,7 @@ local monster_chapter = {
},
[10010801]={
["monster_base"]=10011,
- ["atk"]=10829000,
+ ["atk"]=3900000,
["hp"]=804000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6012,7 +6012,7 @@ local monster_chapter = {
},
[10010901]={
["monster_base"]=10009,
- ["atk"]=11662000,
+ ["atk"]=4200000,
["hp"]=804000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6025,7 +6025,7 @@ local monster_chapter = {
[10011001]={
["monster_base"]=20007,
["is_boss"]=1,
- ["atk"]=12495000,
+ ["atk"]=4500000,
["hp"]=1072000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6040,7 +6040,7 @@ local monster_chapter = {
},
[10011101]={
["monster_base"]=10009,
- ["atk"]=9996000,
+ ["atk"]=3600000,
["hp"]=871000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6052,7 +6052,7 @@ local monster_chapter = {
},
[10011201]={
["monster_base"]=10011,
- ["atk"]=10829000,
+ ["atk"]=3900000,
["hp"]=1005000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6064,7 +6064,7 @@ local monster_chapter = {
},
[10011301]={
["monster_base"]=10015,
- ["atk"]=11662000,
+ ["atk"]=4200000,
["hp"]=1005000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6076,7 +6076,7 @@ local monster_chapter = {
},
[10011401]={
["monster_base"]=10010,
- ["atk"]=12495000,
+ ["atk"]=4500000,
["hp"]=1005000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6089,7 +6089,7 @@ local monster_chapter = {
[10011501]={
["monster_base"]=20008,
["is_boss"]=2,
- ["atk"]=14994000,
+ ["atk"]=5400000,
["hp"]=1340000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6104,7 +6104,7 @@ local monster_chapter = {
},
[10020101]={
["monster_base"]=10010,
- ["atk"]=8370000,
+ ["atk"]=3010000,
["hp"]=544000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6116,7 +6116,7 @@ local monster_chapter = {
},
[10020201]={
["monster_base"]=10015,
- ["atk"]=9207000,
+ ["atk"]=3311000,
["hp"]=680000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6128,7 +6128,7 @@ local monster_chapter = {
},
[10020301]={
["monster_base"]=10011,
- ["atk"]=10044000,
+ ["atk"]=3612000,
["hp"]=680000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6140,7 +6140,7 @@ local monster_chapter = {
},
[10020401]={
["monster_base"]=10009,
- ["atk"]=10881000,
+ ["atk"]=3913000,
["hp"]=680000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6153,7 +6153,7 @@ local monster_chapter = {
[10020501]={
["monster_base"]=20006,
["is_boss"]=1,
- ["atk"]=11718000,
+ ["atk"]=4214000,
["hp"]=816000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6168,7 +6168,7 @@ local monster_chapter = {
},
[10020601]={
["monster_base"]=10011,
- ["atk"]=9207000,
+ ["atk"]=3311000,
["hp"]=748000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6180,7 +6180,7 @@ local monster_chapter = {
},
[10020701]={
["monster_base"]=10009,
- ["atk"]=10044000,
+ ["atk"]=3612000,
["hp"]=748000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6192,7 +6192,7 @@ local monster_chapter = {
},
[10020801]={
["monster_base"]=10006,
- ["atk"]=10881000,
+ ["atk"]=3913000,
["hp"]=816000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6204,7 +6204,7 @@ local monster_chapter = {
},
[10020901]={
["monster_base"]=10010,
- ["atk"]=11718000,
+ ["atk"]=4214000,
["hp"]=816000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6217,7 +6217,7 @@ local monster_chapter = {
[10021001]={
["monster_base"]=20007,
["is_boss"]=1,
- ["atk"]=12555000,
+ ["atk"]=4515000,
["hp"]=1088000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6232,7 +6232,7 @@ local monster_chapter = {
},
[10021101]={
["monster_base"]=10010,
- ["atk"]=10044000,
+ ["atk"]=3612000,
["hp"]=884000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6244,7 +6244,7 @@ local monster_chapter = {
},
[10021201]={
["monster_base"]=10006,
- ["atk"]=10881000,
+ ["atk"]=3913000,
["hp"]=1020000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6256,7 +6256,7 @@ local monster_chapter = {
},
[10021301]={
["monster_base"]=10011,
- ["atk"]=11718000,
+ ["atk"]=4214000,
["hp"]=1020000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6268,7 +6268,7 @@ local monster_chapter = {
},
[10021401]={
["monster_base"]=10015,
- ["atk"]=12555000,
+ ["atk"]=4515000,
["hp"]=1020000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6281,7 +6281,7 @@ local monster_chapter = {
[10021501]={
["monster_base"]=20005,
["is_boss"]=2,
- ["atk"]=15066000,
+ ["atk"]=5418000,
["hp"]=1360000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6296,7 +6296,7 @@ local monster_chapter = {
},
[10030101]={
["monster_base"]=10009,
- ["atk"]=8430000,
+ ["atk"]=3040000,
["hp"]=553600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6308,7 +6308,7 @@ local monster_chapter = {
},
[10030201]={
["monster_base"]=10006,
- ["atk"]=9273000,
+ ["atk"]=3344000,
["hp"]=692000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6320,7 +6320,7 @@ local monster_chapter = {
},
[10030301]={
["monster_base"]=10011,
- ["atk"]=10116000,
+ ["atk"]=3648000,
["hp"]=692000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6332,7 +6332,7 @@ local monster_chapter = {
},
[10030401]={
["monster_base"]=10010,
- ["atk"]=10959000,
+ ["atk"]=3952000,
["hp"]=692000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6345,7 +6345,7 @@ local monster_chapter = {
[10030501]={
["monster_base"]=20006,
["is_boss"]=1,
- ["atk"]=11802000,
+ ["atk"]=4256000,
["hp"]=830400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6360,7 +6360,7 @@ local monster_chapter = {
},
[10030601]={
["monster_base"]=10010,
- ["atk"]=9273000,
+ ["atk"]=3344000,
["hp"]=761200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6372,7 +6372,7 @@ local monster_chapter = {
},
[10030701]={
["monster_base"]=10006,
- ["atk"]=10116000,
+ ["atk"]=3648000,
["hp"]=761200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6384,7 +6384,7 @@ local monster_chapter = {
},
[10030801]={
["monster_base"]=10011,
- ["atk"]=10959000,
+ ["atk"]=3952000,
["hp"]=830400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6396,7 +6396,7 @@ local monster_chapter = {
},
[10030901]={
["monster_base"]=10015,
- ["atk"]=11802000,
+ ["atk"]=4256000,
["hp"]=830400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6409,7 +6409,7 @@ local monster_chapter = {
[10031001]={
["monster_base"]=20008,
["is_boss"]=1,
- ["atk"]=12645000,
+ ["atk"]=4560000,
["hp"]=1107200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6424,7 +6424,7 @@ local monster_chapter = {
},
[10031101]={
["monster_base"]=10009,
- ["atk"]=10116000,
+ ["atk"]=3648000,
["hp"]=899600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6436,7 +6436,7 @@ local monster_chapter = {
},
[10031201]={
["monster_base"]=10011,
- ["atk"]=10959000,
+ ["atk"]=3952000,
["hp"]=1038000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6448,7 +6448,7 @@ local monster_chapter = {
},
[10031301]={
["monster_base"]=10015,
- ["atk"]=11802000,
+ ["atk"]=4256000,
["hp"]=1038000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6460,7 +6460,7 @@ local monster_chapter = {
},
[10031401]={
["monster_base"]=10010,
- ["atk"]=12645000,
+ ["atk"]=4560000,
["hp"]=1038000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6473,7 +6473,7 @@ local monster_chapter = {
[10031501]={
["monster_base"]=30001,
["is_boss"]=2,
- ["atk"]=15174000,
+ ["atk"]=5472000,
["hp"]=1384000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -6493,7 +6493,7 @@ local monster_chapter = {
},
[10040101]={
["monster_base"]=10010,
- ["atk"]=8470000,
+ ["atk"]=3050000,
["hp"]=560000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6505,7 +6505,7 @@ local monster_chapter = {
},
[10040201]={
["monster_base"]=10015,
- ["atk"]=9317000,
+ ["atk"]=3355000,
["hp"]=700000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6517,7 +6517,7 @@ local monster_chapter = {
},
[10040301]={
["monster_base"]=10011,
- ["atk"]=10164000,
+ ["atk"]=3660000,
["hp"]=700000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6529,7 +6529,7 @@ local monster_chapter = {
},
[10040401]={
["monster_base"]=10009,
- ["atk"]=11011000,
+ ["atk"]=3965000,
["hp"]=700000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6542,7 +6542,7 @@ local monster_chapter = {
[10040501]={
["monster_base"]=20007,
["is_boss"]=1,
- ["atk"]=11858000,
+ ["atk"]=4270000,
["hp"]=840000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6557,7 +6557,7 @@ local monster_chapter = {
},
[10040601]={
["monster_base"]=10011,
- ["atk"]=9317000,
+ ["atk"]=3355000,
["hp"]=770000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6569,7 +6569,7 @@ local monster_chapter = {
},
[10040701]={
["monster_base"]=10006,
- ["atk"]=10164000,
+ ["atk"]=3660000,
["hp"]=770000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6581,7 +6581,7 @@ local monster_chapter = {
},
[10040801]={
["monster_base"]=10009,
- ["atk"]=11011000,
+ ["atk"]=3965000,
["hp"]=840000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6593,7 +6593,7 @@ local monster_chapter = {
},
[10040901]={
["monster_base"]=10015,
- ["atk"]=11858000,
+ ["atk"]=4270000,
["hp"]=840000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6606,7 +6606,7 @@ local monster_chapter = {
[10041001]={
["monster_base"]=20005,
["is_boss"]=1,
- ["atk"]=12705000,
+ ["atk"]=4575000,
["hp"]=1120000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6621,7 +6621,7 @@ local monster_chapter = {
},
[10041101]={
["monster_base"]=10006,
- ["atk"]=10164000,
+ ["atk"]=3660000,
["hp"]=910000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6633,7 +6633,7 @@ local monster_chapter = {
},
[10041201]={
["monster_base"]=10010,
- ["atk"]=11011000,
+ ["atk"]=3965000,
["hp"]=1050000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6645,7 +6645,7 @@ local monster_chapter = {
},
[10041301]={
["monster_base"]=10015,
- ["atk"]=11858000,
+ ["atk"]=4270000,
["hp"]=1050000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6657,7 +6657,7 @@ local monster_chapter = {
},
[10041401]={
["monster_base"]=10009,
- ["atk"]=12705000,
+ ["atk"]=4575000,
["hp"]=1050000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6670,7 +6670,7 @@ local monster_chapter = {
[10041501]={
["monster_base"]=30001,
["is_boss"]=2,
- ["atk"]=15246000,
+ ["atk"]=5490000,
["hp"]=1400000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -6690,7 +6690,7 @@ local monster_chapter = {
},
[10050101]={
["monster_base"]=10011,
- ["atk"]=8730000,
+ ["atk"]=3140000,
["hp"]=608000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6702,7 +6702,7 @@ local monster_chapter = {
},
[10050201]={
["monster_base"]=10009,
- ["atk"]=9603000,
+ ["atk"]=3454000,
["hp"]=760000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6714,7 +6714,7 @@ local monster_chapter = {
},
[10050301]={
["monster_base"]=10006,
- ["atk"]=10476000,
+ ["atk"]=3768000,
["hp"]=760000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6726,7 +6726,7 @@ local monster_chapter = {
},
[10050401]={
["monster_base"]=10010,
- ["atk"]=11349000,
+ ["atk"]=4082000,
["hp"]=760000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6739,7 +6739,7 @@ local monster_chapter = {
[10050501]={
["monster_base"]=20008,
["is_boss"]=1,
- ["atk"]=12222000,
+ ["atk"]=4396000,
["hp"]=912000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6754,7 +6754,7 @@ local monster_chapter = {
},
[10050601]={
["monster_base"]=10010,
- ["atk"]=9603000,
+ ["atk"]=3454000,
["hp"]=836000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6766,7 +6766,7 @@ local monster_chapter = {
},
[10050701]={
["monster_base"]=10015,
- ["atk"]=10476000,
+ ["atk"]=3768000,
["hp"]=836000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6778,7 +6778,7 @@ local monster_chapter = {
},
[10050801]={
["monster_base"]=10011,
- ["atk"]=11349000,
+ ["atk"]=4082000,
["hp"]=912000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6790,7 +6790,7 @@ local monster_chapter = {
},
[10050901]={
["monster_base"]=10009,
- ["atk"]=12222000,
+ ["atk"]=4396000,
["hp"]=912000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6803,7 +6803,7 @@ local monster_chapter = {
[10051001]={
["monster_base"]=20005,
["is_boss"]=1,
- ["atk"]=13095000,
+ ["atk"]=4710000,
["hp"]=1216000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6818,7 +6818,7 @@ local monster_chapter = {
},
[10051101]={
["monster_base"]=10009,
- ["atk"]=10476000,
+ ["atk"]=3768000,
["hp"]=988000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6830,7 +6830,7 @@ local monster_chapter = {
},
[10051201]={
["monster_base"]=10006,
- ["atk"]=11349000,
+ ["atk"]=4082000,
["hp"]=1140000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6842,7 +6842,7 @@ local monster_chapter = {
},
[10051301]={
["monster_base"]=10011,
- ["atk"]=12222000,
+ ["atk"]=4396000,
["hp"]=1140000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6854,7 +6854,7 @@ local monster_chapter = {
},
[10051401]={
["monster_base"]=10010,
- ["atk"]=13095000,
+ ["atk"]=4710000,
["hp"]=1140000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6867,7 +6867,7 @@ local monster_chapter = {
[10051501]={
["monster_base"]=30001,
["is_boss"]=2,
- ["atk"]=15714000,
+ ["atk"]=5652000,
["hp"]=1520000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -6887,7 +6887,7 @@ local monster_chapter = {
},
[11010101]={
["monster_base"]=10005,
- ["atk"]=9000000,
+ ["atk"]=3240000,
["hp"]=656000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6899,7 +6899,7 @@ local monster_chapter = {
},
[11010201]={
["monster_base"]=10002,
- ["atk"]=9900000,
+ ["atk"]=3564000,
["hp"]=820000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6911,7 +6911,7 @@ local monster_chapter = {
},
[11010301]={
["monster_base"]=10004,
- ["atk"]=10800000,
+ ["atk"]=3888000,
["hp"]=820000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6923,7 +6923,7 @@ local monster_chapter = {
},
[11010401]={
["monster_base"]=10007,
- ["atk"]=11700000,
+ ["atk"]=4212000,
["hp"]=820000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6936,7 +6936,7 @@ local monster_chapter = {
[11010501]={
["monster_base"]=20001,
["is_boss"]=1,
- ["atk"]=12600000,
+ ["atk"]=4536000,
["hp"]=984000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6954,7 +6954,7 @@ local monster_chapter = {
},
[11010601]={
["monster_base"]=10005,
- ["atk"]=9900000,
+ ["atk"]=3564000,
["hp"]=902000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6966,7 +6966,7 @@ local monster_chapter = {
},
[11010701]={
["monster_base"]=10007,
- ["atk"]=10800000,
+ ["atk"]=3888000,
["hp"]=902000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6978,7 +6978,7 @@ local monster_chapter = {
},
[11010801]={
["monster_base"]=10004,
- ["atk"]=11700000,
+ ["atk"]=4212000,
["hp"]=984000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -6990,7 +6990,7 @@ local monster_chapter = {
},
[11010901]={
["monster_base"]=10002,
- ["atk"]=12600000,
+ ["atk"]=4536000,
["hp"]=984000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7003,7 +7003,7 @@ local monster_chapter = {
[11011001]={
["monster_base"]=20002,
["is_boss"]=1,
- ["atk"]=13500000,
+ ["atk"]=4860000,
["hp"]=1312000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7018,7 +7018,7 @@ local monster_chapter = {
},
[11011101]={
["monster_base"]=10007,
- ["atk"]=10800000,
+ ["atk"]=3888000,
["hp"]=1066000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7030,7 +7030,7 @@ local monster_chapter = {
},
[11011201]={
["monster_base"]=10005,
- ["atk"]=11700000,
+ ["atk"]=4212000,
["hp"]=1230000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7042,7 +7042,7 @@ local monster_chapter = {
},
[11011301]={
["monster_base"]=10002,
- ["atk"]=12600000,
+ ["atk"]=4536000,
["hp"]=1230000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7054,7 +7054,7 @@ local monster_chapter = {
},
[11011401]={
["monster_base"]=10004,
- ["atk"]=13500000,
+ ["atk"]=4860000,
["hp"]=1230000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7067,7 +7067,7 @@ local monster_chapter = {
[11011501]={
["monster_base"]=20003,
["is_boss"]=2,
- ["atk"]=16200000,
+ ["atk"]=5832000,
["hp"]=1640000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7082,7 +7082,7 @@ local monster_chapter = {
},
[11020101]={
["monster_base"]=10005,
- ["atk"]=9050000,
+ ["atk"]=3260000,
["hp"]=673600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7094,7 +7094,7 @@ local monster_chapter = {
},
[11020201]={
["monster_base"]=10007,
- ["atk"]=9955000,
+ ["atk"]=3586000,
["hp"]=842000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7106,7 +7106,7 @@ local monster_chapter = {
},
[11020301]={
["monster_base"]=10004,
- ["atk"]=10860000,
+ ["atk"]=3912000,
["hp"]=842000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7118,7 +7118,7 @@ local monster_chapter = {
},
[11020401]={
["monster_base"]=10002,
- ["atk"]=11765000,
+ ["atk"]=4238000,
["hp"]=842000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7131,7 +7131,7 @@ local monster_chapter = {
[11020501]={
["monster_base"]=20002,
["is_boss"]=1,
- ["atk"]=12670000,
+ ["atk"]=4564000,
["hp"]=1010400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7146,7 +7146,7 @@ local monster_chapter = {
},
[11020601]={
["monster_base"]=10004,
- ["atk"]=9955000,
+ ["atk"]=3586000,
["hp"]=926200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7158,7 +7158,7 @@ local monster_chapter = {
},
[11020701]={
["monster_base"]=10002,
- ["atk"]=10860000,
+ ["atk"]=3912000,
["hp"]=926200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7170,7 +7170,7 @@ local monster_chapter = {
},
[11020801]={
["monster_base"]=10007,
- ["atk"]=11765000,
+ ["atk"]=4238000,
["hp"]=1010400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7182,7 +7182,7 @@ local monster_chapter = {
},
[11020901]={
["monster_base"]=10005,
- ["atk"]=12670000,
+ ["atk"]=4564000,
["hp"]=1010400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7195,7 +7195,7 @@ local monster_chapter = {
[11021001]={
["monster_base"]=20003,
["is_boss"]=1,
- ["atk"]=13575000,
+ ["atk"]=4890000,
["hp"]=1347200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7210,7 +7210,7 @@ local monster_chapter = {
},
[11021101]={
["monster_base"]=10005,
- ["atk"]=10860000,
+ ["atk"]=3912000,
["hp"]=1094600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7222,7 +7222,7 @@ local monster_chapter = {
},
[11021201]={
["monster_base"]=10002,
- ["atk"]=11765000,
+ ["atk"]=4238000,
["hp"]=1263000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7234,7 +7234,7 @@ local monster_chapter = {
},
[11021301]={
["monster_base"]=10004,
- ["atk"]=12670000,
+ ["atk"]=4564000,
["hp"]=1263000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7246,7 +7246,7 @@ local monster_chapter = {
},
[11021401]={
["monster_base"]=10007,
- ["atk"]=13575000,
+ ["atk"]=4890000,
["hp"]=1263000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7259,7 +7259,7 @@ local monster_chapter = {
[11021501]={
["monster_base"]=20004,
["is_boss"]=2,
- ["atk"]=16290000,
+ ["atk"]=5868000,
["hp"]=1684000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7274,7 +7274,7 @@ local monster_chapter = {
},
[11030101]={
["monster_base"]=10002,
- ["atk"]=9080000,
+ ["atk"]=3270000,
["hp"]=689600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7286,7 +7286,7 @@ local monster_chapter = {
},
[11030201]={
["monster_base"]=10005,
- ["atk"]=9988000,
+ ["atk"]=3597000,
["hp"]=862000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7298,7 +7298,7 @@ local monster_chapter = {
},
[11030301]={
["monster_base"]=10007,
- ["atk"]=10896000,
+ ["atk"]=3924000,
["hp"]=862000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7310,7 +7310,7 @@ local monster_chapter = {
},
[11030401]={
["monster_base"]=10004,
- ["atk"]=11804000,
+ ["atk"]=4251000,
["hp"]=862000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7323,7 +7323,7 @@ local monster_chapter = {
[11030501]={
["monster_base"]=20002,
["is_boss"]=1,
- ["atk"]=12712000,
+ ["atk"]=4578000,
["hp"]=1034400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7338,7 +7338,7 @@ local monster_chapter = {
},
[11030601]={
["monster_base"]=10005,
- ["atk"]=9988000,
+ ["atk"]=3597000,
["hp"]=948200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7350,7 +7350,7 @@ local monster_chapter = {
},
[11030701]={
["monster_base"]=10002,
- ["atk"]=10896000,
+ ["atk"]=3924000,
["hp"]=948200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7362,7 +7362,7 @@ local monster_chapter = {
},
[11030801]={
["monster_base"]=10004,
- ["atk"]=11804000,
+ ["atk"]=4251000,
["hp"]=1034400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7374,7 +7374,7 @@ local monster_chapter = {
},
[11030901]={
["monster_base"]=10007,
- ["atk"]=12712000,
+ ["atk"]=4578000,
["hp"]=1034400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7387,7 +7387,7 @@ local monster_chapter = {
[11031001]={
["monster_base"]=20003,
["is_boss"]=1,
- ["atk"]=13620000,
+ ["atk"]=4905000,
["hp"]=1379200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7402,7 +7402,7 @@ local monster_chapter = {
},
[11031101]={
["monster_base"]=10007,
- ["atk"]=10896000,
+ ["atk"]=3924000,
["hp"]=1120600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7414,7 +7414,7 @@ local monster_chapter = {
},
[11031201]={
["monster_base"]=10005,
- ["atk"]=11804000,
+ ["atk"]=4251000,
["hp"]=1293000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7426,7 +7426,7 @@ local monster_chapter = {
},
[11031301]={
["monster_base"]=10002,
- ["atk"]=12712000,
+ ["atk"]=4578000,
["hp"]=1293000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7438,7 +7438,7 @@ local monster_chapter = {
},
[11031401]={
["monster_base"]=10004,
- ["atk"]=13620000,
+ ["atk"]=4905000,
["hp"]=1293000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7451,7 +7451,7 @@ local monster_chapter = {
[11031501]={
["monster_base"]=30009,
["is_boss"]=2,
- ["atk"]=16344000,
+ ["atk"]=5886000,
["hp"]=1724000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -7471,7 +7471,7 @@ local monster_chapter = {
},
[11040101]={
["monster_base"]=10005,
- ["atk"]=9130000,
+ ["atk"]=3290000,
["hp"]=707200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7483,7 +7483,7 @@ local monster_chapter = {
},
[11040201]={
["monster_base"]=10007,
- ["atk"]=10043000,
+ ["atk"]=3619000,
["hp"]=884000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7495,7 +7495,7 @@ local monster_chapter = {
},
[11040301]={
["monster_base"]=10004,
- ["atk"]=10956000,
+ ["atk"]=3948000,
["hp"]=884000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7507,7 +7507,7 @@ local monster_chapter = {
},
[11040401]={
["monster_base"]=10002,
- ["atk"]=11869000,
+ ["atk"]=4277000,
["hp"]=884000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7520,7 +7520,7 @@ local monster_chapter = {
[11040501]={
["monster_base"]=20003,
["is_boss"]=1,
- ["atk"]=12782000,
+ ["atk"]=4606000,
["hp"]=1060800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7535,7 +7535,7 @@ local monster_chapter = {
},
[11040601]={
["monster_base"]=10004,
- ["atk"]=10043000,
+ ["atk"]=3619000,
["hp"]=972400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7547,7 +7547,7 @@ local monster_chapter = {
},
[11040701]={
["monster_base"]=10007,
- ["atk"]=10956000,
+ ["atk"]=3948000,
["hp"]=972400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7559,7 +7559,7 @@ local monster_chapter = {
},
[11040801]={
["monster_base"]=10005,
- ["atk"]=11869000,
+ ["atk"]=4277000,
["hp"]=1060800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7571,7 +7571,7 @@ local monster_chapter = {
},
[11040901]={
["monster_base"]=10002,
- ["atk"]=12782000,
+ ["atk"]=4606000,
["hp"]=1060800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7584,7 +7584,7 @@ local monster_chapter = {
[11041001]={
["monster_base"]=20004,
["is_boss"]=1,
- ["atk"]=13695000,
+ ["atk"]=4935000,
["hp"]=1414400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7599,7 +7599,7 @@ local monster_chapter = {
},
[11041101]={
["monster_base"]=10002,
- ["atk"]=10956000,
+ ["atk"]=3948000,
["hp"]=1149200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7611,7 +7611,7 @@ local monster_chapter = {
},
[11041201]={
["monster_base"]=10007,
- ["atk"]=11869000,
+ ["atk"]=4277000,
["hp"]=1326000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7623,7 +7623,7 @@ local monster_chapter = {
},
[11041301]={
["monster_base"]=10004,
- ["atk"]=12782000,
+ ["atk"]=4606000,
["hp"]=1326000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7635,7 +7635,7 @@ local monster_chapter = {
},
[11041401]={
["monster_base"]=10005,
- ["atk"]=13695000,
+ ["atk"]=4935000,
["hp"]=1326000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7648,7 +7648,7 @@ local monster_chapter = {
[11041501]={
["monster_base"]=30009,
["is_boss"]=2,
- ["atk"]=16434000,
+ ["atk"]=5922000,
["hp"]=1768000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -7668,7 +7668,7 @@ local monster_chapter = {
},
[11050101]={
["monster_base"]=10004,
- ["atk"]=9400000,
+ ["atk"]=3380000,
["hp"]=809600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7680,7 +7680,7 @@ local monster_chapter = {
},
[11050201]={
["monster_base"]=10002,
- ["atk"]=10340000,
+ ["atk"]=3718000,
["hp"]=1012000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7692,7 +7692,7 @@ local monster_chapter = {
},
[11050301]={
["monster_base"]=10007,
- ["atk"]=11280000,
+ ["atk"]=4056000,
["hp"]=1012000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7704,7 +7704,7 @@ local monster_chapter = {
},
[11050401]={
["monster_base"]=10005,
- ["atk"]=12220000,
+ ["atk"]=4394000,
["hp"]=1012000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7717,7 +7717,7 @@ local monster_chapter = {
[11050501]={
["monster_base"]=20001,
["is_boss"]=1,
- ["atk"]=13160000,
+ ["atk"]=4732000,
["hp"]=1214400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7735,7 +7735,7 @@ local monster_chapter = {
},
[11050601]={
["monster_base"]=10005,
- ["atk"]=10340000,
+ ["atk"]=3718000,
["hp"]=1113200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7747,7 +7747,7 @@ local monster_chapter = {
},
[11050701]={
["monster_base"]=10007,
- ["atk"]=11280000,
+ ["atk"]=4056000,
["hp"]=1113200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7759,7 +7759,7 @@ local monster_chapter = {
},
[11050801]={
["monster_base"]=10004,
- ["atk"]=12220000,
+ ["atk"]=4394000,
["hp"]=1214400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7771,7 +7771,7 @@ local monster_chapter = {
},
[11050901]={
["monster_base"]=10002,
- ["atk"]=13160000,
+ ["atk"]=4732000,
["hp"]=1214400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7784,7 +7784,7 @@ local monster_chapter = {
[11051001]={
["monster_base"]=20003,
["is_boss"]=1,
- ["atk"]=14100000,
+ ["atk"]=5070000,
["hp"]=1619200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7799,7 +7799,7 @@ local monster_chapter = {
},
[11051101]={
["monster_base"]=10002,
- ["atk"]=11280000,
+ ["atk"]=4056000,
["hp"]=1315600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7811,7 +7811,7 @@ local monster_chapter = {
},
[11051201]={
["monster_base"]=10005,
- ["atk"]=12220000,
+ ["atk"]=4394000,
["hp"]=1518000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7823,7 +7823,7 @@ local monster_chapter = {
},
[11051301]={
["monster_base"]=10007,
- ["atk"]=13160000,
+ ["atk"]=4732000,
["hp"]=1518000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7835,7 +7835,7 @@ local monster_chapter = {
},
[11051401]={
["monster_base"]=10004,
- ["atk"]=14100000,
+ ["atk"]=5070000,
["hp"]=1518000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7848,7 +7848,7 @@ local monster_chapter = {
[11051501]={
["monster_base"]=30009,
["is_boss"]=2,
- ["atk"]=16920000,
+ ["atk"]=6084000,
["hp"]=2024000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -7868,7 +7868,7 @@ local monster_chapter = {
},
[12010101]={
["monster_base"]=10001,
- ["atk"]=9670000,
+ ["atk"]=3480000,
["hp"]=912000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7880,7 +7880,7 @@ local monster_chapter = {
},
[12010201]={
["monster_base"]=10004,
- ["atk"]=10637000,
+ ["atk"]=3828000,
["hp"]=1140000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7892,7 +7892,7 @@ local monster_chapter = {
},
[12010301]={
["monster_base"]=10002,
- ["atk"]=11604000,
+ ["atk"]=4176000,
["hp"]=1140000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7904,7 +7904,7 @@ local monster_chapter = {
},
[12010401]={
["monster_base"]=10005,
- ["atk"]=12571000,
+ ["atk"]=4524000,
["hp"]=1140000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7917,7 +7917,7 @@ local monster_chapter = {
[12010501]={
["monster_base"]=20001,
["is_boss"]=1,
- ["atk"]=13538000,
+ ["atk"]=4872000,
["hp"]=1368000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7935,7 +7935,7 @@ local monster_chapter = {
},
[12010601]={
["monster_base"]=10001,
- ["atk"]=10637000,
+ ["atk"]=3828000,
["hp"]=1254000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7947,7 +7947,7 @@ local monster_chapter = {
},
[12010701]={
["monster_base"]=10005,
- ["atk"]=11604000,
+ ["atk"]=4176000,
["hp"]=1254000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7959,7 +7959,7 @@ local monster_chapter = {
},
[12010801]={
["monster_base"]=10002,
- ["atk"]=12571000,
+ ["atk"]=4524000,
["hp"]=1368000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7971,7 +7971,7 @@ local monster_chapter = {
},
[12010901]={
["monster_base"]=10003,
- ["atk"]=13538000,
+ ["atk"]=4872000,
["hp"]=1368000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7984,7 +7984,7 @@ local monster_chapter = {
[12011001]={
["monster_base"]=10004,
["is_boss"]=1,
- ["atk"]=14505000,
+ ["atk"]=5220000,
["hp"]=1824000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -7996,7 +7996,7 @@ local monster_chapter = {
},
[12011101]={
["monster_base"]=10003,
- ["atk"]=11604000,
+ ["atk"]=4176000,
["hp"]=1482000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8008,7 +8008,7 @@ local monster_chapter = {
},
[12011201]={
["monster_base"]=10002,
- ["atk"]=12571000,
+ ["atk"]=4524000,
["hp"]=1710000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8020,7 +8020,7 @@ local monster_chapter = {
},
[12011301]={
["monster_base"]=10005,
- ["atk"]=13538000,
+ ["atk"]=4872000,
["hp"]=1710000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8032,7 +8032,7 @@ local monster_chapter = {
},
[12011401]={
["monster_base"]=10001,
- ["atk"]=14505000,
+ ["atk"]=5220000,
["hp"]=1710000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8045,7 +8045,7 @@ local monster_chapter = {
[12011501]={
["monster_base"]=20007,
["is_boss"]=2,
- ["atk"]=17406000,
+ ["atk"]=6264000,
["hp"]=2280000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8060,7 +8060,7 @@ local monster_chapter = {
},
[12020101]={
["monster_base"]=10001,
- ["atk"]=9730000,
+ ["atk"]=3500000,
["hp"]=920000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8072,7 +8072,7 @@ local monster_chapter = {
},
[12020201]={
["monster_base"]=10005,
- ["atk"]=10703000,
+ ["atk"]=3850000,
["hp"]=1150000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8084,7 +8084,7 @@ local monster_chapter = {
},
[12020301]={
["monster_base"]=10002,
- ["atk"]=11676000,
+ ["atk"]=4200000,
["hp"]=1150000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8096,7 +8096,7 @@ local monster_chapter = {
},
[12020401]={
["monster_base"]=10003,
- ["atk"]=12649000,
+ ["atk"]=4550000,
["hp"]=1150000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8109,7 +8109,7 @@ local monster_chapter = {
[12020501]={
["monster_base"]=20001,
["is_boss"]=1,
- ["atk"]=13622000,
+ ["atk"]=4900000,
["hp"]=1380000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8127,7 +8127,7 @@ local monster_chapter = {
},
[12020601]={
["monster_base"]=10002,
- ["atk"]=10703000,
+ ["atk"]=3850000,
["hp"]=1265000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8139,7 +8139,7 @@ local monster_chapter = {
},
[12020701]={
["monster_base"]=10003,
- ["atk"]=11676000,
+ ["atk"]=4200000,
["hp"]=1265000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8151,7 +8151,7 @@ local monster_chapter = {
},
[12020801]={
["monster_base"]=10004,
- ["atk"]=12649000,
+ ["atk"]=4550000,
["hp"]=1380000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8163,7 +8163,7 @@ local monster_chapter = {
},
[12020901]={
["monster_base"]=10001,
- ["atk"]=13622000,
+ ["atk"]=4900000,
["hp"]=1380000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8176,7 +8176,7 @@ local monster_chapter = {
[12021001]={
["monster_base"]=20002,
["is_boss"]=1,
- ["atk"]=14595000,
+ ["atk"]=5250000,
["hp"]=1840000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8191,7 +8191,7 @@ local monster_chapter = {
},
[12021101]={
["monster_base"]=10001,
- ["atk"]=11676000,
+ ["atk"]=4200000,
["hp"]=1495000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8203,7 +8203,7 @@ local monster_chapter = {
},
[12021201]={
["monster_base"]=10004,
- ["atk"]=12649000,
+ ["atk"]=4550000,
["hp"]=1725000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8215,7 +8215,7 @@ local monster_chapter = {
},
[12021301]={
["monster_base"]=10002,
- ["atk"]=13622000,
+ ["atk"]=4900000,
["hp"]=1725000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8227,7 +8227,7 @@ local monster_chapter = {
},
[12021401]={
["monster_base"]=10005,
- ["atk"]=14595000,
+ ["atk"]=5250000,
["hp"]=1725000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8240,7 +8240,7 @@ local monster_chapter = {
[12021501]={
["monster_base"]=20008,
["is_boss"]=2,
- ["atk"]=17514000,
+ ["atk"]=6300000,
["hp"]=2300000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8255,7 +8255,7 @@ local monster_chapter = {
},
[12030101]={
["monster_base"]=10003,
- ["atk"]=9780000,
+ ["atk"]=3520000,
["hp"]=926400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8267,7 +8267,7 @@ local monster_chapter = {
},
[12030201]={
["monster_base"]=10004,
- ["atk"]=10758000,
+ ["atk"]=3872000,
["hp"]=1158000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8279,7 +8279,7 @@ local monster_chapter = {
},
[12030301]={
["monster_base"]=10002,
- ["atk"]=11736000,
+ ["atk"]=4224000,
["hp"]=1158000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8291,7 +8291,7 @@ local monster_chapter = {
},
[12030401]={
["monster_base"]=10001,
- ["atk"]=12714000,
+ ["atk"]=4576000,
["hp"]=1158000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8304,7 +8304,7 @@ local monster_chapter = {
[12030501]={
["monster_base"]=20002,
["is_boss"]=1,
- ["atk"]=13692000,
+ ["atk"]=4928000,
["hp"]=1389600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8319,7 +8319,7 @@ local monster_chapter = {
},
[12030601]={
["monster_base"]=10001,
- ["atk"]=10758000,
+ ["atk"]=3872000,
["hp"]=1273800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8331,7 +8331,7 @@ local monster_chapter = {
},
[12030701]={
["monster_base"]=10004,
- ["atk"]=11736000,
+ ["atk"]=4224000,
["hp"]=1273800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8343,7 +8343,7 @@ local monster_chapter = {
},
[12030801]={
["monster_base"]=10002,
- ["atk"]=12714000,
+ ["atk"]=4576000,
["hp"]=1389600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8355,7 +8355,7 @@ local monster_chapter = {
},
[12030901]={
["monster_base"]=10005,
- ["atk"]=13692000,
+ ["atk"]=4928000,
["hp"]=1389600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8368,7 +8368,7 @@ local monster_chapter = {
[12031001]={
["monster_base"]=20007,
["is_boss"]=1,
- ["atk"]=14670000,
+ ["atk"]=5280000,
["hp"]=1852800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8383,7 +8383,7 @@ local monster_chapter = {
},
[12031101]={
["monster_base"]=10003,
- ["atk"]=11736000,
+ ["atk"]=4224000,
["hp"]=1505400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8395,7 +8395,7 @@ local monster_chapter = {
},
[12031201]={
["monster_base"]=10002,
- ["atk"]=12714000,
+ ["atk"]=4576000,
["hp"]=1737000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8407,7 +8407,7 @@ local monster_chapter = {
},
[12031301]={
["monster_base"]=10005,
- ["atk"]=13692000,
+ ["atk"]=4928000,
["hp"]=1737000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8419,7 +8419,7 @@ local monster_chapter = {
},
[12031401]={
["monster_base"]=10001,
- ["atk"]=14670000,
+ ["atk"]=5280000,
["hp"]=1737000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8432,7 +8432,7 @@ local monster_chapter = {
[12031501]={
["monster_base"]=30008,
["is_boss"]=2,
- ["atk"]=17604000,
+ ["atk"]=6336000,
["hp"]=2316000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -8452,7 +8452,7 @@ local monster_chapter = {
},
[12040101]={
["monster_base"]=10001,
- ["atk"]=9830000,
+ ["atk"]=3540000,
["hp"]=934400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8464,7 +8464,7 @@ local monster_chapter = {
},
[12040201]={
["monster_base"]=10005,
- ["atk"]=10813000,
+ ["atk"]=3894000,
["hp"]=1168000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8476,7 +8476,7 @@ local monster_chapter = {
},
[12040301]={
["monster_base"]=10002,
- ["atk"]=11796000,
+ ["atk"]=4248000,
["hp"]=1168000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8488,7 +8488,7 @@ local monster_chapter = {
},
[12040401]={
["monster_base"]=10003,
- ["atk"]=12779000,
+ ["atk"]=4602000,
["hp"]=1168000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8501,7 +8501,7 @@ local monster_chapter = {
[12040501]={
["monster_base"]=20002,
["is_boss"]=1,
- ["atk"]=13762000,
+ ["atk"]=4956000,
["hp"]=1401600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8516,7 +8516,7 @@ local monster_chapter = {
},
[12040601]={
["monster_base"]=10002,
- ["atk"]=10813000,
+ ["atk"]=3894000,
["hp"]=1284800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8528,7 +8528,7 @@ local monster_chapter = {
},
[12040701]={
["monster_base"]=10004,
- ["atk"]=11796000,
+ ["atk"]=4248000,
["hp"]=1284800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8540,7 +8540,7 @@ local monster_chapter = {
},
[12040801]={
["monster_base"]=10003,
- ["atk"]=12779000,
+ ["atk"]=4602000,
["hp"]=1401600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8552,7 +8552,7 @@ local monster_chapter = {
},
[12040901]={
["monster_base"]=10005,
- ["atk"]=13762000,
+ ["atk"]=4956000,
["hp"]=1401600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8565,7 +8565,7 @@ local monster_chapter = {
[12041001]={
["monster_base"]=20008,
["is_boss"]=1,
- ["atk"]=14745000,
+ ["atk"]=5310000,
["hp"]=1868800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8580,7 +8580,7 @@ local monster_chapter = {
},
[12041101]={
["monster_base"]=10004,
- ["atk"]=11796000,
+ ["atk"]=4248000,
["hp"]=1518400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8592,7 +8592,7 @@ local monster_chapter = {
},
[12041201]={
["monster_base"]=10001,
- ["atk"]=12779000,
+ ["atk"]=4602000,
["hp"]=1752000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8604,7 +8604,7 @@ local monster_chapter = {
},
[12041301]={
["monster_base"]=10005,
- ["atk"]=13762000,
+ ["atk"]=4956000,
["hp"]=1752000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8616,7 +8616,7 @@ local monster_chapter = {
},
[12041401]={
["monster_base"]=10003,
- ["atk"]=14745000,
+ ["atk"]=5310000,
["hp"]=1752000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8629,7 +8629,7 @@ local monster_chapter = {
[12041501]={
["monster_base"]=30008,
["is_boss"]=2,
- ["atk"]=17694000,
+ ["atk"]=6372000,
["hp"]=2336000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -8649,7 +8649,7 @@ local monster_chapter = {
},
[12050101]={
["monster_base"]=10002,
- ["atk"]=10170000,
+ ["atk"]=3660000,
["hp"]=979200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8661,7 +8661,7 @@ local monster_chapter = {
},
[12050201]={
["monster_base"]=10003,
- ["atk"]=11187000,
+ ["atk"]=4026000,
["hp"]=1224000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8673,7 +8673,7 @@ local monster_chapter = {
},
[12050301]={
["monster_base"]=10004,
- ["atk"]=12204000,
+ ["atk"]=4392000,
["hp"]=1224000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8685,7 +8685,7 @@ local monster_chapter = {
},
[12050401]={
["monster_base"]=10001,
- ["atk"]=13221000,
+ ["atk"]=4758000,
["hp"]=1224000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8698,7 +8698,7 @@ local monster_chapter = {
[12050501]={
["monster_base"]=20007,
["is_boss"]=1,
- ["atk"]=14238000,
+ ["atk"]=5124000,
["hp"]=1468800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8713,7 +8713,7 @@ local monster_chapter = {
},
[12050601]={
["monster_base"]=10001,
- ["atk"]=11187000,
+ ["atk"]=4026000,
["hp"]=1346400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8725,7 +8725,7 @@ local monster_chapter = {
},
[12050701]={
["monster_base"]=10005,
- ["atk"]=12204000,
+ ["atk"]=4392000,
["hp"]=1346400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8737,7 +8737,7 @@ local monster_chapter = {
},
[12050801]={
["monster_base"]=10002,
- ["atk"]=13221000,
+ ["atk"]=4758000,
["hp"]=1468800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8749,7 +8749,7 @@ local monster_chapter = {
},
[12050901]={
["monster_base"]=10003,
- ["atk"]=14238000,
+ ["atk"]=5124000,
["hp"]=1468800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8762,7 +8762,7 @@ local monster_chapter = {
[12051001]={
["monster_base"]=20008,
["is_boss"]=1,
- ["atk"]=15255000,
+ ["atk"]=5490000,
["hp"]=1958400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8777,7 +8777,7 @@ local monster_chapter = {
},
[12051101]={
["monster_base"]=10003,
- ["atk"]=12204000,
+ ["atk"]=4392000,
["hp"]=1591200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8789,7 +8789,7 @@ local monster_chapter = {
},
[12051201]={
["monster_base"]=10004,
- ["atk"]=13221000,
+ ["atk"]=4758000,
["hp"]=1836000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8801,7 +8801,7 @@ local monster_chapter = {
},
[12051301]={
["monster_base"]=10002,
- ["atk"]=14238000,
+ ["atk"]=5124000,
["hp"]=1836000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8813,7 +8813,7 @@ local monster_chapter = {
},
[12051401]={
["monster_base"]=10001,
- ["atk"]=15255000,
+ ["atk"]=5490000,
["hp"]=1836000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8826,7 +8826,7 @@ local monster_chapter = {
[12051501]={
["monster_base"]=30008,
["is_boss"]=2,
- ["atk"]=18306000,
+ ["atk"]=6588000,
["hp"]=2448000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -8846,7 +8846,7 @@ local monster_chapter = {
},
[13010101]={
["monster_base"]=10008,
- ["atk"]=10500000,
+ ["atk"]=3780000,
["hp"]=1024000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8858,7 +8858,7 @@ local monster_chapter = {
},
[13010201]={
["monster_base"]=10014,
- ["atk"]=11550000,
+ ["atk"]=4158000,
["hp"]=1280000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8870,7 +8870,7 @@ local monster_chapter = {
},
[13010301]={
["monster_base"]=10007,
- ["atk"]=12600000,
+ ["atk"]=4536000,
["hp"]=1280000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8882,7 +8882,7 @@ local monster_chapter = {
},
[13010401]={
["monster_base"]=10019,
- ["atk"]=13650000,
+ ["atk"]=4914000,
["hp"]=1280000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8895,7 +8895,7 @@ local monster_chapter = {
[13010501]={
["monster_base"]=20004,
["is_boss"]=1,
- ["atk"]=14700000,
+ ["atk"]=5292000,
["hp"]=1536000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8910,7 +8910,7 @@ local monster_chapter = {
},
[13010601]={
["monster_base"]=10008,
- ["atk"]=11550000,
+ ["atk"]=4158000,
["hp"]=1408000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8922,7 +8922,7 @@ local monster_chapter = {
},
[13010701]={
["monster_base"]=10019,
- ["atk"]=12600000,
+ ["atk"]=4536000,
["hp"]=1408000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8934,7 +8934,7 @@ local monster_chapter = {
},
[13010801]={
["monster_base"]=10007,
- ["atk"]=13650000,
+ ["atk"]=4914000,
["hp"]=1536000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8946,7 +8946,7 @@ local monster_chapter = {
},
[13010901]={
["monster_base"]=10006,
- ["atk"]=14700000,
+ ["atk"]=5292000,
["hp"]=1536000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8959,7 +8959,7 @@ local monster_chapter = {
[13011001]={
["monster_base"]=20003,
["is_boss"]=1,
- ["atk"]=15750000,
+ ["atk"]=5670000,
["hp"]=2048000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8974,7 +8974,7 @@ local monster_chapter = {
},
[13011101]={
["monster_base"]=10006,
- ["atk"]=12600000,
+ ["atk"]=4536000,
["hp"]=1664000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8986,7 +8986,7 @@ local monster_chapter = {
},
[13011201]={
["monster_base"]=10007,
- ["atk"]=13650000,
+ ["atk"]=4914000,
["hp"]=1920000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -8998,7 +8998,7 @@ local monster_chapter = {
},
[13011301]={
["monster_base"]=10019,
- ["atk"]=14700000,
+ ["atk"]=5292000,
["hp"]=1920000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9010,7 +9010,7 @@ local monster_chapter = {
},
[13011401]={
["monster_base"]=10008,
- ["atk"]=15750000,
+ ["atk"]=5670000,
["hp"]=1920000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9023,7 +9023,7 @@ local monster_chapter = {
[13011501]={
["monster_base"]=20006,
["is_boss"]=2,
- ["atk"]=18900000,
+ ["atk"]=6804000,
["hp"]=2560000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9038,7 +9038,7 @@ local monster_chapter = {
},
[13020101]={
["monster_base"]=10008,
- ["atk"]=10520000,
+ ["atk"]=3790000,
["hp"]=1044800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9050,7 +9050,7 @@ local monster_chapter = {
},
[13020201]={
["monster_base"]=10019,
- ["atk"]=11572000,
+ ["atk"]=4169000,
["hp"]=1306000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9062,7 +9062,7 @@ local monster_chapter = {
},
[13020301]={
["monster_base"]=10007,
- ["atk"]=12624000,
+ ["atk"]=4548000,
["hp"]=1306000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9074,7 +9074,7 @@ local monster_chapter = {
},
[13020401]={
["monster_base"]=10006,
- ["atk"]=13676000,
+ ["atk"]=4927000,
["hp"]=1306000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9087,7 +9087,7 @@ local monster_chapter = {
[13020501]={
["monster_base"]=20004,
["is_boss"]=1,
- ["atk"]=14728000,
+ ["atk"]=5306000,
["hp"]=1567200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9102,7 +9102,7 @@ local monster_chapter = {
},
[13020601]={
["monster_base"]=10007,
- ["atk"]=11572000,
+ ["atk"]=4169000,
["hp"]=1436600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9114,7 +9114,7 @@ local monster_chapter = {
},
[13020701]={
["monster_base"]=10006,
- ["atk"]=12624000,
+ ["atk"]=4548000,
["hp"]=1436600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9126,7 +9126,7 @@ local monster_chapter = {
},
[13020801]={
["monster_base"]=10014,
- ["atk"]=13676000,
+ ["atk"]=4927000,
["hp"]=1567200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9138,7 +9138,7 @@ local monster_chapter = {
},
[13020901]={
["monster_base"]=10008,
- ["atk"]=14728000,
+ ["atk"]=5306000,
["hp"]=1567200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9151,7 +9151,7 @@ local monster_chapter = {
[13021001]={
["monster_base"]=20006,
["is_boss"]=1,
- ["atk"]=15780000,
+ ["atk"]=5685000,
["hp"]=2089600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9166,7 +9166,7 @@ local monster_chapter = {
},
[13021101]={
["monster_base"]=10008,
- ["atk"]=12624000,
+ ["atk"]=4548000,
["hp"]=1697800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9178,7 +9178,7 @@ local monster_chapter = {
},
[13021201]={
["monster_base"]=10014,
- ["atk"]=13676000,
+ ["atk"]=4927000,
["hp"]=1959000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9190,7 +9190,7 @@ local monster_chapter = {
},
[13021301]={
["monster_base"]=10007,
- ["atk"]=14728000,
+ ["atk"]=5306000,
["hp"]=1959000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9202,7 +9202,7 @@ local monster_chapter = {
},
[13021401]={
["monster_base"]=10019,
- ["atk"]=15780000,
+ ["atk"]=5685000,
["hp"]=1959000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9215,7 +9215,7 @@ local monster_chapter = {
[13021501]={
["monster_base"]=20008,
["is_boss"]=2,
- ["atk"]=18936000,
+ ["atk"]=6822000,
["hp"]=2612000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9230,7 +9230,7 @@ local monster_chapter = {
},
[13030101]={
["monster_base"]=10006,
- ["atk"]=10550000,
+ ["atk"]=3800000,
["hp"]=1064000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9242,7 +9242,7 @@ local monster_chapter = {
},
[13030201]={
["monster_base"]=10014,
- ["atk"]=11605000,
+ ["atk"]=4180000,
["hp"]=1330000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9254,7 +9254,7 @@ local monster_chapter = {
},
[13030301]={
["monster_base"]=10007,
- ["atk"]=12660000,
+ ["atk"]=4560000,
["hp"]=1330000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9266,7 +9266,7 @@ local monster_chapter = {
},
[13030401]={
["monster_base"]=10008,
- ["atk"]=13715000,
+ ["atk"]=4940000,
["hp"]=1330000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9279,7 +9279,7 @@ local monster_chapter = {
[13030501]={
["monster_base"]=20003,
["is_boss"]=1,
- ["atk"]=14770000,
+ ["atk"]=5320000,
["hp"]=1596000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9294,7 +9294,7 @@ local monster_chapter = {
},
[13030601]={
["monster_base"]=10008,
- ["atk"]=11605000,
+ ["atk"]=4180000,
["hp"]=1463000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9306,7 +9306,7 @@ local monster_chapter = {
},
[13030701]={
["monster_base"]=10014,
- ["atk"]=12660000,
+ ["atk"]=4560000,
["hp"]=1463000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9318,7 +9318,7 @@ local monster_chapter = {
},
[13030801]={
["monster_base"]=10007,
- ["atk"]=13715000,
+ ["atk"]=4940000,
["hp"]=1596000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9330,7 +9330,7 @@ local monster_chapter = {
},
[13030901]={
["monster_base"]=10019,
- ["atk"]=14770000,
+ ["atk"]=5320000,
["hp"]=1596000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9343,7 +9343,7 @@ local monster_chapter = {
[13031001]={
["monster_base"]=20006,
["is_boss"]=1,
- ["atk"]=15825000,
+ ["atk"]=5700000,
["hp"]=2128000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9358,7 +9358,7 @@ local monster_chapter = {
},
[13031101]={
["monster_base"]=10006,
- ["atk"]=12660000,
+ ["atk"]=4560000,
["hp"]=1729000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9370,7 +9370,7 @@ local monster_chapter = {
},
[13031201]={
["monster_base"]=10007,
- ["atk"]=13715000,
+ ["atk"]=4940000,
["hp"]=1995000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9382,7 +9382,7 @@ local monster_chapter = {
},
[13031301]={
["monster_base"]=10019,
- ["atk"]=14770000,
+ ["atk"]=5320000,
["hp"]=1995000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9394,7 +9394,7 @@ local monster_chapter = {
},
[13031401]={
["monster_base"]=10008,
- ["atk"]=15825000,
+ ["atk"]=5700000,
["hp"]=1995000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9407,7 +9407,7 @@ local monster_chapter = {
[13031501]={
["monster_base"]=30010,
["is_boss"]=2,
- ["atk"]=18990000,
+ ["atk"]=6840000,
["hp"]=2660000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -9427,7 +9427,7 @@ local monster_chapter = {
},
[13040101]={
["monster_base"]=10008,
- ["atk"]=10570000,
+ ["atk"]=3800000,
["hp"]=1084800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9439,7 +9439,7 @@ local monster_chapter = {
},
[13040201]={
["monster_base"]=10019,
- ["atk"]=11627000,
+ ["atk"]=4180000,
["hp"]=1356000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9451,7 +9451,7 @@ local monster_chapter = {
},
[13040301]={
["monster_base"]=10007,
- ["atk"]=12684000,
+ ["atk"]=4560000,
["hp"]=1356000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9463,7 +9463,7 @@ local monster_chapter = {
},
[13040401]={
["monster_base"]=10006,
- ["atk"]=13741000,
+ ["atk"]=4940000,
["hp"]=1356000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9476,7 +9476,7 @@ local monster_chapter = {
[13040501]={
["monster_base"]=20004,
["is_boss"]=1,
- ["atk"]=14798000,
+ ["atk"]=5320000,
["hp"]=1627200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9491,7 +9491,7 @@ local monster_chapter = {
},
[13040601]={
["monster_base"]=10007,
- ["atk"]=11627000,
+ ["atk"]=4180000,
["hp"]=1491600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9503,7 +9503,7 @@ local monster_chapter = {
},
[13040701]={
["monster_base"]=10014,
- ["atk"]=12684000,
+ ["atk"]=4560000,
["hp"]=1491600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9515,7 +9515,7 @@ local monster_chapter = {
},
[13040801]={
["monster_base"]=10006,
- ["atk"]=13741000,
+ ["atk"]=4940000,
["hp"]=1627200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9527,7 +9527,7 @@ local monster_chapter = {
},
[13040901]={
["monster_base"]=10019,
- ["atk"]=14798000,
+ ["atk"]=5320000,
["hp"]=1627200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9540,7 +9540,7 @@ local monster_chapter = {
[13041001]={
["monster_base"]=20008,
["is_boss"]=1,
- ["atk"]=15855000,
+ ["atk"]=5700000,
["hp"]=2169600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9555,7 +9555,7 @@ local monster_chapter = {
},
[13041101]={
["monster_base"]=10014,
- ["atk"]=12684000,
+ ["atk"]=4560000,
["hp"]=1762800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9567,7 +9567,7 @@ local monster_chapter = {
},
[13041201]={
["monster_base"]=10008,
- ["atk"]=13741000,
+ ["atk"]=4940000,
["hp"]=2034000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9579,7 +9579,7 @@ local monster_chapter = {
},
[13041301]={
["monster_base"]=10019,
- ["atk"]=14798000,
+ ["atk"]=5320000,
["hp"]=2034000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9591,7 +9591,7 @@ local monster_chapter = {
},
[13041401]={
["monster_base"]=10006,
- ["atk"]=15855000,
+ ["atk"]=5700000,
["hp"]=2034000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9604,7 +9604,7 @@ local monster_chapter = {
[13041501]={
["monster_base"]=30010,
["is_boss"]=2,
- ["atk"]=19026000,
+ ["atk"]=6840000,
["hp"]=2712000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -9624,7 +9624,7 @@ local monster_chapter = {
},
[13050101]={
["monster_base"]=10007,
- ["atk"]=10700000,
+ ["atk"]=3850000,
["hp"]=1206400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9636,7 +9636,7 @@ local monster_chapter = {
},
[13050201]={
["monster_base"]=10006,
- ["atk"]=11770000,
+ ["atk"]=4235000,
["hp"]=1508000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9648,7 +9648,7 @@ local monster_chapter = {
},
[13050301]={
["monster_base"]=10014,
- ["atk"]=12840000,
+ ["atk"]=4620000,
["hp"]=1508000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9660,7 +9660,7 @@ local monster_chapter = {
},
[13050401]={
["monster_base"]=10008,
- ["atk"]=13910000,
+ ["atk"]=5005000,
["hp"]=1508000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9673,7 +9673,7 @@ local monster_chapter = {
[13050501]={
["monster_base"]=20006,
["is_boss"]=1,
- ["atk"]=14980000,
+ ["atk"]=5390000,
["hp"]=1809600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9688,7 +9688,7 @@ local monster_chapter = {
},
[13050601]={
["monster_base"]=10008,
- ["atk"]=11770000,
+ ["atk"]=4235000,
["hp"]=1658800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9700,7 +9700,7 @@ local monster_chapter = {
},
[13050701]={
["monster_base"]=10019,
- ["atk"]=12840000,
+ ["atk"]=4620000,
["hp"]=1658800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9712,7 +9712,7 @@ local monster_chapter = {
},
[13050801]={
["monster_base"]=10007,
- ["atk"]=13910000,
+ ["atk"]=5005000,
["hp"]=1809600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9724,7 +9724,7 @@ local monster_chapter = {
},
[13050901]={
["monster_base"]=10006,
- ["atk"]=14980000,
+ ["atk"]=5390000,
["hp"]=1809600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9737,7 +9737,7 @@ local monster_chapter = {
[13051001]={
["monster_base"]=20008,
["is_boss"]=1,
- ["atk"]=16050000,
+ ["atk"]=5775000,
["hp"]=2412800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9752,7 +9752,7 @@ local monster_chapter = {
},
[13051101]={
["monster_base"]=10006,
- ["atk"]=12840000,
+ ["atk"]=4620000,
["hp"]=1960400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9764,7 +9764,7 @@ local monster_chapter = {
},
[13051201]={
["monster_base"]=10014,
- ["atk"]=13910000,
+ ["atk"]=5005000,
["hp"]=2262000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9776,7 +9776,7 @@ local monster_chapter = {
},
[13051301]={
["monster_base"]=10007,
- ["atk"]=14980000,
+ ["atk"]=5390000,
["hp"]=2262000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9788,7 +9788,7 @@ local monster_chapter = {
},
[13051401]={
["monster_base"]=10008,
- ["atk"]=16050000,
+ ["atk"]=5775000,
["hp"]=2262000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9801,7 +9801,7 @@ local monster_chapter = {
[13051501]={
["monster_base"]=30010,
["is_boss"]=2,
- ["atk"]=19260000,
+ ["atk"]=6930000,
["hp"]=3016000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -9821,7 +9821,7 @@ local monster_chapter = {
},
[14010101]={
["monster_base"]=10010,
- ["atk"]=10830000,
+ ["atk"]=3900000,
["hp"]=1328000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9833,7 +9833,7 @@ local monster_chapter = {
},
[14010201]={
["monster_base"]=10016,
- ["atk"]=11913000,
+ ["atk"]=4290000,
["hp"]=1660000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9845,7 +9845,7 @@ local monster_chapter = {
},
[14010301]={
["monster_base"]=10011,
- ["atk"]=12996000,
+ ["atk"]=4680000,
["hp"]=1660000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9857,7 +9857,7 @@ local monster_chapter = {
},
[14010401]={
["monster_base"]=10018,
- ["atk"]=14079000,
+ ["atk"]=5070000,
["hp"]=1660000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9870,7 +9870,7 @@ local monster_chapter = {
[14010501]={
["monster_base"]=20001,
["is_boss"]=1,
- ["atk"]=15162000,
+ ["atk"]=5460000,
["hp"]=1992000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9888,7 +9888,7 @@ local monster_chapter = {
},
[14010601]={
["monster_base"]=10010,
- ["atk"]=11913000,
+ ["atk"]=4290000,
["hp"]=1826000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9900,7 +9900,7 @@ local monster_chapter = {
},
[14010701]={
["monster_base"]=10018,
- ["atk"]=12996000,
+ ["atk"]=4680000,
["hp"]=1826000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9912,7 +9912,7 @@ local monster_chapter = {
},
[14010801]={
["monster_base"]=10011,
- ["atk"]=14079000,
+ ["atk"]=5070000,
["hp"]=1992000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9924,7 +9924,7 @@ local monster_chapter = {
},
[14010901]={
["monster_base"]=10009,
- ["atk"]=15162000,
+ ["atk"]=5460000,
["hp"]=1992000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9937,7 +9937,7 @@ local monster_chapter = {
[14011001]={
["monster_base"]=20002,
["is_boss"]=1,
- ["atk"]=16245000,
+ ["atk"]=5850000,
["hp"]=2656000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9952,7 +9952,7 @@ local monster_chapter = {
},
[14011101]={
["monster_base"]=10009,
- ["atk"]=12996000,
+ ["atk"]=4680000,
["hp"]=2158000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9964,7 +9964,7 @@ local monster_chapter = {
},
[14011201]={
["monster_base"]=10011,
- ["atk"]=14079000,
+ ["atk"]=5070000,
["hp"]=2490000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9976,7 +9976,7 @@ local monster_chapter = {
},
[14011301]={
["monster_base"]=10018,
- ["atk"]=15162000,
+ ["atk"]=5460000,
["hp"]=2490000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -9988,7 +9988,7 @@ local monster_chapter = {
},
[14011401]={
["monster_base"]=10010,
- ["atk"]=16245000,
+ ["atk"]=5850000,
["hp"]=2490000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10001,7 +10001,7 @@ local monster_chapter = {
[14011501]={
["monster_base"]=20007,
["is_boss"]=2,
- ["atk"]=19494000,
+ ["atk"]=7020000,
["hp"]=3320000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10016,7 +10016,7 @@ local monster_chapter = {
},
[14020101]={
["monster_base"]=10010,
- ["atk"]=10880000,
+ ["atk"]=3920000,
["hp"]=1340800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10028,7 +10028,7 @@ local monster_chapter = {
},
[14020201]={
["monster_base"]=10018,
- ["atk"]=11968000,
+ ["atk"]=4312000,
["hp"]=1676000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10040,7 +10040,7 @@ local monster_chapter = {
},
[14020301]={
["monster_base"]=10011,
- ["atk"]=13056000,
+ ["atk"]=4704000,
["hp"]=1676000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10052,7 +10052,7 @@ local monster_chapter = {
},
[14020401]={
["monster_base"]=10009,
- ["atk"]=14144000,
+ ["atk"]=5096000,
["hp"]=1676000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10065,7 +10065,7 @@ local monster_chapter = {
[14020501]={
["monster_base"]=20001,
["is_boss"]=1,
- ["atk"]=15232000,
+ ["atk"]=5488000,
["hp"]=2011200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10083,7 +10083,7 @@ local monster_chapter = {
},
[14020601]={
["monster_base"]=10011,
- ["atk"]=11968000,
+ ["atk"]=4312000,
["hp"]=1843600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10095,7 +10095,7 @@ local monster_chapter = {
},
[14020701]={
["monster_base"]=10009,
- ["atk"]=13056000,
+ ["atk"]=4704000,
["hp"]=1843600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10107,7 +10107,7 @@ local monster_chapter = {
},
[14020801]={
["monster_base"]=10016,
- ["atk"]=14144000,
+ ["atk"]=5096000,
["hp"]=2011200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10119,7 +10119,7 @@ local monster_chapter = {
},
[14020901]={
["monster_base"]=10010,
- ["atk"]=15232000,
+ ["atk"]=5488000,
["hp"]=2011200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10132,7 +10132,7 @@ local monster_chapter = {
[14021001]={
["monster_base"]=20007,
["is_boss"]=1,
- ["atk"]=16320000,
+ ["atk"]=5880000,
["hp"]=2681600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10147,7 +10147,7 @@ local monster_chapter = {
},
[14021101]={
["monster_base"]=10010,
- ["atk"]=13056000,
+ ["atk"]=4704000,
["hp"]=2178800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10159,7 +10159,7 @@ local monster_chapter = {
},
[14021201]={
["monster_base"]=10016,
- ["atk"]=14144000,
+ ["atk"]=5096000,
["hp"]=2514000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10171,7 +10171,7 @@ local monster_chapter = {
},
[14021301]={
["monster_base"]=10011,
- ["atk"]=15232000,
+ ["atk"]=5488000,
["hp"]=2514000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10183,7 +10183,7 @@ local monster_chapter = {
},
[14021401]={
["monster_base"]=10018,
- ["atk"]=16320000,
+ ["atk"]=5880000,
["hp"]=2514000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10196,7 +10196,7 @@ local monster_chapter = {
[14021501]={
["monster_base"]=20005,
["is_boss"]=2,
- ["atk"]=19584000,
+ ["atk"]=7056000,
["hp"]=3352000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10211,7 +10211,7 @@ local monster_chapter = {
},
[14030101]={
["monster_base"]=10009,
- ["atk"]=10920000,
+ ["atk"]=3930000,
["hp"]=1350400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10223,7 +10223,7 @@ local monster_chapter = {
},
[14030201]={
["monster_base"]=10016,
- ["atk"]=12012000,
+ ["atk"]=4323000,
["hp"]=1688000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10235,7 +10235,7 @@ local monster_chapter = {
},
[14030301]={
["monster_base"]=10011,
- ["atk"]=13104000,
+ ["atk"]=4716000,
["hp"]=1688000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10247,7 +10247,7 @@ local monster_chapter = {
},
[14030401]={
["monster_base"]=10010,
- ["atk"]=14196000,
+ ["atk"]=5109000,
["hp"]=1688000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10260,7 +10260,7 @@ local monster_chapter = {
[14030501]={
["monster_base"]=20002,
["is_boss"]=1,
- ["atk"]=15288000,
+ ["atk"]=5502000,
["hp"]=2025600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10275,7 +10275,7 @@ local monster_chapter = {
},
[14030601]={
["monster_base"]=10010,
- ["atk"]=12012000,
+ ["atk"]=4323000,
["hp"]=1856800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10287,7 +10287,7 @@ local monster_chapter = {
},
[14030701]={
["monster_base"]=10016,
- ["atk"]=13104000,
+ ["atk"]=4716000,
["hp"]=1856800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10299,7 +10299,7 @@ local monster_chapter = {
},
[14030801]={
["monster_base"]=10011,
- ["atk"]=14196000,
+ ["atk"]=5109000,
["hp"]=2025600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10311,7 +10311,7 @@ local monster_chapter = {
},
[14030901]={
["monster_base"]=10018,
- ["atk"]=15288000,
+ ["atk"]=5502000,
["hp"]=2025600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10324,7 +10324,7 @@ local monster_chapter = {
[14031001]={
["monster_base"]=20007,
["is_boss"]=1,
- ["atk"]=16380000,
+ ["atk"]=5895000,
["hp"]=2700800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10339,7 +10339,7 @@ local monster_chapter = {
},
[14031101]={
["monster_base"]=10009,
- ["atk"]=13104000,
+ ["atk"]=4716000,
["hp"]=2194400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10351,7 +10351,7 @@ local monster_chapter = {
},
[14031201]={
["monster_base"]=10011,
- ["atk"]=14196000,
+ ["atk"]=5109000,
["hp"]=2532000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10363,7 +10363,7 @@ local monster_chapter = {
},
[14031301]={
["monster_base"]=10018,
- ["atk"]=15288000,
+ ["atk"]=5502000,
["hp"]=2532000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10375,7 +10375,7 @@ local monster_chapter = {
},
[14031401]={
["monster_base"]=10010,
- ["atk"]=16380000,
+ ["atk"]=5895000,
["hp"]=2532000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10388,7 +10388,7 @@ local monster_chapter = {
[14031501]={
["monster_base"]=30001,
["is_boss"]=2,
- ["atk"]=19656000,
+ ["atk"]=7074000,
["hp"]=3376000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -10408,7 +10408,7 @@ local monster_chapter = {
},
[14040101]={
["monster_base"]=10010,
- ["atk"]=10970000,
+ ["atk"]=3950000,
["hp"]=1363200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10420,7 +10420,7 @@ local monster_chapter = {
},
[14040201]={
["monster_base"]=10018,
- ["atk"]=12067000,
+ ["atk"]=4345000,
["hp"]=1704000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10432,7 +10432,7 @@ local monster_chapter = {
},
[14040301]={
["monster_base"]=10011,
- ["atk"]=13164000,
+ ["atk"]=4740000,
["hp"]=1704000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10444,7 +10444,7 @@ local monster_chapter = {
},
[14040401]={
["monster_base"]=10009,
- ["atk"]=14261000,
+ ["atk"]=5135000,
["hp"]=1704000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10457,7 +10457,7 @@ local monster_chapter = {
[14040501]={
["monster_base"]=20001,
["is_boss"]=1,
- ["atk"]=15358000,
+ ["atk"]=5530000,
["hp"]=2044800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10475,7 +10475,7 @@ local monster_chapter = {
},
[14040601]={
["monster_base"]=10011,
- ["atk"]=12067000,
+ ["atk"]=4345000,
["hp"]=1874400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10487,7 +10487,7 @@ local monster_chapter = {
},
[14040701]={
["monster_base"]=10016,
- ["atk"]=13164000,
+ ["atk"]=4740000,
["hp"]=1874400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10499,7 +10499,7 @@ local monster_chapter = {
},
[14040801]={
["monster_base"]=10009,
- ["atk"]=14261000,
+ ["atk"]=5135000,
["hp"]=2044800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10511,7 +10511,7 @@ local monster_chapter = {
},
[14040901]={
["monster_base"]=10018,
- ["atk"]=15358000,
+ ["atk"]=5530000,
["hp"]=2044800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10524,7 +10524,7 @@ local monster_chapter = {
[14041001]={
["monster_base"]=20005,
["is_boss"]=1,
- ["atk"]=16455000,
+ ["atk"]=5925000,
["hp"]=2726400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10539,7 +10539,7 @@ local monster_chapter = {
},
[14041101]={
["monster_base"]=10016,
- ["atk"]=13164000,
+ ["atk"]=4740000,
["hp"]=2215200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10551,7 +10551,7 @@ local monster_chapter = {
},
[14041201]={
["monster_base"]=10010,
- ["atk"]=14261000,
+ ["atk"]=5135000,
["hp"]=2556000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10563,7 +10563,7 @@ local monster_chapter = {
},
[14041301]={
["monster_base"]=10018,
- ["atk"]=15358000,
+ ["atk"]=5530000,
["hp"]=2556000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10575,7 +10575,7 @@ local monster_chapter = {
},
[14041401]={
["monster_base"]=10009,
- ["atk"]=16455000,
+ ["atk"]=5925000,
["hp"]=2556000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10588,7 +10588,7 @@ local monster_chapter = {
[14041501]={
["monster_base"]=30001,
["is_boss"]=2,
- ["atk"]=19746000,
+ ["atk"]=7110000,
["hp"]=3408000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -10608,7 +10608,7 @@ local monster_chapter = {
},
[14050101]={
["monster_base"]=10011,
- ["atk"]=11230000,
+ ["atk"]=4040000,
["hp"]=1433600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10620,7 +10620,7 @@ local monster_chapter = {
},
[14050201]={
["monster_base"]=10009,
- ["atk"]=12353000,
+ ["atk"]=4444000,
["hp"]=1792000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10632,7 +10632,7 @@ local monster_chapter = {
},
[14050301]={
["monster_base"]=10016,
- ["atk"]=13476000,
+ ["atk"]=4848000,
["hp"]=1792000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10644,7 +10644,7 @@ local monster_chapter = {
},
[14050401]={
["monster_base"]=10010,
- ["atk"]=14599000,
+ ["atk"]=5252000,
["hp"]=1792000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10657,7 +10657,7 @@ local monster_chapter = {
[14050501]={
["monster_base"]=20007,
["is_boss"]=1,
- ["atk"]=15722000,
+ ["atk"]=5656000,
["hp"]=2150400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10672,7 +10672,7 @@ local monster_chapter = {
},
[14050601]={
["monster_base"]=10010,
- ["atk"]=12353000,
+ ["atk"]=4444000,
["hp"]=1971200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10684,7 +10684,7 @@ local monster_chapter = {
},
[14050701]={
["monster_base"]=10018,
- ["atk"]=13476000,
+ ["atk"]=4848000,
["hp"]=1971200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10696,7 +10696,7 @@ local monster_chapter = {
},
[14050801]={
["monster_base"]=10011,
- ["atk"]=14599000,
+ ["atk"]=5252000,
["hp"]=2150400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10708,7 +10708,7 @@ local monster_chapter = {
},
[14050901]={
["monster_base"]=10009,
- ["atk"]=15722000,
+ ["atk"]=5656000,
["hp"]=2150400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10721,7 +10721,7 @@ local monster_chapter = {
[14051001]={
["monster_base"]=20005,
["is_boss"]=1,
- ["atk"]=16845000,
+ ["atk"]=6060000,
["hp"]=2867200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10736,7 +10736,7 @@ local monster_chapter = {
},
[14051101]={
["monster_base"]=10009,
- ["atk"]=13476000,
+ ["atk"]=4848000,
["hp"]=2329600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10748,7 +10748,7 @@ local monster_chapter = {
},
[14051201]={
["monster_base"]=10016,
- ["atk"]=14599000,
+ ["atk"]=5252000,
["hp"]=2688000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10760,7 +10760,7 @@ local monster_chapter = {
},
[14051301]={
["monster_base"]=10011,
- ["atk"]=15722000,
+ ["atk"]=5656000,
["hp"]=2688000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10772,7 +10772,7 @@ local monster_chapter = {
},
[14051401]={
["monster_base"]=10010,
- ["atk"]=16845000,
+ ["atk"]=6060000,
["hp"]=2688000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10785,7 +10785,7 @@ local monster_chapter = {
[14051501]={
["monster_base"]=30001,
["is_boss"]=2,
- ["atk"]=20214000,
+ ["atk"]=7272000,
["hp"]=3584000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -10805,7 +10805,7 @@ local monster_chapter = {
},
[15010101]={
["monster_base"]=10014,
- ["atk"]=11500000,
+ ["atk"]=4140000,
["hp"]=1504000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10817,7 +10817,7 @@ local monster_chapter = {
},
[15010201]={
["monster_base"]=10009,
- ["atk"]=12650000,
+ ["atk"]=4554000,
["hp"]=1880000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10829,7 +10829,7 @@ local monster_chapter = {
},
[15010301]={
["monster_base"]=10013,
- ["atk"]=13800000,
+ ["atk"]=4968000,
["hp"]=1880000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10841,7 +10841,7 @@ local monster_chapter = {
},
[15010401]={
["monster_base"]=10017,
- ["atk"]=14950000,
+ ["atk"]=5382000,
["hp"]=1880000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10854,7 +10854,7 @@ local monster_chapter = {
[15010501]={
["monster_base"]=20004,
["is_boss"]=1,
- ["atk"]=16100000,
+ ["atk"]=5796000,
["hp"]=2256000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10869,7 +10869,7 @@ local monster_chapter = {
},
[15010601]={
["monster_base"]=10014,
- ["atk"]=12650000,
+ ["atk"]=4554000,
["hp"]=2068000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10881,7 +10881,7 @@ local monster_chapter = {
},
[15010701]={
["monster_base"]=10017,
- ["atk"]=13800000,
+ ["atk"]=4968000,
["hp"]=2068000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10893,7 +10893,7 @@ local monster_chapter = {
},
[15010801]={
["monster_base"]=10013,
- ["atk"]=14950000,
+ ["atk"]=5382000,
["hp"]=2256000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10905,7 +10905,7 @@ local monster_chapter = {
},
[15010901]={
["monster_base"]=10012,
- ["atk"]=16100000,
+ ["atk"]=5796000,
["hp"]=2256000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10918,7 +10918,7 @@ local monster_chapter = {
[15011001]={
["monster_base"]=20003,
["is_boss"]=1,
- ["atk"]=17250000,
+ ["atk"]=6210000,
["hp"]=3008000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10933,7 +10933,7 @@ local monster_chapter = {
},
[15011101]={
["monster_base"]=10012,
- ["atk"]=13800000,
+ ["atk"]=4968000,
["hp"]=2444000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10945,7 +10945,7 @@ local monster_chapter = {
},
[15011201]={
["monster_base"]=10013,
- ["atk"]=14950000,
+ ["atk"]=5382000,
["hp"]=2820000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10957,7 +10957,7 @@ local monster_chapter = {
},
[15011301]={
["monster_base"]=10017,
- ["atk"]=16100000,
+ ["atk"]=5796000,
["hp"]=2820000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10969,7 +10969,7 @@ local monster_chapter = {
},
[15011401]={
["monster_base"]=10014,
- ["atk"]=17250000,
+ ["atk"]=6210000,
["hp"]=2820000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10982,7 +10982,7 @@ local monster_chapter = {
[15011501]={
["monster_base"]=20005,
["is_boss"]=2,
- ["atk"]=20700000,
+ ["atk"]=7452000,
["hp"]=3760000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -10997,7 +10997,7 @@ local monster_chapter = {
},
[15020101]={
["monster_base"]=10014,
- ["atk"]=11530000,
+ ["atk"]=4150000,
["hp"]=1523200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11009,7 +11009,7 @@ local monster_chapter = {
},
[15020201]={
["monster_base"]=10017,
- ["atk"]=12683000,
+ ["atk"]=4565000,
["hp"]=1904000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11021,7 +11021,7 @@ local monster_chapter = {
},
[15020301]={
["monster_base"]=10013,
- ["atk"]=13836000,
+ ["atk"]=4980000,
["hp"]=1904000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11033,7 +11033,7 @@ local monster_chapter = {
},
[15020401]={
["monster_base"]=10012,
- ["atk"]=14989000,
+ ["atk"]=5395000,
["hp"]=1904000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11046,7 +11046,7 @@ local monster_chapter = {
[15020501]={
["monster_base"]=20004,
["is_boss"]=1,
- ["atk"]=16142000,
+ ["atk"]=5810000,
["hp"]=2284800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11061,7 +11061,7 @@ local monster_chapter = {
},
[15020601]={
["monster_base"]=10013,
- ["atk"]=12683000,
+ ["atk"]=4565000,
["hp"]=2094400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11073,7 +11073,7 @@ local monster_chapter = {
},
[15020701]={
["monster_base"]=10012,
- ["atk"]=13836000,
+ ["atk"]=4980000,
["hp"]=2094400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11085,7 +11085,7 @@ local monster_chapter = {
},
[15020801]={
["monster_base"]=10009,
- ["atk"]=14989000,
+ ["atk"]=5395000,
["hp"]=2284800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11097,7 +11097,7 @@ local monster_chapter = {
},
[15020901]={
["monster_base"]=10014,
- ["atk"]=16142000,
+ ["atk"]=5810000,
["hp"]=2284800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11110,7 +11110,7 @@ local monster_chapter = {
[15021001]={
["monster_base"]=20005,
["is_boss"]=1,
- ["atk"]=17295000,
+ ["atk"]=6225000,
["hp"]=3046400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11125,7 +11125,7 @@ local monster_chapter = {
},
[15021101]={
["monster_base"]=10014,
- ["atk"]=13836000,
+ ["atk"]=4980000,
["hp"]=2475200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11137,7 +11137,7 @@ local monster_chapter = {
},
[15021201]={
["monster_base"]=10009,
- ["atk"]=14989000,
+ ["atk"]=5395000,
["hp"]=2856000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11149,7 +11149,7 @@ local monster_chapter = {
},
[15021301]={
["monster_base"]=10013,
- ["atk"]=16142000,
+ ["atk"]=5810000,
["hp"]=2856000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11161,7 +11161,7 @@ local monster_chapter = {
},
[15021401]={
["monster_base"]=10017,
- ["atk"]=17295000,
+ ["atk"]=6225000,
["hp"]=2856000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11174,7 +11174,7 @@ local monster_chapter = {
[15021501]={
["monster_base"]=20008,
["is_boss"]=2,
- ["atk"]=20754000,
+ ["atk"]=7470000,
["hp"]=3808000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11189,7 +11189,7 @@ local monster_chapter = {
},
[15030101]={
["monster_base"]=10012,
- ["atk"]=11570000,
+ ["atk"]=4160000,
["hp"]=1539200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11201,7 +11201,7 @@ local monster_chapter = {
},
[15030201]={
["monster_base"]=10009,
- ["atk"]=12727000,
+ ["atk"]=4576000,
["hp"]=1924000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11213,7 +11213,7 @@ local monster_chapter = {
},
[15030301]={
["monster_base"]=10013,
- ["atk"]=13884000,
+ ["atk"]=4992000,
["hp"]=1924000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11225,7 +11225,7 @@ local monster_chapter = {
},
[15030401]={
["monster_base"]=10014,
- ["atk"]=15041000,
+ ["atk"]=5408000,
["hp"]=1924000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11238,7 +11238,7 @@ local monster_chapter = {
[15030501]={
["monster_base"]=20003,
["is_boss"]=1,
- ["atk"]=16198000,
+ ["atk"]=5824000,
["hp"]=2308800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11253,7 +11253,7 @@ local monster_chapter = {
},
[15030601]={
["monster_base"]=10014,
- ["atk"]=12727000,
+ ["atk"]=4576000,
["hp"]=2116400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11265,7 +11265,7 @@ local monster_chapter = {
},
[15030701]={
["monster_base"]=10009,
- ["atk"]=13884000,
+ ["atk"]=4992000,
["hp"]=2116400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11277,7 +11277,7 @@ local monster_chapter = {
},
[15030801]={
["monster_base"]=10013,
- ["atk"]=15041000,
+ ["atk"]=5408000,
["hp"]=2308800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11289,7 +11289,7 @@ local monster_chapter = {
},
[15030901]={
["monster_base"]=10017,
- ["atk"]=16198000,
+ ["atk"]=5824000,
["hp"]=2308800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11302,7 +11302,7 @@ local monster_chapter = {
[15031001]={
["monster_base"]=20005,
["is_boss"]=1,
- ["atk"]=17355000,
+ ["atk"]=6240000,
["hp"]=3078400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11317,7 +11317,7 @@ local monster_chapter = {
},
[15031101]={
["monster_base"]=10012,
- ["atk"]=13884000,
+ ["atk"]=4992000,
["hp"]=2501200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11329,7 +11329,7 @@ local monster_chapter = {
},
[15031201]={
["monster_base"]=10013,
- ["atk"]=15041000,
+ ["atk"]=5408000,
["hp"]=2886000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11341,7 +11341,7 @@ local monster_chapter = {
},
[15031301]={
["monster_base"]=10017,
- ["atk"]=16198000,
+ ["atk"]=5824000,
["hp"]=2886000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11353,7 +11353,7 @@ local monster_chapter = {
},
[15031401]={
["monster_base"]=10014,
- ["atk"]=17355000,
+ ["atk"]=6240000,
["hp"]=2886000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11366,7 +11366,7 @@ local monster_chapter = {
[15031501]={
["monster_base"]=30002,
["is_boss"]=2,
- ["atk"]=20826000,
+ ["atk"]=7488000,
["hp"]=3848000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -11386,7 +11386,7 @@ local monster_chapter = {
},
[15040101]={
["monster_base"]=10014,
- ["atk"]=11600000,
+ ["atk"]=4180000,
["hp"]=1558400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11398,7 +11398,7 @@ local monster_chapter = {
},
[15040201]={
["monster_base"]=10017,
- ["atk"]=12760000,
+ ["atk"]=4598000,
["hp"]=1948000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11410,7 +11410,7 @@ local monster_chapter = {
},
[15040301]={
["monster_base"]=10013,
- ["atk"]=13920000,
+ ["atk"]=5016000,
["hp"]=1948000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11422,7 +11422,7 @@ local monster_chapter = {
},
[15040401]={
["monster_base"]=10012,
- ["atk"]=15080000,
+ ["atk"]=5434000,
["hp"]=1948000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11435,7 +11435,7 @@ local monster_chapter = {
[15040501]={
["monster_base"]=20003,
["is_boss"]=1,
- ["atk"]=16240000,
+ ["atk"]=5852000,
["hp"]=2337600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11450,7 +11450,7 @@ local monster_chapter = {
},
[15040601]={
["monster_base"]=10013,
- ["atk"]=12760000,
+ ["atk"]=4598000,
["hp"]=2142800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11462,7 +11462,7 @@ local monster_chapter = {
},
[15040701]={
["monster_base"]=10009,
- ["atk"]=13920000,
+ ["atk"]=5016000,
["hp"]=2142800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11474,7 +11474,7 @@ local monster_chapter = {
},
[15040801]={
["monster_base"]=10012,
- ["atk"]=15080000,
+ ["atk"]=5434000,
["hp"]=2337600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11486,7 +11486,7 @@ local monster_chapter = {
},
[15040901]={
["monster_base"]=10017,
- ["atk"]=16240000,
+ ["atk"]=5852000,
["hp"]=2337600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11499,7 +11499,7 @@ local monster_chapter = {
[15041001]={
["monster_base"]=20008,
["is_boss"]=1,
- ["atk"]=17400000,
+ ["atk"]=6270000,
["hp"]=3116800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11514,7 +11514,7 @@ local monster_chapter = {
},
[15041101]={
["monster_base"]=10009,
- ["atk"]=13920000,
+ ["atk"]=5016000,
["hp"]=2532400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11526,7 +11526,7 @@ local monster_chapter = {
},
[15041201]={
["monster_base"]=10014,
- ["atk"]=15080000,
+ ["atk"]=5434000,
["hp"]=2922000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11538,7 +11538,7 @@ local monster_chapter = {
},
[15041301]={
["monster_base"]=10017,
- ["atk"]=16240000,
+ ["atk"]=5852000,
["hp"]=2922000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11550,7 +11550,7 @@ local monster_chapter = {
},
[15041401]={
["monster_base"]=10012,
- ["atk"]=17400000,
+ ["atk"]=6270000,
["hp"]=2922000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11563,7 +11563,7 @@ local monster_chapter = {
[15041501]={
["monster_base"]=30002,
["is_boss"]=2,
- ["atk"]=20880000,
+ ["atk"]=7524000,
["hp"]=3896000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -11583,7 +11583,7 @@ local monster_chapter = {
},
[15050101]={
["monster_base"]=10013,
- ["atk"]=11800000,
+ ["atk"]=4250000,
["hp"]=1667200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11595,7 +11595,7 @@ local monster_chapter = {
},
[15050201]={
["monster_base"]=10012,
- ["atk"]=12980000,
+ ["atk"]=4675000,
["hp"]=2084000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11607,7 +11607,7 @@ local monster_chapter = {
},
[15050301]={
["monster_base"]=10009,
- ["atk"]=14160000,
+ ["atk"]=5100000,
["hp"]=2084000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11619,7 +11619,7 @@ local monster_chapter = {
},
[15050401]={
["monster_base"]=10014,
- ["atk"]=15340000,
+ ["atk"]=5525000,
["hp"]=2084000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11632,7 +11632,7 @@ local monster_chapter = {
[15050501]={
["monster_base"]=20005,
["is_boss"]=1,
- ["atk"]=16520000,
+ ["atk"]=5950000,
["hp"]=2500800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11647,7 +11647,7 @@ local monster_chapter = {
},
[15050601]={
["monster_base"]=10014,
- ["atk"]=12980000,
+ ["atk"]=4675000,
["hp"]=2292400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11659,7 +11659,7 @@ local monster_chapter = {
},
[15050701]={
["monster_base"]=10017,
- ["atk"]=14160000,
+ ["atk"]=5100000,
["hp"]=2292400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11671,7 +11671,7 @@ local monster_chapter = {
},
[15050801]={
["monster_base"]=10013,
- ["atk"]=15340000,
+ ["atk"]=5525000,
["hp"]=2500800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11683,7 +11683,7 @@ local monster_chapter = {
},
[15050901]={
["monster_base"]=10012,
- ["atk"]=16520000,
+ ["atk"]=5950000,
["hp"]=2500800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11696,7 +11696,7 @@ local monster_chapter = {
[15051001]={
["monster_base"]=20008,
["is_boss"]=1,
- ["atk"]=17700000,
+ ["atk"]=6375000,
["hp"]=3334400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11711,7 +11711,7 @@ local monster_chapter = {
},
[15051101]={
["monster_base"]=10012,
- ["atk"]=14160000,
+ ["atk"]=5100000,
["hp"]=2709200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11723,7 +11723,7 @@ local monster_chapter = {
},
[15051201]={
["monster_base"]=10009,
- ["atk"]=15340000,
+ ["atk"]=5525000,
["hp"]=3126000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11735,7 +11735,7 @@ local monster_chapter = {
},
[15051301]={
["monster_base"]=10013,
- ["atk"]=16520000,
+ ["atk"]=5950000,
["hp"]=3126000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11747,7 +11747,7 @@ local monster_chapter = {
},
[15051401]={
["monster_base"]=10014,
- ["atk"]=17700000,
+ ["atk"]=6375000,
["hp"]=3126000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11760,7 +11760,7 @@ local monster_chapter = {
[15051501]={
["monster_base"]=30002,
["is_boss"]=2,
- ["atk"]=21240000,
+ ["atk"]=7650000,
["hp"]=4168000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -11780,7 +11780,7 @@ local monster_chapter = {
},
[16010101]={
["monster_base"]=10019,
- ["atk"]=12000000,
+ ["atk"]=4320000,
["hp"]=1776000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11792,7 +11792,7 @@ local monster_chapter = {
},
[16010201]={
["monster_base"]=10017,
- ["atk"]=13200000,
+ ["atk"]=4752000,
["hp"]=2220000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11804,7 +11804,7 @@ local monster_chapter = {
},
[16010301]={
["monster_base"]=10018,
- ["atk"]=14400000,
+ ["atk"]=5184000,
["hp"]=2220000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11816,7 +11816,7 @@ local monster_chapter = {
},
[16010401]={
["monster_base"]=10016,
- ["atk"]=15600000,
+ ["atk"]=5616000,
["hp"]=2220000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11829,7 +11829,7 @@ local monster_chapter = {
[16010501]={
["monster_base"]=20001,
["is_boss"]=1,
- ["atk"]=16800000,
+ ["atk"]=6048000,
["hp"]=2664000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11847,7 +11847,7 @@ local monster_chapter = {
},
[16010601]={
["monster_base"]=10019,
- ["atk"]=13200000,
+ ["atk"]=4752000,
["hp"]=2442000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11859,7 +11859,7 @@ local monster_chapter = {
},
[16010701]={
["monster_base"]=10016,
- ["atk"]=14400000,
+ ["atk"]=5184000,
["hp"]=2442000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11871,7 +11871,7 @@ local monster_chapter = {
},
[16010801]={
["monster_base"]=10018,
- ["atk"]=15600000,
+ ["atk"]=5616000,
["hp"]=2664000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11883,7 +11883,7 @@ local monster_chapter = {
},
[16010901]={
["monster_base"]=10010,
- ["atk"]=16800000,
+ ["atk"]=6048000,
["hp"]=2664000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11896,7 +11896,7 @@ local monster_chapter = {
[16011001]={
["monster_base"]=20003,
["is_boss"]=1,
- ["atk"]=18000000,
+ ["atk"]=6480000,
["hp"]=3552000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11911,7 +11911,7 @@ local monster_chapter = {
},
[16011101]={
["monster_base"]=10010,
- ["atk"]=14400000,
+ ["atk"]=5184000,
["hp"]=2886000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11923,7 +11923,7 @@ local monster_chapter = {
},
[16011201]={
["monster_base"]=10018,
- ["atk"]=15600000,
+ ["atk"]=5616000,
["hp"]=3330000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11935,7 +11935,7 @@ local monster_chapter = {
},
[16011301]={
["monster_base"]=10016,
- ["atk"]=16800000,
+ ["atk"]=6048000,
["hp"]=3330000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11947,7 +11947,7 @@ local monster_chapter = {
},
[16011401]={
["monster_base"]=10019,
- ["atk"]=18000000,
+ ["atk"]=6480000,
["hp"]=3330000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11960,7 +11960,7 @@ local monster_chapter = {
[16011501]={
["monster_base"]=20007,
["is_boss"]=2,
- ["atk"]=21600000,
+ ["atk"]=7776000,
["hp"]=4440000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11975,7 +11975,7 @@ local monster_chapter = {
},
[16020101]={
["monster_base"]=10019,
- ["atk"]=12130000,
+ ["atk"]=4370000,
["hp"]=1814400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11987,7 +11987,7 @@ local monster_chapter = {
},
[16020201]={
["monster_base"]=10016,
- ["atk"]=13343000,
+ ["atk"]=4807000,
["hp"]=2268000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -11999,7 +11999,7 @@ local monster_chapter = {
},
[16020301]={
["monster_base"]=10018,
- ["atk"]=14556000,
+ ["atk"]=5244000,
["hp"]=2268000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12011,7 +12011,7 @@ local monster_chapter = {
},
[16020401]={
["monster_base"]=10010,
- ["atk"]=15769000,
+ ["atk"]=5681000,
["hp"]=2268000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12024,7 +12024,7 @@ local monster_chapter = {
[16020501]={
["monster_base"]=20001,
["is_boss"]=1,
- ["atk"]=16982000,
+ ["atk"]=6118000,
["hp"]=2721600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12042,7 +12042,7 @@ local monster_chapter = {
},
[16020601]={
["monster_base"]=10018,
- ["atk"]=13343000,
+ ["atk"]=4807000,
["hp"]=2494800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12054,7 +12054,7 @@ local monster_chapter = {
},
[16020701]={
["monster_base"]=10010,
- ["atk"]=14556000,
+ ["atk"]=5244000,
["hp"]=2494800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12066,7 +12066,7 @@ local monster_chapter = {
},
[16020801]={
["monster_base"]=10017,
- ["atk"]=15769000,
+ ["atk"]=5681000,
["hp"]=2721600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12078,7 +12078,7 @@ local monster_chapter = {
},
[16020901]={
["monster_base"]=10019,
- ["atk"]=16982000,
+ ["atk"]=6118000,
["hp"]=2721600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12091,7 +12091,7 @@ local monster_chapter = {
[16021001]={
["monster_base"]=20007,
["is_boss"]=1,
- ["atk"]=18195000,
+ ["atk"]=6555000,
["hp"]=3628800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12106,7 +12106,7 @@ local monster_chapter = {
},
[16021101]={
["monster_base"]=10019,
- ["atk"]=14556000,
+ ["atk"]=5244000,
["hp"]=2948400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12118,7 +12118,7 @@ local monster_chapter = {
},
[16021201]={
["monster_base"]=10017,
- ["atk"]=15769000,
+ ["atk"]=5681000,
["hp"]=3402000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12130,7 +12130,7 @@ local monster_chapter = {
},
[16021301]={
["monster_base"]=10018,
- ["atk"]=16982000,
+ ["atk"]=6118000,
["hp"]=3402000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12142,7 +12142,7 @@ local monster_chapter = {
},
[16021401]={
["monster_base"]=10016,
- ["atk"]=18195000,
+ ["atk"]=6555000,
["hp"]=3402000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12155,7 +12155,7 @@ local monster_chapter = {
[16021501]={
["monster_base"]=20002,
["is_boss"]=2,
- ["atk"]=21834000,
+ ["atk"]=7866000,
["hp"]=4536000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12170,7 +12170,7 @@ local monster_chapter = {
},
[16030101]={
["monster_base"]=10010,
- ["atk"]=12270000,
+ ["atk"]=4420000,
["hp"]=1849600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12182,7 +12182,7 @@ local monster_chapter = {
},
[16030201]={
["monster_base"]=10017,
- ["atk"]=13497000,
+ ["atk"]=4862000,
["hp"]=2312000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12194,7 +12194,7 @@ local monster_chapter = {
},
[16030301]={
["monster_base"]=10018,
- ["atk"]=14724000,
+ ["atk"]=5304000,
["hp"]=2312000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12206,7 +12206,7 @@ local monster_chapter = {
},
[16030401]={
["monster_base"]=10019,
- ["atk"]=15951000,
+ ["atk"]=5746000,
["hp"]=2312000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12219,7 +12219,7 @@ local monster_chapter = {
[16030501]={
["monster_base"]=20003,
["is_boss"]=1,
- ["atk"]=17178000,
+ ["atk"]=6188000,
["hp"]=2774400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12234,7 +12234,7 @@ local monster_chapter = {
},
[16030601]={
["monster_base"]=10019,
- ["atk"]=13497000,
+ ["atk"]=4862000,
["hp"]=2543200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12246,7 +12246,7 @@ local monster_chapter = {
},
[16030701]={
["monster_base"]=10017,
- ["atk"]=14724000,
+ ["atk"]=5304000,
["hp"]=2543200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12258,7 +12258,7 @@ local monster_chapter = {
},
[16030801]={
["monster_base"]=10018,
- ["atk"]=15951000,
+ ["atk"]=5746000,
["hp"]=2774400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12270,7 +12270,7 @@ local monster_chapter = {
},
[16030901]={
["monster_base"]=10016,
- ["atk"]=17178000,
+ ["atk"]=6188000,
["hp"]=2774400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12283,7 +12283,7 @@ local monster_chapter = {
[16031001]={
["monster_base"]=20002,
["is_boss"]=1,
- ["atk"]=18405000,
+ ["atk"]=6630000,
["hp"]=3699200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12298,7 +12298,7 @@ local monster_chapter = {
},
[16031101]={
["monster_base"]=10010,
- ["atk"]=14724000,
+ ["atk"]=5304000,
["hp"]=3005600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12310,7 +12310,7 @@ local monster_chapter = {
},
[16031201]={
["monster_base"]=10018,
- ["atk"]=15951000,
+ ["atk"]=5746000,
["hp"]=3468000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12322,7 +12322,7 @@ local monster_chapter = {
},
[16031301]={
["monster_base"]=10016,
- ["atk"]=17178000,
+ ["atk"]=6188000,
["hp"]=3468000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12334,7 +12334,7 @@ local monster_chapter = {
},
[16031401]={
["monster_base"]=10019,
- ["atk"]=18405000,
+ ["atk"]=6630000,
["hp"]=3468000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12347,7 +12347,7 @@ local monster_chapter = {
[16031501]={
["monster_base"]=30006,
["is_boss"]=2,
- ["atk"]=22086000,
+ ["atk"]=7956000,
["hp"]=4624000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -12367,7 +12367,7 @@ local monster_chapter = {
},
[16040101]={
["monster_base"]=10019,
- ["atk"]=12420000,
+ ["atk"]=4470000,
["hp"]=1888000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12379,7 +12379,7 @@ local monster_chapter = {
},
[16040201]={
["monster_base"]=10016,
- ["atk"]=13662000,
+ ["atk"]=4917000,
["hp"]=2360000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12391,7 +12391,7 @@ local monster_chapter = {
},
[16040301]={
["monster_base"]=10018,
- ["atk"]=14904000,
+ ["atk"]=5364000,
["hp"]=2360000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12403,7 +12403,7 @@ local monster_chapter = {
},
[16040401]={
["monster_base"]=10010,
- ["atk"]=16146000,
+ ["atk"]=5811000,
["hp"]=2360000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12416,7 +12416,7 @@ local monster_chapter = {
[16040501]={
["monster_base"]=20003,
["is_boss"]=1,
- ["atk"]=17388000,
+ ["atk"]=6258000,
["hp"]=2832000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12431,7 +12431,7 @@ local monster_chapter = {
},
[16040601]={
["monster_base"]=10018,
- ["atk"]=13662000,
+ ["atk"]=4917000,
["hp"]=2596000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12443,7 +12443,7 @@ local monster_chapter = {
},
[16040701]={
["monster_base"]=10017,
- ["atk"]=14904000,
+ ["atk"]=5364000,
["hp"]=2596000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12455,7 +12455,7 @@ local monster_chapter = {
},
[16040801]={
["monster_base"]=10010,
- ["atk"]=16146000,
+ ["atk"]=5811000,
["hp"]=2832000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12467,7 +12467,7 @@ local monster_chapter = {
},
[16040901]={
["monster_base"]=10016,
- ["atk"]=17388000,
+ ["atk"]=6258000,
["hp"]=2832000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12480,7 +12480,7 @@ local monster_chapter = {
[16041001]={
["monster_base"]=20007,
["is_boss"]=1,
- ["atk"]=18630000,
+ ["atk"]=6705000,
["hp"]=3776000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12495,7 +12495,7 @@ local monster_chapter = {
},
[16041101]={
["monster_base"]=10017,
- ["atk"]=14904000,
+ ["atk"]=5364000,
["hp"]=3068000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12507,7 +12507,7 @@ local monster_chapter = {
},
[16041201]={
["monster_base"]=10019,
- ["atk"]=16146000,
+ ["atk"]=5811000,
["hp"]=3540000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12519,7 +12519,7 @@ local monster_chapter = {
},
[16041301]={
["monster_base"]=10016,
- ["atk"]=17388000,
+ ["atk"]=6258000,
["hp"]=3540000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12531,7 +12531,7 @@ local monster_chapter = {
},
[16041401]={
["monster_base"]=10010,
- ["atk"]=18630000,
+ ["atk"]=6705000,
["hp"]=3540000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12544,7 +12544,7 @@ local monster_chapter = {
[16041501]={
["monster_base"]=30006,
["is_boss"]=2,
- ["atk"]=22356000,
+ ["atk"]=8046000,
["hp"]=4720000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -12564,7 +12564,7 @@ local monster_chapter = {
},
[16050101]={
["monster_base"]=10018,
- ["atk"]=13050000,
+ ["atk"]=4700000,
["hp"]=2144000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12576,7 +12576,7 @@ local monster_chapter = {
},
[16050201]={
["monster_base"]=10010,
- ["atk"]=14355000,
+ ["atk"]=5170000,
["hp"]=2680000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12588,7 +12588,7 @@ local monster_chapter = {
},
[16050301]={
["monster_base"]=10017,
- ["atk"]=15660000,
+ ["atk"]=5640000,
["hp"]=2680000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12600,7 +12600,7 @@ local monster_chapter = {
},
[16050401]={
["monster_base"]=10019,
- ["atk"]=16965000,
+ ["atk"]=6110000,
["hp"]=2680000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12613,7 +12613,7 @@ local monster_chapter = {
[16050501]={
["monster_base"]=20007,
["is_boss"]=1,
- ["atk"]=18270000,
+ ["atk"]=6580000,
["hp"]=3216000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12628,7 +12628,7 @@ local monster_chapter = {
},
[16050601]={
["monster_base"]=10019,
- ["atk"]=14355000,
+ ["atk"]=5170000,
["hp"]=2948000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12640,7 +12640,7 @@ local monster_chapter = {
},
[16050701]={
["monster_base"]=10016,
- ["atk"]=15660000,
+ ["atk"]=5640000,
["hp"]=2948000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12652,7 +12652,7 @@ local monster_chapter = {
},
[16050801]={
["monster_base"]=10018,
- ["atk"]=16965000,
+ ["atk"]=6110000,
["hp"]=3216000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12664,7 +12664,7 @@ local monster_chapter = {
},
[16050901]={
["monster_base"]=10010,
- ["atk"]=18270000,
+ ["atk"]=6580000,
["hp"]=3216000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12677,7 +12677,7 @@ local monster_chapter = {
[16051001]={
["monster_base"]=20002,
["is_boss"]=1,
- ["atk"]=19575000,
+ ["atk"]=7050000,
["hp"]=4288000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12692,7 +12692,7 @@ local monster_chapter = {
},
[16051101]={
["monster_base"]=10010,
- ["atk"]=15660000,
+ ["atk"]=5640000,
["hp"]=3484000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12704,7 +12704,7 @@ local monster_chapter = {
},
[16051201]={
["monster_base"]=10017,
- ["atk"]=16965000,
+ ["atk"]=6110000,
["hp"]=4020000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12716,7 +12716,7 @@ local monster_chapter = {
},
[16051301]={
["monster_base"]=10018,
- ["atk"]=18270000,
+ ["atk"]=6580000,
["hp"]=4020000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12728,7 +12728,7 @@ local monster_chapter = {
},
[16051401]={
["monster_base"]=10019,
- ["atk"]=19575000,
+ ["atk"]=7050000,
["hp"]=4020000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12741,7 +12741,7 @@ local monster_chapter = {
[16051501]={
["monster_base"]=30006,
["is_boss"]=2,
- ["atk"]=23490000,
+ ["atk"]=8460000,
["hp"]=5360000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -12761,7 +12761,7 @@ local monster_chapter = {
},
[17010101]={
["monster_base"]=10007,
- ["atk"]=13670000,
+ ["atk"]=4920000,
["hp"]=2576000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12773,7 +12773,7 @@ local monster_chapter = {
},
[17010201]={
["monster_base"]=10009,
- ["atk"]=15037000,
+ ["atk"]=5412000,
["hp"]=3220000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12785,7 +12785,7 @@ local monster_chapter = {
},
[17010301]={
["monster_base"]=10008,
- ["atk"]=16404000,
+ ["atk"]=5904000,
["hp"]=3220000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12797,7 +12797,7 @@ local monster_chapter = {
},
[17010401]={
["monster_base"]=10004,
- ["atk"]=17771000,
+ ["atk"]=6396000,
["hp"]=3220000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12810,7 +12810,7 @@ local monster_chapter = {
[17010501]={
["monster_base"]=20002,
["is_boss"]=1,
- ["atk"]=19138000,
+ ["atk"]=6888000,
["hp"]=3864000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12825,7 +12825,7 @@ local monster_chapter = {
},
[17010601]={
["monster_base"]=10007,
- ["atk"]=15037000,
+ ["atk"]=5412000,
["hp"]=3542000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12837,7 +12837,7 @@ local monster_chapter = {
},
[17010701]={
["monster_base"]=10004,
- ["atk"]=16404000,
+ ["atk"]=5904000,
["hp"]=3542000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12849,7 +12849,7 @@ local monster_chapter = {
},
[17010801]={
["monster_base"]=10008,
- ["atk"]=17771000,
+ ["atk"]=6396000,
["hp"]=3864000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12861,7 +12861,7 @@ local monster_chapter = {
},
[17010901]={
["monster_base"]=10006,
- ["atk"]=19138000,
+ ["atk"]=6888000,
["hp"]=3864000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12874,7 +12874,7 @@ local monster_chapter = {
[17011001]={
["monster_base"]=20005,
["is_boss"]=1,
- ["atk"]=20505000,
+ ["atk"]=7380000,
["hp"]=5152000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12889,7 +12889,7 @@ local monster_chapter = {
},
[17011101]={
["monster_base"]=10006,
- ["atk"]=16404000,
+ ["atk"]=5904000,
["hp"]=4186000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12901,7 +12901,7 @@ local monster_chapter = {
},
[17011201]={
["monster_base"]=10008,
- ["atk"]=17771000,
+ ["atk"]=6396000,
["hp"]=4830000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12913,7 +12913,7 @@ local monster_chapter = {
},
[17011301]={
["monster_base"]=10004,
- ["atk"]=19138000,
+ ["atk"]=6888000,
["hp"]=4830000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12925,7 +12925,7 @@ local monster_chapter = {
},
[17011401]={
["monster_base"]=10007,
- ["atk"]=20505000,
+ ["atk"]=7380000,
["hp"]=4830000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12938,7 +12938,7 @@ local monster_chapter = {
[17011501]={
["monster_base"]=20006,
["is_boss"]=2,
- ["atk"]=24606000,
+ ["atk"]=8856000,
["hp"]=6440000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12953,7 +12953,7 @@ local monster_chapter = {
},
[17020101]={
["monster_base"]=10007,
- ["atk"]=13920000,
+ ["atk"]=5010000,
["hp"]=2654400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12965,7 +12965,7 @@ local monster_chapter = {
},
[17020201]={
["monster_base"]=10004,
- ["atk"]=15312000,
+ ["atk"]=5511000,
["hp"]=3318000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12977,7 +12977,7 @@ local monster_chapter = {
},
[17020301]={
["monster_base"]=10008,
- ["atk"]=16704000,
+ ["atk"]=6012000,
["hp"]=3318000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -12989,7 +12989,7 @@ local monster_chapter = {
},
[17020401]={
["monster_base"]=10006,
- ["atk"]=18096000,
+ ["atk"]=6513000,
["hp"]=3318000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13002,7 +13002,7 @@ local monster_chapter = {
[17020501]={
["monster_base"]=20002,
["is_boss"]=1,
- ["atk"]=19488000,
+ ["atk"]=7014000,
["hp"]=3981600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13017,7 +13017,7 @@ local monster_chapter = {
},
[17020601]={
["monster_base"]=10008,
- ["atk"]=15312000,
+ ["atk"]=5511000,
["hp"]=3649800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13029,7 +13029,7 @@ local monster_chapter = {
},
[17020701]={
["monster_base"]=10006,
- ["atk"]=16704000,
+ ["atk"]=6012000,
["hp"]=3649800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13041,7 +13041,7 @@ local monster_chapter = {
},
[17020801]={
["monster_base"]=10009,
- ["atk"]=18096000,
+ ["atk"]=6513000,
["hp"]=3981600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13053,7 +13053,7 @@ local monster_chapter = {
},
[17020901]={
["monster_base"]=10007,
- ["atk"]=19488000,
+ ["atk"]=7014000,
["hp"]=3981600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13066,7 +13066,7 @@ local monster_chapter = {
[17021001]={
["monster_base"]=20004,
["is_boss"]=1,
- ["atk"]=20880000,
+ ["atk"]=7515000,
["hp"]=5308800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13081,7 +13081,7 @@ local monster_chapter = {
},
[17021101]={
["monster_base"]=10007,
- ["atk"]=16704000,
+ ["atk"]=6012000,
["hp"]=4313400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13093,7 +13093,7 @@ local monster_chapter = {
},
[17021201]={
["monster_base"]=10009,
- ["atk"]=18096000,
+ ["atk"]=6513000,
["hp"]=4977000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13105,7 +13105,7 @@ local monster_chapter = {
},
[17021301]={
["monster_base"]=10008,
- ["atk"]=19488000,
+ ["atk"]=7014000,
["hp"]=4977000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13117,7 +13117,7 @@ local monster_chapter = {
},
[17021401]={
["monster_base"]=10004,
- ["atk"]=20880000,
+ ["atk"]=7515000,
["hp"]=4977000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13130,7 +13130,7 @@ local monster_chapter = {
[17021501]={
["monster_base"]=20006,
["is_boss"]=2,
- ["atk"]=25056000,
+ ["atk"]=9018000,
["hp"]=6636000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13145,7 +13145,7 @@ local monster_chapter = {
},
[17030101]={
["monster_base"]=10006,
- ["atk"]=14170000,
+ ["atk"]=5100000,
["hp"]=2729600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13157,7 +13157,7 @@ local monster_chapter = {
},
[17030201]={
["monster_base"]=10009,
- ["atk"]=15587000,
+ ["atk"]=5610000,
["hp"]=3412000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13169,7 +13169,7 @@ local monster_chapter = {
},
[17030301]={
["monster_base"]=10008,
- ["atk"]=17004000,
+ ["atk"]=6120000,
["hp"]=3412000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13181,7 +13181,7 @@ local monster_chapter = {
},
[17030401]={
["monster_base"]=10007,
- ["atk"]=18421000,
+ ["atk"]=6630000,
["hp"]=3412000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13194,7 +13194,7 @@ local monster_chapter = {
[17030501]={
["monster_base"]=20004,
["is_boss"]=1,
- ["atk"]=19838000,
+ ["atk"]=7140000,
["hp"]=4094400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13209,7 +13209,7 @@ local monster_chapter = {
},
[17030601]={
["monster_base"]=10007,
- ["atk"]=15587000,
+ ["atk"]=5610000,
["hp"]=3753200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13221,7 +13221,7 @@ local monster_chapter = {
},
[17030701]={
["monster_base"]=10009,
- ["atk"]=17004000,
+ ["atk"]=6120000,
["hp"]=3753200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13233,7 +13233,7 @@ local monster_chapter = {
},
[17030801]={
["monster_base"]=10008,
- ["atk"]=18421000,
+ ["atk"]=6630000,
["hp"]=4094400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13245,7 +13245,7 @@ local monster_chapter = {
},
[17030901]={
["monster_base"]=10004,
- ["atk"]=19838000,
+ ["atk"]=7140000,
["hp"]=4094400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13258,7 +13258,7 @@ local monster_chapter = {
[17031001]={
["monster_base"]=20005,
["is_boss"]=1,
- ["atk"]=21255000,
+ ["atk"]=7650000,
["hp"]=5459200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13273,7 +13273,7 @@ local monster_chapter = {
},
[17031101]={
["monster_base"]=10006,
- ["atk"]=17004000,
+ ["atk"]=6120000,
["hp"]=4435600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13285,7 +13285,7 @@ local monster_chapter = {
},
[17031201]={
["monster_base"]=10008,
- ["atk"]=18421000,
+ ["atk"]=6630000,
["hp"]=5118000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13297,7 +13297,7 @@ local monster_chapter = {
},
[17031301]={
["monster_base"]=10004,
- ["atk"]=19838000,
+ ["atk"]=7140000,
["hp"]=5118000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13309,7 +13309,7 @@ local monster_chapter = {
},
[17031401]={
["monster_base"]=10007,
- ["atk"]=21255000,
+ ["atk"]=7650000,
["hp"]=5118000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13322,7 +13322,7 @@ local monster_chapter = {
[17031501]={
["monster_base"]=30010,
["is_boss"]=2,
- ["atk"]=25506000,
+ ["atk"]=9180000,
["hp"]=6824000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -13342,7 +13342,7 @@ local monster_chapter = {
},
[17040101]={
["monster_base"]=10007,
- ["atk"]=14420000,
+ ["atk"]=5190000,
["hp"]=2808000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13354,7 +13354,7 @@ local monster_chapter = {
},
[17040201]={
["monster_base"]=10004,
- ["atk"]=15862000,
+ ["atk"]=5709000,
["hp"]=3510000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13366,7 +13366,7 @@ local monster_chapter = {
},
[17040301]={
["monster_base"]=10008,
- ["atk"]=17304000,
+ ["atk"]=6228000,
["hp"]=3510000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13378,7 +13378,7 @@ local monster_chapter = {
},
[17040401]={
["monster_base"]=10006,
- ["atk"]=18746000,
+ ["atk"]=6747000,
["hp"]=3510000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13391,7 +13391,7 @@ local monster_chapter = {
[17040501]={
["monster_base"]=20002,
["is_boss"]=1,
- ["atk"]=20188000,
+ ["atk"]=7266000,
["hp"]=4212000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13406,7 +13406,7 @@ local monster_chapter = {
},
[17040601]={
["monster_base"]=10008,
- ["atk"]=15862000,
+ ["atk"]=5709000,
["hp"]=3861000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13418,7 +13418,7 @@ local monster_chapter = {
},
[17040701]={
["monster_base"]=10009,
- ["atk"]=17304000,
+ ["atk"]=6228000,
["hp"]=3861000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13430,7 +13430,7 @@ local monster_chapter = {
},
[17040801]={
["monster_base"]=10006,
- ["atk"]=18746000,
+ ["atk"]=6747000,
["hp"]=4212000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13442,7 +13442,7 @@ local monster_chapter = {
},
[17040901]={
["monster_base"]=10004,
- ["atk"]=20188000,
+ ["atk"]=7266000,
["hp"]=4212000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13455,7 +13455,7 @@ local monster_chapter = {
[17041001]={
["monster_base"]=20005,
["is_boss"]=1,
- ["atk"]=21630000,
+ ["atk"]=7785000,
["hp"]=5616000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13470,7 +13470,7 @@ local monster_chapter = {
},
[17041101]={
["monster_base"]=10009,
- ["atk"]=17304000,
+ ["atk"]=6228000,
["hp"]=4563000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13482,7 +13482,7 @@ local monster_chapter = {
},
[17041201]={
["monster_base"]=10007,
- ["atk"]=18746000,
+ ["atk"]=6747000,
["hp"]=5265000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13494,7 +13494,7 @@ local monster_chapter = {
},
[17041301]={
["monster_base"]=10004,
- ["atk"]=20188000,
+ ["atk"]=7266000,
["hp"]=5265000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13506,7 +13506,7 @@ local monster_chapter = {
},
[17041401]={
["monster_base"]=10006,
- ["atk"]=21630000,
+ ["atk"]=7785000,
["hp"]=5265000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13519,7 +13519,7 @@ local monster_chapter = {
[17041501]={
["monster_base"]=30010,
["is_boss"]=2,
- ["atk"]=25956000,
+ ["atk"]=9342000,
["hp"]=7020000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -13539,7 +13539,7 @@ local monster_chapter = {
},
[17050101]={
["monster_base"]=10008,
- ["atk"]=15330000,
+ ["atk"]=5520000,
["hp"]=3096000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13551,7 +13551,7 @@ local monster_chapter = {
},
[17050201]={
["monster_base"]=10006,
- ["atk"]=16863000,
+ ["atk"]=6072000,
["hp"]=3870000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13563,7 +13563,7 @@ local monster_chapter = {
},
[17050301]={
["monster_base"]=10009,
- ["atk"]=18396000,
+ ["atk"]=6624000,
["hp"]=3870000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13575,7 +13575,7 @@ local monster_chapter = {
},
[17050401]={
["monster_base"]=10007,
- ["atk"]=19929000,
+ ["atk"]=7176000,
["hp"]=3870000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13588,7 +13588,7 @@ local monster_chapter = {
[17050501]={
["monster_base"]=20005,
["is_boss"]=1,
- ["atk"]=21462000,
+ ["atk"]=7728000,
["hp"]=4644000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13603,7 +13603,7 @@ local monster_chapter = {
},
[17050601]={
["monster_base"]=10007,
- ["atk"]=16863000,
+ ["atk"]=6072000,
["hp"]=4257000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13615,7 +13615,7 @@ local monster_chapter = {
},
[17050701]={
["monster_base"]=10004,
- ["atk"]=18396000,
+ ["atk"]=6624000,
["hp"]=4257000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13627,7 +13627,7 @@ local monster_chapter = {
},
[17050801]={
["monster_base"]=10008,
- ["atk"]=19929000,
+ ["atk"]=7176000,
["hp"]=4644000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13639,7 +13639,7 @@ local monster_chapter = {
},
[17050901]={
["monster_base"]=10006,
- ["atk"]=21462000,
+ ["atk"]=7728000,
["hp"]=4644000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13652,7 +13652,7 @@ local monster_chapter = {
[17051001]={
["monster_base"]=20006,
["is_boss"]=1,
- ["atk"]=22995000,
+ ["atk"]=8280000,
["hp"]=6192000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13667,7 +13667,7 @@ local monster_chapter = {
},
[17051101]={
["monster_base"]=10006,
- ["atk"]=18396000,
+ ["atk"]=6624000,
["hp"]=5031000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13679,7 +13679,7 @@ local monster_chapter = {
},
[17051201]={
["monster_base"]=10009,
- ["atk"]=19929000,
+ ["atk"]=7176000,
["hp"]=5805000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13691,7 +13691,7 @@ local monster_chapter = {
},
[17051301]={
["monster_base"]=10008,
- ["atk"]=21462000,
+ ["atk"]=7728000,
["hp"]=5805000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13703,7 +13703,7 @@ local monster_chapter = {
},
[17051401]={
["monster_base"]=10007,
- ["atk"]=22995000,
+ ["atk"]=8280000,
["hp"]=5805000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13716,7 +13716,7 @@ local monster_chapter = {
[17051501]={
["monster_base"]=30010,
["is_boss"]=2,
- ["atk"]=27594000,
+ ["atk"]=9936000,
["hp"]=7740000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -13736,7 +13736,7 @@ local monster_chapter = {
},
[18010101]={
["monster_base"]=10016,
- ["atk"]=15830000,
+ ["atk"]=5700000,
["hp"]=3264000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13748,7 +13748,7 @@ local monster_chapter = {
},
[18010201]={
["monster_base"]=10007,
- ["atk"]=17413000,
+ ["atk"]=6270000,
["hp"]=4080000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13760,7 +13760,7 @@ local monster_chapter = {
},
[18010301]={
["monster_base"]=10015,
- ["atk"]=18996000,
+ ["atk"]=6840000,
["hp"]=4080000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13772,7 +13772,7 @@ local monster_chapter = {
},
[18010401]={
["monster_base"]=10011,
- ["atk"]=20579000,
+ ["atk"]=7410000,
["hp"]=4080000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13785,7 +13785,7 @@ local monster_chapter = {
[18010501]={
["monster_base"]=20001,
["is_boss"]=1,
- ["atk"]=22162000,
+ ["atk"]=7980000,
["hp"]=4896000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13803,7 +13803,7 @@ local monster_chapter = {
},
[18010601]={
["monster_base"]=10016,
- ["atk"]=17413000,
+ ["atk"]=6270000,
["hp"]=4488000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13815,7 +13815,7 @@ local monster_chapter = {
},
[18010701]={
["monster_base"]=10011,
- ["atk"]=18996000,
+ ["atk"]=6840000,
["hp"]=4488000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13827,7 +13827,7 @@ local monster_chapter = {
},
[18010801]={
["monster_base"]=10015,
- ["atk"]=20579000,
+ ["atk"]=7410000,
["hp"]=4896000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13839,7 +13839,7 @@ local monster_chapter = {
},
[18010901]={
["monster_base"]=10018,
- ["atk"]=22162000,
+ ["atk"]=7980000,
["hp"]=4896000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13852,7 +13852,7 @@ local monster_chapter = {
[18011001]={
["monster_base"]=20008,
["is_boss"]=1,
- ["atk"]=23745000,
+ ["atk"]=8550000,
["hp"]=6528000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13867,7 +13867,7 @@ local monster_chapter = {
},
[18011101]={
["monster_base"]=10018,
- ["atk"]=18996000,
+ ["atk"]=6840000,
["hp"]=5304000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13879,7 +13879,7 @@ local monster_chapter = {
},
[18011201]={
["monster_base"]=10015,
- ["atk"]=20579000,
+ ["atk"]=7410000,
["hp"]=6120000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13891,7 +13891,7 @@ local monster_chapter = {
},
[18011301]={
["monster_base"]=10011,
- ["atk"]=22162000,
+ ["atk"]=7980000,
["hp"]=6120000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13903,7 +13903,7 @@ local monster_chapter = {
},
[18011401]={
["monster_base"]=10016,
- ["atk"]=23745000,
+ ["atk"]=8550000,
["hp"]=6120000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13916,7 +13916,7 @@ local monster_chapter = {
[18011501]={
["monster_base"]=20006,
["is_boss"]=2,
- ["atk"]=28494000,
+ ["atk"]=10260000,
["hp"]=8160000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13931,7 +13931,7 @@ local monster_chapter = {
},
[18020101]={
["monster_base"]=10016,
- ["atk"]=15870000,
+ ["atk"]=5710000,
["hp"]=3299200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13943,7 +13943,7 @@ local monster_chapter = {
},
[18020201]={
["monster_base"]=10011,
- ["atk"]=17457000,
+ ["atk"]=6281000,
["hp"]=4124000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13955,7 +13955,7 @@ local monster_chapter = {
},
[18020301]={
["monster_base"]=10015,
- ["atk"]=19044000,
+ ["atk"]=6852000,
["hp"]=4124000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13967,7 +13967,7 @@ local monster_chapter = {
},
[18020401]={
["monster_base"]=10018,
- ["atk"]=20631000,
+ ["atk"]=7423000,
["hp"]=4124000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13980,7 +13980,7 @@ local monster_chapter = {
[18020501]={
["monster_base"]=20001,
["is_boss"]=1,
- ["atk"]=22218000,
+ ["atk"]=7994000,
["hp"]=4948800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -13998,7 +13998,7 @@ local monster_chapter = {
},
[18020601]={
["monster_base"]=10015,
- ["atk"]=17457000,
+ ["atk"]=6281000,
["hp"]=4536400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14010,7 +14010,7 @@ local monster_chapter = {
},
[18020701]={
["monster_base"]=10018,
- ["atk"]=19044000,
+ ["atk"]=6852000,
["hp"]=4536400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14022,7 +14022,7 @@ local monster_chapter = {
},
[18020801]={
["monster_base"]=10007,
- ["atk"]=20631000,
+ ["atk"]=7423000,
["hp"]=4948800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14034,7 +14034,7 @@ local monster_chapter = {
},
[18020901]={
["monster_base"]=10016,
- ["atk"]=22218000,
+ ["atk"]=7994000,
["hp"]=4948800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14047,7 +14047,7 @@ local monster_chapter = {
[18021001]={
["monster_base"]=20008,
["is_boss"]=1,
- ["atk"]=23805000,
+ ["atk"]=8565000,
["hp"]=6598400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14062,7 +14062,7 @@ local monster_chapter = {
},
[18021101]={
["monster_base"]=10016,
- ["atk"]=19044000,
+ ["atk"]=6852000,
["hp"]=5361200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14074,7 +14074,7 @@ local monster_chapter = {
},
[18021201]={
["monster_base"]=10007,
- ["atk"]=20631000,
+ ["atk"]=7423000,
["hp"]=6186000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14086,7 +14086,7 @@ local monster_chapter = {
},
[18021301]={
["monster_base"]=10015,
- ["atk"]=22218000,
+ ["atk"]=7994000,
["hp"]=6186000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14098,7 +14098,7 @@ local monster_chapter = {
},
[18021401]={
["monster_base"]=10011,
- ["atk"]=23805000,
+ ["atk"]=8565000,
["hp"]=6186000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14111,7 +14111,7 @@ local monster_chapter = {
[18021501]={
["monster_base"]=20007,
["is_boss"]=2,
- ["atk"]=28566000,
+ ["atk"]=10278000,
["hp"]=8248000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14126,7 +14126,7 @@ local monster_chapter = {
},
[18030101]={
["monster_base"]=10018,
- ["atk"]=15880000,
+ ["atk"]=5720000,
["hp"]=3332800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14138,7 +14138,7 @@ local monster_chapter = {
},
[18030201]={
["monster_base"]=10007,
- ["atk"]=17468000,
+ ["atk"]=6292000,
["hp"]=4166000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14150,7 +14150,7 @@ local monster_chapter = {
},
[18030301]={
["monster_base"]=10015,
- ["atk"]=19056000,
+ ["atk"]=6864000,
["hp"]=4166000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14162,7 +14162,7 @@ local monster_chapter = {
},
[18030401]={
["monster_base"]=10016,
- ["atk"]=20644000,
+ ["atk"]=7436000,
["hp"]=4166000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14175,7 +14175,7 @@ local monster_chapter = {
[18030501]={
["monster_base"]=20008,
["is_boss"]=1,
- ["atk"]=22232000,
+ ["atk"]=8008000,
["hp"]=4999200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14190,7 +14190,7 @@ local monster_chapter = {
},
[18030601]={
["monster_base"]=10016,
- ["atk"]=17468000,
+ ["atk"]=6292000,
["hp"]=4582600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14202,7 +14202,7 @@ local monster_chapter = {
},
[18030701]={
["monster_base"]=10007,
- ["atk"]=19056000,
+ ["atk"]=6864000,
["hp"]=4582600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14214,7 +14214,7 @@ local monster_chapter = {
},
[18030801]={
["monster_base"]=10015,
- ["atk"]=20644000,
+ ["atk"]=7436000,
["hp"]=4999200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14226,7 +14226,7 @@ local monster_chapter = {
},
[18030901]={
["monster_base"]=10011,
- ["atk"]=22232000,
+ ["atk"]=8008000,
["hp"]=4999200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14239,7 +14239,7 @@ local monster_chapter = {
[18031001]={
["monster_base"]=20007,
["is_boss"]=1,
- ["atk"]=23820000,
+ ["atk"]=8580000,
["hp"]=6665600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14254,7 +14254,7 @@ local monster_chapter = {
},
[18031101]={
["monster_base"]=10018,
- ["atk"]=19056000,
+ ["atk"]=6864000,
["hp"]=5415800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14266,7 +14266,7 @@ local monster_chapter = {
},
[18031201]={
["monster_base"]=10015,
- ["atk"]=20644000,
+ ["atk"]=7436000,
["hp"]=6249000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14278,7 +14278,7 @@ local monster_chapter = {
},
[18031301]={
["monster_base"]=10011,
- ["atk"]=22232000,
+ ["atk"]=8008000,
["hp"]=6249000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14290,7 +14290,7 @@ local monster_chapter = {
},
[18031401]={
["monster_base"]=10016,
- ["atk"]=23820000,
+ ["atk"]=8580000,
["hp"]=6249000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14303,7 +14303,7 @@ local monster_chapter = {
[18031501]={
["monster_base"]=30005,
["is_boss"]=2,
- ["atk"]=28584000,
+ ["atk"]=10296000,
["hp"]=8332000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -14323,7 +14323,7 @@ local monster_chapter = {
},
[18040101]={
["monster_base"]=10016,
- ["atk"]=15920000,
+ ["atk"]=5730000,
["hp"]=3368000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14335,7 +14335,7 @@ local monster_chapter = {
},
[18040201]={
["monster_base"]=10011,
- ["atk"]=17512000,
+ ["atk"]=6303000,
["hp"]=4210000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14347,7 +14347,7 @@ local monster_chapter = {
},
[18040301]={
["monster_base"]=10015,
- ["atk"]=19104000,
+ ["atk"]=6876000,
["hp"]=4210000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14359,7 +14359,7 @@ local monster_chapter = {
},
[18040401]={
["monster_base"]=10018,
- ["atk"]=20696000,
+ ["atk"]=7449000,
["hp"]=4210000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14372,7 +14372,7 @@ local monster_chapter = {
[18040501]={
["monster_base"]=20001,
["is_boss"]=1,
- ["atk"]=22288000,
+ ["atk"]=8022000,
["hp"]=5052000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14390,7 +14390,7 @@ local monster_chapter = {
},
[18040601]={
["monster_base"]=10015,
- ["atk"]=17512000,
+ ["atk"]=6303000,
["hp"]=4631000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14402,7 +14402,7 @@ local monster_chapter = {
},
[18040701]={
["monster_base"]=10007,
- ["atk"]=19104000,
+ ["atk"]=6876000,
["hp"]=4631000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14414,7 +14414,7 @@ local monster_chapter = {
},
[18040801]={
["monster_base"]=10018,
- ["atk"]=20696000,
+ ["atk"]=7449000,
["hp"]=5052000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14426,7 +14426,7 @@ local monster_chapter = {
},
[18040901]={
["monster_base"]=10011,
- ["atk"]=22288000,
+ ["atk"]=8022000,
["hp"]=5052000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14439,7 +14439,7 @@ local monster_chapter = {
[18041001]={
["monster_base"]=20008,
["is_boss"]=1,
- ["atk"]=23880000,
+ ["atk"]=8595000,
["hp"]=6736000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14454,7 +14454,7 @@ local monster_chapter = {
},
[18041101]={
["monster_base"]=10007,
- ["atk"]=19104000,
+ ["atk"]=6876000,
["hp"]=5473000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14466,7 +14466,7 @@ local monster_chapter = {
},
[18041201]={
["monster_base"]=10016,
- ["atk"]=20696000,
+ ["atk"]=7449000,
["hp"]=6315000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14478,7 +14478,7 @@ local monster_chapter = {
},
[18041301]={
["monster_base"]=10011,
- ["atk"]=22288000,
+ ["atk"]=8022000,
["hp"]=6315000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14490,7 +14490,7 @@ local monster_chapter = {
},
[18041401]={
["monster_base"]=10018,
- ["atk"]=23880000,
+ ["atk"]=8595000,
["hp"]=6315000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14503,7 +14503,7 @@ local monster_chapter = {
[18041501]={
["monster_base"]=30005,
["is_boss"]=2,
- ["atk"]=28656000,
+ ["atk"]=10314000,
["hp"]=8420000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -14523,7 +14523,7 @@ local monster_chapter = {
},
[18050101]={
["monster_base"]=10015,
- ["atk"]=16130000,
+ ["atk"]=5810000,
["hp"]=3676800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14535,7 +14535,7 @@ local monster_chapter = {
},
[18050201]={
["monster_base"]=10018,
- ["atk"]=17743000,
+ ["atk"]=6391000,
["hp"]=4596000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14547,7 +14547,7 @@ local monster_chapter = {
},
[18050301]={
["monster_base"]=10007,
- ["atk"]=19356000,
+ ["atk"]=6972000,
["hp"]=4596000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14559,7 +14559,7 @@ local monster_chapter = {
},
[18050401]={
["monster_base"]=10016,
- ["atk"]=20969000,
+ ["atk"]=7553000,
["hp"]=4596000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14572,7 +14572,7 @@ local monster_chapter = {
[18050501]={
["monster_base"]=20006,
["is_boss"]=1,
- ["atk"]=22582000,
+ ["atk"]=8134000,
["hp"]=5515200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14587,7 +14587,7 @@ local monster_chapter = {
},
[18050601]={
["monster_base"]=10016,
- ["atk"]=17743000,
+ ["atk"]=6391000,
["hp"]=5055600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14599,7 +14599,7 @@ local monster_chapter = {
},
[18050701]={
["monster_base"]=10011,
- ["atk"]=19356000,
+ ["atk"]=6972000,
["hp"]=5055600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14611,7 +14611,7 @@ local monster_chapter = {
},
[18050801]={
["monster_base"]=10015,
- ["atk"]=20969000,
+ ["atk"]=7553000,
["hp"]=5515200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14623,7 +14623,7 @@ local monster_chapter = {
},
[18050901]={
["monster_base"]=10018,
- ["atk"]=22582000,
+ ["atk"]=8134000,
["hp"]=5515200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14636,7 +14636,7 @@ local monster_chapter = {
[18051001]={
["monster_base"]=20007,
["is_boss"]=1,
- ["atk"]=24195000,
+ ["atk"]=8715000,
["hp"]=7353600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14651,7 +14651,7 @@ local monster_chapter = {
},
[18051101]={
["monster_base"]=10018,
- ["atk"]=19356000,
+ ["atk"]=6972000,
["hp"]=5974800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14663,7 +14663,7 @@ local monster_chapter = {
},
[18051201]={
["monster_base"]=10007,
- ["atk"]=20969000,
+ ["atk"]=7553000,
["hp"]=6894000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14675,7 +14675,7 @@ local monster_chapter = {
},
[18051301]={
["monster_base"]=10015,
- ["atk"]=22582000,
+ ["atk"]=8134000,
["hp"]=6894000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14687,7 +14687,7 @@ local monster_chapter = {
},
[18051401]={
["monster_base"]=10016,
- ["atk"]=24195000,
+ ["atk"]=8715000,
["hp"]=6894000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14700,7 +14700,7 @@ local monster_chapter = {
[18051501]={
["monster_base"]=30005,
["is_boss"]=2,
- ["atk"]=29034000,
+ ["atk"]=10458000,
["hp"]=9192000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -14720,7 +14720,7 @@ local monster_chapter = {
},
[19010101]={
["monster_base"]=10013,
- ["atk"]=16500000,
+ ["atk"]=5940000,
["hp"]=4288000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14732,7 +14732,7 @@ local monster_chapter = {
},
[19010201]={
["monster_base"]=10009,
- ["atk"]=18150000,
+ ["atk"]=6534000,
["hp"]=5360000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14744,7 +14744,7 @@ local monster_chapter = {
},
[19010301]={
["monster_base"]=10014,
- ["atk"]=19800000,
+ ["atk"]=7128000,
["hp"]=5360000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14756,7 +14756,7 @@ local monster_chapter = {
},
[19010401]={
["monster_base"]=10011,
- ["atk"]=21450000,
+ ["atk"]=7722000,
["hp"]=5360000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14769,7 +14769,7 @@ local monster_chapter = {
[19010501]={
["monster_base"]=20004,
["is_boss"]=1,
- ["atk"]=23100000,
+ ["atk"]=8316000,
["hp"]=6432000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14784,7 +14784,7 @@ local monster_chapter = {
},
[19010601]={
["monster_base"]=10013,
- ["atk"]=18150000,
+ ["atk"]=6534000,
["hp"]=5896000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14796,7 +14796,7 @@ local monster_chapter = {
},
[19010701]={
["monster_base"]=10011,
- ["atk"]=19800000,
+ ["atk"]=7128000,
["hp"]=5896000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14808,7 +14808,7 @@ local monster_chapter = {
},
[19010801]={
["monster_base"]=10014,
- ["atk"]=21450000,
+ ["atk"]=7722000,
["hp"]=6432000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14820,7 +14820,7 @@ local monster_chapter = {
},
[19010901]={
["monster_base"]=10012,
- ["atk"]=23100000,
+ ["atk"]=8316000,
["hp"]=6432000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14833,7 +14833,7 @@ local monster_chapter = {
[19011001]={
["monster_base"]=20003,
["is_boss"]=1,
- ["atk"]=24750000,
+ ["atk"]=8910000,
["hp"]=8576000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14848,7 +14848,7 @@ local monster_chapter = {
},
[19011101]={
["monster_base"]=10012,
- ["atk"]=19800000,
+ ["atk"]=7128000,
["hp"]=6968000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14860,7 +14860,7 @@ local monster_chapter = {
},
[19011201]={
["monster_base"]=10014,
- ["atk"]=21450000,
+ ["atk"]=7722000,
["hp"]=8040000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14872,7 +14872,7 @@ local monster_chapter = {
},
[19011301]={
["monster_base"]=10011,
- ["atk"]=23100000,
+ ["atk"]=8316000,
["hp"]=8040000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14884,7 +14884,7 @@ local monster_chapter = {
},
[19011401]={
["monster_base"]=10013,
- ["atk"]=24750000,
+ ["atk"]=8910000,
["hp"]=8040000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14897,7 +14897,7 @@ local monster_chapter = {
[19011501]={
["monster_base"]=20007,
["is_boss"]=2,
- ["atk"]=29700000,
+ ["atk"]=10692000,
["hp"]=10720000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14912,7 +14912,7 @@ local monster_chapter = {
},
[19020101]={
["monster_base"]=10013,
- ["atk"]=16620000,
+ ["atk"]=5980000,
["hp"]=4352000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14924,7 +14924,7 @@ local monster_chapter = {
},
[19020201]={
["monster_base"]=10011,
- ["atk"]=18282000,
+ ["atk"]=6578000,
["hp"]=5440000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14936,7 +14936,7 @@ local monster_chapter = {
},
[19020301]={
["monster_base"]=10014,
- ["atk"]=19944000,
+ ["atk"]=7176000,
["hp"]=5440000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14948,7 +14948,7 @@ local monster_chapter = {
},
[19020401]={
["monster_base"]=10012,
- ["atk"]=21606000,
+ ["atk"]=7774000,
["hp"]=5440000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14961,7 +14961,7 @@ local monster_chapter = {
[19020501]={
["monster_base"]=20004,
["is_boss"]=1,
- ["atk"]=23268000,
+ ["atk"]=8372000,
["hp"]=6528000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14976,7 +14976,7 @@ local monster_chapter = {
},
[19020601]={
["monster_base"]=10014,
- ["atk"]=18282000,
+ ["atk"]=6578000,
["hp"]=5984000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -14988,7 +14988,7 @@ local monster_chapter = {
},
[19020701]={
["monster_base"]=10012,
- ["atk"]=19944000,
+ ["atk"]=7176000,
["hp"]=5984000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15000,7 +15000,7 @@ local monster_chapter = {
},
[19020801]={
["monster_base"]=10009,
- ["atk"]=21606000,
+ ["atk"]=7774000,
["hp"]=6528000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15012,7 +15012,7 @@ local monster_chapter = {
},
[19020901]={
["monster_base"]=10013,
- ["atk"]=23268000,
+ ["atk"]=8372000,
["hp"]=6528000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15025,7 +15025,7 @@ local monster_chapter = {
[19021001]={
["monster_base"]=20007,
["is_boss"]=1,
- ["atk"]=24930000,
+ ["atk"]=8970000,
["hp"]=8704000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15040,7 +15040,7 @@ local monster_chapter = {
},
[19021101]={
["monster_base"]=10013,
- ["atk"]=19944000,
+ ["atk"]=7176000,
["hp"]=7072000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15052,7 +15052,7 @@ local monster_chapter = {
},
[19021201]={
["monster_base"]=10009,
- ["atk"]=21606000,
+ ["atk"]=7774000,
["hp"]=8160000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15064,7 +15064,7 @@ local monster_chapter = {
},
[19021301]={
["monster_base"]=10014,
- ["atk"]=23268000,
+ ["atk"]=8372000,
["hp"]=8160000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15076,7 +15076,7 @@ local monster_chapter = {
},
[19021401]={
["monster_base"]=10011,
- ["atk"]=24930000,
+ ["atk"]=8970000,
["hp"]=8160000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15089,7 +15089,7 @@ local monster_chapter = {
[19021501]={
["monster_base"]=20008,
["is_boss"]=2,
- ["atk"]=29916000,
+ ["atk"]=10764000,
["hp"]=10880000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15104,7 +15104,7 @@ local monster_chapter = {
},
[19030101]={
["monster_base"]=10012,
- ["atk"]=16720000,
+ ["atk"]=6020000,
["hp"]=4416000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15116,7 +15116,7 @@ local monster_chapter = {
},
[19030201]={
["monster_base"]=10009,
- ["atk"]=18392000,
+ ["atk"]=6622000,
["hp"]=5520000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15128,7 +15128,7 @@ local monster_chapter = {
},
[19030301]={
["monster_base"]=10014,
- ["atk"]=20064000,
+ ["atk"]=7224000,
["hp"]=5520000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15140,7 +15140,7 @@ local monster_chapter = {
},
[19030401]={
["monster_base"]=10013,
- ["atk"]=21736000,
+ ["atk"]=7826000,
["hp"]=5520000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15153,7 +15153,7 @@ local monster_chapter = {
[19030501]={
["monster_base"]=20003,
["is_boss"]=1,
- ["atk"]=23408000,
+ ["atk"]=8428000,
["hp"]=6624000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15168,7 +15168,7 @@ local monster_chapter = {
},
[19030601]={
["monster_base"]=10013,
- ["atk"]=18392000,
+ ["atk"]=6622000,
["hp"]=6072000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15180,7 +15180,7 @@ local monster_chapter = {
},
[19030701]={
["monster_base"]=10009,
- ["atk"]=20064000,
+ ["atk"]=7224000,
["hp"]=6072000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15192,7 +15192,7 @@ local monster_chapter = {
},
[19030801]={
["monster_base"]=10014,
- ["atk"]=21736000,
+ ["atk"]=7826000,
["hp"]=6624000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15204,7 +15204,7 @@ local monster_chapter = {
},
[19030901]={
["monster_base"]=10011,
- ["atk"]=23408000,
+ ["atk"]=8428000,
["hp"]=6624000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15217,7 +15217,7 @@ local monster_chapter = {
[19031001]={
["monster_base"]=20007,
["is_boss"]=1,
- ["atk"]=25080000,
+ ["atk"]=9030000,
["hp"]=8832000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15232,7 +15232,7 @@ local monster_chapter = {
},
[19031101]={
["monster_base"]=10012,
- ["atk"]=20064000,
+ ["atk"]=7224000,
["hp"]=7176000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15244,7 +15244,7 @@ local monster_chapter = {
},
[19031201]={
["monster_base"]=10014,
- ["atk"]=21736000,
+ ["atk"]=7826000,
["hp"]=8280000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15256,7 +15256,7 @@ local monster_chapter = {
},
[19031301]={
["monster_base"]=10011,
- ["atk"]=23408000,
+ ["atk"]=8428000,
["hp"]=8280000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15268,7 +15268,7 @@ local monster_chapter = {
},
[19031401]={
["monster_base"]=10013,
- ["atk"]=25080000,
+ ["atk"]=9030000,
["hp"]=8280000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15281,7 +15281,7 @@ local monster_chapter = {
[19031501]={
["monster_base"]=30004,
["is_boss"]=2,
- ["atk"]=30096000,
+ ["atk"]=10836000,
["hp"]=11040000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -15301,7 +15301,7 @@ local monster_chapter = {
},
[19040101]={
["monster_base"]=10013,
- ["atk"]=16830000,
+ ["atk"]=6060000,
["hp"]=4480000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15313,7 +15313,7 @@ local monster_chapter = {
},
[19040201]={
["monster_base"]=10011,
- ["atk"]=18513000,
+ ["atk"]=6666000,
["hp"]=5600000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15325,7 +15325,7 @@ local monster_chapter = {
},
[19040301]={
["monster_base"]=10014,
- ["atk"]=20196000,
+ ["atk"]=7272000,
["hp"]=5600000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15337,7 +15337,7 @@ local monster_chapter = {
},
[19040401]={
["monster_base"]=10012,
- ["atk"]=21879000,
+ ["atk"]=7878000,
["hp"]=5600000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15350,7 +15350,7 @@ local monster_chapter = {
[19040501]={
["monster_base"]=20004,
["is_boss"]=1,
- ["atk"]=23562000,
+ ["atk"]=8484000,
["hp"]=6720000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15365,7 +15365,7 @@ local monster_chapter = {
},
[19040601]={
["monster_base"]=10014,
- ["atk"]=18513000,
+ ["atk"]=6666000,
["hp"]=6160000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15377,7 +15377,7 @@ local monster_chapter = {
},
[19040701]={
["monster_base"]=10009,
- ["atk"]=20196000,
+ ["atk"]=7272000,
["hp"]=6160000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15389,7 +15389,7 @@ local monster_chapter = {
},
[19040801]={
["monster_base"]=10012,
- ["atk"]=21879000,
+ ["atk"]=7878000,
["hp"]=6720000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15401,7 +15401,7 @@ local monster_chapter = {
},
[19040901]={
["monster_base"]=10011,
- ["atk"]=23562000,
+ ["atk"]=8484000,
["hp"]=6720000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15414,7 +15414,7 @@ local monster_chapter = {
[19041001]={
["monster_base"]=20008,
["is_boss"]=1,
- ["atk"]=25245000,
+ ["atk"]=9090000,
["hp"]=8960000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15429,7 +15429,7 @@ local monster_chapter = {
},
[19041101]={
["monster_base"]=10009,
- ["atk"]=20196000,
+ ["atk"]=7272000,
["hp"]=7280000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15441,7 +15441,7 @@ local monster_chapter = {
},
[19041201]={
["monster_base"]=10013,
- ["atk"]=21879000,
+ ["atk"]=7878000,
["hp"]=8400000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15453,7 +15453,7 @@ local monster_chapter = {
},
[19041301]={
["monster_base"]=10011,
- ["atk"]=23562000,
+ ["atk"]=8484000,
["hp"]=8400000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15465,7 +15465,7 @@ local monster_chapter = {
},
[19041401]={
["monster_base"]=10012,
- ["atk"]=25245000,
+ ["atk"]=9090000,
["hp"]=8400000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15478,7 +15478,7 @@ local monster_chapter = {
[19041501]={
["monster_base"]=30004,
["is_boss"]=2,
- ["atk"]=30294000,
+ ["atk"]=10908000,
["hp"]=11200000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -15498,7 +15498,7 @@ local monster_chapter = {
},
[19050101]={
["monster_base"]=10014,
- ["atk"]=17200000,
+ ["atk"]=6190000,
["hp"]=4611200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15510,7 +15510,7 @@ local monster_chapter = {
},
[19050201]={
["monster_base"]=10012,
- ["atk"]=18920000,
+ ["atk"]=6809000,
["hp"]=5764000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15522,7 +15522,7 @@ local monster_chapter = {
},
[19050301]={
["monster_base"]=10009,
- ["atk"]=20640000,
+ ["atk"]=7428000,
["hp"]=5764000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15534,7 +15534,7 @@ local monster_chapter = {
},
[19050401]={
["monster_base"]=10013,
- ["atk"]=22360000,
+ ["atk"]=8047000,
["hp"]=5764000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15547,7 +15547,7 @@ local monster_chapter = {
[19050501]={
["monster_base"]=20007,
["is_boss"]=1,
- ["atk"]=24080000,
+ ["atk"]=8666000,
["hp"]=6916800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15562,7 +15562,7 @@ local monster_chapter = {
},
[19050601]={
["monster_base"]=10013,
- ["atk"]=18920000,
+ ["atk"]=6809000,
["hp"]=6340400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15574,7 +15574,7 @@ local monster_chapter = {
},
[19050701]={
["monster_base"]=10011,
- ["atk"]=20640000,
+ ["atk"]=7428000,
["hp"]=6340400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15586,7 +15586,7 @@ local monster_chapter = {
},
[19050801]={
["monster_base"]=10014,
- ["atk"]=22360000,
+ ["atk"]=8047000,
["hp"]=6916800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15598,7 +15598,7 @@ local monster_chapter = {
},
[19050901]={
["monster_base"]=10012,
- ["atk"]=24080000,
+ ["atk"]=8666000,
["hp"]=6916800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15611,7 +15611,7 @@ local monster_chapter = {
[19051001]={
["monster_base"]=20008,
["is_boss"]=1,
- ["atk"]=25800000,
+ ["atk"]=9285000,
["hp"]=9222400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15626,7 +15626,7 @@ local monster_chapter = {
},
[19051101]={
["monster_base"]=10012,
- ["atk"]=20640000,
+ ["atk"]=7428000,
["hp"]=7493200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15638,7 +15638,7 @@ local monster_chapter = {
},
[19051201]={
["monster_base"]=10009,
- ["atk"]=22360000,
+ ["atk"]=8047000,
["hp"]=8646000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15650,7 +15650,7 @@ local monster_chapter = {
},
[19051301]={
["monster_base"]=10014,
- ["atk"]=24080000,
+ ["atk"]=8666000,
["hp"]=8646000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15662,7 +15662,7 @@ local monster_chapter = {
},
[19051401]={
["monster_base"]=10013,
- ["atk"]=25800000,
+ ["atk"]=9285000,
["hp"]=8646000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15675,7 +15675,7 @@ local monster_chapter = {
[19051501]={
["monster_base"]=30004,
["is_boss"]=2,
- ["atk"]=30960000,
+ ["atk"]=11142000,
["hp"]=11528000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -15695,7 +15695,7 @@ local monster_chapter = {
},
[20010101]={
["monster_base"]=10003,
- ["atk"]=17500000,
+ ["atk"]=6300000,
["hp"]=4744000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15707,7 +15707,7 @@ local monster_chapter = {
},
[20010201]={
["monster_base"]=10010,
- ["atk"]=19250000,
+ ["atk"]=6930000,
["hp"]=5930000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15719,7 +15719,7 @@ local monster_chapter = {
},
[20010301]={
["monster_base"]=10001,
- ["atk"]=21000000,
+ ["atk"]=7560000,
["hp"]=5930000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15731,7 +15731,7 @@ local monster_chapter = {
},
[20010401]={
["monster_base"]=10005,
- ["atk"]=22750000,
+ ["atk"]=8190000,
["hp"]=5930000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15744,7 +15744,7 @@ local monster_chapter = {
[20010501]={
["monster_base"]=20003,
["is_boss"]=1,
- ["atk"]=24500000,
+ ["atk"]=8820000,
["hp"]=7116000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15759,7 +15759,7 @@ local monster_chapter = {
},
[20010601]={
["monster_base"]=10003,
- ["atk"]=19250000,
+ ["atk"]=6930000,
["hp"]=6523000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15771,7 +15771,7 @@ local monster_chapter = {
},
[20010701]={
["monster_base"]=10005,
- ["atk"]=21000000,
+ ["atk"]=7560000,
["hp"]=6523000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15783,7 +15783,7 @@ local monster_chapter = {
},
[20010801]={
["monster_base"]=10001,
- ["atk"]=22750000,
+ ["atk"]=8190000,
["hp"]=7116000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15795,7 +15795,7 @@ local monster_chapter = {
},
[20010901]={
["monster_base"]=10002,
- ["atk"]=24500000,
+ ["atk"]=8820000,
["hp"]=7116000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15808,7 +15808,7 @@ local monster_chapter = {
[20011001]={
["monster_base"]=20007,
["is_boss"]=1,
- ["atk"]=26250000,
+ ["atk"]=9450000,
["hp"]=9488000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15823,7 +15823,7 @@ local monster_chapter = {
},
[20011101]={
["monster_base"]=10002,
- ["atk"]=21000000,
+ ["atk"]=7560000,
["hp"]=7709000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15835,7 +15835,7 @@ local monster_chapter = {
},
[20011201]={
["monster_base"]=10001,
- ["atk"]=22750000,
+ ["atk"]=8190000,
["hp"]=8895000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15847,7 +15847,7 @@ local monster_chapter = {
},
[20011301]={
["monster_base"]=10005,
- ["atk"]=24500000,
+ ["atk"]=8820000,
["hp"]=8895000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15859,7 +15859,7 @@ local monster_chapter = {
},
[20011401]={
["monster_base"]=10003,
- ["atk"]=26250000,
+ ["atk"]=9450000,
["hp"]=8895000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15872,7 +15872,7 @@ local monster_chapter = {
[20011501]={
["monster_base"]=20006,
["is_boss"]=2,
- ["atk"]=31500000,
+ ["atk"]=11340000,
["hp"]=11860000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15887,7 +15887,7 @@ local monster_chapter = {
},
[20020101]={
["monster_base"]=10003,
- ["atk"]=17620000,
+ ["atk"]=6340000,
["hp"]=4801600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15899,7 +15899,7 @@ local monster_chapter = {
},
[20020201]={
["monster_base"]=10005,
- ["atk"]=19382000,
+ ["atk"]=6974000,
["hp"]=6002000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15911,7 +15911,7 @@ local monster_chapter = {
},
[20020301]={
["monster_base"]=10001,
- ["atk"]=21144000,
+ ["atk"]=7608000,
["hp"]=6002000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15923,7 +15923,7 @@ local monster_chapter = {
},
[20020401]={
["monster_base"]=10002,
- ["atk"]=22906000,
+ ["atk"]=8242000,
["hp"]=6002000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15936,7 +15936,7 @@ local monster_chapter = {
[20020501]={
["monster_base"]=20003,
["is_boss"]=1,
- ["atk"]=24668000,
+ ["atk"]=8876000,
["hp"]=7202400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15951,7 +15951,7 @@ local monster_chapter = {
},
[20020601]={
["monster_base"]=10001,
- ["atk"]=19382000,
+ ["atk"]=6974000,
["hp"]=6602200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15963,7 +15963,7 @@ local monster_chapter = {
},
[20020701]={
["monster_base"]=10002,
- ["atk"]=21144000,
+ ["atk"]=7608000,
["hp"]=6602200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15975,7 +15975,7 @@ local monster_chapter = {
},
[20020801]={
["monster_base"]=10010,
- ["atk"]=22906000,
+ ["atk"]=8242000,
["hp"]=7202400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -15987,7 +15987,7 @@ local monster_chapter = {
},
[20020901]={
["monster_base"]=10003,
- ["atk"]=24668000,
+ ["atk"]=8876000,
["hp"]=7202400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16000,7 +16000,7 @@ local monster_chapter = {
[20021001]={
["monster_base"]=20006,
["is_boss"]=1,
- ["atk"]=26430000,
+ ["atk"]=9510000,
["hp"]=9603200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16015,7 +16015,7 @@ local monster_chapter = {
},
[20021101]={
["monster_base"]=10003,
- ["atk"]=21144000,
+ ["atk"]=7608000,
["hp"]=7802600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16027,7 +16027,7 @@ local monster_chapter = {
},
[20021201]={
["monster_base"]=10010,
- ["atk"]=22906000,
+ ["atk"]=8242000,
["hp"]=9003000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16039,7 +16039,7 @@ local monster_chapter = {
},
[20021301]={
["monster_base"]=10001,
- ["atk"]=24668000,
+ ["atk"]=8876000,
["hp"]=9003000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16051,7 +16051,7 @@ local monster_chapter = {
},
[20021401]={
["monster_base"]=10005,
- ["atk"]=26430000,
+ ["atk"]=9510000,
["hp"]=9003000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16064,7 +16064,7 @@ local monster_chapter = {
[20021501]={
["monster_base"]=20008,
["is_boss"]=2,
- ["atk"]=31716000,
+ ["atk"]=11412000,
["hp"]=12004000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16079,7 +16079,7 @@ local monster_chapter = {
},
[20030101]={
["monster_base"]=10002,
- ["atk"]=17720000,
+ ["atk"]=6380000,
["hp"]=4859200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16091,7 +16091,7 @@ local monster_chapter = {
},
[20030201]={
["monster_base"]=10010,
- ["atk"]=19492000,
+ ["atk"]=7018000,
["hp"]=6074000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16103,7 +16103,7 @@ local monster_chapter = {
},
[20030301]={
["monster_base"]=10001,
- ["atk"]=21264000,
+ ["atk"]=7656000,
["hp"]=6074000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16115,7 +16115,7 @@ local monster_chapter = {
},
[20030401]={
["monster_base"]=10003,
- ["atk"]=23036000,
+ ["atk"]=8294000,
["hp"]=6074000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16128,7 +16128,7 @@ local monster_chapter = {
[20030501]={
["monster_base"]=20007,
["is_boss"]=1,
- ["atk"]=24808000,
+ ["atk"]=8932000,
["hp"]=7288800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16143,7 +16143,7 @@ local monster_chapter = {
},
[20030601]={
["monster_base"]=10003,
- ["atk"]=19492000,
+ ["atk"]=7018000,
["hp"]=6681400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16155,7 +16155,7 @@ local monster_chapter = {
},
[20030701]={
["monster_base"]=10010,
- ["atk"]=21264000,
+ ["atk"]=7656000,
["hp"]=6681400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16167,7 +16167,7 @@ local monster_chapter = {
},
[20030801]={
["monster_base"]=10001,
- ["atk"]=23036000,
+ ["atk"]=8294000,
["hp"]=7288800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16179,7 +16179,7 @@ local monster_chapter = {
},
[20030901]={
["monster_base"]=10005,
- ["atk"]=24808000,
+ ["atk"]=8932000,
["hp"]=7288800000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16192,7 +16192,7 @@ local monster_chapter = {
[20031001]={
["monster_base"]=20006,
["is_boss"]=1,
- ["atk"]=26580000,
+ ["atk"]=9570000,
["hp"]=9718400000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16207,7 +16207,7 @@ local monster_chapter = {
},
[20031101]={
["monster_base"]=10002,
- ["atk"]=21264000,
+ ["atk"]=7656000,
["hp"]=7896200000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16219,7 +16219,7 @@ local monster_chapter = {
},
[20031201]={
["monster_base"]=10001,
- ["atk"]=23036000,
+ ["atk"]=8294000,
["hp"]=9111000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16231,7 +16231,7 @@ local monster_chapter = {
},
[20031301]={
["monster_base"]=10005,
- ["atk"]=24808000,
+ ["atk"]=8932000,
["hp"]=9111000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16243,7 +16243,7 @@ local monster_chapter = {
},
[20031401]={
["monster_base"]=10003,
- ["atk"]=26580000,
+ ["atk"]=9570000,
["hp"]=9111000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16256,7 +16256,7 @@ local monster_chapter = {
[20031501]={
["monster_base"]=30003,
["is_boss"]=2,
- ["atk"]=31896000,
+ ["atk"]=11484000,
["hp"]=12148000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -16275,7 +16275,7 @@ local monster_chapter = {
},
[20040101]={
["monster_base"]=10003,
- ["atk"]=17830000,
+ ["atk"]=6420000,
["hp"]=4912000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16287,7 +16287,7 @@ local monster_chapter = {
},
[20040201]={
["monster_base"]=10005,
- ["atk"]=19613000,
+ ["atk"]=7062000,
["hp"]=6140000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16299,7 +16299,7 @@ local monster_chapter = {
},
[20040301]={
["monster_base"]=10001,
- ["atk"]=21396000,
+ ["atk"]=7704000,
["hp"]=6140000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16311,7 +16311,7 @@ local monster_chapter = {
},
[20040401]={
["monster_base"]=10002,
- ["atk"]=23179000,
+ ["atk"]=8346000,
["hp"]=6140000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16324,7 +16324,7 @@ local monster_chapter = {
[20040501]={
["monster_base"]=20003,
["is_boss"]=1,
- ["atk"]=24962000,
+ ["atk"]=8988000,
["hp"]=7368000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16339,7 +16339,7 @@ local monster_chapter = {
},
[20040601]={
["monster_base"]=10001,
- ["atk"]=19613000,
+ ["atk"]=7062000,
["hp"]=6754000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16351,7 +16351,7 @@ local monster_chapter = {
},
[20040701]={
["monster_base"]=10010,
- ["atk"]=21396000,
+ ["atk"]=7704000,
["hp"]=6754000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16363,7 +16363,7 @@ local monster_chapter = {
},
[20040801]={
["monster_base"]=10002,
- ["atk"]=23179000,
+ ["atk"]=8346000,
["hp"]=7368000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16375,7 +16375,7 @@ local monster_chapter = {
},
[20040901]={
["monster_base"]=10005,
- ["atk"]=24962000,
+ ["atk"]=8988000,
["hp"]=7368000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16388,7 +16388,7 @@ local monster_chapter = {
[20041001]={
["monster_base"]=20008,
["is_boss"]=1,
- ["atk"]=26745000,
+ ["atk"]=9630000,
["hp"]=9824000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16403,7 +16403,7 @@ local monster_chapter = {
},
[20041101]={
["monster_base"]=10010,
- ["atk"]=21396000,
+ ["atk"]=7704000,
["hp"]=7982000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16415,7 +16415,7 @@ local monster_chapter = {
},
[20041201]={
["monster_base"]=10003,
- ["atk"]=23179000,
+ ["atk"]=8346000,
["hp"]=9210000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16427,7 +16427,7 @@ local monster_chapter = {
},
[20041301]={
["monster_base"]=10005,
- ["atk"]=24962000,
+ ["atk"]=8988000,
["hp"]=9210000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16439,7 +16439,7 @@ local monster_chapter = {
},
[20041401]={
["monster_base"]=10002,
- ["atk"]=26745000,
+ ["atk"]=9630000,
["hp"]=9210000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16452,7 +16452,7 @@ local monster_chapter = {
[20041501]={
["monster_base"]=30003,
["is_boss"]=2,
- ["atk"]=32094000,
+ ["atk"]=11556000,
["hp"]=12280000000,
["atk_times"]=3,
["hurt_skill"]={
@@ -16471,7 +16471,7 @@ local monster_chapter = {
},
[20050101]={
["monster_base"]=10001,
- ["atk"]=18080000,
+ ["atk"]=6510000,
["hp"]=5056000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16483,7 +16483,7 @@ local monster_chapter = {
},
[20050201]={
["monster_base"]=10002,
- ["atk"]=19888000,
+ ["atk"]=7161000,
["hp"]=6320000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16495,7 +16495,7 @@ local monster_chapter = {
},
[20050301]={
["monster_base"]=10010,
- ["atk"]=21696000,
+ ["atk"]=7812000,
["hp"]=6320000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16507,7 +16507,7 @@ local monster_chapter = {
},
[20050401]={
["monster_base"]=10003,
- ["atk"]=23504000,
+ ["atk"]=8463000,
["hp"]=6320000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16520,7 +16520,7 @@ local monster_chapter = {
[20050501]={
["monster_base"]=20006,
["is_boss"]=1,
- ["atk"]=25312000,
+ ["atk"]=9114000,
["hp"]=7584000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16535,7 +16535,7 @@ local monster_chapter = {
},
[20050601]={
["monster_base"]=10003,
- ["atk"]=19888000,
+ ["atk"]=7161000,
["hp"]=6952000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16547,7 +16547,7 @@ local monster_chapter = {
},
[20050701]={
["monster_base"]=10005,
- ["atk"]=21696000,
+ ["atk"]=7812000,
["hp"]=6952000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16559,7 +16559,7 @@ local monster_chapter = {
},
[20050801]={
["monster_base"]=10001,
- ["atk"]=23504000,
+ ["atk"]=8463000,
["hp"]=7584000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16571,7 +16571,7 @@ local monster_chapter = {
},
[20050901]={
["monster_base"]=10002,
- ["atk"]=25312000,
+ ["atk"]=9114000,
["hp"]=7584000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16584,7 +16584,7 @@ local monster_chapter = {
[20051001]={
["monster_base"]=20008,
["is_boss"]=1,
- ["atk"]=27120000,
+ ["atk"]=9765000,
["hp"]=10112000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16599,7 +16599,7 @@ local monster_chapter = {
},
[20051101]={
["monster_base"]=10002,
- ["atk"]=21696000,
+ ["atk"]=7812000,
["hp"]=8216000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16611,7 +16611,7 @@ local monster_chapter = {
},
[20051201]={
["monster_base"]=10010,
- ["atk"]=23504000,
+ ["atk"]=8463000,
["hp"]=9480000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16623,7 +16623,7 @@ local monster_chapter = {
},
[20051301]={
["monster_base"]=10001,
- ["atk"]=25312000,
+ ["atk"]=9114000,
["hp"]=9480000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16635,7 +16635,7 @@ local monster_chapter = {
},
[20051401]={
["monster_base"]=10003,
- ["atk"]=27120000,
+ ["atk"]=9765000,
["hp"]=9480000000,
["atk_times"]=2,
["hurt_skill"]={
@@ -16648,7 +16648,7 @@ local monster_chapter = {
[20051501]={
["monster_base"]=30003,
["is_boss"]=2,
- ["atk"]=32544000,
+ ["atk"]=11718000,
["hp"]=12640000000,
["atk_times"]=3,
["hurt_skill"]={
diff --git a/lua/app/config/monster_daily_challenge.lua b/lua/app/config/monster_daily_challenge.lua
index c6525e6c..5fe57809 100644
--- a/lua/app/config/monster_daily_challenge.lua
+++ b/lua/app/config/monster_daily_challenge.lua
@@ -1,44 +1,336 @@
local monster_daily_challenge = {
[10102]={
- ["monster_base"]=10011,
- ["atk"]=1500000,
- ["hp"]=14400000,
+ ["monster_base"]=10001,
+ ["hp"]=1500000,
+ ["atk"]=14400000,
["atk_times"]=2,
["hurt_skill"]={
- 20031,
- 20032,
- 20033
+ 20001,
+ 20002,
+ 20003
},
["monster_exp"]=11000
},
[10202]={
- ["monster_base"]=10007,
- ["atk"]=1650000,
- ["hp"]=18000000,
+ ["monster_base"]=10002,
+ ["hp"]=1650000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
- 20019,
- 20020,
- 20021
+ 20004,
+ 20005,
+ 20006
},
["monster_exp"]=11000
},
[10302]={
- ["monster_base"]=10010,
- ["atk"]=1800000,
- ["hp"]=18000000,
+ ["monster_base"]=10001,
+ ["hp"]=1800000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
- 20028,
- 20029,
- 20030
+ 20001,
+ 20002,
+ 20003
},
["monster_exp"]=17000
},
[10402]={
+ ["monster_base"]=10003,
+ ["hp"]=1950000,
+ ["atk"]=18000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20007,
+ 20008,
+ 20009
+ },
+ ["monster_exp"]=15000
+ },
+ [10502]={
+ ["monster_base"]=413001,
+ ["is_boss"]=1,
+ ["hp"]=3150000,
+ ["atk"]=43200000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 40012,
+ 40013,
+ 40014,
+ 40015
+ },
+ ["skill"]={
+ 40016
+ },
+ ["monster_exp"]=12000
+ },
+ [10602]={
+ ["monster_base"]=10002,
+ ["hp"]=1650000,
+ ["atk"]=19800000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20004,
+ 20005,
+ 20006
+ },
+ ["monster_exp"]=14000
+ },
+ [10702]={
+ ["monster_base"]=10001,
+ ["hp"]=1800000,
+ ["atk"]=19800000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20001,
+ 20002,
+ 20003
+ },
+ ["monster_exp"]=12000
+ },
+ [10802]={
+ ["monster_base"]=10003,
+ ["hp"]=1950000,
+ ["atk"]=21600000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20007,
+ 20008,
+ 20009
+ },
+ ["monster_exp"]=13000
+ },
+ [10902]={
+ ["monster_base"]=10002,
+ ["hp"]=2100000,
+ ["atk"]=21600000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20004,
+ 20005,
+ 20006
+ },
+ ["monster_exp"]=16000
+ },
+ [11002]={
+ ["monster_base"]=20001,
+ ["is_boss"]=1,
+ ["hp"]=3375000,
+ ["atk"]=57600000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20058,
+ 20059,
+ 20060
+ },
+ ["skill"]={
+ 20061
+ },
+ ["passive_skill"]={
+ 20062
+ },
+ ["monster_exp"]=14000
+ },
+ [11102]={
+ ["monster_base"]=10001,
+ ["hp"]=1800000,
+ ["atk"]=23400000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20001,
+ 20002,
+ 20003
+ },
+ ["monster_exp"]=15000
+ },
+ [11202]={
+ ["monster_base"]=10003,
+ ["hp"]=1950000,
+ ["atk"]=27000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20007,
+ 20008,
+ 20009
+ },
+ ["monster_exp"]=18000
+ },
+ [11302]={
+ ["monster_base"]=10002,
+ ["hp"]=2100000,
+ ["atk"]=27000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20004,
+ 20005,
+ 20006
+ },
+ ["monster_exp"]=18000
+ },
+ [11402]={
+ ["monster_base"]=10003,
+ ["hp"]=2250000,
+ ["atk"]=27000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20007,
+ 20008,
+ 20009
+ },
+ ["monster_exp"]=22000
+ },
+ [11502]={
+ ["monster_base"]=453001,
+ ["is_boss"]=2,
+ ["hp"]=4158000,
+ ["atk"]=144000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 40007,
+ 40008,
+ 40009,
+ 40010
+ },
+ ["skill"]={
+ 40011
+ },
+ ["monster_exp"]=4000
+ },
+ [11602]={
["monster_base"]=10004,
- ["atk"]=1950000,
- ["hp"]=18000000,
+ ["hp"]=1500000,
+ ["atk"]=14400000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20010,
+ 20011,
+ 20012
+ },
+ ["monster_exp"]=11000
+ },
+ [11702]={
+ ["monster_base"]=10001,
+ ["hp"]=1650000,
+ ["atk"]=18000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20001,
+ 20002,
+ 20003
+ },
+ ["monster_exp"]=11000
+ },
+ [11802]={
+ ["monster_base"]=10005,
+ ["hp"]=1800000,
+ ["atk"]=18000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20013,
+ 20014,
+ 20015
+ },
+ ["monster_exp"]=17000
+ },
+ [11902]={
+ ["monster_base"]=10002,
+ ["hp"]=1950000,
+ ["atk"]=18000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20004,
+ 20005,
+ 20006
+ },
+ ["monster_exp"]=15000
+ },
+ [12002]={
+ ["monster_base"]=20001,
+ ["is_boss"]=1,
+ ["hp"]=3150000,
+ ["atk"]=43200000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20058,
+ 20059,
+ 20060
+ },
+ ["skill"]={
+ 20061
+ },
+ ["passive_skill"]={
+ 20062
+ },
+ ["monster_exp"]=12000
+ },
+ [12102]={
+ ["monster_base"]=10002,
+ ["hp"]=1650000,
+ ["atk"]=19800000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20004,
+ 20005,
+ 20006
+ },
+ ["monster_exp"]=14000
+ },
+ [12202]={
+ ["monster_base"]=10001,
+ ["hp"]=1800000,
+ ["atk"]=19800000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20001,
+ 20002,
+ 20003
+ },
+ ["monster_exp"]=12000
+ },
+ [12302]={
+ ["monster_base"]=10004,
+ ["hp"]=1950000,
+ ["atk"]=21600000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20010,
+ 20011,
+ 20012
+ },
+ ["monster_exp"]=13000
+ },
+ [12402]={
+ ["monster_base"]=10005,
+ ["hp"]=2100000,
+ ["atk"]=21600000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20013,
+ 20014,
+ 20015
+ },
+ ["monster_exp"]=16000
+ },
+ [12502]={
+ ["monster_base"]=20002,
+ ["is_boss"]=1,
+ ["hp"]=3375000,
+ ["atk"]=57600000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20063,
+ 20064,
+ 20065
+ },
+ ["skill"]={
+ 20066
+ },
+ ["monster_exp"]=14000
+ },
+ [12602]={
+ ["monster_base"]=10004,
+ ["hp"]=1800000,
+ ["atk"]=23400000,
["atk_times"]=2,
["hurt_skill"]={
20010,
@@ -47,11 +339,111 @@ local monster_daily_challenge = {
},
["monster_exp"]=15000
},
- [10502]={
+ [12702]={
+ ["monster_base"]=10001,
+ ["hp"]=1950000,
+ ["atk"]=27000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20001,
+ 20002,
+ 20003
+ },
+ ["monster_exp"]=18000
+ },
+ [12802]={
+ ["monster_base"]=10005,
+ ["hp"]=2100000,
+ ["atk"]=27000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20013,
+ 20014,
+ 20015
+ },
+ ["monster_exp"]=18000
+ },
+ [12902]={
+ ["monster_base"]=10002,
+ ["hp"]=2250000,
+ ["atk"]=27000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20004,
+ 20005,
+ 20006
+ },
+ ["monster_exp"]=22000
+ },
+ [13002]={
+ ["monster_base"]=20003,
+ ["is_boss"]=2,
+ ["hp"]=4158000,
+ ["atk"]=144000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20067,
+ 20068,
+ 20069
+ },
+ ["skill"]={
+ 20070
+ },
+ ["monster_exp"]=4000
+ },
+ [13102]={
+ ["monster_base"]=10005,
+ ["hp"]=1824000,
+ ["atk"]=14400000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20013,
+ 20014,
+ 20015
+ },
+ ["monster_exp"]=11000
+ },
+ [13202]={
+ ["monster_base"]=10007,
+ ["hp"]=1976000,
+ ["atk"]=18000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20019,
+ 20020,
+ 20021
+ },
+ ["monster_exp"]=11000
+ },
+ [13302]={
+ ["monster_base"]=10004,
+ ["hp"]=2128000,
+ ["atk"]=18000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20010,
+ 20011,
+ 20012
+ },
+ ["monster_exp"]=17000
+ },
+ [13402]={
+ ["monster_base"]=10006,
+ ["hp"]=2280000,
+ ["atk"]=18000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20016,
+ 20017,
+ 20018
+ },
+ ["monster_exp"]=15000
+ },
+ [13502]={
["monster_base"]=20004,
["is_boss"]=1,
- ["atk"]=3150000,
- ["hp"]=43200000,
+ ["hp"]=2280000,
+ ["atk"]=43200000,
["atk_times"]=2,
["hurt_skill"]={
20071,
@@ -63,10 +455,205 @@ local monster_daily_challenge = {
},
["monster_exp"]=12000
},
- [10602]={
+ [13602]={
+ ["monster_base"]=10006,
+ ["hp"]=1520000,
+ ["atk"]=19800000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20016,
+ 20017,
+ 20018
+ },
+ ["monster_exp"]=14000
+ },
+ [13702]={
+ ["monster_base"]=10004,
+ ["hp"]=1672000,
+ ["atk"]=19800000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20010,
+ 20011,
+ 20012
+ },
+ ["monster_exp"]=12000
+ },
+ [13802]={
["monster_base"]=10007,
- ["atk"]=1650000,
- ["hp"]=19800000,
+ ["hp"]=1824000,
+ ["atk"]=21600000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20019,
+ 20020,
+ 20021
+ },
+ ["monster_exp"]=13000
+ },
+ [13902]={
+ ["monster_base"]=10008,
+ ["hp"]=1976000,
+ ["atk"]=21600000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20022,
+ 20023,
+ 20024
+ },
+ ["monster_exp"]=16000
+ },
+ [14002]={
+ ["monster_base"]=20001,
+ ["is_boss"]=1,
+ ["hp"]=2128000,
+ ["atk"]=57600000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20058,
+ 20059,
+ 20060
+ },
+ ["skill"]={
+ 20061
+ },
+ ["passive_skill"]={
+ 20062
+ },
+ ["monster_exp"]=14000
+ },
+ [14102]={
+ ["monster_base"]=10007,
+ ["hp"]=1672000,
+ ["atk"]=23400000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20019,
+ 20020,
+ 20021
+ },
+ ["monster_exp"]=15000
+ },
+ [14202]={
+ ["monster_base"]=10004,
+ ["hp"]=1824000,
+ ["atk"]=27000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20010,
+ 20011,
+ 20012
+ },
+ ["monster_exp"]=18000
+ },
+ [14302]={
+ ["monster_base"]=10006,
+ ["hp"]=1976000,
+ ["atk"]=27000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20016,
+ 20017,
+ 20018
+ },
+ ["monster_exp"]=18000
+ },
+ [14402]={
+ ["monster_base"]=10005,
+ ["hp"]=2128000,
+ ["atk"]=27000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20013,
+ 20014,
+ 20015
+ },
+ ["monster_exp"]=22000
+ },
+ [14502]={
+ ["monster_base"]=20003,
+ ["is_boss"]=2,
+ ["hp"]=2736000,
+ ["atk"]=144000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20067,
+ 20068,
+ 20069
+ },
+ ["skill"]={
+ 20070
+ },
+ ["monster_exp"]=4000
+ },
+ [14602]={
+ ["monster_base"]=10011,
+ ["hp"]=1500000,
+ ["atk"]=14400000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20031,
+ 20032,
+ 20033
+ },
+ ["monster_exp"]=11000
+ },
+ [14702]={
+ ["monster_base"]=10007,
+ ["hp"]=1650000,
+ ["atk"]=18000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20019,
+ 20020,
+ 20021
+ },
+ ["monster_exp"]=11000
+ },
+ [14802]={
+ ["monster_base"]=10010,
+ ["hp"]=1800000,
+ ["atk"]=18000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20028,
+ 20029,
+ 20030
+ },
+ ["monster_exp"]=17000
+ },
+ [14902]={
+ ["monster_base"]=10004,
+ ["hp"]=1950000,
+ ["atk"]=18000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20010,
+ 20011,
+ 20012
+ },
+ ["monster_exp"]=15000
+ },
+ [15002]={
+ ["monster_base"]=20004,
+ ["is_boss"]=1,
+ ["hp"]=3150000,
+ ["atk"]=43200000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20071,
+ 20072,
+ 20073
+ },
+ ["skill"]={
+ 20074
+ },
+ ["monster_exp"]=12000
+ },
+ [15102]={
+ ["monster_base"]=10007,
+ ["hp"]=1650000,
+ ["atk"]=19800000,
["atk_times"]=2,
["hurt_skill"]={
20019,
@@ -75,10 +662,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=14000
},
- [10702]={
+ [15202]={
["monster_base"]=10009,
- ["atk"]=1800000,
- ["hp"]=19800000,
+ ["hp"]=1800000,
+ ["atk"]=19800000,
["atk_times"]=2,
["hurt_skill"]={
20025,
@@ -87,10 +674,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=12000
},
- [10802]={
+ [15302]={
["monster_base"]=10004,
- ["atk"]=1950000,
- ["hp"]=21600000,
+ ["hp"]=1950000,
+ ["atk"]=21600000,
["atk_times"]=2,
["hurt_skill"]={
20010,
@@ -99,10 +686,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=13000
},
- [10902]={
+ [15402]={
["monster_base"]=10010,
- ["atk"]=2100000,
- ["hp"]=21600000,
+ ["hp"]=2100000,
+ ["atk"]=21600000,
["atk_times"]=2,
["hurt_skill"]={
20028,
@@ -111,11 +698,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=16000
},
- [11002]={
+ [15502]={
["monster_base"]=20005,
["is_boss"]=1,
- ["atk"]=3375000,
- ["hp"]=57600000,
+ ["hp"]=3375000,
+ ["atk"]=57600000,
["atk_times"]=2,
["hurt_skill"]={
20075,
@@ -127,10 +714,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=14000
},
- [11102]={
+ [15602]={
["monster_base"]=10010,
- ["atk"]=1800000,
- ["hp"]=23400000,
+ ["hp"]=1800000,
+ ["atk"]=23400000,
["atk_times"]=2,
["hurt_skill"]={
20028,
@@ -139,10 +726,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=15000
},
- [11202]={
+ [15702]={
["monster_base"]=10007,
- ["atk"]=1950000,
- ["hp"]=27000000,
+ ["hp"]=1950000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20019,
@@ -151,10 +738,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=18000
},
- [11302]={
+ [15802]={
["monster_base"]=10011,
- ["atk"]=2100000,
- ["hp"]=27000000,
+ ["hp"]=2100000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20031,
@@ -163,10 +750,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=18000
},
- [11402]={
+ [15902]={
["monster_base"]=10009,
- ["atk"]=2250000,
- ["hp"]=27000000,
+ ["hp"]=2250000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20025,
@@ -175,11 +762,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=22000
},
- [11502]={
+ [16002]={
["monster_base"]=30001,
["is_boss"]=2,
- ["atk"]=4158000,
- ["hp"]=144000000,
+ ["hp"]=4158000,
+ ["atk"]=144000000,
["atk_times"]=3,
["hurt_skill"]={
20091,
@@ -196,10 +783,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=4000
},
- [20102]={
+ [16102]={
["monster_base"]=10012,
- ["atk"]=1500000,
- ["hp"]=14400000,
+ ["hp"]=1500000,
+ ["atk"]=14400000,
["atk_times"]=2,
["hurt_skill"]={
20034,
@@ -208,10 +795,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=11000
},
- [20202]={
+ [16202]={
["monster_base"]=10007,
- ["atk"]=1650000,
- ["hp"]=18000000,
+ ["hp"]=1650000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
20019,
@@ -220,10 +807,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=11000
},
- [20302]={
+ [16302]={
["monster_base"]=10013,
- ["atk"]=1800000,
- ["hp"]=18000000,
+ ["hp"]=1800000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
20037,
@@ -232,10 +819,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=17000
},
- [20402]={
+ [16402]={
["monster_base"]=10009,
- ["atk"]=1950000,
- ["hp"]=18000000,
+ ["hp"]=1950000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
20025,
@@ -244,11 +831,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=15000
},
- [20502]={
+ [16502]={
["monster_base"]=20005,
["is_boss"]=1,
- ["atk"]=3150000,
- ["hp"]=43200000,
+ ["hp"]=3150000,
+ ["atk"]=43200000,
["atk_times"]=2,
["hurt_skill"]={
20075,
@@ -260,10 +847,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=12000
},
- [20602]={
+ [16602]={
["monster_base"]=10009,
- ["atk"]=1650000,
- ["hp"]=19800000,
+ ["hp"]=1650000,
+ ["atk"]=19800000,
["atk_times"]=2,
["hurt_skill"]={
20025,
@@ -272,10 +859,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=14000
},
- [20702]={
+ [16702]={
["monster_base"]=10012,
- ["atk"]=1800000,
- ["hp"]=19800000,
+ ["hp"]=1800000,
+ ["atk"]=19800000,
["atk_times"]=2,
["hurt_skill"]={
20034,
@@ -284,10 +871,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=12000
},
- [20802]={
+ [16802]={
["monster_base"]=10007,
- ["atk"]=1950000,
- ["hp"]=21600000,
+ ["hp"]=1950000,
+ ["atk"]=21600000,
["atk_times"]=2,
["hurt_skill"]={
20019,
@@ -296,10 +883,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=13000
},
- [20902]={
+ [16902]={
["monster_base"]=10013,
- ["atk"]=2100000,
- ["hp"]=21600000,
+ ["hp"]=2100000,
+ ["atk"]=21600000,
["atk_times"]=2,
["hurt_skill"]={
20037,
@@ -308,11 +895,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=16000
},
- [21002]={
+ [17002]={
["monster_base"]=20006,
["is_boss"]=1,
- ["atk"]=3375000,
- ["hp"]=57600000,
+ ["hp"]=3375000,
+ ["atk"]=57600000,
["atk_times"]=2,
["hurt_skill"]={
20079,
@@ -324,10 +911,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=14000
},
- [21102]={
+ [17102]={
["monster_base"]=10013,
- ["atk"]=1800000,
- ["hp"]=23400000,
+ ["hp"]=1800000,
+ ["atk"]=23400000,
["atk_times"]=2,
["hurt_skill"]={
20037,
@@ -336,10 +923,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=15000
},
- [21202]={
+ [17202]={
["monster_base"]=10007,
- ["atk"]=1950000,
- ["hp"]=27000000,
+ ["hp"]=1950000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20019,
@@ -348,10 +935,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=18000
},
- [21302]={
+ [17302]={
["monster_base"]=10012,
- ["atk"]=2100000,
- ["hp"]=27000000,
+ ["hp"]=2100000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20034,
@@ -360,10 +947,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=18000
},
- [21402]={
+ [17402]={
["monster_base"]=10009,
- ["atk"]=2250000,
- ["hp"]=27000000,
+ ["hp"]=2250000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20025,
@@ -372,11 +959,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=22000
},
- [21502]={
+ [17502]={
["monster_base"]=30002,
["is_boss"]=2,
- ["atk"]=4158000,
- ["hp"]=144000000,
+ ["hp"]=4158000,
+ ["atk"]=144000000,
["atk_times"]=3,
["hurt_skill"]={
20096,
@@ -393,10 +980,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=4000
},
- [30102]={
+ [17602]={
["monster_base"]=10014,
- ["atk"]=1500000,
- ["hp"]=14400000,
+ ["hp"]=1500000,
+ ["atk"]=14400000,
["atk_times"]=2,
["hurt_skill"]={
20040,
@@ -405,10 +992,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=11000
},
- [30202]={
+ [17702]={
["monster_base"]=10010,
- ["atk"]=1650000,
- ["hp"]=18000000,
+ ["hp"]=1650000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
20028,
@@ -417,10 +1004,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=11000
},
- [30302]={
+ [17802]={
["monster_base"]=10012,
- ["atk"]=1800000,
- ["hp"]=18000000,
+ ["hp"]=1800000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
20034,
@@ -429,10 +1016,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=17000
},
- [30402]={
+ [17902]={
["monster_base"]=10013,
- ["atk"]=1950000,
- ["hp"]=18000000,
+ ["hp"]=1950000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
20037,
@@ -441,11 +1028,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=15000
},
- [30502]={
+ [18002]={
["monster_base"]=20005,
["is_boss"]=1,
- ["atk"]=3150000,
- ["hp"]=43200000,
+ ["hp"]=3150000,
+ ["atk"]=43200000,
["atk_times"]=2,
["hurt_skill"]={
20075,
@@ -457,10 +1044,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=12000
},
- [30602]={
+ [18102]={
["monster_base"]=10012,
- ["atk"]=1650000,
- ["hp"]=19800000,
+ ["hp"]=1650000,
+ ["atk"]=19800000,
["atk_times"]=2,
["hurt_skill"]={
20034,
@@ -469,10 +1056,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=14000
},
- [30702]={
+ [18202]={
["monster_base"]=10010,
- ["atk"]=1800000,
- ["hp"]=19800000,
+ ["hp"]=1800000,
+ ["atk"]=19800000,
["atk_times"]=2,
["hurt_skill"]={
20028,
@@ -481,10 +1068,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=12000
},
- [30802]={
+ [18302]={
["monster_base"]=10014,
- ["atk"]=1950000,
- ["hp"]=21600000,
+ ["hp"]=1950000,
+ ["atk"]=21600000,
["atk_times"]=2,
["hurt_skill"]={
20040,
@@ -493,10 +1080,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=13000
},
- [30902]={
+ [18402]={
["monster_base"]=10013,
- ["atk"]=2100000,
- ["hp"]=21600000,
+ ["hp"]=2100000,
+ ["atk"]=21600000,
["atk_times"]=2,
["hurt_skill"]={
20037,
@@ -505,11 +1092,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=16000
},
- [31002]={
+ [18502]={
["monster_base"]=20006,
["is_boss"]=1,
- ["atk"]=3375000,
- ["hp"]=57600000,
+ ["hp"]=3375000,
+ ["atk"]=57600000,
["atk_times"]=2,
["hurt_skill"]={
20079,
@@ -521,10 +1108,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=14000
},
- [31102]={
+ [18602]={
["monster_base"]=10013,
- ["atk"]=1800000,
- ["hp"]=23400000,
+ ["hp"]=1800000,
+ ["atk"]=23400000,
["atk_times"]=2,
["hurt_skill"]={
20037,
@@ -533,10 +1120,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=15000
},
- [31202]={
+ [18702]={
["monster_base"]=10010,
- ["atk"]=1950000,
- ["hp"]=27000000,
+ ["hp"]=1950000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20028,
@@ -545,10 +1132,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=18000
},
- [31302]={
+ [18802]={
["monster_base"]=10012,
- ["atk"]=2100000,
- ["hp"]=27000000,
+ ["hp"]=2100000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20034,
@@ -557,10 +1144,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=18000
},
- [31402]={
+ [18902]={
["monster_base"]=10014,
- ["atk"]=2250000,
- ["hp"]=27000000,
+ ["hp"]=2250000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20040,
@@ -569,11 +1156,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=22000
},
- [31502]={
+ [19002]={
["monster_base"]=30003,
["is_boss"]=2,
- ["atk"]=4158000,
- ["hp"]=144000000,
+ ["hp"]=4158000,
+ ["atk"]=144000000,
["atk_times"]=3,
["hurt_skill"]={
20101,
@@ -589,10 +1176,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=4000
},
- [40102]={
+ [19102]={
["monster_base"]=10016,
- ["atk"]=1500000,
- ["hp"]=14400000,
+ ["hp"]=1500000,
+ ["atk"]=14400000,
["atk_times"]=2,
["hurt_skill"]={
20046,
@@ -601,10 +1188,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=11000
},
- [40202]={
+ [19202]={
["monster_base"]=10006,
- ["atk"]=1650000,
- ["hp"]=18000000,
+ ["hp"]=1650000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
20016,
@@ -613,10 +1200,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=11000
},
- [40302]={
+ [19302]={
["monster_base"]=10013,
- ["atk"]=1800000,
- ["hp"]=18000000,
+ ["hp"]=1800000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
20037,
@@ -625,10 +1212,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=17000
},
- [40402]={
+ [19402]={
["monster_base"]=10015,
- ["atk"]=1950000,
- ["hp"]=18000000,
+ ["hp"]=1950000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
20043,
@@ -637,11 +1224,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=15000
},
- [40502]={
+ [19502]={
["monster_base"]=20005,
["is_boss"]=1,
- ["atk"]=3150000,
- ["hp"]=43200000,
+ ["hp"]=3150000,
+ ["atk"]=43200000,
["atk_times"]=2,
["hurt_skill"]={
20075,
@@ -653,10 +1240,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=12000
},
- [40602]={
+ [19602]={
["monster_base"]=10013,
- ["atk"]=1650000,
- ["hp"]=19800000,
+ ["hp"]=1650000,
+ ["atk"]=19800000,
["atk_times"]=2,
["hurt_skill"]={
20037,
@@ -665,10 +1252,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=14000
},
- [40702]={
+ [19702]={
["monster_base"]=10007,
- ["atk"]=1800000,
- ["hp"]=19800000,
+ ["hp"]=1800000,
+ ["atk"]=19800000,
["atk_times"]=2,
["hurt_skill"]={
20019,
@@ -677,10 +1264,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=12000
},
- [40802]={
+ [19802]={
["monster_base"]=10015,
- ["atk"]=1950000,
- ["hp"]=21600000,
+ ["hp"]=1950000,
+ ["atk"]=21600000,
["atk_times"]=2,
["hurt_skill"]={
20043,
@@ -689,10 +1276,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=13000
},
- [40902]={
+ [19902]={
["monster_base"]=10006,
- ["atk"]=2100000,
- ["hp"]=21600000,
+ ["hp"]=2100000,
+ ["atk"]=21600000,
["atk_times"]=2,
["hurt_skill"]={
20016,
@@ -701,11 +1288,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=16000
},
- [41002]={
+ [20002]={
["monster_base"]=20007,
["is_boss"]=1,
- ["atk"]=3375000,
- ["hp"]=57600000,
+ ["hp"]=3375000,
+ ["atk"]=57600000,
["atk_times"]=2,
["hurt_skill"]={
20083,
@@ -717,10 +1304,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=14000
},
- [41102]={
+ [20102]={
["monster_base"]=10007,
- ["atk"]=1800000,
- ["hp"]=23400000,
+ ["hp"]=1800000,
+ ["atk"]=23400000,
["atk_times"]=2,
["hurt_skill"]={
20019,
@@ -729,10 +1316,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=15000
},
- [41202]={
+ [20202]={
["monster_base"]=10016,
- ["atk"]=1950000,
- ["hp"]=27000000,
+ ["hp"]=1950000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20046,
@@ -741,10 +1328,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=18000
},
- [41302]={
+ [20302]={
["monster_base"]=10006,
- ["atk"]=2100000,
- ["hp"]=27000000,
+ ["hp"]=2100000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20016,
@@ -753,10 +1340,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=18000
},
- [41402]={
+ [20402]={
["monster_base"]=10015,
- ["atk"]=2250000,
- ["hp"]=27000000,
+ ["hp"]=2250000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20043,
@@ -765,11 +1352,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=22000
},
- [41502]={
+ [20502]={
["monster_base"]=30004,
["is_boss"]=2,
- ["atk"]=4158000,
- ["hp"]=144000000,
+ ["hp"]=4158000,
+ ["atk"]=144000000,
["atk_times"]=3,
["hurt_skill"]={
20105,
@@ -786,10 +1373,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=4000
},
- [50102]={
+ [20602]={
["monster_base"]=10017,
- ["atk"]=1500000,
- ["hp"]=14400000,
+ ["hp"]=1500000,
+ ["atk"]=14400000,
["atk_times"]=2,
["hurt_skill"]={
20049,
@@ -798,10 +1385,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=11000
},
- [50202]={
+ [20702]={
["monster_base"]=10015,
- ["atk"]=1650000,
- ["hp"]=18000000,
+ ["hp"]=1650000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
20043,
@@ -810,10 +1397,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=11000
},
- [50302]={
+ [20802]={
["monster_base"]=10018,
- ["atk"]=1800000,
- ["hp"]=18000000,
+ ["hp"]=1800000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
20052,
@@ -822,10 +1409,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=17000
},
- [50402]={
+ [20902]={
["monster_base"]=10019,
- ["atk"]=1950000,
- ["hp"]=18000000,
+ ["hp"]=1950000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
20055,
@@ -834,11 +1421,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=15000
},
- [50502]={
+ [21002]={
["monster_base"]=20007,
["is_boss"]=1,
- ["atk"]=3150000,
- ["hp"]=43200000,
+ ["hp"]=3150000,
+ ["atk"]=43200000,
["atk_times"]=2,
["hurt_skill"]={
20083,
@@ -850,10 +1437,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=12000
},
- [50602]={
+ [21102]={
["monster_base"]=10018,
- ["atk"]=1650000,
- ["hp"]=19800000,
+ ["hp"]=1650000,
+ ["atk"]=19800000,
["atk_times"]=2,
["hurt_skill"]={
20052,
@@ -862,10 +1449,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=14000
},
- [50702]={
+ [21202]={
["monster_base"]=10016,
- ["atk"]=1800000,
- ["hp"]=19800000,
+ ["hp"]=1800000,
+ ["atk"]=19800000,
["atk_times"]=2,
["hurt_skill"]={
20046,
@@ -874,10 +1461,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=12000
},
- [50802]={
+ [21302]={
["monster_base"]=10019,
- ["atk"]=1950000,
- ["hp"]=21600000,
+ ["hp"]=1950000,
+ ["atk"]=21600000,
["atk_times"]=2,
["hurt_skill"]={
20055,
@@ -886,10 +1473,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=13000
},
- [50902]={
+ [21402]={
["monster_base"]=10015,
- ["atk"]=2100000,
- ["hp"]=21600000,
+ ["hp"]=2100000,
+ ["atk"]=21600000,
["atk_times"]=2,
["hurt_skill"]={
20043,
@@ -898,11 +1485,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=16000
},
- [51002]={
+ [21502]={
["monster_base"]=20008,
["is_boss"]=1,
- ["atk"]=3375000,
- ["hp"]=57600000,
+ ["hp"]=3375000,
+ ["atk"]=57600000,
["atk_times"]=2,
["hurt_skill"]={
20087,
@@ -914,10 +1501,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=14000
},
- [51102]={
+ [21602]={
["monster_base"]=10016,
- ["atk"]=1800000,
- ["hp"]=23400000,
+ ["hp"]=1800000,
+ ["atk"]=23400000,
["atk_times"]=2,
["hurt_skill"]={
20046,
@@ -926,10 +1513,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=15000
},
- [51202]={
+ [21702]={
["monster_base"]=10017,
- ["atk"]=1950000,
- ["hp"]=27000000,
+ ["hp"]=1950000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20049,
@@ -938,10 +1525,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=18000
},
- [51302]={
+ [21802]={
["monster_base"]=10015,
- ["atk"]=2100000,
- ["hp"]=27000000,
+ ["hp"]=2100000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20043,
@@ -950,10 +1537,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=18000
},
- [51402]={
+ [21902]={
["monster_base"]=10019,
- ["atk"]=2250000,
- ["hp"]=27000000,
+ ["hp"]=2250000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20055,
@@ -962,11 +1549,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=22000
},
- [51502]={
+ [22002]={
["monster_base"]=30006,
["is_boss"]=2,
- ["atk"]=4158000,
- ["hp"]=144000000,
+ ["hp"]=4158000,
+ ["atk"]=144000000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -983,10 +1570,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=4000
},
- [60102]={
+ [22102]={
["monster_base"]=10014,
- ["atk"]=1500000,
- ["hp"]=14400000,
+ ["hp"]=1500000,
+ ["atk"]=14400000,
["atk_times"]=2,
["hurt_skill"]={
20040,
@@ -995,10 +1582,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=11000
},
- [60202]={
+ [22202]={
["monster_base"]=10019,
- ["atk"]=1650000,
- ["hp"]=18000000,
+ ["hp"]=1650000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
20055,
@@ -1007,10 +1594,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=11000
},
- [60302]={
+ [22302]={
["monster_base"]=10017,
- ["atk"]=1800000,
- ["hp"]=18000000,
+ ["hp"]=1800000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
20049,
@@ -1019,10 +1606,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=17000
},
- [60402]={
+ [22402]={
["monster_base"]=10013,
- ["atk"]=1950000,
- ["hp"]=18000000,
+ ["hp"]=1950000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
20037,
@@ -1031,11 +1618,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=15000
},
- [60502]={
+ [22502]={
["monster_base"]=20008,
["is_boss"]=1,
- ["atk"]=3150000,
- ["hp"]=43200000,
+ ["hp"]=3150000,
+ ["atk"]=43200000,
["atk_times"]=2,
["hurt_skill"]={
20087,
@@ -1047,10 +1634,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=12000
},
- [60602]={
+ [22602]={
["monster_base"]=10013,
- ["atk"]=1650000,
- ["hp"]=19800000,
+ ["hp"]=1650000,
+ ["atk"]=19800000,
["atk_times"]=2,
["hurt_skill"]={
20037,
@@ -1059,10 +1646,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=14000
},
- [60702]={
+ [22702]={
["monster_base"]=10017,
- ["atk"]=1800000,
- ["hp"]=19800000,
+ ["hp"]=1800000,
+ ["atk"]=19800000,
["atk_times"]=2,
["hurt_skill"]={
20049,
@@ -1071,10 +1658,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=12000
},
- [60802]={
+ [22802]={
["monster_base"]=10014,
- ["atk"]=1950000,
- ["hp"]=21600000,
+ ["hp"]=1950000,
+ ["atk"]=21600000,
["atk_times"]=2,
["hurt_skill"]={
20040,
@@ -1083,10 +1670,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=13000
},
- [60902]={
+ [22902]={
["monster_base"]=10019,
- ["atk"]=2100000,
- ["hp"]=21600000,
+ ["hp"]=2100000,
+ ["atk"]=21600000,
["atk_times"]=2,
["hurt_skill"]={
20055,
@@ -1095,11 +1682,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=16000
},
- [61002]={
+ [23002]={
["monster_base"]=20007,
["is_boss"]=1,
- ["atk"]=3375000,
- ["hp"]=57600000,
+ ["hp"]=3375000,
+ ["atk"]=57600000,
["atk_times"]=2,
["hurt_skill"]={
20083,
@@ -1111,10 +1698,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=14000
},
- [61102]={
+ [23102]={
["monster_base"]=10019,
- ["atk"]=1800000,
- ["hp"]=23400000,
+ ["hp"]=1800000,
+ ["atk"]=23400000,
["atk_times"]=2,
["hurt_skill"]={
20055,
@@ -1123,10 +1710,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=15000
},
- [61202]={
+ [23202]={
["monster_base"]=10013,
- ["atk"]=1950000,
- ["hp"]=27000000,
+ ["hp"]=1950000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20037,
@@ -1135,10 +1722,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=18000
},
- [61302]={
+ [23302]={
["monster_base"]=10017,
- ["atk"]=2100000,
- ["hp"]=27000000,
+ ["hp"]=2100000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20049,
@@ -1147,10 +1734,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=18000
},
- [61402]={
+ [23402]={
["monster_base"]=10014,
- ["atk"]=2250000,
- ["hp"]=27000000,
+ ["hp"]=2250000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20040,
@@ -1159,11 +1746,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=22000
},
- [61502]={
+ [23502]={
["monster_base"]=30007,
["is_boss"]=2,
- ["atk"]=4158000,
- ["hp"]=144000000,
+ ["hp"]=4158000,
+ ["atk"]=144000000,
["atk_times"]=3,
["hurt_skill"]={
20120,
@@ -1180,801 +1767,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=4000
},
- [70102]={
- ["monster_base"]=10004,
- ["atk"]=1500000,
- ["hp"]=14400000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20010,
- 20011,
- 20012
- },
- ["monster_exp"]=11000
- },
- [70202]={
- ["monster_base"]=10002,
- ["atk"]=1650000,
- ["hp"]=18000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20004,
- 20005,
- 20006
- },
- ["monster_exp"]=11000
- },
- [70302]={
- ["monster_base"]=10007,
- ["atk"]=1800000,
- ["hp"]=18000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20019,
- 20020,
- 20021
- },
- ["monster_exp"]=17000
- },
- [70402]={
- ["monster_base"]=10005,
- ["atk"]=1950000,
- ["hp"]=18000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20013,
- 20014,
- 20015
- },
- ["monster_exp"]=15000
- },
- [70502]={
- ["monster_base"]=20001,
- ["is_boss"]=1,
- ["atk"]=3150000,
- ["hp"]=43200000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20058,
- 20059,
- 20060
- },
- ["skill"]={
- 20061
- },
- ["passive_skill"]={
- 20062
- },
- ["monster_exp"]=12000
- },
- [70602]={
- ["monster_base"]=10005,
- ["atk"]=1650000,
- ["hp"]=19800000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20013,
- 20014,
- 20015
- },
- ["monster_exp"]=14000
- },
- [70702]={
- ["monster_base"]=10007,
- ["atk"]=1800000,
- ["hp"]=19800000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20019,
- 20020,
- 20021
- },
- ["monster_exp"]=12000
- },
- [70802]={
- ["monster_base"]=10004,
- ["atk"]=1950000,
- ["hp"]=21600000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20010,
- 20011,
- 20012
- },
- ["monster_exp"]=13000
- },
- [70902]={
- ["monster_base"]=10002,
- ["atk"]=2100000,
- ["hp"]=21600000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20004,
- 20005,
- 20006
- },
- ["monster_exp"]=16000
- },
- [71002]={
- ["monster_base"]=20003,
- ["is_boss"]=1,
- ["atk"]=3375000,
- ["hp"]=57600000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20067,
- 20068,
- 20069
- },
- ["skill"]={
- 20070
- },
- ["monster_exp"]=14000
- },
- [71102]={
- ["monster_base"]=10002,
- ["atk"]=1800000,
- ["hp"]=23400000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20004,
- 20005,
- 20006
- },
- ["monster_exp"]=15000
- },
- [71202]={
- ["monster_base"]=10005,
- ["atk"]=1950000,
- ["hp"]=27000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20013,
- 20014,
- 20015
- },
- ["monster_exp"]=18000
- },
- [71302]={
- ["monster_base"]=10007,
- ["atk"]=2100000,
- ["hp"]=27000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20019,
- 20020,
- 20021
- },
- ["monster_exp"]=18000
- },
- [71402]={
- ["monster_base"]=10004,
- ["atk"]=2250000,
- ["hp"]=27000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20010,
- 20011,
- 20012
- },
- ["monster_exp"]=22000
- },
- [71502]={
- ["monster_base"]=30009,
- ["is_boss"]=2,
- ["atk"]=4158000,
- ["hp"]=144000000,
- ["atk_times"]=3,
- ["hurt_skill"]={
- 20130,
- 20131,
- 20132
- },
- ["skill"]={
- 20133,
- 20134
- },
- ["passive_skill"]={
- 10002,
- 10013
- },
- ["monster_exp"]=4000
- },
- [80102]={
- ["monster_base"]=10002,
- ["atk"]=1500000,
- ["hp"]=14400000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20004,
- 20005,
- 20006
- },
- ["monster_exp"]=11000
- },
- [80202]={
- ["monster_base"]=10003,
- ["atk"]=1650000,
- ["hp"]=18000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20007,
- 20008,
- 20009
- },
- ["monster_exp"]=11000
- },
- [80302]={
- ["monster_base"]=10004,
- ["atk"]=1800000,
- ["hp"]=18000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20010,
- 20011,
- 20012
- },
- ["monster_exp"]=17000
- },
- [80402]={
- ["monster_base"]=10001,
- ["atk"]=1950000,
- ["hp"]=18000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20001,
- 20002,
- 20003
- },
- ["monster_exp"]=15000
- },
- [80502]={
- ["monster_base"]=20007,
- ["is_boss"]=1,
- ["atk"]=3150000,
- ["hp"]=43200000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20083,
- 20084,
- 20085
- },
- ["skill"]={
- 20086
- },
- ["monster_exp"]=12000
- },
- [80602]={
- ["monster_base"]=10001,
- ["atk"]=1650000,
- ["hp"]=19800000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20001,
- 20002,
- 20003
- },
- ["monster_exp"]=14000
- },
- [80702]={
- ["monster_base"]=10005,
- ["atk"]=1800000,
- ["hp"]=19800000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20013,
- 20014,
- 20015
- },
- ["monster_exp"]=12000
- },
- [80802]={
- ["monster_base"]=10002,
- ["atk"]=1950000,
- ["hp"]=21600000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20004,
- 20005,
- 20006
- },
- ["monster_exp"]=13000
- },
- [80902]={
- ["monster_base"]=10003,
- ["atk"]=2100000,
- ["hp"]=21600000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20007,
- 20008,
- 20009
- },
- ["monster_exp"]=16000
- },
- [81002]={
- ["monster_base"]=20008,
- ["is_boss"]=1,
- ["atk"]=3375000,
- ["hp"]=57600000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20087,
- 20088,
- 20089
- },
- ["skill"]={
- 20090
- },
- ["monster_exp"]=14000
- },
- [81102]={
- ["monster_base"]=10003,
- ["atk"]=1800000,
- ["hp"]=23400000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20007,
- 20008,
- 20009
- },
- ["monster_exp"]=15000
- },
- [81202]={
- ["monster_base"]=10004,
- ["atk"]=1950000,
- ["hp"]=27000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20010,
- 20011,
- 20012
- },
- ["monster_exp"]=18000
- },
- [81302]={
- ["monster_base"]=10002,
- ["atk"]=2100000,
- ["hp"]=27000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20004,
- 20005,
- 20006
- },
- ["monster_exp"]=18000
- },
- [81402]={
- ["monster_base"]=10001,
- ["atk"]=2250000,
- ["hp"]=27000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20001,
- 20002,
- 20003
- },
- ["monster_exp"]=22000
- },
- [81502]={
- ["monster_base"]=30008,
- ["is_boss"]=2,
- ["atk"]=4158000,
- ["hp"]=144000000,
- ["atk_times"]=3,
- ["hurt_skill"]={
- 20125,
- 20126,
- 20127
- },
- ["skill"]={
- 20128,
- 20129
- },
- ["passive_skill"]={
- 10001,
- 10013
- },
- ["monster_exp"]=4000
- },
- [90102]={
- ["monster_base"]=10007,
- ["atk"]=1500000,
- ["hp"]=14400000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20019,
- 20020,
- 20021
- },
- ["monster_exp"]=11000
- },
- [90202]={
- ["monster_base"]=10006,
- ["atk"]=1650000,
- ["hp"]=18000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20016,
- 20017,
- 20018
- },
- ["monster_exp"]=11000
- },
- [90302]={
- ["monster_base"]=10014,
- ["atk"]=1800000,
- ["hp"]=18000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20040,
- 20041,
- 20042
- },
- ["monster_exp"]=17000
- },
- [90402]={
- ["monster_base"]=10008,
- ["atk"]=1950000,
- ["hp"]=18000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20022,
- 20023,
- 20024
- },
- ["monster_exp"]=15000
- },
- [90502]={
- ["monster_base"]=20006,
- ["is_boss"]=1,
- ["atk"]=3150000,
- ["hp"]=43200000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20079,
- 20080,
- 20081
- },
- ["skill"]={
- 20082
- },
- ["monster_exp"]=12000
- },
- [90602]={
- ["monster_base"]=10008,
- ["atk"]=1650000,
- ["hp"]=19800000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20022,
- 20023,
- 20024
- },
- ["monster_exp"]=14000
- },
- [90702]={
- ["monster_base"]=10019,
- ["atk"]=1800000,
- ["hp"]=19800000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20055,
- 20056,
- 20057
- },
- ["monster_exp"]=12000
- },
- [90802]={
- ["monster_base"]=10007,
- ["atk"]=1950000,
- ["hp"]=21600000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20019,
- 20020,
- 20021
- },
- ["monster_exp"]=13000
- },
- [90902]={
- ["monster_base"]=10006,
- ["atk"]=2100000,
- ["hp"]=21600000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20016,
- 20017,
- 20018
- },
- ["monster_exp"]=16000
- },
- [91002]={
- ["monster_base"]=20008,
- ["is_boss"]=1,
- ["atk"]=3375000,
- ["hp"]=57600000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20087,
- 20088,
- 20089
- },
- ["skill"]={
- 20090
- },
- ["monster_exp"]=14000
- },
- [91102]={
- ["monster_base"]=10006,
- ["atk"]=1800000,
- ["hp"]=23400000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20016,
- 20017,
- 20018
- },
- ["monster_exp"]=15000
- },
- [91202]={
- ["monster_base"]=10014,
- ["atk"]=1950000,
- ["hp"]=27000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20040,
- 20041,
- 20042
- },
- ["monster_exp"]=18000
- },
- [91302]={
- ["monster_base"]=10007,
- ["atk"]=2100000,
- ["hp"]=27000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20019,
- 20020,
- 20021
- },
- ["monster_exp"]=18000
- },
- [91402]={
- ["monster_base"]=10008,
- ["atk"]=2250000,
- ["hp"]=27000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20022,
- 20023,
- 20024
- },
- ["monster_exp"]=22000
- },
- [91502]={
- ["monster_base"]=30010,
- ["is_boss"]=2,
- ["atk"]=4158000,
- ["hp"]=144000000,
- ["atk_times"]=3,
- ["hurt_skill"]={
- 20135,
- 20136,
- 20137
- },
- ["skill"]={
- 20138,
- 20139
- },
- ["passive_skill"]={
- 10003,
- 10013
- },
- ["monster_exp"]=4000
- },
- [100102]={
- ["monster_base"]=10018,
- ["atk"]=1500000,
- ["hp"]=14400000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20052,
- 20053,
- 20054
- },
- ["monster_exp"]=11000
- },
- [100202]={
- ["monster_base"]=10010,
- ["atk"]=1650000,
- ["hp"]=18000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20028,
- 20029,
- 20030
- },
- ["monster_exp"]=11000
- },
- [100302]={
- ["monster_base"]=10017,
- ["atk"]=1800000,
- ["hp"]=18000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20049,
- 20050,
- 20051
- },
- ["monster_exp"]=17000
- },
- [100402]={
- ["monster_base"]=10019,
- ["atk"]=1950000,
- ["hp"]=18000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20055,
- 20056,
- 20057
- },
- ["monster_exp"]=15000
- },
- [100502]={
- ["monster_base"]=20007,
- ["is_boss"]=1,
- ["atk"]=3150000,
- ["hp"]=43200000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20083,
- 20084,
- 20085
- },
- ["skill"]={
- 20086
- },
- ["monster_exp"]=12000
- },
- [100602]={
- ["monster_base"]=10019,
- ["atk"]=1650000,
- ["hp"]=19800000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20055,
- 20056,
- 20057
- },
- ["monster_exp"]=14000
- },
- [100702]={
- ["monster_base"]=10016,
- ["atk"]=1800000,
- ["hp"]=19800000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20046,
- 20047,
- 20048
- },
- ["monster_exp"]=12000
- },
- [100802]={
- ["monster_base"]=10018,
- ["atk"]=1950000,
- ["hp"]=21600000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20052,
- 20053,
- 20054
- },
- ["monster_exp"]=13000
- },
- [100902]={
- ["monster_base"]=10010,
- ["atk"]=2100000,
- ["hp"]=21600000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20028,
- 20029,
- 20030
- },
- ["monster_exp"]=16000
- },
- [101002]={
- ["monster_base"]=20002,
- ["is_boss"]=1,
- ["atk"]=3375000,
- ["hp"]=57600000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20063,
- 20064,
- 20065
- },
- ["skill"]={
- 20066
- },
- ["monster_exp"]=14000
- },
- [101102]={
- ["monster_base"]=10010,
- ["atk"]=1800000,
- ["hp"]=23400000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20028,
- 20029,
- 20030
- },
- ["monster_exp"]=15000
- },
- [101202]={
- ["monster_base"]=10017,
- ["atk"]=1950000,
- ["hp"]=27000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20049,
- 20050,
- 20051
- },
- ["monster_exp"]=18000
- },
- [101302]={
- ["monster_base"]=10018,
- ["atk"]=2100000,
- ["hp"]=27000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20052,
- 20053,
- 20054
- },
- ["monster_exp"]=18000
- },
- [101402]={
- ["monster_base"]=10019,
- ["atk"]=2250000,
- ["hp"]=27000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20055,
- 20056,
- 20057
- },
- ["monster_exp"]=22000
- },
- [101502]={
- ["monster_base"]=30006,
- ["is_boss"]=2,
- ["atk"]=4158000,
- ["hp"]=144000000,
- ["atk_times"]=3,
- ["hurt_skill"]={
- 20115,
- 20116,
- 20117
- },
- ["skill"]={
- 20118,
- 20119
- },
- ["passive_skill"]={
- 10004,
- 10013
- },
- ["monster_exp"]=4000
- },
- [110102]={
+ [23602]={
["monster_base"]=10011,
- ["atk"]=1500000,
- ["hp"]=14400000,
+ ["hp"]=1500000,
+ ["atk"]=14400000,
["atk_times"]=2,
["hurt_skill"]={
20031,
@@ -1983,10 +1779,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=11000
},
- [110202]={
+ [23702]={
["monster_base"]=10009,
- ["atk"]=1650000,
- ["hp"]=18000000,
+ ["hp"]=1650000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
20025,
@@ -1995,10 +1791,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=11000
},
- [110302]={
+ [23802]={
["monster_base"]=10006,
- ["atk"]=1800000,
- ["hp"]=18000000,
+ ["hp"]=1800000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
20016,
@@ -2007,10 +1803,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=17000
},
- [110402]={
+ [23902]={
["monster_base"]=10010,
- ["atk"]=1950000,
- ["hp"]=18000000,
+ ["hp"]=1950000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
20028,
@@ -2019,11 +1815,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=15000
},
- [110502]={
+ [24002]={
["monster_base"]=20008,
["is_boss"]=1,
- ["atk"]=3150000,
- ["hp"]=43200000,
+ ["hp"]=3150000,
+ ["atk"]=43200000,
["atk_times"]=2,
["hurt_skill"]={
20087,
@@ -2035,10 +1831,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=12000
},
- [110602]={
+ [24102]={
["monster_base"]=10010,
- ["atk"]=1650000,
- ["hp"]=19800000,
+ ["hp"]=1650000,
+ ["atk"]=19800000,
["atk_times"]=2,
["hurt_skill"]={
20028,
@@ -2047,10 +1843,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=14000
},
- [110702]={
+ [24202]={
["monster_base"]=10015,
- ["atk"]=1800000,
- ["hp"]=19800000,
+ ["hp"]=1800000,
+ ["atk"]=19800000,
["atk_times"]=2,
["hurt_skill"]={
20043,
@@ -2059,10 +1855,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=12000
},
- [110802]={
+ [24302]={
["monster_base"]=10011,
- ["atk"]=1950000,
- ["hp"]=21600000,
+ ["hp"]=1950000,
+ ["atk"]=21600000,
["atk_times"]=2,
["hurt_skill"]={
20031,
@@ -2071,10 +1867,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=13000
},
- [110902]={
+ [24402]={
["monster_base"]=10009,
- ["atk"]=2100000,
- ["hp"]=21600000,
+ ["hp"]=2100000,
+ ["atk"]=21600000,
["atk_times"]=2,
["hurt_skill"]={
20025,
@@ -2083,11 +1879,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=16000
},
- [111002]={
+ [24502]={
["monster_base"]=20005,
["is_boss"]=1,
- ["atk"]=3375000,
- ["hp"]=57600000,
+ ["hp"]=3375000,
+ ["atk"]=57600000,
["atk_times"]=2,
["hurt_skill"]={
20075,
@@ -2099,10 +1895,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=14000
},
- [111102]={
+ [24602]={
["monster_base"]=10009,
- ["atk"]=1800000,
- ["hp"]=23400000,
+ ["hp"]=1800000,
+ ["atk"]=23400000,
["atk_times"]=2,
["hurt_skill"]={
20025,
@@ -2111,10 +1907,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=15000
},
- [111202]={
+ [24702]={
["monster_base"]=10006,
- ["atk"]=1950000,
- ["hp"]=27000000,
+ ["hp"]=1950000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20016,
@@ -2123,10 +1919,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=18000
},
- [111302]={
+ [24802]={
["monster_base"]=10011,
- ["atk"]=2100000,
- ["hp"]=27000000,
+ ["hp"]=2100000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20031,
@@ -2135,10 +1931,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=18000
},
- [111402]={
+ [24902]={
["monster_base"]=10010,
- ["atk"]=2250000,
- ["hp"]=27000000,
+ ["hp"]=2250000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20028,
@@ -2147,11 +1943,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=22000
},
- [111502]={
+ [25002]={
["monster_base"]=30001,
["is_boss"]=2,
- ["atk"]=4158000,
- ["hp"]=144000000,
+ ["hp"]=4158000,
+ ["atk"]=144000000,
["atk_times"]=3,
["hurt_skill"]={
20091,
@@ -2168,123 +1964,323 @@ local monster_daily_challenge = {
},
["monster_exp"]=4000
},
- [120102]={
- ["monster_base"]=10013,
- ["atk"]=1500000,
- ["hp"]=14400000,
+ [25102]={
+ ["monster_base"]=10004,
+ ["hp"]=1500000,
+ ["atk"]=14400000,
["atk_times"]=2,
["hurt_skill"]={
- 20037,
- 20038,
- 20039
+ 20010,
+ 20011,
+ 20012
},
["monster_exp"]=11000
},
- [120202]={
- ["monster_base"]=10012,
- ["atk"]=1650000,
- ["hp"]=18000000,
+ [25202]={
+ ["monster_base"]=10002,
+ ["hp"]=1650000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
- 20034,
- 20035,
- 20036
+ 20004,
+ 20005,
+ 20006
},
["monster_exp"]=11000
},
- [120302]={
- ["monster_base"]=10009,
- ["atk"]=1800000,
- ["hp"]=18000000,
+ [25302]={
+ ["monster_base"]=10007,
+ ["hp"]=1800000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
- 20025,
- 20026,
- 20027
+ 20019,
+ 20020,
+ 20021
},
["monster_exp"]=17000
},
- [120402]={
- ["monster_base"]=10014,
- ["atk"]=1950000,
- ["hp"]=18000000,
+ [25402]={
+ ["monster_base"]=10005,
+ ["hp"]=1950000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
- 20040,
- 20041,
- 20042
+ 20013,
+ 20014,
+ 20015
},
["monster_exp"]=15000
},
- [120502]={
- ["monster_base"]=20005,
+ [25502]={
+ ["monster_base"]=20001,
["is_boss"]=1,
- ["atk"]=3150000,
- ["hp"]=43200000,
+ ["hp"]=3150000,
+ ["atk"]=43200000,
["atk_times"]=2,
["hurt_skill"]={
- 20075,
- 20076,
- 20077
+ 20058,
+ 20059,
+ 20060
},
["skill"]={
- 20078
+ 20061
+ },
+ ["passive_skill"]={
+ 20062
},
["monster_exp"]=12000
},
- [120602]={
- ["monster_base"]=10014,
- ["atk"]=1650000,
- ["hp"]=19800000,
+ [25602]={
+ ["monster_base"]=10005,
+ ["hp"]=1650000,
+ ["atk"]=19800000,
["atk_times"]=2,
["hurt_skill"]={
- 20040,
- 20041,
- 20042
+ 20013,
+ 20014,
+ 20015
},
["monster_exp"]=14000
},
- [120702]={
- ["monster_base"]=10017,
- ["atk"]=1800000,
- ["hp"]=19800000,
+ [25702]={
+ ["monster_base"]=10007,
+ ["hp"]=1800000,
+ ["atk"]=19800000,
["atk_times"]=2,
["hurt_skill"]={
- 20049,
- 20050,
- 20051
+ 20019,
+ 20020,
+ 20021
},
["monster_exp"]=12000
},
- [120802]={
- ["monster_base"]=10013,
- ["atk"]=1950000,
- ["hp"]=21600000,
+ [25802]={
+ ["monster_base"]=10004,
+ ["hp"]=1950000,
+ ["atk"]=21600000,
["atk_times"]=2,
["hurt_skill"]={
- 20037,
- 20038,
- 20039
+ 20010,
+ 20011,
+ 20012
},
["monster_exp"]=13000
},
- [120902]={
- ["monster_base"]=10012,
- ["atk"]=2100000,
- ["hp"]=21600000,
+ [25902]={
+ ["monster_base"]=10002,
+ ["hp"]=2100000,
+ ["atk"]=21600000,
["atk_times"]=2,
["hurt_skill"]={
- 20034,
- 20035,
- 20036
+ 20004,
+ 20005,
+ 20006
},
["monster_exp"]=16000
},
- [121002]={
+ [26002]={
+ ["monster_base"]=20003,
+ ["is_boss"]=1,
+ ["hp"]=3375000,
+ ["atk"]=57600000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20067,
+ 20068,
+ 20069
+ },
+ ["skill"]={
+ 20070
+ },
+ ["monster_exp"]=14000
+ },
+ [26102]={
+ ["monster_base"]=10002,
+ ["hp"]=1800000,
+ ["atk"]=23400000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20004,
+ 20005,
+ 20006
+ },
+ ["monster_exp"]=15000
+ },
+ [26202]={
+ ["monster_base"]=10005,
+ ["hp"]=1950000,
+ ["atk"]=27000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20013,
+ 20014,
+ 20015
+ },
+ ["monster_exp"]=18000
+ },
+ [26302]={
+ ["monster_base"]=10007,
+ ["hp"]=2100000,
+ ["atk"]=27000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20019,
+ 20020,
+ 20021
+ },
+ ["monster_exp"]=18000
+ },
+ [26402]={
+ ["monster_base"]=10004,
+ ["hp"]=2250000,
+ ["atk"]=27000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20010,
+ 20011,
+ 20012
+ },
+ ["monster_exp"]=22000
+ },
+ [26502]={
+ ["monster_base"]=30009,
+ ["is_boss"]=2,
+ ["hp"]=4158000,
+ ["atk"]=144000000,
+ ["atk_times"]=3,
+ ["hurt_skill"]={
+ 20130,
+ 20131,
+ 20132
+ },
+ ["skill"]={
+ 20133,
+ 20134
+ },
+ ["passive_skill"]={
+ 10002,
+ 10013
+ },
+ ["monster_exp"]=4000
+ },
+ [26602]={
+ ["monster_base"]=10002,
+ ["hp"]=1500000,
+ ["atk"]=14400000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20004,
+ 20005,
+ 20006
+ },
+ ["monster_exp"]=11000
+ },
+ [26702]={
+ ["monster_base"]=10003,
+ ["hp"]=1650000,
+ ["atk"]=18000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20007,
+ 20008,
+ 20009
+ },
+ ["monster_exp"]=11000
+ },
+ [26802]={
+ ["monster_base"]=10004,
+ ["hp"]=1800000,
+ ["atk"]=18000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20010,
+ 20011,
+ 20012
+ },
+ ["monster_exp"]=17000
+ },
+ [26902]={
+ ["monster_base"]=10001,
+ ["hp"]=1950000,
+ ["atk"]=18000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20001,
+ 20002,
+ 20003
+ },
+ ["monster_exp"]=15000
+ },
+ [27002]={
+ ["monster_base"]=20007,
+ ["is_boss"]=1,
+ ["hp"]=3150000,
+ ["atk"]=43200000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20083,
+ 20084,
+ 20085
+ },
+ ["skill"]={
+ 20086
+ },
+ ["monster_exp"]=12000
+ },
+ [27102]={
+ ["monster_base"]=10001,
+ ["hp"]=1650000,
+ ["atk"]=19800000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20001,
+ 20002,
+ 20003
+ },
+ ["monster_exp"]=14000
+ },
+ [27202]={
+ ["monster_base"]=10005,
+ ["hp"]=1800000,
+ ["atk"]=19800000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20013,
+ 20014,
+ 20015
+ },
+ ["monster_exp"]=12000
+ },
+ [27302]={
+ ["monster_base"]=10002,
+ ["hp"]=1950000,
+ ["atk"]=21600000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20004,
+ 20005,
+ 20006
+ },
+ ["monster_exp"]=13000
+ },
+ [27402]={
+ ["monster_base"]=10003,
+ ["hp"]=2100000,
+ ["atk"]=21600000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20007,
+ 20008,
+ 20009
+ },
+ ["monster_exp"]=16000
+ },
+ [27502]={
["monster_base"]=20008,
["is_boss"]=1,
- ["atk"]=3375000,
- ["hp"]=57600000,
+ ["hp"]=3375000,
+ ["atk"]=57600000,
["atk_times"]=2,
["hurt_skill"]={
20087,
@@ -2296,192 +2292,128 @@ local monster_daily_challenge = {
},
["monster_exp"]=14000
},
- [121102]={
- ["monster_base"]=10012,
- ["atk"]=1800000,
- ["hp"]=23400000,
+ [27602]={
+ ["monster_base"]=10003,
+ ["hp"]=1800000,
+ ["atk"]=23400000,
["atk_times"]=2,
["hurt_skill"]={
- 20034,
- 20035,
- 20036
+ 20007,
+ 20008,
+ 20009
},
["monster_exp"]=15000
},
- [121202]={
- ["monster_base"]=10009,
- ["atk"]=1950000,
- ["hp"]=27000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20025,
- 20026,
- 20027
- },
- ["monster_exp"]=18000
- },
- [121302]={
- ["monster_base"]=10013,
- ["atk"]=2100000,
- ["hp"]=27000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20037,
- 20038,
- 20039
- },
- ["monster_exp"]=18000
- },
- [121402]={
- ["monster_base"]=10014,
- ["atk"]=2250000,
- ["hp"]=27000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20040,
- 20041,
- 20042
- },
- ["monster_exp"]=22000
- },
- [121502]={
- ["monster_base"]=30002,
- ["is_boss"]=2,
- ["atk"]=4158000,
- ["hp"]=144000000,
- ["atk_times"]=3,
- ["hurt_skill"]={
- 20096,
- 20097,
- 20098
- },
- ["skill"]={
- 20099,
- 20100
- },
- ["passive_skill"]={
- 10004,
- 10013
- },
- ["monster_exp"]=4000
- },
- [130102]={
- ["monster_base"]=10008,
- ["atk"]=1500000,
- ["hp"]=14400000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20022,
- 20023,
- 20024
- },
- ["monster_exp"]=11000
- },
- [130202]={
- ["monster_base"]=10006,
- ["atk"]=1650000,
- ["hp"]=18000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20016,
- 20017,
- 20018
- },
- ["monster_exp"]=11000
- },
- [130302]={
- ["monster_base"]=10009,
- ["atk"]=1800000,
- ["hp"]=18000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20025,
- 20026,
- 20027
- },
- ["monster_exp"]=17000
- },
- [130402]={
- ["monster_base"]=10007,
- ["atk"]=1950000,
- ["hp"]=18000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20019,
- 20020,
- 20021
- },
- ["monster_exp"]=15000
- },
- [130502]={
- ["monster_base"]=20005,
- ["is_boss"]=1,
- ["atk"]=3150000,
- ["hp"]=43200000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20075,
- 20076,
- 20077
- },
- ["skill"]={
- 20078
- },
- ["monster_exp"]=12000
- },
- [130602]={
- ["monster_base"]=10007,
- ["atk"]=1650000,
- ["hp"]=19800000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20019,
- 20020,
- 20021
- },
- ["monster_exp"]=14000
- },
- [130702]={
+ [27702]={
["monster_base"]=10004,
- ["atk"]=1800000,
- ["hp"]=19800000,
+ ["hp"]=1950000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20010,
20011,
20012
},
- ["monster_exp"]=12000
+ ["monster_exp"]=18000
},
- [130802]={
- ["monster_base"]=10008,
- ["atk"]=1950000,
- ["hp"]=21600000,
+ [27802]={
+ ["monster_base"]=10002,
+ ["hp"]=2100000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
- 20022,
- 20023,
- 20024
+ 20004,
+ 20005,
+ 20006
},
- ["monster_exp"]=13000
+ ["monster_exp"]=18000
},
- [130902]={
+ [27902]={
+ ["monster_base"]=10001,
+ ["hp"]=2250000,
+ ["atk"]=27000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20001,
+ 20002,
+ 20003
+ },
+ ["monster_exp"]=22000
+ },
+ [28002]={
+ ["monster_base"]=30008,
+ ["is_boss"]=2,
+ ["hp"]=4158000,
+ ["atk"]=144000000,
+ ["atk_times"]=3,
+ ["hurt_skill"]={
+ 20125,
+ 20126,
+ 20127
+ },
+ ["skill"]={
+ 20128,
+ 20129
+ },
+ ["passive_skill"]={
+ 10001,
+ 10013
+ },
+ ["monster_exp"]=4000
+ },
+ [28102]={
+ ["monster_base"]=10007,
+ ["hp"]=1500000,
+ ["atk"]=14400000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20019,
+ 20020,
+ 20021
+ },
+ ["monster_exp"]=11000
+ },
+ [28202]={
["monster_base"]=10006,
- ["atk"]=2100000,
- ["hp"]=21600000,
+ ["hp"]=1650000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
20016,
20017,
20018
},
- ["monster_exp"]=16000
+ ["monster_exp"]=11000
},
- [131002]={
+ [28302]={
+ ["monster_base"]=10014,
+ ["hp"]=1800000,
+ ["atk"]=18000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20040,
+ 20041,
+ 20042
+ },
+ ["monster_exp"]=17000
+ },
+ [28402]={
+ ["monster_base"]=10008,
+ ["hp"]=1950000,
+ ["atk"]=18000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20022,
+ 20023,
+ 20024
+ },
+ ["monster_exp"]=15000
+ },
+ [28502]={
["monster_base"]=20006,
["is_boss"]=1,
- ["atk"]=3375000,
- ["hp"]=57600000,
+ ["hp"]=3150000,
+ ["atk"]=43200000,
["atk_times"]=2,
["hurt_skill"]={
20079,
@@ -2491,12 +2423,76 @@ local monster_daily_challenge = {
["skill"]={
20082
},
+ ["monster_exp"]=12000
+ },
+ [28602]={
+ ["monster_base"]=10008,
+ ["hp"]=1650000,
+ ["atk"]=19800000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20022,
+ 20023,
+ 20024
+ },
["monster_exp"]=14000
},
- [131102]={
+ [28702]={
+ ["monster_base"]=10019,
+ ["hp"]=1800000,
+ ["atk"]=19800000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20055,
+ 20056,
+ 20057
+ },
+ ["monster_exp"]=12000
+ },
+ [28802]={
+ ["monster_base"]=10007,
+ ["hp"]=1950000,
+ ["atk"]=21600000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20019,
+ 20020,
+ 20021
+ },
+ ["monster_exp"]=13000
+ },
+ [28902]={
["monster_base"]=10006,
- ["atk"]=1800000,
- ["hp"]=23400000,
+ ["hp"]=2100000,
+ ["atk"]=21600000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20016,
+ 20017,
+ 20018
+ },
+ ["monster_exp"]=16000
+ },
+ [29002]={
+ ["monster_base"]=20008,
+ ["is_boss"]=1,
+ ["hp"]=3375000,
+ ["atk"]=57600000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20087,
+ 20088,
+ 20089
+ },
+ ["skill"]={
+ 20090
+ },
+ ["monster_exp"]=14000
+ },
+ [29102]={
+ ["monster_base"]=10006,
+ ["hp"]=1800000,
+ ["atk"]=23400000,
["atk_times"]=2,
["hurt_skill"]={
20016,
@@ -2505,47 +2501,47 @@ local monster_daily_challenge = {
},
["monster_exp"]=15000
},
- [131202]={
- ["monster_base"]=10009,
- ["atk"]=1950000,
- ["hp"]=27000000,
+ [29202]={
+ ["monster_base"]=10014,
+ ["hp"]=1950000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
- 20025,
- 20026,
- 20027
+ 20040,
+ 20041,
+ 20042
},
["monster_exp"]=18000
},
- [131302]={
- ["monster_base"]=10008,
- ["atk"]=2100000,
- ["hp"]=27000000,
- ["atk_times"]=2,
- ["hurt_skill"]={
- 20022,
- 20023,
- 20024
- },
- ["monster_exp"]=18000
- },
- [131402]={
+ [29302]={
["monster_base"]=10007,
- ["atk"]=2250000,
- ["hp"]=27000000,
+ ["hp"]=2100000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20019,
20020,
20021
},
+ ["monster_exp"]=18000
+ },
+ [29402]={
+ ["monster_base"]=10008,
+ ["hp"]=2250000,
+ ["atk"]=27000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20022,
+ 20023,
+ 20024
+ },
["monster_exp"]=22000
},
- [131502]={
+ [29502]={
["monster_base"]=30010,
["is_boss"]=2,
- ["atk"]=4158000,
- ["hp"]=144000000,
+ ["hp"]=4158000,
+ ["atk"]=144000000,
["atk_times"]=3,
["hurt_skill"]={
20135,
@@ -2562,22 +2558,86 @@ local monster_daily_challenge = {
},
["monster_exp"]=4000
},
- [140102]={
- ["monster_base"]=10015,
- ["atk"]=1500000,
- ["hp"]=14400000,
+ [29602]={
+ ["monster_base"]=10010,
+ ["hp"]=4444000,
+ ["atk"]=1971200000,
["atk_times"]=2,
["hurt_skill"]={
- 20043,
- 20044,
- 20045
+ 20028,
+ 20029,
+ 20030
+ },
+ ["monster_exp"]=9000
+ },
+ [29702]={
+ ["monster_base"]=10018,
+ ["hp"]=4848000,
+ ["atk"]=1971200000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20052,
+ 20053,
+ 20054
+ },
+ ["monster_exp"]=10000
+ },
+ [29802]={
+ ["monster_base"]=10011,
+ ["hp"]=5252000,
+ ["atk"]=2150400000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20031,
+ 20032,
+ 20033
},
["monster_exp"]=11000
},
- [140202]={
+ [29902]={
+ ["monster_base"]=10009,
+ ["hp"]=5656000,
+ ["atk"]=2150400000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20025,
+ 20026,
+ 20027
+ },
+ ["monster_exp"]=12000
+ },
+ [30002]={
+ ["monster_base"]=20005,
+ ["is_boss"]=1,
+ ["hp"]=6060000,
+ ["atk"]=2867200000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20075,
+ 20076,
+ 20077
+ },
+ ["skill"]={
+ 20078
+ },
+ ["monster_exp"]=12000
+ },
+ [30102]={
+ ["monster_base"]=10010,
+ ["hp"]=3950000,
+ ["atk"]=1363200000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20028,
+ 20029,
+ 20030
+ },
+ ["monster_exp"]=11000
+ },
+ [30202]={
["monster_base"]=10018,
- ["atk"]=1650000,
- ["hp"]=18000000,
+ ["hp"]=4345000,
+ ["atk"]=1704000000,
["atk_times"]=2,
["hurt_skill"]={
20052,
@@ -2586,10 +2646,737 @@ local monster_daily_challenge = {
},
["monster_exp"]=11000
},
- [140302]={
+ [30302]={
+ ["monster_base"]=10011,
+ ["hp"]=4740000,
+ ["atk"]=1704000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20031,
+ 20032,
+ 20033
+ },
+ ["monster_exp"]=17000
+ },
+ [30402]={
+ ["monster_base"]=10009,
+ ["hp"]=5135000,
+ ["atk"]=1704000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20025,
+ 20026,
+ 20027
+ },
+ ["monster_exp"]=19000
+ },
+ [30502]={
+ ["monster_base"]=20001,
+ ["is_boss"]=1,
+ ["hp"]=5530000,
+ ["atk"]=2044800000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20058,
+ 20059,
+ 20060
+ },
+ ["skill"]={
+ 20061
+ },
+ ["passive_skill"]={
+ 20062
+ },
+ ["monster_exp"]=18000
+ },
+ [30602]={
+ ["monster_base"]=10009,
+ ["hp"]=4848000,
+ ["atk"]=2329600000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20025,
+ 20026,
+ 20027
+ },
+ ["monster_exp"]=16000
+ },
+ [30702]={
+ ["monster_base"]=10016,
+ ["hp"]=5252000,
+ ["atk"]=2688000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20046,
+ 20047,
+ 20048
+ },
+ ["monster_exp"]=18000
+ },
+ [30802]={
+ ["monster_base"]=10011,
+ ["hp"]=5656000,
+ ["atk"]=2688000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20031,
+ 20032,
+ 20033
+ },
+ ["monster_exp"]=21000
+ },
+ [30902]={
+ ["monster_base"]=10010,
+ ["hp"]=6060000,
+ ["atk"]=2688000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20028,
+ 20029,
+ 20030
+ },
+ ["monster_exp"]=22000
+ },
+ [31002]={
+ ["monster_base"]=30001,
+ ["is_boss"]=2,
+ ["hp"]=7272000,
+ ["atk"]=3584000000,
+ ["atk_times"]=3,
+ ["hurt_skill"]={
+ 20091,
+ 20092,
+ 20093
+ },
+ ["skill"]={
+ 20094,
+ 20095
+ },
+ ["passive_skill"]={
+ 10002,
+ 10013
+ },
+ ["monster_exp"]=24000
+ },
+ [31102]={
+ ["monster_base"]=10013,
+ ["hp"]=1500000,
+ ["atk"]=14400000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20037,
+ 20038,
+ 20039
+ },
+ ["monster_exp"]=11000
+ },
+ [31202]={
+ ["monster_base"]=10012,
+ ["hp"]=1650000,
+ ["atk"]=18000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20034,
+ 20035,
+ 20036
+ },
+ ["monster_exp"]=11000
+ },
+ [31302]={
+ ["monster_base"]=10009,
+ ["hp"]=1800000,
+ ["atk"]=18000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20025,
+ 20026,
+ 20027
+ },
+ ["monster_exp"]=17000
+ },
+ [31402]={
+ ["monster_base"]=10014,
+ ["hp"]=1950000,
+ ["atk"]=18000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20040,
+ 20041,
+ 20042
+ },
+ ["monster_exp"]=15000
+ },
+ [31502]={
+ ["monster_base"]=20005,
+ ["is_boss"]=1,
+ ["hp"]=3150000,
+ ["atk"]=43200000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20075,
+ 20076,
+ 20077
+ },
+ ["skill"]={
+ 20078
+ },
+ ["monster_exp"]=12000
+ },
+ [31602]={
+ ["monster_base"]=10014,
+ ["hp"]=1650000,
+ ["atk"]=19800000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20040,
+ 20041,
+ 20042
+ },
+ ["monster_exp"]=14000
+ },
+ [31702]={
+ ["monster_base"]=10017,
+ ["hp"]=1800000,
+ ["atk"]=19800000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20049,
+ 20050,
+ 20051
+ },
+ ["monster_exp"]=12000
+ },
+ [31802]={
+ ["monster_base"]=10013,
+ ["hp"]=1950000,
+ ["atk"]=21600000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20037,
+ 20038,
+ 20039
+ },
+ ["monster_exp"]=13000
+ },
+ [31902]={
+ ["monster_base"]=10012,
+ ["hp"]=2100000,
+ ["atk"]=21600000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20034,
+ 20035,
+ 20036
+ },
+ ["monster_exp"]=16000
+ },
+ [32002]={
+ ["monster_base"]=20008,
+ ["is_boss"]=1,
+ ["hp"]=3375000,
+ ["atk"]=57600000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20087,
+ 20088,
+ 20089
+ },
+ ["skill"]={
+ 20090
+ },
+ ["monster_exp"]=14000
+ },
+ [32102]={
+ ["monster_base"]=10012,
+ ["hp"]=1800000,
+ ["atk"]=23400000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20034,
+ 20035,
+ 20036
+ },
+ ["monster_exp"]=15000
+ },
+ [32202]={
+ ["monster_base"]=10009,
+ ["hp"]=1950000,
+ ["atk"]=27000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20025,
+ 20026,
+ 20027
+ },
+ ["monster_exp"]=18000
+ },
+ [32302]={
+ ["monster_base"]=10013,
+ ["hp"]=2100000,
+ ["atk"]=27000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20037,
+ 20038,
+ 20039
+ },
+ ["monster_exp"]=18000
+ },
+ [32402]={
+ ["monster_base"]=10014,
+ ["hp"]=2250000,
+ ["atk"]=27000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20040,
+ 20041,
+ 20042
+ },
+ ["monster_exp"]=22000
+ },
+ [32502]={
+ ["monster_base"]=30002,
+ ["is_boss"]=2,
+ ["hp"]=4158000,
+ ["atk"]=144000000,
+ ["atk_times"]=3,
+ ["hurt_skill"]={
+ 20096,
+ 20097,
+ 20098
+ },
+ ["skill"]={
+ 20099,
+ 20100
+ },
+ ["passive_skill"]={
+ 10004,
+ 10013
+ },
+ ["monster_exp"]=4000
+ },
+ [32602]={
+ ["monster_base"]=10018,
+ ["hp"]=1500000,
+ ["atk"]=14400000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20052,
+ 20053,
+ 20054
+ },
+ ["monster_exp"]=11000
+ },
+ [32702]={
+ ["monster_base"]=10010,
+ ["hp"]=1650000,
+ ["atk"]=18000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20028,
+ 20029,
+ 20030
+ },
+ ["monster_exp"]=11000
+ },
+ [32802]={
+ ["monster_base"]=10017,
+ ["hp"]=1800000,
+ ["atk"]=18000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20049,
+ 20050,
+ 20051
+ },
+ ["monster_exp"]=17000
+ },
+ [32902]={
+ ["monster_base"]=10019,
+ ["hp"]=1950000,
+ ["atk"]=18000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20055,
+ 20056,
+ 20057
+ },
+ ["monster_exp"]=15000
+ },
+ [33002]={
+ ["monster_base"]=20007,
+ ["is_boss"]=1,
+ ["hp"]=3150000,
+ ["atk"]=43200000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20083,
+ 20084,
+ 20085
+ },
+ ["skill"]={
+ 20086
+ },
+ ["monster_exp"]=12000
+ },
+ [33102]={
+ ["monster_base"]=10019,
+ ["hp"]=1650000,
+ ["atk"]=19800000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20055,
+ 20056,
+ 20057
+ },
+ ["monster_exp"]=14000
+ },
+ [33202]={
+ ["monster_base"]=10016,
+ ["hp"]=1800000,
+ ["atk"]=19800000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20046,
+ 20047,
+ 20048
+ },
+ ["monster_exp"]=12000
+ },
+ [33302]={
+ ["monster_base"]=10018,
+ ["hp"]=1950000,
+ ["atk"]=21600000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20052,
+ 20053,
+ 20054
+ },
+ ["monster_exp"]=13000
+ },
+ [33402]={
+ ["monster_base"]=10010,
+ ["hp"]=2100000,
+ ["atk"]=21600000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20028,
+ 20029,
+ 20030
+ },
+ ["monster_exp"]=16000
+ },
+ [33502]={
+ ["monster_base"]=20002,
+ ["is_boss"]=1,
+ ["hp"]=3375000,
+ ["atk"]=57600000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20063,
+ 20064,
+ 20065
+ },
+ ["skill"]={
+ 20066
+ },
+ ["monster_exp"]=14000
+ },
+ [33602]={
+ ["monster_base"]=10010,
+ ["hp"]=1800000,
+ ["atk"]=23400000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20028,
+ 20029,
+ 20030
+ },
+ ["monster_exp"]=15000
+ },
+ [33702]={
+ ["monster_base"]=10017,
+ ["hp"]=1950000,
+ ["atk"]=27000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20049,
+ 20050,
+ 20051
+ },
+ ["monster_exp"]=18000
+ },
+ [33802]={
+ ["monster_base"]=10018,
+ ["hp"]=2100000,
+ ["atk"]=27000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20052,
+ 20053,
+ 20054
+ },
+ ["monster_exp"]=18000
+ },
+ [33902]={
+ ["monster_base"]=10019,
+ ["hp"]=2250000,
+ ["atk"]=27000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20055,
+ 20056,
+ 20057
+ },
+ ["monster_exp"]=22000
+ },
+ [34002]={
+ ["monster_base"]=30006,
+ ["is_boss"]=2,
+ ["hp"]=4158000,
+ ["atk"]=144000000,
+ ["atk_times"]=3,
+ ["hurt_skill"]={
+ 20115,
+ 20116,
+ 20117
+ },
+ ["skill"]={
+ 20118,
+ 20119
+ },
+ ["passive_skill"]={
+ 10004,
+ 10013
+ },
+ ["monster_exp"]=4000
+ },
+ [34102]={
+ ["monster_base"]=10008,
+ ["hp"]=1500000,
+ ["atk"]=14400000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20022,
+ 20023,
+ 20024
+ },
+ ["monster_exp"]=11000
+ },
+ [34202]={
+ ["monster_base"]=10006,
+ ["hp"]=1650000,
+ ["atk"]=18000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20016,
+ 20017,
+ 20018
+ },
+ ["monster_exp"]=11000
+ },
+ [34302]={
+ ["monster_base"]=10009,
+ ["hp"]=1800000,
+ ["atk"]=18000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20025,
+ 20026,
+ 20027
+ },
+ ["monster_exp"]=17000
+ },
+ [34402]={
["monster_base"]=10007,
- ["atk"]=1800000,
- ["hp"]=18000000,
+ ["hp"]=1950000,
+ ["atk"]=18000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20019,
+ 20020,
+ 20021
+ },
+ ["monster_exp"]=15000
+ },
+ [34502]={
+ ["monster_base"]=20005,
+ ["is_boss"]=1,
+ ["hp"]=3150000,
+ ["atk"]=43200000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20075,
+ 20076,
+ 20077
+ },
+ ["skill"]={
+ 20078
+ },
+ ["monster_exp"]=12000
+ },
+ [34602]={
+ ["monster_base"]=10007,
+ ["hp"]=1650000,
+ ["atk"]=19800000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20019,
+ 20020,
+ 20021
+ },
+ ["monster_exp"]=14000
+ },
+ [34702]={
+ ["monster_base"]=10004,
+ ["hp"]=1800000,
+ ["atk"]=19800000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20010,
+ 20011,
+ 20012
+ },
+ ["monster_exp"]=12000
+ },
+ [34802]={
+ ["monster_base"]=10008,
+ ["hp"]=1950000,
+ ["atk"]=21600000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20022,
+ 20023,
+ 20024
+ },
+ ["monster_exp"]=13000
+ },
+ [34902]={
+ ["monster_base"]=10006,
+ ["hp"]=2100000,
+ ["atk"]=21600000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20016,
+ 20017,
+ 20018
+ },
+ ["monster_exp"]=16000
+ },
+ [35002]={
+ ["monster_base"]=20006,
+ ["is_boss"]=1,
+ ["hp"]=3375000,
+ ["atk"]=57600000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20079,
+ 20080,
+ 20081
+ },
+ ["skill"]={
+ 20082
+ },
+ ["monster_exp"]=14000
+ },
+ [35102]={
+ ["monster_base"]=10006,
+ ["hp"]=1800000,
+ ["atk"]=23400000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20016,
+ 20017,
+ 20018
+ },
+ ["monster_exp"]=15000
+ },
+ [35202]={
+ ["monster_base"]=10009,
+ ["hp"]=1950000,
+ ["atk"]=27000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20025,
+ 20026,
+ 20027
+ },
+ ["monster_exp"]=18000
+ },
+ [35302]={
+ ["monster_base"]=10008,
+ ["hp"]=2100000,
+ ["atk"]=27000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20022,
+ 20023,
+ 20024
+ },
+ ["monster_exp"]=18000
+ },
+ [35402]={
+ ["monster_base"]=10007,
+ ["hp"]=2250000,
+ ["atk"]=27000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20019,
+ 20020,
+ 20021
+ },
+ ["monster_exp"]=22000
+ },
+ [35502]={
+ ["monster_base"]=30010,
+ ["is_boss"]=2,
+ ["hp"]=4158000,
+ ["atk"]=144000000,
+ ["atk_times"]=3,
+ ["hurt_skill"]={
+ 20135,
+ 20136,
+ 20137
+ },
+ ["skill"]={
+ 20138,
+ 20139
+ },
+ ["passive_skill"]={
+ 10003,
+ 10013
+ },
+ ["monster_exp"]=4000
+ },
+ [35602]={
+ ["monster_base"]=10015,
+ ["hp"]=1500000,
+ ["atk"]=14400000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20043,
+ 20044,
+ 20045
+ },
+ ["monster_exp"]=11000
+ },
+ [35702]={
+ ["monster_base"]=10018,
+ ["hp"]=1650000,
+ ["atk"]=18000000,
+ ["atk_times"]=2,
+ ["hurt_skill"]={
+ 20052,
+ 20053,
+ 20054
+ },
+ ["monster_exp"]=11000
+ },
+ [35802]={
+ ["monster_base"]=10007,
+ ["hp"]=1800000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
20019,
@@ -2598,10 +3385,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=17000
},
- [140402]={
+ [35902]={
["monster_base"]=10016,
- ["atk"]=1950000,
- ["hp"]=18000000,
+ ["hp"]=1950000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
20046,
@@ -2610,11 +3397,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=15000
},
- [140502]={
+ [36002]={
["monster_base"]=20006,
["is_boss"]=1,
- ["atk"]=3150000,
- ["hp"]=43200000,
+ ["hp"]=3150000,
+ ["atk"]=43200000,
["atk_times"]=2,
["hurt_skill"]={
20079,
@@ -2626,10 +3413,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=12000
},
- [140602]={
+ [36102]={
["monster_base"]=10016,
- ["atk"]=1650000,
- ["hp"]=19800000,
+ ["hp"]=1650000,
+ ["atk"]=19800000,
["atk_times"]=2,
["hurt_skill"]={
20046,
@@ -2638,10 +3425,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=14000
},
- [140702]={
+ [36202]={
["monster_base"]=10011,
- ["atk"]=1800000,
- ["hp"]=19800000,
+ ["hp"]=1800000,
+ ["atk"]=19800000,
["atk_times"]=2,
["hurt_skill"]={
20031,
@@ -2650,10 +3437,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=12000
},
- [140802]={
+ [36302]={
["monster_base"]=10015,
- ["atk"]=1950000,
- ["hp"]=21600000,
+ ["hp"]=1950000,
+ ["atk"]=21600000,
["atk_times"]=2,
["hurt_skill"]={
20043,
@@ -2662,10 +3449,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=13000
},
- [140902]={
+ [36402]={
["monster_base"]=10018,
- ["atk"]=2100000,
- ["hp"]=21600000,
+ ["hp"]=2100000,
+ ["atk"]=21600000,
["atk_times"]=2,
["hurt_skill"]={
20052,
@@ -2674,11 +3461,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=16000
},
- [141002]={
+ [36502]={
["monster_base"]=20007,
["is_boss"]=1,
- ["atk"]=3375000,
- ["hp"]=57600000,
+ ["hp"]=3375000,
+ ["atk"]=57600000,
["atk_times"]=2,
["hurt_skill"]={
20083,
@@ -2690,10 +3477,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=14000
},
- [141102]={
+ [36602]={
["monster_base"]=10018,
- ["atk"]=1800000,
- ["hp"]=23400000,
+ ["hp"]=1800000,
+ ["atk"]=23400000,
["atk_times"]=2,
["hurt_skill"]={
20052,
@@ -2702,10 +3489,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=15000
},
- [141202]={
+ [36702]={
["monster_base"]=10007,
- ["atk"]=1950000,
- ["hp"]=27000000,
+ ["hp"]=1950000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20019,
@@ -2714,10 +3501,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=18000
},
- [141302]={
+ [36802]={
["monster_base"]=10015,
- ["atk"]=2100000,
- ["hp"]=27000000,
+ ["hp"]=2100000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20043,
@@ -2726,10 +3513,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=18000
},
- [141402]={
+ [36902]={
["monster_base"]=10016,
- ["atk"]=2250000,
- ["hp"]=27000000,
+ ["hp"]=2250000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20046,
@@ -2738,11 +3525,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=22000
},
- [141502]={
+ [37002]={
["monster_base"]=30005,
["is_boss"]=2,
- ["atk"]=4158000,
- ["hp"]=144000000,
+ ["hp"]=4158000,
+ ["atk"]=144000000,
["atk_times"]=3,
["hurt_skill"]={
20110,
@@ -2759,10 +3546,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=4000
},
- [150102]={
+ [37102]={
["monster_base"]=10014,
- ["atk"]=1500000,
- ["hp"]=14400000,
+ ["hp"]=1500000,
+ ["atk"]=14400000,
["atk_times"]=2,
["hurt_skill"]={
20040,
@@ -2771,10 +3558,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=11000
},
- [150202]={
+ [37202]={
["monster_base"]=10012,
- ["atk"]=1650000,
- ["hp"]=18000000,
+ ["hp"]=1650000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
20034,
@@ -2783,10 +3570,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=11000
},
- [150302]={
+ [37302]={
["monster_base"]=10009,
- ["atk"]=1800000,
- ["hp"]=18000000,
+ ["hp"]=1800000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
20025,
@@ -2795,10 +3582,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=17000
},
- [150402]={
+ [37402]={
["monster_base"]=10013,
- ["atk"]=1950000,
- ["hp"]=18000000,
+ ["hp"]=1950000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
20037,
@@ -2807,11 +3594,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=15000
},
- [150502]={
+ [37502]={
["monster_base"]=20007,
["is_boss"]=1,
- ["atk"]=3150000,
- ["hp"]=43200000,
+ ["hp"]=3150000,
+ ["atk"]=43200000,
["atk_times"]=2,
["hurt_skill"]={
20083,
@@ -2823,10 +3610,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=12000
},
- [150602]={
+ [37602]={
["monster_base"]=10013,
- ["atk"]=1650000,
- ["hp"]=19800000,
+ ["hp"]=1650000,
+ ["atk"]=19800000,
["atk_times"]=2,
["hurt_skill"]={
20037,
@@ -2835,10 +3622,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=14000
},
- [150702]={
+ [37702]={
["monster_base"]=10011,
- ["atk"]=1800000,
- ["hp"]=19800000,
+ ["hp"]=1800000,
+ ["atk"]=19800000,
["atk_times"]=2,
["hurt_skill"]={
20031,
@@ -2847,10 +3634,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=12000
},
- [150802]={
+ [37802]={
["monster_base"]=10014,
- ["atk"]=1950000,
- ["hp"]=21600000,
+ ["hp"]=1950000,
+ ["atk"]=21600000,
["atk_times"]=2,
["hurt_skill"]={
20040,
@@ -2859,10 +3646,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=13000
},
- [150902]={
+ [37902]={
["monster_base"]=10012,
- ["atk"]=2100000,
- ["hp"]=21600000,
+ ["hp"]=2100000,
+ ["atk"]=21600000,
["atk_times"]=2,
["hurt_skill"]={
20034,
@@ -2871,11 +3658,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=16000
},
- [151002]={
+ [38002]={
["monster_base"]=20008,
["is_boss"]=1,
- ["atk"]=3375000,
- ["hp"]=57600000,
+ ["hp"]=3375000,
+ ["atk"]=57600000,
["atk_times"]=2,
["hurt_skill"]={
20087,
@@ -2887,10 +3674,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=14000
},
- [151102]={
+ [38102]={
["monster_base"]=10012,
- ["atk"]=1800000,
- ["hp"]=23400000,
+ ["hp"]=1800000,
+ ["atk"]=23400000,
["atk_times"]=2,
["hurt_skill"]={
20034,
@@ -2899,10 +3686,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=15000
},
- [151202]={
+ [38202]={
["monster_base"]=10009,
- ["atk"]=1950000,
- ["hp"]=27000000,
+ ["hp"]=1950000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20025,
@@ -2911,10 +3698,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=18000
},
- [151302]={
+ [38302]={
["monster_base"]=10014,
- ["atk"]=2100000,
- ["hp"]=27000000,
+ ["hp"]=2100000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20040,
@@ -2923,10 +3710,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=18000
},
- [151402]={
+ [38402]={
["monster_base"]=10013,
- ["atk"]=2250000,
- ["hp"]=27000000,
+ ["hp"]=2250000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20037,
@@ -2935,11 +3722,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=22000
},
- [151502]={
+ [38502]={
["monster_base"]=30004,
["is_boss"]=2,
- ["atk"]=4158000,
- ["hp"]=144000000,
+ ["hp"]=4158000,
+ ["atk"]=144000000,
["atk_times"]=3,
["hurt_skill"]={
20105,
@@ -2956,10 +3743,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=4000
},
- [160102]={
+ [38602]={
["monster_base"]=10001,
- ["atk"]=1500000,
- ["hp"]=14400000,
+ ["hp"]=1500000,
+ ["atk"]=14400000,
["atk_times"]=2,
["hurt_skill"]={
20001,
@@ -2968,10 +3755,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=11000
},
- [160202]={
+ [38702]={
["monster_base"]=10002,
- ["atk"]=1650000,
- ["hp"]=18000000,
+ ["hp"]=1650000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
20004,
@@ -2980,10 +3767,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=11000
},
- [160302]={
+ [38802]={
["monster_base"]=10010,
- ["atk"]=1800000,
- ["hp"]=18000000,
+ ["hp"]=1800000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
20028,
@@ -2992,10 +3779,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=17000
},
- [160402]={
+ [38902]={
["monster_base"]=10003,
- ["atk"]=1950000,
- ["hp"]=18000000,
+ ["hp"]=1950000,
+ ["atk"]=18000000,
["atk_times"]=2,
["hurt_skill"]={
20007,
@@ -3004,11 +3791,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=15000
},
- [160502]={
+ [39002]={
["monster_base"]=20006,
["is_boss"]=1,
- ["atk"]=3150000,
- ["hp"]=43200000,
+ ["hp"]=3150000,
+ ["atk"]=43200000,
["atk_times"]=2,
["hurt_skill"]={
20079,
@@ -3020,10 +3807,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=12000
},
- [160602]={
+ [39102]={
["monster_base"]=10003,
- ["atk"]=1650000,
- ["hp"]=19800000,
+ ["hp"]=1650000,
+ ["atk"]=19800000,
["atk_times"]=2,
["hurt_skill"]={
20007,
@@ -3032,10 +3819,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=14000
},
- [160702]={
+ [39202]={
["monster_base"]=10005,
- ["atk"]=1800000,
- ["hp"]=19800000,
+ ["hp"]=1800000,
+ ["atk"]=19800000,
["atk_times"]=2,
["hurt_skill"]={
20013,
@@ -3044,10 +3831,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=12000
},
- [160802]={
+ [39302]={
["monster_base"]=10001,
- ["atk"]=1950000,
- ["hp"]=21600000,
+ ["hp"]=1950000,
+ ["atk"]=21600000,
["atk_times"]=2,
["hurt_skill"]={
20001,
@@ -3056,10 +3843,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=13000
},
- [160902]={
+ [39402]={
["monster_base"]=10002,
- ["atk"]=2100000,
- ["hp"]=21600000,
+ ["hp"]=2100000,
+ ["atk"]=21600000,
["atk_times"]=2,
["hurt_skill"]={
20004,
@@ -3068,11 +3855,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=16000
},
- [161002]={
+ [39502]={
["monster_base"]=20008,
["is_boss"]=1,
- ["atk"]=3375000,
- ["hp"]=57600000,
+ ["hp"]=3375000,
+ ["atk"]=57600000,
["atk_times"]=2,
["hurt_skill"]={
20087,
@@ -3084,10 +3871,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=14000
},
- [161102]={
+ [39602]={
["monster_base"]=10002,
- ["atk"]=1800000,
- ["hp"]=23400000,
+ ["hp"]=1800000,
+ ["atk"]=23400000,
["atk_times"]=2,
["hurt_skill"]={
20004,
@@ -3096,10 +3883,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=15000
},
- [161202]={
+ [39702]={
["monster_base"]=10010,
- ["atk"]=1950000,
- ["hp"]=27000000,
+ ["hp"]=1950000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20028,
@@ -3108,10 +3895,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=18000
},
- [161302]={
+ [39802]={
["monster_base"]=10001,
- ["atk"]=2100000,
- ["hp"]=27000000,
+ ["hp"]=2100000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20001,
@@ -3120,10 +3907,10 @@ local monster_daily_challenge = {
},
["monster_exp"]=18000
},
- [161402]={
+ [39902]={
["monster_base"]=10003,
- ["atk"]=2250000,
- ["hp"]=27000000,
+ ["hp"]=2250000,
+ ["atk"]=27000000,
["atk_times"]=2,
["hurt_skill"]={
20007,
@@ -3132,11 +3919,11 @@ local monster_daily_challenge = {
},
["monster_exp"]=22000
},
- [161502]={
+ [40002]={
["monster_base"]=30003,
["is_boss"]=2,
- ["atk"]=4158000,
- ["hp"]=144000000,
+ ["hp"]=4158000,
+ ["atk"]=144000000,
["atk_times"]=3,
["hurt_skill"]={
20101,
@@ -3154,6 +3941,6 @@ local monster_daily_challenge = {
}
}
local config = {
-data=monster_daily_challenge,count=240
+data=monster_daily_challenge,count=300
}
return config
\ No newline at end of file
diff --git a/lua/app/config/skill.lua b/lua/app/config/skill.lua
index ffb208fc..50265031 100644
--- a/lua/app/config/skill.lua
+++ b/lua/app/config/skill.lua
@@ -1030,7 +1030,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 100
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -1059,7 +1059,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 100
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -1088,7 +1088,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 100
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -1117,7 +1117,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 100
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -1178,7 +1178,7 @@ local skill = {
},
["skill_position"]={
1,
- 100
+ 140
},
["shake_time"]=200,
["shake_type"]=5,
@@ -1784,7 +1784,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 100
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -1796,6 +1796,7 @@ local skill = {
"suffer02"
},
["fx_self"]=300049,
+ ["fx_target"]=300054,
["fx_self_mirror"]=400049
},
[2300111]={
@@ -1813,7 +1814,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 100
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -1825,6 +1826,7 @@ local skill = {
"suffer02"
},
["fx_self"]=300050,
+ ["fx_target"]=300054,
["fx_self_mirror"]=400050
},
[2300112]={
@@ -1842,7 +1844,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 100
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -1854,6 +1856,7 @@ local skill = {
"suffer01"
},
["fx_self"]=300051,
+ ["fx_target"]=300054,
["fx_self_mirror"]=400051
},
[2300113]={
@@ -1871,7 +1874,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 100
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -1883,6 +1886,7 @@ local skill = {
"suffer01"
},
["fx_self"]=300052,
+ ["fx_target"]=300054,
["fx_self_mirror"]=400052
},
[2300120]={
@@ -1908,7 +1912,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 100
+ 140
},
["shake_time"]=200,
["shake_type"]=5,
@@ -1919,6 +1923,7 @@ local skill = {
"suffer03"
},
["fx_self"]=300053,
+ ["fx_target"]=300054,
["bullet_time"]={
891,
3000,
@@ -1959,7 +1964,7 @@ local skill = {
["obj"]=1,
["skill_position"]={
1,
- 100
+ 140
}
},
[2300122]={
@@ -1995,7 +2000,7 @@ local skill = {
["obj"]=1,
["skill_position"]={
1,
- 100
+ 140
}
},
[2300123]={
@@ -2031,7 +2036,7 @@ local skill = {
["obj"]=1,
["skill_position"]={
1,
- 100
+ 140
}
},
[2300124]={
@@ -2063,7 +2068,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 120
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -2074,8 +2079,7 @@ local skill = {
["name_hit"]={
"suffer01"
},
- ["fx_self"]=300076,
- ["fx_self_mirror"]=400076
+ ["fx_self_mirror"]=100000
},
[2400111]={
["position"]=2,
@@ -2092,7 +2096,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 120
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -2103,8 +2107,7 @@ local skill = {
["name_hit"]={
"suffer01"
},
- ["fx_self"]=300077,
- ["fx_self_mirror"]=400077
+ ["fx_self_mirror"]=100000
},
[2400112]={
["position"]=2,
@@ -2121,7 +2124,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 120
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -2132,8 +2135,7 @@ local skill = {
["name_hit"]={
"suffer02"
},
- ["fx_self"]=300078,
- ["fx_self_mirror"]=400078
+ ["fx_self_mirror"]=100000
},
[2400113]={
["position"]=2,
@@ -2150,7 +2152,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 120
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -2161,8 +2163,7 @@ local skill = {
["name_hit"]={
"suffer02"
},
- ["fx_self"]=300079,
- ["fx_self_mirror"]=400079
+ ["fx_self_mirror"]=100000
},
[2400120]={
["energy"]=10,
@@ -2187,7 +2188,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 120
+ 140
},
["shake_time"]=200,
["shake_type"]=5,
@@ -2197,13 +2198,12 @@ local skill = {
["name_hit"]={
"suffer03"
},
- ["fx_self"]=300080,
["bullet_time"]={
693,
3000,
400
},
- ["fx_self_mirror"]=400080
+ ["fx_self_mirror"]=100000
},
[2400121]={
["position"]=2,
@@ -2355,7 +2355,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 100
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -2380,7 +2380,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 100
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -2405,7 +2405,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 100
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -2430,7 +2430,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 100
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -2494,7 +2494,7 @@ local skill = {
},
["skill_position"]={
1,
- 100
+ 140
},
["shake_time"]=200,
["shake_type"]=5,
@@ -3067,7 +3067,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 100
+ 120
},
["shake_time"]=100,
["shake_type"]=1,
@@ -3095,7 +3095,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 100
+ 120
},
["shake_time"]=100,
["shake_type"]=1,
@@ -3123,7 +3123,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 100
+ 120
},
["shake_time"]=100,
["shake_type"]=1,
@@ -3151,7 +3151,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 100
+ 120
},
["shake_time"]=100,
["shake_type"]=1,
@@ -3197,7 +3197,7 @@ local skill = {
},
["skill_position"]={
1,
- 100
+ 120
},
["shake_time"]=200,
["shake_type"]=5,
@@ -3840,7 +3840,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 120
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -3868,7 +3868,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 120
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -3896,7 +3896,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 120
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -3924,7 +3924,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 120
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -3984,7 +3984,7 @@ local skill = {
},
["skill_position"]={
1,
- 120
+ 140
},
["shake_time"]=200,
["shake_type"]=5,
@@ -4079,7 +4079,7 @@ local skill = {
["obj"]=1,
["skill_position"]={
1,
- 120
+ 140
}
},
[3500125]={
@@ -4115,7 +4115,7 @@ local skill = {
["obj"]=1,
["skill_position"]={
1,
- 120
+ 140
}
},
[3500126]={
@@ -4151,7 +4151,7 @@ local skill = {
["obj"]=1,
["skill_position"]={
1,
- 120
+ 140
}
},
[3500127]={
@@ -4697,7 +4697,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 120
+ 140
}
},
[4300125]={
@@ -4733,7 +4733,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 120
+ 140
}
},
[4300126]={
@@ -4769,7 +4769,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 120
+ 140
}
},
[4400110]={
@@ -4786,8 +4786,8 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -4798,8 +4798,7 @@ local skill = {
["name_hit"]={
"suffer01"
},
- ["fx_self"]=300074,
- ["fx_self_mirror"]=400074
+ ["fx_self_mirror"]=100000
},
[4400111]={
["position"]=4,
@@ -4815,8 +4814,8 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -4827,8 +4826,7 @@ local skill = {
["name_hit"]={
"suffer02"
},
- ["fx_self"]=300074,
- ["fx_self_mirror"]=400074
+ ["fx_self_mirror"]=100000
},
[4400112]={
["position"]=4,
@@ -4844,8 +4842,8 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -4856,8 +4854,7 @@ local skill = {
["name_hit"]={
"suffer02"
},
- ["fx_self"]=300074,
- ["fx_self_mirror"]=400074
+ ["fx_self_mirror"]=100000
},
[4400113]={
["position"]=4,
@@ -4873,8 +4870,8 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -4885,8 +4882,7 @@ local skill = {
["name_hit"]={
"suffer02"
},
- ["fx_self"]=300074,
- ["fx_self_mirror"]=400074
+ ["fx_self_mirror"]=100000
},
[4400120]={
["energy"]=10,
@@ -4910,8 +4906,8 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=200,
["shake_type"]=5,
@@ -4921,13 +4917,12 @@ local skill = {
["name_hit"]={
"suffer03"
},
- ["fx_self"]=300075,
["bullet_time"]={
1000,
3000,
400
},
- ["fx_self_mirror"]=400075
+ ["fx_self_mirror"]=100000
},
[4400121]={
["position"]=4,
@@ -5110,7 +5105,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 120
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -5139,7 +5134,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 120
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -5168,7 +5163,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 120
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -5197,7 +5192,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 120
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -5243,7 +5238,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 120
+ 140
},
["shake_time"]=200,
["shake_type"]=5,
@@ -5276,7 +5271,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 120
+ 140
}
},
[4500122]={
@@ -5294,7 +5289,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 120
+ 140
}
},
[4500123]={
@@ -5312,7 +5307,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 120
+ 140
}
},
[4500124]={
@@ -5471,7 +5466,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 80
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -5502,7 +5497,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 80
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -5533,7 +5528,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 80
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -5564,7 +5559,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 80
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -5612,7 +5607,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 80
+ 140
},
["shake_time"]=200,
["shake_type"]=5,
@@ -5771,7 +5766,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 100
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -5800,7 +5795,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 100
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -5829,7 +5824,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 100
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -5858,7 +5853,7 @@ local skill = {
["obj"]=2,
["skill_position"]={
1,
- 100
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -6530,8 +6525,8 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -6558,8 +6553,8 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -6586,8 +6581,8 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -6614,8 +6609,8 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -6681,8 +6676,8 @@ local skill = {
5
},
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=200,
["shake_type"]=5,
@@ -9814,7 +9809,7 @@ local skill = {
["sound_hit"]={
10024
},
- ["name_act"]="skill02",
+ ["name_act"]="skill01",
["name_hit"]={
"suffer03"
},
diff --git a/lua/app/config/skill_rogue.lua b/lua/app/config/skill_rogue.lua
index a628fdab..646d22a6 100644
--- a/lua/app/config/skill_rogue.lua
+++ b/lua/app/config/skill_rogue.lua
@@ -696,8 +696,7 @@ local skill_rogue = {
["range"]=1
}
},
- ["icon"]="13001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=0
},
[1300112]={
@@ -717,8 +716,7 @@ local skill_rogue = {
["range"]=2
}
},
- ["icon"]="13001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=1
},
[1300113]={
@@ -731,8 +729,7 @@ local skill_rogue = {
1300115
},
["skill_position"]=1,
- ["icon"]="13001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=2
},
[1300114]={
@@ -787,8 +784,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="13001",
- ["icon_base"]="2",
+ ["icon"]="31",
["entry"]=0
},
[1300122]={
@@ -809,8 +805,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="13001",
- ["icon_base"]="2",
+ ["icon"]="31",
["entry"]=1
},
[1300123]={
@@ -831,8 +826,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="13001",
- ["icon_base"]="2",
+ ["icon"]="31",
["entry"]=2
},
[1300131]={
@@ -850,8 +844,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="13001",
- ["icon_base"]="3",
+ ["icon"]="33",
["entry"]=0,
["combo_hero"]={
13001
@@ -872,8 +865,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="13001",
- ["icon_base"]="3",
+ ["icon"]="33",
["entry"]=1,
["combo_hero"]={
13001
@@ -894,8 +886,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="13001",
- ["icon_base"]="3",
+ ["icon"]="33",
["entry"]=2,
["combo_hero"]={
13001
@@ -916,8 +907,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="13001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=0
},
[1300142]={
@@ -935,8 +925,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="13001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=1
},
[1300143]={
@@ -954,8 +943,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="13001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=2
},
[1400111]={
@@ -975,8 +963,7 @@ local skill_rogue = {
["range"]=1
}
},
- ["icon"]="14001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=0
},
[1400112]={
@@ -996,8 +983,7 @@ local skill_rogue = {
["range"]=2
}
},
- ["icon"]="14001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=1
},
[1400113]={
@@ -1025,8 +1011,7 @@ local skill_rogue = {
["range"]=2
}
},
- ["icon"]="14001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=1
},
[1400121]={
@@ -1047,8 +1032,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="14001",
- ["icon_base"]="2",
+ ["icon"]="31",
["entry"]=0
},
[1400122]={
@@ -1069,8 +1053,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="14001",
- ["icon_base"]="2",
+ ["icon"]="31",
["entry"]=1
},
[1400123]={
@@ -1091,8 +1074,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="14001",
- ["icon_base"]="2",
+ ["icon"]="31",
["entry"]=2
},
[1400131]={
@@ -1110,8 +1092,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="14001",
- ["icon_base"]="3",
+ ["icon"]="33",
["entry"]=0,
["combo_hero"]={
13001
@@ -1132,8 +1113,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="14001",
- ["icon_base"]="3",
+ ["icon"]="33",
["entry"]=1,
["combo_hero"]={
13001
@@ -1154,8 +1134,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="14001",
- ["icon_base"]="3",
+ ["icon"]="33",
["entry"]=2,
["combo_hero"]={
13001
@@ -1176,8 +1155,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="14001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=0
},
[1400142]={
@@ -1195,8 +1173,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="14001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=1
},
[1400143]={
@@ -1214,8 +1191,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="14001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=2
},
[1500111]={
@@ -1234,8 +1210,7 @@ local skill_rogue = {
["range"]=1
}
},
- ["icon"]="15001",
- ["icon_base"]="7",
+ ["icon"]="281",
["entry"]=0
},
[1500112]={
@@ -1262,8 +1237,7 @@ local skill_rogue = {
["range"]=1
}
},
- ["icon"]="15001",
- ["icon_base"]="7",
+ ["icon"]="281",
["entry"]=1
},
[1500113]={
@@ -1298,8 +1272,7 @@ local skill_rogue = {
["range"]=1
}
},
- ["icon"]="15001",
- ["icon_base"]="7",
+ ["icon"]="281",
["entry"]=2
},
[1500121]={
@@ -1320,8 +1293,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="15001",
- ["icon_base"]="6",
+ ["icon"]="33",
["entry"]=0
},
[1500122]={
@@ -1342,8 +1314,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="15001",
- ["icon_base"]="6",
+ ["icon"]="33",
["entry"]=1
},
[1500123]={
@@ -1364,8 +1335,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="15001",
- ["icon_base"]="6",
+ ["icon"]="33",
["entry"]=2
},
[1500131]={
@@ -1383,8 +1353,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="15001",
- ["icon_base"]="3",
+ ["icon"]="277",
["entry"]=0
},
[1500132]={
@@ -1402,8 +1371,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="15001",
- ["icon_base"]="3",
+ ["icon"]="277",
["entry"]=1
},
[1500133]={
@@ -1421,8 +1389,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="15001",
- ["icon_base"]="3",
+ ["icon"]="277",
["entry"]=2
},
[1500141]={
@@ -1440,8 +1407,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="15001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=0
},
[1500142]={
@@ -1459,8 +1425,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="15001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=1
},
[1500143]={
@@ -1478,8 +1443,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="15001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=2
},
[1500211]={
@@ -1500,8 +1464,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="15002",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=0
},
[1500212]={
@@ -1522,8 +1485,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="15002",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=1
},
[1500213]={
@@ -1544,8 +1506,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="15002",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=2
},
[1500221]={
@@ -1566,8 +1527,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="15002",
- ["icon_base"]="2",
+ ["icon"]="277",
["entry"]=0
},
[1500222]={
@@ -1588,8 +1548,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="15002",
- ["icon_base"]="2",
+ ["icon"]="277",
["entry"]=1
},
[1500223]={
@@ -1610,8 +1569,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="15002",
- ["icon_base"]="2",
+ ["icon"]="277",
["entry"]=2
},
[1500231]={
@@ -1629,8 +1587,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="15002",
- ["icon_base"]="3",
+ ["icon"]="277",
["entry"]=0
},
[1500232]={
@@ -1648,8 +1605,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="15002",
- ["icon_base"]="3",
+ ["icon"]="277",
["entry"]=1
},
[1500233]={
@@ -1667,8 +1623,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="15002",
- ["icon_base"]="3",
+ ["icon"]="277",
["entry"]=2
},
[1500241]={
@@ -1686,8 +1641,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="15002",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=0
},
[1500242]={
@@ -1705,8 +1659,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="15002",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=1
},
[1500243]={
@@ -1724,8 +1677,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="15002",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=2
},
[1600111]={
@@ -1745,8 +1697,7 @@ local skill_rogue = {
["range"]=1
}
},
- ["icon"]="16001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=0
},
[1600112]={
@@ -1766,8 +1717,7 @@ local skill_rogue = {
["range"]=2
}
},
- ["icon"]="16001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=1
},
[1600113]={
@@ -1780,8 +1730,7 @@ local skill_rogue = {
1600115
},
["skill_position"]=1,
- ["icon"]="16001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=2
},
[1600114]={
@@ -1839,8 +1788,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="16001",
- ["icon_base"]="2",
+ ["icon"]="31",
["entry"]=0
},
[1600122]={
@@ -1857,8 +1805,7 @@ local skill_rogue = {
1600125
},
["skill_position"]=1,
- ["icon"]="16001",
- ["icon_base"]="2",
+ ["icon"]="31",
["entry"]=1
},
[1600123]={
@@ -1876,13 +1823,12 @@ local skill_rogue = {
1600126
},
["skill_position"]=1,
- ["icon"]="16001",
- ["icon_base"]="2",
+ ["icon"]="31",
["entry"]=2
},
[1600124]={
["limit_times"]=1,
- ["weight"]=0,
+ ["weight"]=3000,
["qlt"]=6,
["type"]=12,
["skill_position"]=1,
@@ -1898,7 +1844,7 @@ local skill_rogue = {
},
[1600125]={
["limit_times"]=1,
- ["weight"]=0,
+ ["weight"]=3000,
["qlt"]=6,
["type"]=12,
["skill_position"]=1,
@@ -1914,7 +1860,7 @@ local skill_rogue = {
},
[1600126]={
["limit_times"]=1,
- ["weight"]=0,
+ ["weight"]=3000,
["qlt"]=6,
["type"]=12,
["skill_position"]=1,
@@ -1943,8 +1889,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="16001",
- ["icon_base"]="3",
+ ["icon"]="277",
["entry"]=0
},
[1600132]={
@@ -1962,8 +1907,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="16001",
- ["icon_base"]="3",
+ ["icon"]="277",
["entry"]=1
},
[1600133]={
@@ -1981,8 +1925,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="16001",
- ["icon_base"]="3",
+ ["icon"]="277",
["entry"]=2
},
[1600141]={
@@ -2003,8 +1946,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="16001",
- ["icon_base"]="2",
+ ["icon"]="277",
["entry"]=0
},
[1600142]={
@@ -2025,8 +1967,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="16001",
- ["icon_base"]="2",
+ ["icon"]="277",
["entry"]=1
},
[1600143]={
@@ -2047,8 +1988,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="16001",
- ["icon_base"]="2",
+ ["icon"]="277",
["entry"]=2
},
[2300111]={
@@ -2068,7 +2008,7 @@ local skill_rogue = {
["range"]=1
}
},
- ["icon"]="23001",
+ ["icon"]="73",
["entry"]=0
},
[2300112]={
@@ -2088,7 +2028,7 @@ local skill_rogue = {
["range"]=2
}
},
- ["icon"]="23001",
+ ["icon"]="73",
["entry"]=1
},
[2300113]={
@@ -2101,13 +2041,13 @@ local skill_rogue = {
2300115
},
["skill_position"]=2,
- ["icon"]="23001",
+ ["icon"]="73",
["entry"]=2
},
[2300114]={
["method"]=2,
["limit_times"]=1,
- ["weight"]=0,
+ ["weight"]=3000,
["qlt"]=3,
["type"]=2,
["skill_position"]=2,
@@ -2124,7 +2064,7 @@ local skill_rogue = {
},
[2300115]={
["limit_times"]=1,
- ["weight"]=0,
+ ["weight"]=3000,
["qlt"]=3,
["type"]=3,
["skill_position"]=2,
@@ -2148,8 +2088,7 @@ local skill_rogue = {
30000
},
["skill_position"]=2,
- ["icon"]="23001",
- ["icon_base"]="4",
+ ["icon"]="72",
["entry"]=0
},
[2300122]={
@@ -2165,8 +2104,7 @@ local skill_rogue = {
2300125
},
["skill_position"]=2,
- ["icon"]="23001",
- ["icon_base"]="4",
+ ["icon"]="73",
["entry"]=1
},
[2300123]={
@@ -2183,8 +2121,7 @@ local skill_rogue = {
2300126
},
["skill_position"]=2,
- ["icon"]="23001",
- ["icon_base"]="4",
+ ["icon"]="73",
["entry"]=2
},
[2300124]={
@@ -2248,8 +2185,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="23001",
- ["icon_base"]="3",
+ ["icon"]="33",
["entry"]=0,
["combo_hero"]={
13001
@@ -2270,8 +2206,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="23001",
- ["icon_base"]="3",
+ ["icon"]="33",
["entry"]=1,
["combo_hero"]={
13001
@@ -2292,8 +2227,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="23001",
- ["icon_base"]="3",
+ ["icon"]="33",
["entry"]=2,
["combo_hero"]={
13001
@@ -2314,8 +2248,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="23001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=0
},
[2300142]={
@@ -2333,8 +2266,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="23001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=1
},
[2300143]={
@@ -2352,8 +2284,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="23001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=2
},
[2400111]={
@@ -2373,8 +2304,7 @@ local skill_rogue = {
["range"]=1
}
},
- ["icon"]="24001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=0
},
[2400112]={
@@ -2394,8 +2324,7 @@ local skill_rogue = {
["range"]=2
}
},
- ["icon"]="24001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=1
},
[2400113]={
@@ -2408,8 +2337,7 @@ local skill_rogue = {
2400115
},
["skill_position"]=2,
- ["icon"]="24001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=2
},
[2400114]={
@@ -2521,8 +2449,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="24001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=0
},
[2400132]={
@@ -2540,8 +2467,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="24001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=1
},
[2400133]={
@@ -2559,8 +2485,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="24001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=2
},
[2400141]={
@@ -2578,8 +2503,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="24001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=0
},
[2400142]={
@@ -2597,8 +2521,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="24001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=1
},
[2400143]={
@@ -2616,15 +2539,14 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="24001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=2
},
[2500111]={
["method"]=2,
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=5,
+ ["qlt"]=4,
["type"]=2,
["skill_position"]=2,
["boardrange"]={
@@ -2645,8 +2567,7 @@ local skill_rogue = {
["range"]=1
}
},
- ["icon"]="25001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=0
},
[2500112]={
@@ -2674,8 +2595,7 @@ local skill_rogue = {
["range"]=2
}
},
- ["icon"]="25001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=1
},
[2500113]={
@@ -2688,8 +2608,7 @@ local skill_rogue = {
2500115
},
["skill_position"]=2,
- ["icon"]="25001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=2
},
[2500114]={
@@ -2752,8 +2671,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="25001",
- ["icon_base"]="2",
+ ["icon"]="31",
["entry"]=0
},
[2500122]={
@@ -2774,8 +2692,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="25001",
- ["icon_base"]="2",
+ ["icon"]="31",
["entry"]=1
},
[2500123]={
@@ -2796,8 +2713,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="25001",
- ["icon_base"]="2",
+ ["icon"]="31",
["entry"]=2
},
[2500131]={
@@ -2815,8 +2731,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="25001",
- ["icon_base"]="3",
+ ["icon"]="144",
["entry"]=0
},
[2500132]={
@@ -2834,8 +2749,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="25001",
- ["icon_base"]="3",
+ ["icon"]="144",
["entry"]=1
},
[2500133]={
@@ -2853,8 +2767,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="25001",
- ["icon_base"]="3",
+ ["icon"]="144",
["entry"]=2
},
[2500141]={
@@ -2872,8 +2785,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="25001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=0
},
[2500142]={
@@ -2891,8 +2803,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="25001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=1
},
[2500143]={
@@ -2910,15 +2821,14 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="25001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=2
},
[2500211]={
["method"]=2,
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=5,
+ ["qlt"]=4,
["type"]=2,
["skill_position"]=2,
["boardrange"]={
@@ -2931,15 +2841,14 @@ local skill_rogue = {
["range"]=1
}
},
- ["icon"]="25002",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=0
},
[2500212]={
["method"]=2,
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=5,
+ ["qlt"]=4,
["type"]=2,
["skill_position"]=2,
["boardrange"]={
@@ -2952,15 +2861,14 @@ local skill_rogue = {
["range"]=2
}
},
- ["icon"]="25002",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=1
},
[2500213]={
["method"]=2,
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=5,
+ ["qlt"]=4,
["type"]=2,
["skill_position"]=2,
["boardrange"]={
@@ -2973,8 +2881,7 @@ local skill_rogue = {
["range"]=3
}
},
- ["icon"]="25002",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=2
},
[2500221]={
@@ -2995,8 +2902,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="25002",
- ["icon_base"]="2",
+ ["icon"]="73",
["entry"]=0
},
[2500222]={
@@ -3012,8 +2918,7 @@ local skill_rogue = {
2500226
},
["skill_position"]=2,
- ["icon"]="25002",
- ["icon_base"]="2",
+ ["icon"]="73",
["entry"]=1
},
[2500223]={
@@ -3029,13 +2934,12 @@ local skill_rogue = {
2500226
},
["skill_position"]=2,
- ["icon"]="25002",
- ["icon_base"]="2",
+ ["icon"]="73",
["entry"]=2
},
[2500224]={
["limit_times"]=1,
- ["weight"]=0,
+ ["weight"]=3000,
["qlt"]=5,
["type"]=12,
["skill_position"]=2,
@@ -3051,7 +2955,7 @@ local skill_rogue = {
},
[2500225]={
["limit_times"]=1,
- ["weight"]=0,
+ ["weight"]=3000,
["qlt"]=5,
["type"]=12,
["skill_position"]=2,
@@ -3067,8 +2971,8 @@ local skill_rogue = {
},
[2500226]={
["limit_times"]=1,
- ["weight"]=0,
- ["qlt"]=5,
+ ["weight"]=3000,
+ ["qlt"]=3,
["type"]=1,
["parameter"]={
2500222
@@ -3090,8 +2994,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="25002",
- ["icon_base"]="3",
+ ["icon"]="281",
["entry"]=0
},
[2500232]={
@@ -3104,8 +3007,7 @@ local skill_rogue = {
2500236
},
["skill_position"]=2,
- ["icon"]="25002",
- ["icon_base"]="3",
+ ["icon"]="281",
["entry"]=1
},
[2500233]={
@@ -3118,13 +3020,12 @@ local skill_rogue = {
2500236
},
["skill_position"]=2,
- ["icon"]="25002",
- ["icon_base"]="3",
+ ["icon"]="281",
["entry"]=2
},
[2500234]={
["limit_times"]=1,
- ["weight"]=0,
+ ["weight"]=3000,
["qlt"]=5,
["type"]=12,
["skill_position"]=2,
@@ -3140,7 +3041,7 @@ local skill_rogue = {
},
[2500235]={
["limit_times"]=1,
- ["weight"]=0,
+ ["weight"]=3000,
["qlt"]=5,
["type"]=12,
["skill_position"]=2,
@@ -3156,7 +3057,7 @@ local skill_rogue = {
},
[2500236]={
["limit_times"]=1,
- ["weight"]=0,
+ ["weight"]=3000,
["qlt"]=5,
["type"]=9,
["skill_position"]=2,
@@ -3185,8 +3086,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="25002",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=0
},
[2500242]={
@@ -3204,8 +3104,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="25002",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=1
},
[2500243]={
@@ -3223,8 +3122,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="25002",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=2
},
[2600111]={
@@ -3239,8 +3137,7 @@ local skill_rogue = {
["range"]=4
}
},
- ["icon"]="26001",
- ["icon_base"]="1",
+ ["icon"]="55",
["entry"]=0
},
[2600112]={
@@ -3255,8 +3152,7 @@ local skill_rogue = {
["range"]=8
}
},
- ["icon"]="26001",
- ["icon_base"]="1",
+ ["icon"]="55",
["entry"]=1
},
[2600113]={
@@ -3271,8 +3167,7 @@ local skill_rogue = {
["range"]=12
}
},
- ["icon"]="26001",
- ["icon_base"]="1",
+ ["icon"]="55",
["entry"]=2
},
[2600121]={
@@ -3290,8 +3185,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="26001",
- ["icon_base"]="5",
+ ["icon"]="165",
["entry"]=0
},
[2600122]={
@@ -3309,8 +3203,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="26001",
- ["icon_base"]="5",
+ ["icon"]="165",
["entry"]=1
},
[2600123]={
@@ -3323,13 +3216,11 @@ local skill_rogue = {
2600125
},
["skill_position"]=2,
- ["icon"]="26001",
- ["icon_base"]="5",
+ ["icon"]="165",
["entry"]=2
},
[2600124]={
["limit_times"]=1,
- ["weight"]=0,
["qlt"]=6,
["type"]=12,
["skill_position"]=5,
@@ -3345,7 +3236,6 @@ local skill_rogue = {
},
[2600125]={
["limit_times"]=1,
- ["weight"]=0,
["qlt"]=6,
["type"]=12,
["skill_position"]=5,
@@ -3374,8 +3264,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="26001",
- ["icon_base"]="4",
+ ["icon"]="165",
["entry"]=0
},
[2600132]={
@@ -3393,8 +3282,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="26001",
- ["icon_base"]="4",
+ ["icon"]="165",
["entry"]=1
},
[2600133]={
@@ -3412,8 +3300,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="26001",
- ["icon_base"]="4",
+ ["icon"]="165",
["entry"]=2
},
[2600141]={
@@ -3434,8 +3321,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="26001",
- ["icon_base"]="2",
+ ["icon"]="277",
["entry"]=0
},
[2600142]={
@@ -3456,8 +3342,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="26001",
- ["icon_base"]="2",
+ ["icon"]="277",
["entry"]=1
},
[2600143]={
@@ -3478,8 +3363,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="26001",
- ["icon_base"]="2",
+ ["icon"]="277",
["entry"]=2
},
[3300111]={
@@ -3499,8 +3383,7 @@ local skill_rogue = {
["range"]=1
}
},
- ["icon"]="33001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=0
},
[3300112]={
@@ -3520,8 +3403,7 @@ local skill_rogue = {
["range"]=2
}
},
- ["icon"]="33001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=1
},
[3300113]={
@@ -3534,8 +3416,7 @@ local skill_rogue = {
3300115
},
["skill_position"]=3,
- ["icon"]="33001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=2
},
[3300114]={
@@ -3587,8 +3468,7 @@ local skill_rogue = {
}
},
["obj"]=5,
- ["icon"]="33001",
- ["icon_base"]="6",
+ ["icon"]="45",
["entry"]=0
},
[3300122]={
@@ -3612,8 +3492,7 @@ local skill_rogue = {
}
},
["obj"]=5,
- ["icon"]="33001",
- ["icon_base"]="6",
+ ["icon"]="45",
["entry"]=1
},
[3300123]={
@@ -3637,8 +3516,7 @@ local skill_rogue = {
}
},
["obj"]=5,
- ["icon"]="33001",
- ["icon_base"]="6",
+ ["icon"]="45",
["entry"]=2
},
[3300131]={
@@ -3656,8 +3534,7 @@ local skill_rogue = {
}
},
["obj"]=5,
- ["icon"]="33001",
- ["icon_base"]="3",
+ ["icon"]="33",
["entry"]=0,
["combo_hero"]={
13001
@@ -3678,8 +3555,7 @@ local skill_rogue = {
}
},
["obj"]=5,
- ["icon"]="33001",
- ["icon_base"]="3",
+ ["icon"]="33",
["entry"]=1,
["combo_hero"]={
13001
@@ -3700,8 +3576,7 @@ local skill_rogue = {
}
},
["obj"]=5,
- ["icon"]="33001",
- ["icon_base"]="3",
+ ["icon"]="33",
["entry"]=2,
["combo_hero"]={
13001
@@ -3717,8 +3592,7 @@ local skill_rogue = {
15000
},
["skill_position"]=3,
- ["icon"]="33001",
- ["icon_base"]="4",
+ ["icon"]="72",
["entry"]=0
},
[3300142]={
@@ -3731,8 +3605,7 @@ local skill_rogue = {
30000
},
["skill_position"]=3,
- ["icon"]="33001",
- ["icon_base"]="4",
+ ["icon"]="72",
["entry"]=1
},
[3300143]={
@@ -3745,8 +3618,7 @@ local skill_rogue = {
3300145
},
["skill_position"]=3,
- ["icon"]="33001",
- ["icon_base"]="4",
+ ["icon"]="73",
["entry"]=2
},
[3300144]={
@@ -3793,8 +3665,7 @@ local skill_rogue = {
["range"]=1
}
},
- ["icon"]="34001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=0
},
[3400112]={
@@ -3814,8 +3685,7 @@ local skill_rogue = {
["range"]=2
}
},
- ["icon"]="34001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=1
},
[3400113]={
@@ -3828,8 +3698,7 @@ local skill_rogue = {
3400115
},
["skill_position"]=3,
- ["icon"]="34001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=2
},
[3400114]={
@@ -3876,8 +3745,7 @@ local skill_rogue = {
5000
},
["skill_position"]=3,
- ["icon"]="34001",
- ["icon_base"]="6",
+ ["icon"]="73",
["entry"]=0
},
[3400122]={
@@ -3893,8 +3761,7 @@ local skill_rogue = {
3400125
},
["skill_position"]=3,
- ["icon"]="34001",
- ["icon_base"]="6",
+ ["icon"]="73",
["entry"]=1
},
[3400123]={
@@ -3910,8 +3777,7 @@ local skill_rogue = {
3400126
},
["skill_position"]=3,
- ["icon"]="34001",
- ["icon_base"]="6",
+ ["icon"]="73",
["entry"]=2
},
[3400124]={
@@ -3975,8 +3841,7 @@ local skill_rogue = {
}
},
["obj"]=5,
- ["icon"]="34001",
- ["icon_base"]="6",
+ ["icon"]="86",
["entry"]=0
},
[3400132]={
@@ -3997,8 +3862,7 @@ local skill_rogue = {
}
},
["obj"]=5,
- ["icon"]="34001",
- ["icon_base"]="6",
+ ["icon"]="86",
["entry"]=1
},
[3400133]={
@@ -4011,13 +3875,12 @@ local skill_rogue = {
3400135
},
["skill_position"]=3,
- ["icon"]="34001",
- ["icon_base"]="6",
+ ["icon"]="86",
["entry"]=2
},
[3400134]={
["limit_times"]=1,
- ["weight"]=0,
+ ["weight"]=3000,
["qlt"]=4,
["type"]=14,
["parameter"]={
@@ -4036,7 +3899,7 @@ local skill_rogue = {
},
[3400135]={
["limit_times"]=1,
- ["weight"]=0,
+ ["weight"]=3000,
["qlt"]=4,
["type"]=12,
["skill_position"]=3,
@@ -4065,8 +3928,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="34001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=0
},
[3400142]={
@@ -4084,8 +3946,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="34001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=1
},
[3400143]={
@@ -4103,8 +3964,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="34001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=2
},
[3500111]={
@@ -4124,8 +3984,7 @@ local skill_rogue = {
["range"]=1
}
},
- ["icon"]="35001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=0
},
[3500112]={
@@ -4145,8 +4004,7 @@ local skill_rogue = {
["range"]=2
}
},
- ["icon"]="35001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=1
},
[3500113]={
@@ -4159,8 +4017,7 @@ local skill_rogue = {
3500115
},
["skill_position"]=3,
- ["icon"]="35001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=2
},
[3500114]={
@@ -4215,8 +4072,7 @@ local skill_rogue = {
}
},
["obj"]=5,
- ["icon"]="35001",
- ["icon_base"]="2",
+ ["icon"]="115",
["entry"]=0
},
[3500122]={
@@ -4237,8 +4093,7 @@ local skill_rogue = {
}
},
["obj"]=5,
- ["icon"]="35001",
- ["icon_base"]="2",
+ ["icon"]="115",
["entry"]=0
},
[3500123]={
@@ -4259,8 +4114,7 @@ local skill_rogue = {
}
},
["obj"]=5,
- ["icon"]="35001",
- ["icon_base"]="2",
+ ["icon"]="115",
["entry"]=0
},
[3500131]={
@@ -4281,8 +4135,7 @@ local skill_rogue = {
}
},
["obj"]=5,
- ["icon"]="35001",
- ["icon_base"]="3",
+ ["icon"]="33",
["entry"]=0,
["combo_hero"]={
13001
@@ -4306,8 +4159,7 @@ local skill_rogue = {
}
},
["obj"]=5,
- ["icon"]="35001",
- ["icon_base"]="3",
+ ["icon"]="33",
["entry"]=1,
["combo_hero"]={
13001
@@ -4331,8 +4183,7 @@ local skill_rogue = {
}
},
["obj"]=5,
- ["icon"]="35001",
- ["icon_base"]="3",
+ ["icon"]="33",
["entry"]=2,
["combo_hero"]={
13001
@@ -4356,8 +4207,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="35001",
- ["icon_base"]="2",
+ ["icon"]="277",
["entry"]=0
},
[3500142]={
@@ -4378,8 +4228,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="35001",
- ["icon_base"]="2",
+ ["icon"]="277",
["entry"]=1
},
[3500143]={
@@ -4400,8 +4249,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="35001",
- ["icon_base"]="2",
+ ["icon"]="277",
["entry"]=2
},
[3500211]={
@@ -4421,8 +4269,7 @@ local skill_rogue = {
["range"]=1
}
},
- ["icon"]="35002",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=0
},
[3500212]={
@@ -4442,8 +4289,7 @@ local skill_rogue = {
["range"]=2
}
},
- ["icon"]="35002",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=1
},
[3500213]={
@@ -4456,8 +4302,7 @@ local skill_rogue = {
3500215
},
["skill_position"]=3,
- ["icon"]="35002",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=2
},
[3500214]={
@@ -4512,8 +4357,7 @@ local skill_rogue = {
}
},
["obj"]=5,
- ["icon"]="35002",
- ["icon_base"]="2",
+ ["icon"]="115",
["entry"]=0
},
[3500222]={
@@ -4534,8 +4378,7 @@ local skill_rogue = {
}
},
["obj"]=5,
- ["icon"]="35002",
- ["icon_base"]="2",
+ ["icon"]="115",
["entry"]=1
},
[3500223]={
@@ -4556,8 +4399,7 @@ local skill_rogue = {
}
},
["obj"]=5,
- ["icon"]="35002",
- ["icon_base"]="2",
+ ["icon"]="115",
["entry"]=2
},
[3500231]={
@@ -4575,8 +4417,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="35002",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=0
},
[3500232]={
@@ -4594,8 +4435,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="35002",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=1
},
[3500233]={
@@ -4613,8 +4453,7 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="35002",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=2
},
[3500241]={
@@ -4635,8 +4474,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="35002",
- ["icon_base"]="2",
+ ["icon"]="277",
["entry"]=0
},
[3500242]={
@@ -4657,8 +4495,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="35002",
- ["icon_base"]="2",
+ ["icon"]="277",
["entry"]=1
},
[3500243]={
@@ -4679,8 +4516,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="35002",
- ["icon_base"]="2",
+ ["icon"]="277",
["entry"]=2
},
[4300111]={
@@ -4695,8 +4531,7 @@ local skill_rogue = {
["range"]=2
}
},
- ["icon"]="43001",
- ["icon_base"]="1",
+ ["icon"]="55",
["entry"]=0
},
[4300112]={
@@ -4711,8 +4546,7 @@ local skill_rogue = {
["range"]=4
}
},
- ["icon"]="43001",
- ["icon_base"]="1",
+ ["icon"]="55",
["entry"]=1
},
[4300113]={
@@ -4727,8 +4561,7 @@ local skill_rogue = {
["range"]=6
}
},
- ["icon"]="43001",
- ["icon_base"]="1",
+ ["icon"]="55",
["entry"]=2
},
[4300121]={
@@ -4749,8 +4582,7 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="43001",
- ["icon_base"]="2",
+ ["icon"]="31",
["entry"]=0
},
[4300122]={
@@ -4771,8 +4603,7 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="43001",
- ["icon_base"]="2",
+ ["icon"]="31",
["entry"]=1
},
[4300123]={
@@ -4793,8 +4624,7 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="43001",
- ["icon_base"]="2",
+ ["icon"]="31",
["entry"]=2
},
[4300131]={
@@ -4815,8 +4645,7 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="43001",
- ["icon_base"]="3",
+ ["icon"]="31",
["entry"]=0
},
[4300132]={
@@ -4837,8 +4666,7 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="43001",
- ["icon_base"]="3",
+ ["icon"]="31",
["entry"]=1
},
[4300133]={
@@ -4859,8 +4687,7 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="43001",
- ["icon_base"]="3",
+ ["icon"]="31",
["entry"]=2
},
[4300141]={
@@ -4878,8 +4705,7 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="43001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=0
},
[4300142]={
@@ -4897,8 +4723,7 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="43001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=1
},
[4300143]={
@@ -4916,8 +4741,7 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="43001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=2
},
[4400111]={
@@ -4937,8 +4761,7 @@ local skill_rogue = {
["range"]=1
}
},
- ["icon"]="44001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=0
},
[4400112]={
@@ -4958,8 +4781,7 @@ local skill_rogue = {
["range"]=2
}
},
- ["icon"]="44001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=1
},
[4400113]={
@@ -4972,8 +4794,7 @@ local skill_rogue = {
4400115
},
["skill_position"]=4,
- ["icon"]="44001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=2
},
[4400114]={
@@ -5028,8 +4849,7 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="44001",
- ["icon_base"]="2",
+ ["icon"]="31",
["entry"]=0
},
[4400122]={
@@ -5050,8 +4870,7 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="44001",
- ["icon_base"]="2",
+ ["icon"]="31",
["entry"]=1
},
[4400123]={
@@ -5067,8 +4886,7 @@ local skill_rogue = {
4400125
},
["skill_position"]=4,
- ["icon"]="44001",
- ["icon_base"]="2",
+ ["icon"]="31",
["entry"]=2
},
[4400124]={
@@ -5118,8 +4936,7 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="44001",
- ["icon_base"]="3",
+ ["icon"]="31",
["entry"]=0
},
[4400132]={
@@ -5137,8 +4954,7 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="44001",
- ["icon_base"]="3",
+ ["icon"]="31",
["entry"]=1
},
[4400133]={
@@ -5154,8 +4970,7 @@ local skill_rogue = {
4400135
},
["skill_position"]=4,
- ["icon"]="44001",
- ["icon_base"]="3",
+ ["icon"]="31",
["entry"]=2
},
[4400134]={
@@ -5205,8 +5020,7 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="44001",
- ["icon_base"]="6",
+ ["icon"]="32",
["entry"]=0
},
[4400142]={
@@ -5224,8 +5038,7 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="44001",
- ["icon_base"]="6",
+ ["icon"]="32",
["entry"]=1
},
[4400143]={
@@ -5243,14 +5056,13 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="44001",
- ["icon_base"]="6",
+ ["icon"]="32",
["entry"]=2
},
[4500111]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=5,
+ ["qlt"]=3,
["type"]=2,
["skill_position"]=4,
["boardrange"]={
@@ -5259,14 +5071,13 @@ local skill_rogue = {
["range"]=3
}
},
- ["icon"]="45001",
- ["icon_base"]="1",
+ ["icon"]="55",
["entry"]=0
},
[4500112]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=5,
+ ["qlt"]=3,
["type"]=2,
["skill_position"]=4,
["boardrange"]={
@@ -5275,14 +5086,13 @@ local skill_rogue = {
["range"]=5
}
},
- ["icon"]="45001",
- ["icon_base"]="1",
+ ["icon"]="55",
["entry"]=1
},
[4500113]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=5,
+ ["qlt"]=3,
["type"]=2,
["skill_position"]=4,
["boardrange"]={
@@ -5291,8 +5101,7 @@ local skill_rogue = {
["range"]=7
}
},
- ["icon"]="45001",
- ["icon_base"]="1",
+ ["icon"]="55",
["entry"]=2
},
[4500121]={
@@ -5300,7 +5109,7 @@ local skill_rogue = {
"frozen"
},
["limit_times"]=1,
- ["weight"]=3000,
+ ["weight"]=0,
["qlt"]=5,
["type"]=12,
["skill_position"]=4,
@@ -5313,8 +5122,7 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="45001",
- ["icon_base"]="2",
+ ["icon"]="31",
["entry"]=0
},
[4500122]={
@@ -5322,7 +5130,7 @@ local skill_rogue = {
"frozen"
},
["limit_times"]=1,
- ["weight"]=3000,
+ ["weight"]=0,
["qlt"]=5,
["type"]=12,
["skill_position"]=4,
@@ -5335,8 +5143,7 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="45001",
- ["icon_base"]="2",
+ ["icon"]="31",
["entry"]=1
},
[4500123]={
@@ -5344,7 +5151,7 @@ local skill_rogue = {
"frozen"
},
["limit_times"]=1,
- ["weight"]=3000,
+ ["weight"]=0,
["qlt"]=5,
["type"]=12,
["skill_position"]=4,
@@ -5357,14 +5164,13 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="45001",
- ["icon_base"]="2",
+ ["icon"]="31",
["entry"]=2
},
[4500131]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=5,
+ ["qlt"]=4,
["type"]=12,
["skill_position"]=4,
["effect"]={
@@ -5376,14 +5182,13 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="45001",
- ["icon_base"]="3",
+ ["icon"]="31",
["entry"]=0
},
[4500132]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=5,
+ ["qlt"]=4,
["type"]=12,
["skill_position"]=4,
["effect"]={
@@ -5395,14 +5200,13 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="45001",
- ["icon_base"]="3",
+ ["icon"]="31",
["entry"]=1
},
[4500133]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=5,
+ ["qlt"]=4,
["type"]=12,
["skill_position"]=4,
["effect"]={
@@ -5414,8 +5218,7 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="45001",
- ["icon_base"]="3",
+ ["icon"]="31",
["entry"]=2
},
[4500141]={
@@ -5437,8 +5240,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="45001",
- ["icon_base"]="2",
+ ["icon"]="277",
["entry"]=0
},
[4500142]={
@@ -5460,8 +5262,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="45001",
- ["icon_base"]="2",
+ ["icon"]="277",
["entry"]=1
},
[4500143]={
@@ -5483,8 +5284,7 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="45001",
- ["icon_base"]="2",
+ ["icon"]="277",
["entry"]=2
},
[4500211]={
@@ -5504,8 +5304,7 @@ local skill_rogue = {
["range"]=1
}
},
- ["icon"]="45002",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=0
},
[4500212]={
@@ -5525,8 +5324,7 @@ local skill_rogue = {
["range"]=2
}
},
- ["icon"]="45002",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=1
},
[4500213]={
@@ -5539,8 +5337,7 @@ local skill_rogue = {
4500215
},
["skill_position"]=4,
- ["icon"]="45002",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=2
},
[4500214]={
@@ -5595,8 +5392,7 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="45002",
- ["icon_base"]="2",
+ ["icon"]="31",
["entry"]=0
},
[4500222]={
@@ -5613,8 +5409,7 @@ local skill_rogue = {
4500224
},
["skill_position"]=4,
- ["icon"]="45002",
- ["icon_base"]="2",
+ ["icon"]="31",
["entry"]=1
},
[4500223]={
@@ -5631,13 +5426,11 @@ local skill_rogue = {
4500225
},
["skill_position"]=4,
- ["icon"]="45002",
- ["icon_base"]="2",
+ ["icon"]="31",
["entry"]=2
},
[4500224]={
["limit_times"]=1,
- ["weight"]=0,
["qlt"]=5,
["type"]=8,
["parameter"]={
@@ -5683,7 +5476,7 @@ local skill_rogue = {
"weaken"
},
["limit_times"]=1,
- ["weight"]=3000,
+ ["weight"]=0,
["qlt"]=5,
["type"]=12,
["skill_position"]=4,
@@ -5696,8 +5489,7 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="45002",
- ["icon_base"]="3",
+ ["icon"]="31",
["entry"]=0
},
[4500232]={
@@ -5705,7 +5497,7 @@ local skill_rogue = {
"weaken"
},
["limit_times"]=1,
- ["weight"]=3000,
+ ["weight"]=0,
["qlt"]=5,
["type"]=12,
["skill_position"]=4,
@@ -5718,8 +5510,7 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="45002",
- ["icon_base"]="3",
+ ["icon"]="31",
["entry"]=1
},
[4500233]={
@@ -5727,7 +5518,7 @@ local skill_rogue = {
"weaken"
},
["limit_times"]=1,
- ["weight"]=3000,
+ ["weight"]=0,
["qlt"]=5,
["type"]=12,
["skill_position"]=4,
@@ -5740,8 +5531,7 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="45002",
- ["icon_base"]="3",
+ ["icon"]="31",
["entry"]=2
},
[4500241]={
@@ -5759,8 +5549,7 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="45002",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=0
},
[4500242]={
@@ -5778,8 +5567,7 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="45002",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=1
},
[4500243]={
@@ -5797,8 +5585,7 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="45002",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=2
},
[5300111]={
@@ -5818,8 +5605,7 @@ local skill_rogue = {
["range"]=1
}
},
- ["icon"]="53001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=0
},
[5300112]={
@@ -5847,8 +5633,7 @@ local skill_rogue = {
["range"]=1
}
},
- ["icon"]="53001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=1
},
[5300113]={
@@ -5861,8 +5646,7 @@ local skill_rogue = {
5300115
},
["skill_position"]=5,
- ["icon"]="53001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=2
},
[5300114]={
@@ -5913,8 +5697,7 @@ local skill_rogue = {
600
},
["skill_position"]=5,
- ["icon"]="53001",
- ["icon_base"]="6",
+ ["icon"]="73",
["entry"]=0
},
[5300122]={
@@ -5927,8 +5710,7 @@ local skill_rogue = {
1000
},
["skill_position"]=5,
- ["icon"]="53001",
- ["icon_base"]="6",
+ ["icon"]="73",
["entry"]=1
},
[5300123]={
@@ -5941,8 +5723,7 @@ local skill_rogue = {
5300125
},
["skill_position"]=5,
- ["icon"]="53001",
- ["icon_base"]="6",
+ ["icon"]="73",
["entry"]=2
},
[5300124]={
@@ -6044,8 +5825,7 @@ local skill_rogue = {
}
},
["obj"]=7,
- ["icon"]="53001",
- ["icon_base"]="6",
+ ["icon"]="281",
["entry"]=0
},
[5300142]={
@@ -6063,8 +5843,7 @@ local skill_rogue = {
}
},
["obj"]=7,
- ["icon"]="53001",
- ["icon_base"]="6",
+ ["icon"]="281",
["entry"]=1
},
[5300143]={
@@ -6082,8 +5861,7 @@ local skill_rogue = {
}
},
["obj"]=7,
- ["icon"]="53001",
- ["icon_base"]="6",
+ ["icon"]="281",
["entry"]=2
},
[5400111]={
@@ -6103,8 +5881,7 @@ local skill_rogue = {
["range"]=1
}
},
- ["icon"]="54001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=0
},
[5400112]={
@@ -6124,8 +5901,7 @@ local skill_rogue = {
["range"]=2
}
},
- ["icon"]="54001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=1
},
[5400113]={
@@ -6138,8 +5914,7 @@ local skill_rogue = {
5400115
},
["skill_position"]=5,
- ["icon"]="54001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=2
},
[5400114]={
@@ -6194,8 +5969,7 @@ local skill_rogue = {
}
},
["obj"]=7,
- ["icon"]="54001",
- ["icon_base"]="2",
+ ["icon"]="33",
["entry"]=0
},
[5400122]={
@@ -6216,8 +5990,7 @@ local skill_rogue = {
}
},
["obj"]=7,
- ["icon"]="54001",
- ["icon_base"]="2",
+ ["icon"]="33",
["entry"]=1
},
[5400123]={
@@ -6233,8 +6006,7 @@ local skill_rogue = {
5400125
},
["skill_position"]=5,
- ["icon"]="54001",
- ["icon_base"]="2",
+ ["icon"]="33",
["entry"]=2
},
[5400124]={
@@ -6284,8 +6056,7 @@ local skill_rogue = {
}
},
["obj"]=7,
- ["icon"]="54001",
- ["icon_base"]="3",
+ ["icon"]="33",
["entry"]=0,
["combo_hero"]={
13001
@@ -6306,8 +6077,7 @@ local skill_rogue = {
}
},
["obj"]=7,
- ["icon"]="54001",
- ["icon_base"]="3",
+ ["icon"]="33",
["entry"]=1,
["combo_hero"]={
13001
@@ -6323,8 +6093,7 @@ local skill_rogue = {
5400135
},
["skill_position"]=5,
- ["icon"]="54001",
- ["icon_base"]="3",
+ ["icon"]="33",
["entry"]=2
},
[5400134]={
@@ -6364,7 +6133,7 @@ local skill_rogue = {
},
[5400141]={
["limit_times"]=1,
- ["weight"]=3000,
+ ["weight"]=0,
["qlt"]=4,
["type"]=9,
["skill_position"]=5,
@@ -6380,7 +6149,7 @@ local skill_rogue = {
},
[5400142]={
["limit_times"]=1,
- ["weight"]=3000,
+ ["weight"]=0,
["qlt"]=4,
["type"]=9,
["skill_position"]=5,
@@ -6396,7 +6165,7 @@ local skill_rogue = {
},
[5400143]={
["limit_times"]=1,
- ["weight"]=3000,
+ ["weight"]=0,
["qlt"]=4,
["type"]=9,
["skill_position"]=5,
@@ -6427,8 +6196,7 @@ local skill_rogue = {
["range"]=1
}
},
- ["icon"]="55001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=0
},
[5500112]={
@@ -6448,8 +6216,7 @@ local skill_rogue = {
["range"]=2
}
},
- ["icon"]="55001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=1
},
[5500113]={
@@ -6476,13 +6243,12 @@ local skill_rogue = {
["range"]=1
}
},
- ["icon"]="55001",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=2
},
[5500121]={
["limit_times"]=1,
- ["weight"]=3000,
+ ["weight"]=0,
["qlt"]=5,
["type"]=7,
["parameter"]={
@@ -6490,8 +6256,7 @@ local skill_rogue = {
30000
},
["skill_position"]=5,
- ["icon"]="55001",
- ["icon_base"]="4",
+ ["icon"]="73",
["entry"]=0
},
[5500122]={
@@ -6504,8 +6269,7 @@ local skill_rogue = {
5500125
},
["skill_position"]=5,
- ["icon"]="55001",
- ["icon_base"]="4",
+ ["icon"]="73",
["entry"]=1
},
[5500123]={
@@ -6518,8 +6282,7 @@ local skill_rogue = {
5500126
},
["skill_position"]=5,
- ["icon"]="55001",
- ["icon_base"]="4",
+ ["icon"]="73",
["entry"]=2
},
[5500124]={
@@ -6580,8 +6343,7 @@ local skill_rogue = {
}
},
["obj"]=7,
- ["icon"]="55001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=0
},
[5500132]={
@@ -6599,8 +6361,7 @@ local skill_rogue = {
}
},
["obj"]=7,
- ["icon"]="55001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=1
},
[5500133]={
@@ -6618,8 +6379,7 @@ local skill_rogue = {
}
},
["obj"]=7,
- ["icon"]="55001",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=2
},
[5500141]={
@@ -6637,8 +6397,7 @@ local skill_rogue = {
}
},
["obj"]=7,
- ["icon"]="55001",
- ["icon_base"]="7",
+ ["icon"]="169",
["entry"]=0
},
[5500142]={
@@ -6651,8 +6410,7 @@ local skill_rogue = {
5500145
},
["skill_position"]=5,
- ["icon"]="55001",
- ["icon_base"]="7",
+ ["icon"]="169",
["entry"]=1
},
[5500143]={
@@ -6665,8 +6423,7 @@ local skill_rogue = {
5500146
},
["skill_position"]=5,
- ["icon"]="55001",
- ["icon_base"]="7",
+ ["icon"]="169",
["entry"]=2
},
[5500144]={
@@ -6734,8 +6491,7 @@ local skill_rogue = {
["range"]=1
}
},
- ["icon"]="55002",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=0
},
[5500212]={
@@ -6755,8 +6511,7 @@ local skill_rogue = {
["range"]=2
}
},
- ["icon"]="55002",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=1
},
[5500213]={
@@ -6792,8 +6547,7 @@ local skill_rogue = {
["range"]=1
}
},
- ["icon"]="55002",
- ["icon_base"]="1",
+ ["icon"]="73",
["entry"]=2
},
[5500221]={
@@ -6811,8 +6565,7 @@ local skill_rogue = {
}
},
["obj"]=7,
- ["icon"]="55002",
- ["icon_base"]="2",
+ ["icon"]="33",
["entry"]=0
},
[5500222]={
@@ -6830,8 +6583,7 @@ local skill_rogue = {
}
},
["obj"]=7,
- ["icon"]="55002",
- ["icon_base"]="2",
+ ["icon"]="33",
["entry"]=1
},
[5500223]={
@@ -6844,8 +6596,7 @@ local skill_rogue = {
5500225
},
["skill_position"]=5,
- ["icon"]="55002",
- ["icon_base"]="2",
+ ["icon"]="33",
["entry"]=2
},
[5500224]={
@@ -6890,8 +6641,7 @@ local skill_rogue = {
}
},
["obj"]=7,
- ["icon"]="55002",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=0
},
[5500232]={
@@ -6909,8 +6659,7 @@ local skill_rogue = {
}
},
["obj"]=7,
- ["icon"]="55002",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=1
},
[5500233]={
@@ -6928,8 +6677,7 @@ local skill_rogue = {
}
},
["obj"]=7,
- ["icon"]="55002",
- ["icon_base"]="4",
+ ["icon"]="281",
["entry"]=2
},
[5500241]={
@@ -6950,8 +6698,7 @@ local skill_rogue = {
}
},
["obj"]=7,
- ["icon"]="55002",
- ["icon_base"]="3",
+ ["icon"]="31",
["entry"]=0
},
[5500242]={
@@ -6972,8 +6719,7 @@ local skill_rogue = {
}
},
["obj"]=7,
- ["icon"]="55002",
- ["icon_base"]="3",
+ ["icon"]="31",
["entry"]=1
},
[5500243]={
@@ -6994,8 +6740,7 @@ local skill_rogue = {
}
},
["obj"]=7,
- ["icon"]="55002",
- ["icon_base"]="3",
+ ["icon"]="31",
["entry"]=2
}
}
diff --git a/lua/app/config/strings/cn/attr.lua b/lua/app/config/strings/cn/attr.lua
index 914a823b..6c66b7b6 100644
--- a/lua/app/config/strings/cn/attr.lua
+++ b/lua/app/config/strings/cn/attr.lua
@@ -328,6 +328,71 @@ local attr = {
["id"]=66,
["desc"]="全体紫色快递员攻击+{0}%",
["name"]="attr_atkp_purple_all"
+ },
+ [67]={
+ ["id"]=67,
+ ["desc"]="全体攻击",
+ ["name"]="atk_all"
+ },
+ [68]={
+ ["id"]=68,
+ ["desc"]="全体生命",
+ ["name"]="attr_hp_all"
+ },
+ [69]={
+ ["id"]=69,
+ ["desc"]="全体减伤",
+ ["name"]="attr_dmgdec_all"
+ },
+ [70]={
+ ["id"]=70,
+ ["desc"]="全体暴击率",
+ ["name"]="attr_crit_all"
+ },
+ [71]={
+ ["id"]=71,
+ ["desc"]="全体暴击伤害",
+ ["name"]="attr_crit_time_all"
+ },
+ [72]={
+ ["id"]=72,
+ ["desc"]="全体普攻增伤",
+ ["name"]="attr_normal_hurtp_all"
+ },
+ [73]={
+ ["id"]=73,
+ ["desc"]="全体技能增伤",
+ ["name"]="attr_skill_hurtp_all"
+ },
+ [74]={
+ ["id"]=74,
+ ["desc"]="全体攻击",
+ ["name"]="attr_atkp_all"
+ },
+ [75]={
+ ["id"]=75,
+ ["desc"]="攻击",
+ ["name"]="attr_atk"
+ },
+ [76]={
+ ["id"]=76,
+ ["desc"]="生命",
+ ["name"]="attr_hp"
+ },
+ [77]={
+ ["id"]=77,
+ ["desc"]="普攻伤害",
+ ["name"]="attr_normal_hurt"
+ },
+ [78]={
+ ["id"]=78,
+ ["desc"]="技能伤害",
+ ["name"]="attr_skill_hurt"
+ },
+ [79]={
+ ["id"]=79,
+ ["desc"]="减伤",
+ ["name"]="dmgdec"
}
}
local keys = {
@@ -397,12 +462,25 @@ local keys = {
["attr_atkp_yellow_all"]=attr[63],
["attr_atkp_green_all"]=attr[64],
["attr_atkp_blue_all"]=attr[65],
- ["attr_atkp_purple_all"]=attr[66]
+ ["attr_atkp_purple_all"]=attr[66],
+ ["atk_all"]=attr[67],
+ ["attr_hp_all"]=attr[68],
+ ["attr_dmgdec_all"]=attr[69],
+ ["attr_crit_all"]=attr[70],
+ ["attr_crit_time_all"]=attr[71],
+ ["attr_normal_hurtp_all"]=attr[72],
+ ["attr_skill_hurtp_all"]=attr[73],
+ ["attr_atkp_all"]=attr[74],
+ ["attr_atk"]=attr[75],
+ ["attr_hp"]=attr[76],
+ ["attr_normal_hurt"]=attr[77],
+ ["attr_skill_hurt"]=attr[78],
+ ["dmgdec"]=attr[79]
}
}
local config = {
data=attr,
keys=keys,
-count=66
+count=79
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/cn/skill_rogue.lua b/lua/app/config/strings/cn/skill_rogue.lua
index 35dd8746..1a08e9a7 100644
--- a/lua/app/config/strings/cn/skill_rogue.lua
+++ b/lua/app/config/strings/cn/skill_rogue.lua
@@ -240,22 +240,22 @@ local skill_rogue = {
["rougedesc"]="过热小莫技能100%概率附加灼烧2回合"
},
[1400131]={
- ["desc"]="Combo:过热小莫技能对禁锢敌人伤害增加10%",
+ ["desc"]="过热小莫技能combo禁锢增伤10%",
["entry_1"]="增伤提升至20%",
["entry_2"]="增伤提升至30%",
- ["rougedesc"]="Combo:过热小莫技能对禁锢敌人伤害增加10%"
+ ["rougedesc"]="过热小莫技能combo禁锢增伤10%"
},
[1400132]={
- ["desc"]="Combo:过热小莫技能对禁锢敌人伤害增加10%",
+ ["desc"]="过热小莫技能combo禁锢增伤10%",
["entry_1"]="增伤提升至20%",
["entry_2"]="增伤提升至30%",
- ["rougedesc"]="Combo:过热小莫技能对禁锢敌人伤害增加20%"
+ ["rougedesc"]="过热小莫技能combo禁锢增伤20%"
},
[1400133]={
- ["desc"]="Combo:过热小莫技能对禁锢敌人伤害增加10%",
+ ["desc"]="过热小莫技能combo禁锢增伤10%",
["entry_1"]="增伤提升至20%",
["entry_2"]="增伤提升至30%",
- ["rougedesc"]="Combo:过热小莫技能对禁锢敌人伤害增加30%"
+ ["rougedesc"]="过热小莫技能combo禁锢增伤30%"
},
[1400141]={
["desc"]="过热小莫攻击提升5%",
@@ -276,58 +276,58 @@ local skill_rogue = {
["rougedesc"]="过热小莫攻击提升15%"
},
[1500111]={
- ["desc"]="火花姬周围变色元素+2",
+ ["desc"]="火花姬周围变色元素+2;",
["entry_1"]="变色元素+2",
["entry_2"]="变色元素+2",
- ["rougedesc"]="火花姬周围变色元素+2"
+ ["rougedesc"]="火花姬周围变色元素+2;"
},
[1500112]={
- ["desc"]="火花姬周围变色元素+2",
+ ["desc"]="火花姬周围变色元素+2;",
["entry_1"]="变色元素+2",
["entry_2"]="变色元素+2",
- ["rougedesc"]="火花姬周围变色元素+4"
+ ["rougedesc"]="火花姬周围变色元素+4;"
},
[1500113]={
- ["desc"]="火花姬周围变色元素+2",
+ ["desc"]="火花姬周围变色元素+2;",
["entry_1"]="变色元素+2",
["entry_2"]="变色元素+2",
- ["rougedesc"]="火花姬周围变色元素+6"
+ ["rougedesc"]="火花姬周围变色元素+6;"
},
[1500121]={
- ["desc"]="火花姬技能附加1回合自愈效果",
+ ["desc"]="火花姬技能附加1回合自愈效果;",
["entry_1"]="治愈回合提升至2",
["entry_2"]="治愈回合提升至3",
- ["rougedesc"]="火花姬技能附加1回合自愈效果"
+ ["rougedesc"]="火花姬技能附加1回合自愈效果;"
},
[1500122]={
- ["desc"]="火花姬技能附加1回合自愈效果",
+ ["desc"]="火花姬技能附加1回合自愈效果;",
["entry_1"]="治愈回合提升至2",
["entry_2"]="治愈回合提升至3",
- ["rougedesc"]="火花姬技能附加2回合自愈效果"
+ ["rougedesc"]="火花姬技能附加2回合自愈效果;"
},
[1500123]={
- ["desc"]="火花姬技能附加1回合自愈效果",
+ ["desc"]="火花姬技能附加1回合自愈效果;",
["entry_1"]="治愈回合提升至2",
["entry_2"]="治愈回合提升至3",
- ["rougedesc"]="火花姬技能附加3回合自愈效果"
+ ["rougedesc"]="火花姬技能附加3回合自愈效果;"
},
[1500131]={
- ["desc"]="Combo:火花姬普攻对流血敌人伤害增加10%",
+ ["desc"]="火花姬普攻combo流血增伤10%",
["entry_1"]="增伤提升至20%",
["entry_2"]="增伤提升至30%",
- ["rougedesc"]="Combo:火花姬普攻对流血敌人伤害增加10%"
+ ["rougedesc"]="火花姬普攻combo流血增伤10%"
},
[1500132]={
- ["desc"]="Combo:火花姬普攻对流血敌人伤害增加10%",
+ ["desc"]="火花姬普攻combo流血增伤10%",
["entry_1"]="增伤提升至20%",
["entry_2"]="增伤提升至30%",
- ["rougedesc"]="Combo:火花姬普攻对流血敌人伤害增加20%"
+ ["rougedesc"]="火花姬普攻combo流血增伤20%"
},
[1500133]={
- ["desc"]="Combo:火花姬普攻对流血敌人伤害增加10%",
+ ["desc"]="火花姬普攻combo流血增伤10%",
["entry_1"]="增伤提升至20%",
["entry_2"]="增伤提升至30%",
- ["rougedesc"]="Combo:火花姬普攻对流血敌人伤害增加30%"
+ ["rougedesc"]="火花姬普攻combo流血增伤30%"
},
[1500141]={
["desc"]="火花姬攻击提升5%",
@@ -420,22 +420,22 @@ local skill_rogue = {
["rougedesc"]="废铁老爹攻击提升15%"
},
[1600111]={
- ["desc"]="血祭修女技能可左右消除2格",
+ ["desc"]="血祭修女技能可左右消除2格;",
["entry_1"]="左右消除增加2格",
["entry_2"]="链接超6个元素可额外释放1次技能攻击效果",
- ["rougedesc"]="血祭修女技能可左右消除2格"
+ ["rougedesc"]="血祭修女技能可左右消除2格;"
},
[1600112]={
- ["desc"]="血祭修女技能可左右消除2格",
+ ["desc"]="血祭修女技能可左右消除2格;",
["entry_1"]="左右消除增加2格",
["entry_2"]="链接超6个元素可额外释放1次技能攻击效果",
- ["rougedesc"]="血祭修女技能可左右消除4格"
+ ["rougedesc"]="血祭修女技能可左右消除4格;"
},
[1600113]={
- ["desc"]="血祭修女技能可左右消除2格",
+ ["desc"]="血祭修女技能可左右消除2格;",
["entry_1"]="左右消除增加2格",
["entry_2"]="链接超6个元素可额外释放1次技能攻击效果",
- ["rougedesc"]="血祭修女技能可左右消除4格,技能链接超6个元素可额外释放1次大招"
+ ["rougedesc"]="血祭修女技能可左右消除4格;技能链接超6个元素可额外释放1次大招"
},
[1600121]={
["desc"]="血祭修女技能命中附加灼烧效果2回合",
@@ -456,22 +456,22 @@ local skill_rogue = {
["rougedesc"]="血祭修女技能命中附加灼烧效果2回合,队伍附加亢奋效果2回合,如果敌人有灼烧效果则技能伤害增加。"
},
[1600131]={
- ["desc"]="Combo:血祭修女普攻对灼烧敌人伤害增加10%",
+ ["desc"]="血祭修女普攻combo灼烧增伤10%",
["entry_1"]="增伤提升至20%",
["entry_2"]="增伤提升至30%",
- ["rougedesc"]="Combo:血祭修女普攻对灼烧敌人伤害增加10%"
+ ["rougedesc"]="血祭修女普攻combo灼烧增伤10%"
},
[1600132]={
- ["desc"]="Combo:血祭修女普攻对灼烧敌人伤害增加10%",
+ ["desc"]="血祭修女普攻combo灼烧增伤10%",
["entry_1"]="增伤提升至20%",
["entry_2"]="增伤提升至30%",
- ["rougedesc"]="Combo:血祭修女普攻对灼烧敌人伤害增加20%"
+ ["rougedesc"]="血祭修女普攻combo灼烧增伤20%"
},
[1600133]={
- ["desc"]="Combo:血祭修女普攻对灼烧敌人伤害增加10%",
+ ["desc"]="血祭修女普攻combo灼烧增伤10%",
["entry_1"]="增伤提升至20%",
["entry_2"]="增伤提升至30%",
- ["rougedesc"]="Combo:血祭修女普攻对灼烧敌人伤害增加30%"
+ ["rougedesc"]="血祭修女普攻combo灼烧增伤30%"
},
[1600141]={
["desc"]="血祭修女普攻有20%概率直接附加灼烧效果1回合",
@@ -599,24 +599,6 @@ local skill_rogue = {
["entry_2"]="暴击伤害提升回合数+1",
["rougedesc"]="平底锅战神技能链接超过4个元素,暴击提升30%,持续2回合"
},
- [2400131]={
- ["desc"]="平底锅战神攻击提升5%",
- ["entry_1"]="攻击提升至10%",
- ["entry_2"]="攻击提升至15%",
- ["rougedesc"]="平底锅战神攻击提升5%"
- },
- [2400132]={
- ["desc"]="平底锅战神攻击提升5%",
- ["entry_1"]="攻击提升至10%",
- ["entry_2"]="攻击提升至15%",
- ["rougedesc"]="平底锅战神攻击提升10%"
- },
- [2400133]={
- ["desc"]="平底锅战神攻击提升5%",
- ["entry_1"]="攻击提升至10%",
- ["entry_2"]="攻击提升至15%",
- ["rougedesc"]="平底锅战神攻击提升15%"
- },
[2400141]={
["desc"]="平底锅战神技能释放时目标生命低于50%则本回合暴击伤害提高50%",
["entry_1"]="暴击伤害提高提升至80%",
@@ -671,24 +653,6 @@ local skill_rogue = {
["entry_2"]="禁锢回合数+1",
["rougedesc"]="科技狼人技能命中有70%几率附加禁锢2回合"
},
- [2500131]={
- ["desc"]="Combo:科技狼人技能对冻结敌人伤害增加30%",
- ["entry_1"]="30%概率附加眩晕2回合",
- ["entry_2"]="60%概率附加眩晕2回合",
- ["rougedesc"]="Combo:科技狼人技能对冻结敌人伤害增加30%"
- },
- [2500132]={
- ["desc"]="Combo:科技狼人技能对冻结敌人伤害增加30%",
- ["entry_1"]="30%概率附加眩晕2回合",
- ["entry_2"]="60%概率附加眩晕2回合",
- ["rougedesc"]="Combo:科技狼人技能对冻结敌人伤害增加30%。且有30%几率附加眩晕2回合"
- },
- [2500133]={
- ["desc"]="Combo:科技狼人技能对冻结敌人伤害增加30%",
- ["entry_1"]="30%概率附加眩晕2回合",
- ["entry_2"]="60%概率附加眩晕2回合",
- ["rougedesc"]="Combo:科技狼人技能对冻结敌人伤害增加30%。且有60%几率附加眩晕2回合"
- },
[2500141]={
["desc"]="科技狼人攻击提升5%",
["entry_1"]="攻击提升至10%",
@@ -867,22 +831,22 @@ local skill_rogue = {
["desc"]="荒野镖客技能可上下消除2格",
["entry_1"]="上下消除增加2格",
["entry_2"]="技能链接时伤害增加15%",
- ["rougedesc"]="荒野镖客技能可上下消除2格,链接增伤15%"
+ ["rougedesc"]="荒野镖客技能可上下消除2格;链接增伤15%"
},
[3300121]={
- ["desc"]="荒野镖客技能攻击后可恢复团队一定量生命",
+ ["desc"]="荒野镖客技能攻击后可恢复团队一定量生命。",
["entry_1"]="30%概率附加眩晕1回合",
["entry_2"]="50%概率附眩晕1回合",
- ["rougedesc"]="荒野镖客技能攻击后可恢复团队一定量生命"
+ ["rougedesc"]="荒野镖客技能攻击后可恢复团队一定量生命。"
},
[3300122]={
- ["desc"]="荒野镖客技能攻击后可恢复团队一定量生命",
+ ["desc"]="荒野镖客技能攻击后可恢复团队一定量生命。",
["entry_1"]="30%概率附加眩晕1回合",
["entry_2"]="50%概率附眩晕1回合",
- ["rougedesc"]="荒野镖客技能攻击后可恢复团队一定量生命,30%几率附加眩晕1回合"
+ ["rougedesc"]="荒野镖客技能攻击后可恢复团队一定量生命。30%几率附加眩晕1回合"
},
[3300123]={
- ["desc"]="荒野镖客技能攻击后可恢复团队一定量生命",
+ ["desc"]="荒野镖客技能攻击后可恢复团队一定量生命。",
["entry_1"]="30%概率附加眩晕1回合",
["entry_2"]="50%概率附眩晕1回合",
["rougedesc"]="荒野镖客技能攻击后可恢复团队一定量生命。50%几率附加眩晕1回合"
@@ -951,13 +915,13 @@ local skill_rogue = {
["desc"]="光合特工技能回血量提升50%",
["entry_1"]="释放后附加技能伤害提升1回合",
["entry_2"]="释放后附加技能伤害提升2回合",
- ["rougedesc"]="光合特工技能回血量提升50%,技能附加技能伤害提升15%1回合"
+ ["rougedesc"]="光合特工技能回血量提升50%;技能附加技能伤害提升15%1回合"
},
[3400123]={
["desc"]="光合特工技能回血量提升50%",
["entry_1"]="释放后附加技能伤害提升1回合",
["entry_2"]="释放后附加技能伤害提升2回合",
- ["rougedesc"]="光合特工技能回血量提升50%,技能附加技能伤害提升15%2回合"
+ ["rougedesc"]="光合特工技能回血量提升50%;技能附加技能伤害提升15%2回合"
},
[3400131]={
["desc"]="光合特工技能链接超过5个元素,回血量提升10%",
@@ -1083,7 +1047,7 @@ local skill_rogue = {
["desc"]="快递仙人技能可上下消除2格",
["entry_1"]="上下消除增加2格",
["entry_2"]="技能链接时伤害增加10%",
- ["rougedesc"]="快递仙人技能可上下消除4格,链接增伤10%"
+ ["rougedesc"]="快递仙人技能可上下消除4格;链接增伤10%"
},
[3500221]={
["desc"]="快递仙人技能命中附加易伤1回合",
@@ -1140,22 +1104,22 @@ local skill_rogue = {
["rougedesc"]="快递仙人普攻有20%几率附加流血3回合,流血伤害提升"
},
[4300111]={
- ["desc"]="气泡柴犬技能可随机消除2格",
+ ["desc"]="气泡柴犬技能可随机消除2格.",
["entry_1"]="消除数+2",
["entry_2"]="消除数+2",
- ["rougedesc"]="气泡柴犬技能可随机消除2格"
+ ["rougedesc"]="气泡柴犬技能可随机消除2格."
},
[4300112]={
- ["desc"]="气泡柴犬技能可随机消除2格",
+ ["desc"]="气泡柴犬技能可随机消除2格.",
["entry_1"]="消除数+2",
["entry_2"]="消除数+2",
- ["rougedesc"]="气泡柴犬技能可随机消除4格"
+ ["rougedesc"]="气泡柴犬技能可随机消除4格."
},
[4300113]={
- ["desc"]="气泡柴犬技能可随机消除2格",
+ ["desc"]="气泡柴犬技能可随机消除2格.",
["entry_1"]="消除数+2",
["entry_2"]="消除数+2",
- ["rougedesc"]="气泡柴犬技能可随机消除6格"
+ ["rougedesc"]="气泡柴犬技能可随机消除6格."
},
[4300121]={
["desc"]="气泡柴犬技能命中50%几率附加冰霜1回合",
@@ -1717,6 +1681,6 @@ local skill_rogue = {
}
}
local config = {
-data=skill_rogue,count=308
+data=skill_rogue,count=302
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/de/attr.lua b/lua/app/config/strings/de/attr.lua
index 565d2cd9..72f509e9 100644
--- a/lua/app/config/strings/de/attr.lua
+++ b/lua/app/config/strings/de/attr.lua
@@ -262,6 +262,58 @@ local attr = {
[66]={
["id"]=66,
["name"]="attr_atkp_purple_all"
+ },
+ [67]={
+ ["id"]=67,
+ ["name"]="atk_all"
+ },
+ [68]={
+ ["id"]=68,
+ ["name"]="attr_hp_all"
+ },
+ [69]={
+ ["id"]=69,
+ ["name"]="attr_dmgdec_all"
+ },
+ [70]={
+ ["id"]=70,
+ ["name"]="attr_crit_all"
+ },
+ [71]={
+ ["id"]=71,
+ ["name"]="attr_crit_time_all"
+ },
+ [72]={
+ ["id"]=72,
+ ["name"]="attr_normal_hurtp_all"
+ },
+ [73]={
+ ["id"]=73,
+ ["name"]="attr_skill_hurtp_all"
+ },
+ [74]={
+ ["id"]=74,
+ ["name"]="attr_atkp_all"
+ },
+ [75]={
+ ["id"]=75,
+ ["name"]="attr_atk"
+ },
+ [76]={
+ ["id"]=76,
+ ["name"]="attr_hp"
+ },
+ [77]={
+ ["id"]=77,
+ ["name"]="attr_normal_hurt"
+ },
+ [78]={
+ ["id"]=78,
+ ["name"]="attr_skill_hurt"
+ },
+ [79]={
+ ["id"]=79,
+ ["name"]="dmgdec"
}
}
local keys = {
@@ -331,12 +383,25 @@ local keys = {
["attr_atkp_yellow_all"]=attr[63],
["attr_atkp_green_all"]=attr[64],
["attr_atkp_blue_all"]=attr[65],
- ["attr_atkp_purple_all"]=attr[66]
+ ["attr_atkp_purple_all"]=attr[66],
+ ["atk_all"]=attr[67],
+ ["attr_hp_all"]=attr[68],
+ ["attr_dmgdec_all"]=attr[69],
+ ["attr_crit_all"]=attr[70],
+ ["attr_crit_time_all"]=attr[71],
+ ["attr_normal_hurtp_all"]=attr[72],
+ ["attr_skill_hurtp_all"]=attr[73],
+ ["attr_atkp_all"]=attr[74],
+ ["attr_atk"]=attr[75],
+ ["attr_hp"]=attr[76],
+ ["attr_normal_hurt"]=attr[77],
+ ["attr_skill_hurt"]=attr[78],
+ ["dmgdec"]=attr[79]
}
}
local config = {
data=attr,
keys=keys,
-count=66
+count=79
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/de/skill_rogue.lua b/lua/app/config/strings/de/skill_rogue.lua
index b3076c28..0f063c94 100644
--- a/lua/app/config/strings/de/skill_rogue.lua
+++ b/lua/app/config/strings/de/skill_rogue.lua
@@ -364,15 +364,6 @@ local skill_rogue = {
},
[2400123]={
- },
- [2400131]={
-
- },
- [2400132]={
-
- },
- [2400133]={
-
},
[2400141]={
@@ -400,15 +391,6 @@ local skill_rogue = {
},
[2500123]={
- },
- [2500131]={
-
- },
- [2500132]={
-
- },
- [2500133]={
-
},
[2500141]={
@@ -925,6 +907,6 @@ local skill_rogue = {
}
}
local config = {
-data=skill_rogue,count=308
+data=skill_rogue,count=302
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/en/attr.lua b/lua/app/config/strings/en/attr.lua
index c7a04a70..aed74806 100644
--- a/lua/app/config/strings/en/attr.lua
+++ b/lua/app/config/strings/en/attr.lua
@@ -323,6 +323,58 @@ local attr = {
[66]={
["id"]=66,
["name"]="attr_atkp_purple_all"
+ },
+ [67]={
+ ["id"]=67,
+ ["name"]="atk_all"
+ },
+ [68]={
+ ["id"]=68,
+ ["name"]="attr_hp_all"
+ },
+ [69]={
+ ["id"]=69,
+ ["name"]="attr_dmgdec_all"
+ },
+ [70]={
+ ["id"]=70,
+ ["name"]="attr_crit_all"
+ },
+ [71]={
+ ["id"]=71,
+ ["name"]="attr_crit_time_all"
+ },
+ [72]={
+ ["id"]=72,
+ ["name"]="attr_normal_hurtp_all"
+ },
+ [73]={
+ ["id"]=73,
+ ["name"]="attr_skill_hurtp_all"
+ },
+ [74]={
+ ["id"]=74,
+ ["name"]="attr_atkp_all"
+ },
+ [75]={
+ ["id"]=75,
+ ["name"]="attr_atk"
+ },
+ [76]={
+ ["id"]=76,
+ ["name"]="attr_hp"
+ },
+ [77]={
+ ["id"]=77,
+ ["name"]="attr_normal_hurt"
+ },
+ [78]={
+ ["id"]=78,
+ ["name"]="attr_skill_hurt"
+ },
+ [79]={
+ ["id"]=79,
+ ["name"]="dmgdec"
}
}
local keys = {
@@ -392,12 +444,25 @@ local keys = {
["attr_atkp_yellow_all"]=attr[63],
["attr_atkp_green_all"]=attr[64],
["attr_atkp_blue_all"]=attr[65],
- ["attr_atkp_purple_all"]=attr[66]
+ ["attr_atkp_purple_all"]=attr[66],
+ ["atk_all"]=attr[67],
+ ["attr_hp_all"]=attr[68],
+ ["attr_dmgdec_all"]=attr[69],
+ ["attr_crit_all"]=attr[70],
+ ["attr_crit_time_all"]=attr[71],
+ ["attr_normal_hurtp_all"]=attr[72],
+ ["attr_skill_hurtp_all"]=attr[73],
+ ["attr_atkp_all"]=attr[74],
+ ["attr_atk"]=attr[75],
+ ["attr_hp"]=attr[76],
+ ["attr_normal_hurt"]=attr[77],
+ ["attr_skill_hurt"]=attr[78],
+ ["dmgdec"]=attr[79]
}
}
local config = {
data=attr,
keys=keys,
-count=66
+count=79
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/en/skill_rogue.lua b/lua/app/config/strings/en/skill_rogue.lua
index 1ac0dc13..b7770b55 100644
--- a/lua/app/config/strings/en/skill_rogue.lua
+++ b/lua/app/config/strings/en/skill_rogue.lua
@@ -364,15 +364,6 @@ local skill_rogue = {
},
[2400123]={
- },
- [2400131]={
-
- },
- [2400132]={
-
- },
- [2400133]={
-
},
[2400141]={
@@ -400,15 +391,6 @@ local skill_rogue = {
},
[2500123]={
- },
- [2500131]={
-
- },
- [2500132]={
-
- },
- [2500133]={
-
},
[2500141]={
@@ -925,6 +907,6 @@ local skill_rogue = {
}
}
local config = {
-data=skill_rogue,count=308
+data=skill_rogue,count=302
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/es/attr.lua b/lua/app/config/strings/es/attr.lua
index 3028255e..8a01e354 100644
--- a/lua/app/config/strings/es/attr.lua
+++ b/lua/app/config/strings/es/attr.lua
@@ -323,6 +323,58 @@ local attr = {
[66]={
["id"]=66,
["name"]="attr_atkp_purple_all"
+ },
+ [67]={
+ ["id"]=67,
+ ["name"]="atk_all"
+ },
+ [68]={
+ ["id"]=68,
+ ["name"]="attr_hp_all"
+ },
+ [69]={
+ ["id"]=69,
+ ["name"]="attr_dmgdec_all"
+ },
+ [70]={
+ ["id"]=70,
+ ["name"]="attr_crit_all"
+ },
+ [71]={
+ ["id"]=71,
+ ["name"]="attr_crit_time_all"
+ },
+ [72]={
+ ["id"]=72,
+ ["name"]="attr_normal_hurtp_all"
+ },
+ [73]={
+ ["id"]=73,
+ ["name"]="attr_skill_hurtp_all"
+ },
+ [74]={
+ ["id"]=74,
+ ["name"]="attr_atkp_all"
+ },
+ [75]={
+ ["id"]=75,
+ ["name"]="attr_atk"
+ },
+ [76]={
+ ["id"]=76,
+ ["name"]="attr_hp"
+ },
+ [77]={
+ ["id"]=77,
+ ["name"]="attr_normal_hurt"
+ },
+ [78]={
+ ["id"]=78,
+ ["name"]="attr_skill_hurt"
+ },
+ [79]={
+ ["id"]=79,
+ ["name"]="dmgdec"
}
}
local keys = {
@@ -392,12 +444,25 @@ local keys = {
["attr_atkp_yellow_all"]=attr[63],
["attr_atkp_green_all"]=attr[64],
["attr_atkp_blue_all"]=attr[65],
- ["attr_atkp_purple_all"]=attr[66]
+ ["attr_atkp_purple_all"]=attr[66],
+ ["atk_all"]=attr[67],
+ ["attr_hp_all"]=attr[68],
+ ["attr_dmgdec_all"]=attr[69],
+ ["attr_crit_all"]=attr[70],
+ ["attr_crit_time_all"]=attr[71],
+ ["attr_normal_hurtp_all"]=attr[72],
+ ["attr_skill_hurtp_all"]=attr[73],
+ ["attr_atkp_all"]=attr[74],
+ ["attr_atk"]=attr[75],
+ ["attr_hp"]=attr[76],
+ ["attr_normal_hurt"]=attr[77],
+ ["attr_skill_hurt"]=attr[78],
+ ["dmgdec"]=attr[79]
}
}
local config = {
data=attr,
keys=keys,
-count=66
+count=79
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/es/skill_rogue.lua b/lua/app/config/strings/es/skill_rogue.lua
index 3e049d57..2f6538da 100644
--- a/lua/app/config/strings/es/skill_rogue.lua
+++ b/lua/app/config/strings/es/skill_rogue.lua
@@ -364,15 +364,6 @@ local skill_rogue = {
},
[2400123]={
- },
- [2400131]={
-
- },
- [2400132]={
-
- },
- [2400133]={
-
},
[2400141]={
@@ -400,15 +391,6 @@ local skill_rogue = {
},
[2500123]={
- },
- [2500131]={
-
- },
- [2500132]={
-
- },
- [2500133]={
-
},
[2500141]={
@@ -925,6 +907,6 @@ local skill_rogue = {
}
}
local config = {
-data=skill_rogue,count=308
+data=skill_rogue,count=302
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/fr/attr.lua b/lua/app/config/strings/fr/attr.lua
index 565d2cd9..72f509e9 100644
--- a/lua/app/config/strings/fr/attr.lua
+++ b/lua/app/config/strings/fr/attr.lua
@@ -262,6 +262,58 @@ local attr = {
[66]={
["id"]=66,
["name"]="attr_atkp_purple_all"
+ },
+ [67]={
+ ["id"]=67,
+ ["name"]="atk_all"
+ },
+ [68]={
+ ["id"]=68,
+ ["name"]="attr_hp_all"
+ },
+ [69]={
+ ["id"]=69,
+ ["name"]="attr_dmgdec_all"
+ },
+ [70]={
+ ["id"]=70,
+ ["name"]="attr_crit_all"
+ },
+ [71]={
+ ["id"]=71,
+ ["name"]="attr_crit_time_all"
+ },
+ [72]={
+ ["id"]=72,
+ ["name"]="attr_normal_hurtp_all"
+ },
+ [73]={
+ ["id"]=73,
+ ["name"]="attr_skill_hurtp_all"
+ },
+ [74]={
+ ["id"]=74,
+ ["name"]="attr_atkp_all"
+ },
+ [75]={
+ ["id"]=75,
+ ["name"]="attr_atk"
+ },
+ [76]={
+ ["id"]=76,
+ ["name"]="attr_hp"
+ },
+ [77]={
+ ["id"]=77,
+ ["name"]="attr_normal_hurt"
+ },
+ [78]={
+ ["id"]=78,
+ ["name"]="attr_skill_hurt"
+ },
+ [79]={
+ ["id"]=79,
+ ["name"]="dmgdec"
}
}
local keys = {
@@ -331,12 +383,25 @@ local keys = {
["attr_atkp_yellow_all"]=attr[63],
["attr_atkp_green_all"]=attr[64],
["attr_atkp_blue_all"]=attr[65],
- ["attr_atkp_purple_all"]=attr[66]
+ ["attr_atkp_purple_all"]=attr[66],
+ ["atk_all"]=attr[67],
+ ["attr_hp_all"]=attr[68],
+ ["attr_dmgdec_all"]=attr[69],
+ ["attr_crit_all"]=attr[70],
+ ["attr_crit_time_all"]=attr[71],
+ ["attr_normal_hurtp_all"]=attr[72],
+ ["attr_skill_hurtp_all"]=attr[73],
+ ["attr_atkp_all"]=attr[74],
+ ["attr_atk"]=attr[75],
+ ["attr_hp"]=attr[76],
+ ["attr_normal_hurt"]=attr[77],
+ ["attr_skill_hurt"]=attr[78],
+ ["dmgdec"]=attr[79]
}
}
local config = {
data=attr,
keys=keys,
-count=66
+count=79
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/fr/skill_rogue.lua b/lua/app/config/strings/fr/skill_rogue.lua
index b3076c28..0f063c94 100644
--- a/lua/app/config/strings/fr/skill_rogue.lua
+++ b/lua/app/config/strings/fr/skill_rogue.lua
@@ -364,15 +364,6 @@ local skill_rogue = {
},
[2400123]={
- },
- [2400131]={
-
- },
- [2400132]={
-
- },
- [2400133]={
-
},
[2400141]={
@@ -400,15 +391,6 @@ local skill_rogue = {
},
[2500123]={
- },
- [2500131]={
-
- },
- [2500132]={
-
- },
- [2500133]={
-
},
[2500141]={
@@ -925,6 +907,6 @@ local skill_rogue = {
}
}
local config = {
-data=skill_rogue,count=308
+data=skill_rogue,count=302
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/id/attr.lua b/lua/app/config/strings/id/attr.lua
index 0ed585ab..4a6113eb 100644
--- a/lua/app/config/strings/id/attr.lua
+++ b/lua/app/config/strings/id/attr.lua
@@ -323,6 +323,58 @@ local attr = {
[66]={
["id"]=66,
["name"]="attr_atkp_purple_all"
+ },
+ [67]={
+ ["id"]=67,
+ ["name"]="atk_all"
+ },
+ [68]={
+ ["id"]=68,
+ ["name"]="attr_hp_all"
+ },
+ [69]={
+ ["id"]=69,
+ ["name"]="attr_dmgdec_all"
+ },
+ [70]={
+ ["id"]=70,
+ ["name"]="attr_crit_all"
+ },
+ [71]={
+ ["id"]=71,
+ ["name"]="attr_crit_time_all"
+ },
+ [72]={
+ ["id"]=72,
+ ["name"]="attr_normal_hurtp_all"
+ },
+ [73]={
+ ["id"]=73,
+ ["name"]="attr_skill_hurtp_all"
+ },
+ [74]={
+ ["id"]=74,
+ ["name"]="attr_atkp_all"
+ },
+ [75]={
+ ["id"]=75,
+ ["name"]="attr_atk"
+ },
+ [76]={
+ ["id"]=76,
+ ["name"]="attr_hp"
+ },
+ [77]={
+ ["id"]=77,
+ ["name"]="attr_normal_hurt"
+ },
+ [78]={
+ ["id"]=78,
+ ["name"]="attr_skill_hurt"
+ },
+ [79]={
+ ["id"]=79,
+ ["name"]="dmgdec"
}
}
local keys = {
@@ -392,12 +444,25 @@ local keys = {
["attr_atkp_yellow_all"]=attr[63],
["attr_atkp_green_all"]=attr[64],
["attr_atkp_blue_all"]=attr[65],
- ["attr_atkp_purple_all"]=attr[66]
+ ["attr_atkp_purple_all"]=attr[66],
+ ["atk_all"]=attr[67],
+ ["attr_hp_all"]=attr[68],
+ ["attr_dmgdec_all"]=attr[69],
+ ["attr_crit_all"]=attr[70],
+ ["attr_crit_time_all"]=attr[71],
+ ["attr_normal_hurtp_all"]=attr[72],
+ ["attr_skill_hurtp_all"]=attr[73],
+ ["attr_atkp_all"]=attr[74],
+ ["attr_atk"]=attr[75],
+ ["attr_hp"]=attr[76],
+ ["attr_normal_hurt"]=attr[77],
+ ["attr_skill_hurt"]=attr[78],
+ ["dmgdec"]=attr[79]
}
}
local config = {
data=attr,
keys=keys,
-count=66
+count=79
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/id/skill_rogue.lua b/lua/app/config/strings/id/skill_rogue.lua
index 966e1f19..b81f99b2 100644
--- a/lua/app/config/strings/id/skill_rogue.lua
+++ b/lua/app/config/strings/id/skill_rogue.lua
@@ -364,15 +364,6 @@ local skill_rogue = {
},
[2400123]={
- },
- [2400131]={
-
- },
- [2400132]={
-
- },
- [2400133]={
-
},
[2400141]={
@@ -400,15 +391,6 @@ local skill_rogue = {
},
[2500123]={
- },
- [2500131]={
-
- },
- [2500132]={
-
- },
- [2500133]={
-
},
[2500141]={
@@ -925,6 +907,6 @@ local skill_rogue = {
}
}
local config = {
-data=skill_rogue,count=308
+data=skill_rogue,count=302
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/ja/attr.lua b/lua/app/config/strings/ja/attr.lua
index a52591f5..c5558f1f 100644
--- a/lua/app/config/strings/ja/attr.lua
+++ b/lua/app/config/strings/ja/attr.lua
@@ -323,6 +323,58 @@ local attr = {
[66]={
["id"]=66,
["name"]="attr_atkp_purple_all"
+ },
+ [67]={
+ ["id"]=67,
+ ["name"]="atk_all"
+ },
+ [68]={
+ ["id"]=68,
+ ["name"]="attr_hp_all"
+ },
+ [69]={
+ ["id"]=69,
+ ["name"]="attr_dmgdec_all"
+ },
+ [70]={
+ ["id"]=70,
+ ["name"]="attr_crit_all"
+ },
+ [71]={
+ ["id"]=71,
+ ["name"]="attr_crit_time_all"
+ },
+ [72]={
+ ["id"]=72,
+ ["name"]="attr_normal_hurtp_all"
+ },
+ [73]={
+ ["id"]=73,
+ ["name"]="attr_skill_hurtp_all"
+ },
+ [74]={
+ ["id"]=74,
+ ["name"]="attr_atkp_all"
+ },
+ [75]={
+ ["id"]=75,
+ ["name"]="attr_atk"
+ },
+ [76]={
+ ["id"]=76,
+ ["name"]="attr_hp"
+ },
+ [77]={
+ ["id"]=77,
+ ["name"]="attr_normal_hurt"
+ },
+ [78]={
+ ["id"]=78,
+ ["name"]="attr_skill_hurt"
+ },
+ [79]={
+ ["id"]=79,
+ ["name"]="dmgdec"
}
}
local keys = {
@@ -392,12 +444,25 @@ local keys = {
["attr_atkp_yellow_all"]=attr[63],
["attr_atkp_green_all"]=attr[64],
["attr_atkp_blue_all"]=attr[65],
- ["attr_atkp_purple_all"]=attr[66]
+ ["attr_atkp_purple_all"]=attr[66],
+ ["atk_all"]=attr[67],
+ ["attr_hp_all"]=attr[68],
+ ["attr_dmgdec_all"]=attr[69],
+ ["attr_crit_all"]=attr[70],
+ ["attr_crit_time_all"]=attr[71],
+ ["attr_normal_hurtp_all"]=attr[72],
+ ["attr_skill_hurtp_all"]=attr[73],
+ ["attr_atkp_all"]=attr[74],
+ ["attr_atk"]=attr[75],
+ ["attr_hp"]=attr[76],
+ ["attr_normal_hurt"]=attr[77],
+ ["attr_skill_hurt"]=attr[78],
+ ["dmgdec"]=attr[79]
}
}
local config = {
data=attr,
keys=keys,
-count=66
+count=79
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/ja/skill_rogue.lua b/lua/app/config/strings/ja/skill_rogue.lua
index 21e88860..54716405 100644
--- a/lua/app/config/strings/ja/skill_rogue.lua
+++ b/lua/app/config/strings/ja/skill_rogue.lua
@@ -364,15 +364,6 @@ local skill_rogue = {
},
[2400123]={
- },
- [2400131]={
-
- },
- [2400132]={
-
- },
- [2400133]={
-
},
[2400141]={
@@ -400,15 +391,6 @@ local skill_rogue = {
},
[2500123]={
- },
- [2500131]={
-
- },
- [2500132]={
-
- },
- [2500133]={
-
},
[2500141]={
@@ -925,6 +907,6 @@ local skill_rogue = {
}
}
local config = {
-data=skill_rogue,count=308
+data=skill_rogue,count=302
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/ko/attr.lua b/lua/app/config/strings/ko/attr.lua
index 81e7b9b8..b4ef19b9 100644
--- a/lua/app/config/strings/ko/attr.lua
+++ b/lua/app/config/strings/ko/attr.lua
@@ -323,6 +323,58 @@ local attr = {
[66]={
["id"]=66,
["name"]="attr_atkp_purple_all"
+ },
+ [67]={
+ ["id"]=67,
+ ["name"]="atk_all"
+ },
+ [68]={
+ ["id"]=68,
+ ["name"]="attr_hp_all"
+ },
+ [69]={
+ ["id"]=69,
+ ["name"]="attr_dmgdec_all"
+ },
+ [70]={
+ ["id"]=70,
+ ["name"]="attr_crit_all"
+ },
+ [71]={
+ ["id"]=71,
+ ["name"]="attr_crit_time_all"
+ },
+ [72]={
+ ["id"]=72,
+ ["name"]="attr_normal_hurtp_all"
+ },
+ [73]={
+ ["id"]=73,
+ ["name"]="attr_skill_hurtp_all"
+ },
+ [74]={
+ ["id"]=74,
+ ["name"]="attr_atkp_all"
+ },
+ [75]={
+ ["id"]=75,
+ ["name"]="attr_atk"
+ },
+ [76]={
+ ["id"]=76,
+ ["name"]="attr_hp"
+ },
+ [77]={
+ ["id"]=77,
+ ["name"]="attr_normal_hurt"
+ },
+ [78]={
+ ["id"]=78,
+ ["name"]="attr_skill_hurt"
+ },
+ [79]={
+ ["id"]=79,
+ ["name"]="dmgdec"
}
}
local keys = {
@@ -392,12 +444,25 @@ local keys = {
["attr_atkp_yellow_all"]=attr[63],
["attr_atkp_green_all"]=attr[64],
["attr_atkp_blue_all"]=attr[65],
- ["attr_atkp_purple_all"]=attr[66]
+ ["attr_atkp_purple_all"]=attr[66],
+ ["atk_all"]=attr[67],
+ ["attr_hp_all"]=attr[68],
+ ["attr_dmgdec_all"]=attr[69],
+ ["attr_crit_all"]=attr[70],
+ ["attr_crit_time_all"]=attr[71],
+ ["attr_normal_hurtp_all"]=attr[72],
+ ["attr_skill_hurtp_all"]=attr[73],
+ ["attr_atkp_all"]=attr[74],
+ ["attr_atk"]=attr[75],
+ ["attr_hp"]=attr[76],
+ ["attr_normal_hurt"]=attr[77],
+ ["attr_skill_hurt"]=attr[78],
+ ["dmgdec"]=attr[79]
}
}
local config = {
data=attr,
keys=keys,
-count=66
+count=79
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/ko/skill_rogue.lua b/lua/app/config/strings/ko/skill_rogue.lua
index 81b62f44..9bc3041c 100644
--- a/lua/app/config/strings/ko/skill_rogue.lua
+++ b/lua/app/config/strings/ko/skill_rogue.lua
@@ -364,15 +364,6 @@ local skill_rogue = {
},
[2400123]={
- },
- [2400131]={
-
- },
- [2400132]={
-
- },
- [2400133]={
-
},
[2400141]={
@@ -400,15 +391,6 @@ local skill_rogue = {
},
[2500123]={
- },
- [2500131]={
-
- },
- [2500132]={
-
- },
- [2500133]={
-
},
[2500141]={
@@ -925,6 +907,6 @@ local skill_rogue = {
}
}
local config = {
-data=skill_rogue,count=308
+data=skill_rogue,count=302
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/pt/attr.lua b/lua/app/config/strings/pt/attr.lua
index cc399561..68288db4 100644
--- a/lua/app/config/strings/pt/attr.lua
+++ b/lua/app/config/strings/pt/attr.lua
@@ -323,6 +323,58 @@ local attr = {
[66]={
["id"]=66,
["name"]="attr_atkp_purple_all"
+ },
+ [67]={
+ ["id"]=67,
+ ["name"]="atk_all"
+ },
+ [68]={
+ ["id"]=68,
+ ["name"]="attr_hp_all"
+ },
+ [69]={
+ ["id"]=69,
+ ["name"]="attr_dmgdec_all"
+ },
+ [70]={
+ ["id"]=70,
+ ["name"]="attr_crit_all"
+ },
+ [71]={
+ ["id"]=71,
+ ["name"]="attr_crit_time_all"
+ },
+ [72]={
+ ["id"]=72,
+ ["name"]="attr_normal_hurtp_all"
+ },
+ [73]={
+ ["id"]=73,
+ ["name"]="attr_skill_hurtp_all"
+ },
+ [74]={
+ ["id"]=74,
+ ["name"]="attr_atkp_all"
+ },
+ [75]={
+ ["id"]=75,
+ ["name"]="attr_atk"
+ },
+ [76]={
+ ["id"]=76,
+ ["name"]="attr_hp"
+ },
+ [77]={
+ ["id"]=77,
+ ["name"]="attr_normal_hurt"
+ },
+ [78]={
+ ["id"]=78,
+ ["name"]="attr_skill_hurt"
+ },
+ [79]={
+ ["id"]=79,
+ ["name"]="dmgdec"
}
}
local keys = {
@@ -392,12 +444,25 @@ local keys = {
["attr_atkp_yellow_all"]=attr[63],
["attr_atkp_green_all"]=attr[64],
["attr_atkp_blue_all"]=attr[65],
- ["attr_atkp_purple_all"]=attr[66]
+ ["attr_atkp_purple_all"]=attr[66],
+ ["atk_all"]=attr[67],
+ ["attr_hp_all"]=attr[68],
+ ["attr_dmgdec_all"]=attr[69],
+ ["attr_crit_all"]=attr[70],
+ ["attr_crit_time_all"]=attr[71],
+ ["attr_normal_hurtp_all"]=attr[72],
+ ["attr_skill_hurtp_all"]=attr[73],
+ ["attr_atkp_all"]=attr[74],
+ ["attr_atk"]=attr[75],
+ ["attr_hp"]=attr[76],
+ ["attr_normal_hurt"]=attr[77],
+ ["attr_skill_hurt"]=attr[78],
+ ["dmgdec"]=attr[79]
}
}
local config = {
data=attr,
keys=keys,
-count=66
+count=79
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/pt/skill_rogue.lua b/lua/app/config/strings/pt/skill_rogue.lua
index 24228fa5..7e2294fb 100644
--- a/lua/app/config/strings/pt/skill_rogue.lua
+++ b/lua/app/config/strings/pt/skill_rogue.lua
@@ -364,15 +364,6 @@ local skill_rogue = {
},
[2400123]={
- },
- [2400131]={
-
- },
- [2400132]={
-
- },
- [2400133]={
-
},
[2400141]={
@@ -400,15 +391,6 @@ local skill_rogue = {
},
[2500123]={
- },
- [2500131]={
-
- },
- [2500132]={
-
- },
- [2500133]={
-
},
[2500141]={
@@ -925,6 +907,6 @@ local skill_rogue = {
}
}
local config = {
-data=skill_rogue,count=308
+data=skill_rogue,count=302
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/ru/attr.lua b/lua/app/config/strings/ru/attr.lua
index 565d2cd9..72f509e9 100644
--- a/lua/app/config/strings/ru/attr.lua
+++ b/lua/app/config/strings/ru/attr.lua
@@ -262,6 +262,58 @@ local attr = {
[66]={
["id"]=66,
["name"]="attr_atkp_purple_all"
+ },
+ [67]={
+ ["id"]=67,
+ ["name"]="atk_all"
+ },
+ [68]={
+ ["id"]=68,
+ ["name"]="attr_hp_all"
+ },
+ [69]={
+ ["id"]=69,
+ ["name"]="attr_dmgdec_all"
+ },
+ [70]={
+ ["id"]=70,
+ ["name"]="attr_crit_all"
+ },
+ [71]={
+ ["id"]=71,
+ ["name"]="attr_crit_time_all"
+ },
+ [72]={
+ ["id"]=72,
+ ["name"]="attr_normal_hurtp_all"
+ },
+ [73]={
+ ["id"]=73,
+ ["name"]="attr_skill_hurtp_all"
+ },
+ [74]={
+ ["id"]=74,
+ ["name"]="attr_atkp_all"
+ },
+ [75]={
+ ["id"]=75,
+ ["name"]="attr_atk"
+ },
+ [76]={
+ ["id"]=76,
+ ["name"]="attr_hp"
+ },
+ [77]={
+ ["id"]=77,
+ ["name"]="attr_normal_hurt"
+ },
+ [78]={
+ ["id"]=78,
+ ["name"]="attr_skill_hurt"
+ },
+ [79]={
+ ["id"]=79,
+ ["name"]="dmgdec"
}
}
local keys = {
@@ -331,12 +383,25 @@ local keys = {
["attr_atkp_yellow_all"]=attr[63],
["attr_atkp_green_all"]=attr[64],
["attr_atkp_blue_all"]=attr[65],
- ["attr_atkp_purple_all"]=attr[66]
+ ["attr_atkp_purple_all"]=attr[66],
+ ["atk_all"]=attr[67],
+ ["attr_hp_all"]=attr[68],
+ ["attr_dmgdec_all"]=attr[69],
+ ["attr_crit_all"]=attr[70],
+ ["attr_crit_time_all"]=attr[71],
+ ["attr_normal_hurtp_all"]=attr[72],
+ ["attr_skill_hurtp_all"]=attr[73],
+ ["attr_atkp_all"]=attr[74],
+ ["attr_atk"]=attr[75],
+ ["attr_hp"]=attr[76],
+ ["attr_normal_hurt"]=attr[77],
+ ["attr_skill_hurt"]=attr[78],
+ ["dmgdec"]=attr[79]
}
}
local config = {
data=attr,
keys=keys,
-count=66
+count=79
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/ru/skill_rogue.lua b/lua/app/config/strings/ru/skill_rogue.lua
index b3076c28..0f063c94 100644
--- a/lua/app/config/strings/ru/skill_rogue.lua
+++ b/lua/app/config/strings/ru/skill_rogue.lua
@@ -364,15 +364,6 @@ local skill_rogue = {
},
[2400123]={
- },
- [2400131]={
-
- },
- [2400132]={
-
- },
- [2400133]={
-
},
[2400141]={
@@ -400,15 +391,6 @@ local skill_rogue = {
},
[2500123]={
- },
- [2500131]={
-
- },
- [2500132]={
-
- },
- [2500133]={
-
},
[2500141]={
@@ -925,6 +907,6 @@ local skill_rogue = {
}
}
local config = {
-data=skill_rogue,count=308
+data=skill_rogue,count=302
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/th/attr.lua b/lua/app/config/strings/th/attr.lua
index 85abf776..7f4c0be0 100644
--- a/lua/app/config/strings/th/attr.lua
+++ b/lua/app/config/strings/th/attr.lua
@@ -323,6 +323,58 @@ local attr = {
[66]={
["id"]=66,
["name"]="attr_atkp_purple_all"
+ },
+ [67]={
+ ["id"]=67,
+ ["name"]="atk_all"
+ },
+ [68]={
+ ["id"]=68,
+ ["name"]="attr_hp_all"
+ },
+ [69]={
+ ["id"]=69,
+ ["name"]="attr_dmgdec_all"
+ },
+ [70]={
+ ["id"]=70,
+ ["name"]="attr_crit_all"
+ },
+ [71]={
+ ["id"]=71,
+ ["name"]="attr_crit_time_all"
+ },
+ [72]={
+ ["id"]=72,
+ ["name"]="attr_normal_hurtp_all"
+ },
+ [73]={
+ ["id"]=73,
+ ["name"]="attr_skill_hurtp_all"
+ },
+ [74]={
+ ["id"]=74,
+ ["name"]="attr_atkp_all"
+ },
+ [75]={
+ ["id"]=75,
+ ["name"]="attr_atk"
+ },
+ [76]={
+ ["id"]=76,
+ ["name"]="attr_hp"
+ },
+ [77]={
+ ["id"]=77,
+ ["name"]="attr_normal_hurt"
+ },
+ [78]={
+ ["id"]=78,
+ ["name"]="attr_skill_hurt"
+ },
+ [79]={
+ ["id"]=79,
+ ["name"]="dmgdec"
}
}
local keys = {
@@ -392,12 +444,25 @@ local keys = {
["attr_atkp_yellow_all"]=attr[63],
["attr_atkp_green_all"]=attr[64],
["attr_atkp_blue_all"]=attr[65],
- ["attr_atkp_purple_all"]=attr[66]
+ ["attr_atkp_purple_all"]=attr[66],
+ ["atk_all"]=attr[67],
+ ["attr_hp_all"]=attr[68],
+ ["attr_dmgdec_all"]=attr[69],
+ ["attr_crit_all"]=attr[70],
+ ["attr_crit_time_all"]=attr[71],
+ ["attr_normal_hurtp_all"]=attr[72],
+ ["attr_skill_hurtp_all"]=attr[73],
+ ["attr_atkp_all"]=attr[74],
+ ["attr_atk"]=attr[75],
+ ["attr_hp"]=attr[76],
+ ["attr_normal_hurt"]=attr[77],
+ ["attr_skill_hurt"]=attr[78],
+ ["dmgdec"]=attr[79]
}
}
local config = {
data=attr,
keys=keys,
-count=66
+count=79
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/th/skill_rogue.lua b/lua/app/config/strings/th/skill_rogue.lua
index 9ea31349..3765f304 100644
--- a/lua/app/config/strings/th/skill_rogue.lua
+++ b/lua/app/config/strings/th/skill_rogue.lua
@@ -364,15 +364,6 @@ local skill_rogue = {
},
[2400123]={
- },
- [2400131]={
-
- },
- [2400132]={
-
- },
- [2400133]={
-
},
[2400141]={
@@ -400,15 +391,6 @@ local skill_rogue = {
},
[2500123]={
- },
- [2500131]={
-
- },
- [2500132]={
-
- },
- [2500133]={
-
},
[2500141]={
@@ -925,6 +907,6 @@ local skill_rogue = {
}
}
local config = {
-data=skill_rogue,count=308
+data=skill_rogue,count=302
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/vi/attr.lua b/lua/app/config/strings/vi/attr.lua
index 1bc805d8..79583988 100644
--- a/lua/app/config/strings/vi/attr.lua
+++ b/lua/app/config/strings/vi/attr.lua
@@ -323,6 +323,58 @@ local attr = {
[66]={
["id"]=66,
["name"]="attr_atkp_purple_all"
+ },
+ [67]={
+ ["id"]=67,
+ ["name"]="atk_all"
+ },
+ [68]={
+ ["id"]=68,
+ ["name"]="attr_hp_all"
+ },
+ [69]={
+ ["id"]=69,
+ ["name"]="attr_dmgdec_all"
+ },
+ [70]={
+ ["id"]=70,
+ ["name"]="attr_crit_all"
+ },
+ [71]={
+ ["id"]=71,
+ ["name"]="attr_crit_time_all"
+ },
+ [72]={
+ ["id"]=72,
+ ["name"]="attr_normal_hurtp_all"
+ },
+ [73]={
+ ["id"]=73,
+ ["name"]="attr_skill_hurtp_all"
+ },
+ [74]={
+ ["id"]=74,
+ ["name"]="attr_atkp_all"
+ },
+ [75]={
+ ["id"]=75,
+ ["name"]="attr_atk"
+ },
+ [76]={
+ ["id"]=76,
+ ["name"]="attr_hp"
+ },
+ [77]={
+ ["id"]=77,
+ ["name"]="attr_normal_hurt"
+ },
+ [78]={
+ ["id"]=78,
+ ["name"]="attr_skill_hurt"
+ },
+ [79]={
+ ["id"]=79,
+ ["name"]="dmgdec"
}
}
local keys = {
@@ -392,12 +444,25 @@ local keys = {
["attr_atkp_yellow_all"]=attr[63],
["attr_atkp_green_all"]=attr[64],
["attr_atkp_blue_all"]=attr[65],
- ["attr_atkp_purple_all"]=attr[66]
+ ["attr_atkp_purple_all"]=attr[66],
+ ["atk_all"]=attr[67],
+ ["attr_hp_all"]=attr[68],
+ ["attr_dmgdec_all"]=attr[69],
+ ["attr_crit_all"]=attr[70],
+ ["attr_crit_time_all"]=attr[71],
+ ["attr_normal_hurtp_all"]=attr[72],
+ ["attr_skill_hurtp_all"]=attr[73],
+ ["attr_atkp_all"]=attr[74],
+ ["attr_atk"]=attr[75],
+ ["attr_hp"]=attr[76],
+ ["attr_normal_hurt"]=attr[77],
+ ["attr_skill_hurt"]=attr[78],
+ ["dmgdec"]=attr[79]
}
}
local config = {
data=attr,
keys=keys,
-count=66
+count=79
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/vi/skill_rogue.lua b/lua/app/config/strings/vi/skill_rogue.lua
index d8103819..e808c031 100644
--- a/lua/app/config/strings/vi/skill_rogue.lua
+++ b/lua/app/config/strings/vi/skill_rogue.lua
@@ -364,15 +364,6 @@ local skill_rogue = {
},
[2400123]={
- },
- [2400131]={
-
- },
- [2400132]={
-
- },
- [2400133]={
-
},
[2400141]={
@@ -400,15 +391,6 @@ local skill_rogue = {
},
[2500123]={
- },
- [2500131]={
-
- },
- [2500132]={
-
- },
- [2500133]={
-
},
[2500141]={
@@ -925,6 +907,6 @@ local skill_rogue = {
}
}
local config = {
-data=skill_rogue,count=308
+data=skill_rogue,count=302
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/zh/attr.lua b/lua/app/config/strings/zh/attr.lua
index 9cba3845..03e0953d 100644
--- a/lua/app/config/strings/zh/attr.lua
+++ b/lua/app/config/strings/zh/attr.lua
@@ -323,6 +323,58 @@ local attr = {
[66]={
["id"]=66,
["name"]="attr_atkp_purple_all"
+ },
+ [67]={
+ ["id"]=67,
+ ["name"]="atk_all"
+ },
+ [68]={
+ ["id"]=68,
+ ["name"]="attr_hp_all"
+ },
+ [69]={
+ ["id"]=69,
+ ["name"]="attr_dmgdec_all"
+ },
+ [70]={
+ ["id"]=70,
+ ["name"]="attr_crit_all"
+ },
+ [71]={
+ ["id"]=71,
+ ["name"]="attr_crit_time_all"
+ },
+ [72]={
+ ["id"]=72,
+ ["name"]="attr_normal_hurtp_all"
+ },
+ [73]={
+ ["id"]=73,
+ ["name"]="attr_skill_hurtp_all"
+ },
+ [74]={
+ ["id"]=74,
+ ["name"]="attr_atkp_all"
+ },
+ [75]={
+ ["id"]=75,
+ ["name"]="attr_atk"
+ },
+ [76]={
+ ["id"]=76,
+ ["name"]="attr_hp"
+ },
+ [77]={
+ ["id"]=77,
+ ["name"]="attr_normal_hurt"
+ },
+ [78]={
+ ["id"]=78,
+ ["name"]="attr_skill_hurt"
+ },
+ [79]={
+ ["id"]=79,
+ ["name"]="dmgdec"
}
}
local keys = {
@@ -392,12 +444,25 @@ local keys = {
["attr_atkp_yellow_all"]=attr[63],
["attr_atkp_green_all"]=attr[64],
["attr_atkp_blue_all"]=attr[65],
- ["attr_atkp_purple_all"]=attr[66]
+ ["attr_atkp_purple_all"]=attr[66],
+ ["atk_all"]=attr[67],
+ ["attr_hp_all"]=attr[68],
+ ["attr_dmgdec_all"]=attr[69],
+ ["attr_crit_all"]=attr[70],
+ ["attr_crit_time_all"]=attr[71],
+ ["attr_normal_hurtp_all"]=attr[72],
+ ["attr_skill_hurtp_all"]=attr[73],
+ ["attr_atkp_all"]=attr[74],
+ ["attr_atk"]=attr[75],
+ ["attr_hp"]=attr[76],
+ ["attr_normal_hurt"]=attr[77],
+ ["attr_skill_hurt"]=attr[78],
+ ["dmgdec"]=attr[79]
}
}
local config = {
data=attr,
keys=keys,
-count=66
+count=79
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/zh/skill_rogue.lua b/lua/app/config/strings/zh/skill_rogue.lua
index c0923f82..0ba5a0a9 100644
--- a/lua/app/config/strings/zh/skill_rogue.lua
+++ b/lua/app/config/strings/zh/skill_rogue.lua
@@ -364,15 +364,6 @@ local skill_rogue = {
},
[2400123]={
- },
- [2400131]={
-
- },
- [2400132]={
-
- },
- [2400133]={
-
},
[2400141]={
@@ -400,15 +391,6 @@ local skill_rogue = {
},
[2500123]={
- },
- [2500131]={
-
- },
- [2500132]={
-
- },
- [2500133]={
-
},
[2500141]={
@@ -925,6 +907,6 @@ local skill_rogue = {
}
}
local config = {
-data=skill_rogue,count=308
+data=skill_rogue,count=302
}
return config
\ No newline at end of file
diff --git a/lua/app/config/task_daily_challenge.lua b/lua/app/config/task_daily_challenge.lua
index 5163c8e5..28aac82d 100644
--- a/lua/app/config/task_daily_challenge.lua
+++ b/lua/app/config/task_daily_challenge.lua
@@ -2,29 +2,21 @@ local task_daily_challenge = {
[1]={
["param"]=1,
["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=21,
- ["id_for_nothing"]="VAk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=19,
- ["id_for_nothing"]="VwE=",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=1,
["id_for_nothing"]="Vw==",
- ["num"]=500,
- ["num_for_nothing"]="Uwhc"
+ ["num"]=1000,
+ ["num_for_nothing"]="VwhcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
}
},
["number"]=1
@@ -35,26 +27,18 @@ local task_daily_challenge = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=21,
- ["id_for_nothing"]="VAk=",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=13,
+ ["id_for_nothing"]="Vws=",
["num"]=1,
["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=20,
- ["id_for_nothing"]="VAg=",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=19,
- ["id_for_nothing"]="VwE=",
- ["num"]=150,
- ["num_for_nothing"]="Vw1c"
}
},
["number"]=2
@@ -65,26 +49,18 @@ local task_daily_challenge = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=21,
- ["id_for_nothing"]="VAk=",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=13,
+ ["id_for_nothing"]="Vws=",
["num"]=1,
["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=20,
- ["id_for_nothing"]="VAg=",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=19,
- ["id_for_nothing"]="VwE=",
- ["num"]=150,
- ["num_for_nothing"]="Vw1c"
}
},
["number"]=2
@@ -98,24 +74,24 @@ local task_daily_challenge = {
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=20,
- ["id_for_nothing"]="VAg=",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=21,
- ["id_for_nothing"]="VAk=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
}
},
["number"]=3
@@ -128,24 +104,24 @@ local task_daily_challenge = {
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=20,
- ["id_for_nothing"]="VAg=",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=21,
- ["id_for_nothing"]="VAk=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
}
},
["number"]=3
@@ -159,24 +135,24 @@ local task_daily_challenge = {
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=20,
- ["id_for_nothing"]="VAg=",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=21,
- ["id_for_nothing"]="VAk=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
}
},
["number"]=3
diff --git a/lua/app/global/global_func.lua b/lua/app/global/global_func.lua
index af3a81dc..2abd2d4d 100644
--- a/lua/app/global/global_func.lua
+++ b/lua/app/global/global_func.lua
@@ -372,8 +372,10 @@ end
function GFunc.getTaskDesc(taskType, taskTarget)
if taskType == GConst.TaskConst.TASK_TYPE.X_ARENA_GRADING then
-- 段位显示文本
- local grading = DataManager.ArenaData:getGradingName(DataManager.ArenaData:getGradingIdFromScore(taskTarget))
- return I18N:getText("task_type", taskType, "desc", grading)
+ -- local grading = DataManager.ArenaData:getGradingName(DataManager.ArenaData:getGradingIdFromScore(taskTarget))
+ -- return I18N:getText("task_type", taskType, "desc", grading)
+ -- local curScore = DataManager.ArenaData:getGradingScore(taskTarget)
+ return I18N:getText("task_type", taskType, "desc", taskTarget)
elseif taskType == GConst.TaskConst.TASK_TYPE.X_DUNGEON_ARMOR then
-- 防具副本显示章节和关卡
local cfg = DataManager.DungeonData:getDungeonDataByType(ModuleManager.MODULE_KEY.DUNGEON_ARMOR):getConfig(taskTarget)
@@ -586,7 +588,7 @@ function GFunc.showItemNotEnough(itemId)
okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK),
okFunc = function()
UIManager:closeAllUIExceptMainUI()
- EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.GO_SHOP, {page = GConst.ShopConst.PAGE_TYPE.MAIN, subType = GConst.ShopConst.MAIN_PAGE_TYPE.GOLD})
+ EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.GO_SHOP, {page = GConst.MainCityConst.BOTTOM_PAGE.SHOP, subType = GConst.ShopConst.MAIN_PAGE_TYPE.GOLD_STORE})
end
}
GFunc.showMessageBox(params)
diff --git a/lua/app/module/hero/hero_manager.lua b/lua/app/module/hero/hero_manager.lua
index 0b412cea..7de9b1f9 100644
--- a/lua/app/module/hero/hero_manager.lua
+++ b/lua/app/module/hero/hero_manager.lua
@@ -37,6 +37,15 @@ function HeroManager:upgradeHeroFinish(result)
DataManager.HeroData:setDirty()
DataManager.HeroData:calcPower()
+ local heroes = DataManager.HeroData:getAllHeroes()
+ local count = 0
+ for i,v in ipairs(heroes) do
+ if v:getLv() >= 5 then
+ count = count + 1
+ end
+ end
+ ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_HERO_LVUP_5, count)
+
AudioManager:playEffect(AudioManager.EFFECT_ID.HERO_UP)
end
end
diff --git a/lua/app/module/shop/shop_const.lua b/lua/app/module/shop/shop_const.lua
index 131e9ff6..29db719b 100644
--- a/lua/app/module/shop/shop_const.lua
+++ b/lua/app/module/shop/shop_const.lua
@@ -124,4 +124,12 @@ ShopConst.CORE_SOUL_TYPE = {
ShopConst.CORE_SOUL_NORMAL_MAX_COUNT = 10 -- 魂芯普通宝箱自适应抽取数量限制
ShopConst.CORE_SOUL_ELITE_MULTI_COUNT = 10 -- 史诗宝箱多抽的次数
+-- 商店主要商品页面的类型
+ShopConst.MAIN_PAGE_TYPE = {
+ CHAPTER_GIFT = 1,
+ DAILY_STORE = 2,
+ GEM_STORE = 3,
+ GOLD_STORE = 4,
+}
+
return ShopConst
\ No newline at end of file
diff --git a/lua/app/module/shop/shop_manager.lua b/lua/app/module/shop/shop_manager.lua
index a7f19c13..18d9d6bc 100644
--- a/lua/app/module/shop/shop_manager.lua
+++ b/lua/app/module/shop/shop_manager.lua
@@ -2,13 +2,9 @@ local ShopManager = class("ShopManager", BaseModule)
ShopManager.COMMERCE_TYPE = {
CHAPTER_GIFT = 1,
- SUMMON = 2,
- DAILY_STORE = 3,
- EMBLEM = 4,
- GEM_STORE = 5,
- GOLD_STORE = 6,
- FORCE_SKIN = 7,
- CORE_SOUL_STORE = 8,
+ DAILY_STORE = 2,
+ GEM_STORE = 3,
+ GOLD_STORE = 4,
}
ShopManager.SUMMON_ID = {
diff --git a/lua/app/module/talent/talent_manager.lua b/lua/app/module/talent/talent_manager.lua
index 9fc0116a..fe4283b7 100644
--- a/lua/app/module/talent/talent_manager.lua
+++ b/lua/app/module/talent/talent_manager.lua
@@ -16,6 +16,7 @@ end
function TalentManager:onTalentUpgradeRsp(result)
if result.err_code == GConst.ERROR_STR.SUCCESS then
DataManager.TalentData:onUpgrade(result)
+ ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_TALENT_UP, 1)
end
end
diff --git a/lua/app/module/task/task_const.lua b/lua/app/module/task/task_const.lua
index d4ab0016..9f55a778 100644
--- a/lua/app/module/task/task_const.lua
+++ b/lua/app/module/task/task_const.lua
@@ -55,10 +55,14 @@ TaskConst.TASK_TYPE = {
X_SUMMON_HERO_3 = 46, -- 获得X个稀有英雄(蓝色)
X_SUMMON_HERO = 47, -- 招聘X次
X_STAR_HERO_5 = 48, -- 传说英雄(橙色)最高星达X 历史最高记录,从建号起记录
+ X_LOGIN = 49, -- 登录即可达成 给活动用,比如七天乐
+ X_HERO_LVUP_5 = 50, -- 5名英雄升至X级 历史最高记录的5名英雄,从建号起记录
+ X_TALENT_UP = 51, -- 研究所(天赋)升级X次 从创号开始记录
}
TaskConst.RELPACE_TASK_TYPE = {
TaskConst.TASK_TYPE.X_HERO_MAX_LV_REACH,
+ TaskConst.TASK_TYPE.X_HERO_LVUP_5,
}
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 0b83f24d..2b6fd159 100644
--- a/lua/app/module/task/task_manager.lua
+++ b/lua/app/module/task/task_manager.lua
@@ -370,6 +370,14 @@ function TaskManager:xStarHero5(count)
self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_STAR_HERO_5, count)
end
+function TaskManager:xHeroLvUp5(count)
+ self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_HERO_LVUP_5, count)
+end
+
+function TaskManager:xTalentUp(count)
+ self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_TALENT_UP, count)
+end
+
---- 没有特殊说明,方法均返回任务增量
TaskManager.TYPE_DEAL_FUNC = {
[GConst.TaskConst.TASK_TYPE.X_WATCH_AD] = TaskManager.xWatchAd,
@@ -418,6 +426,8 @@ TaskManager.TYPE_DEAL_FUNC = {
[GConst.TaskConst.TASK_TYPE.X_SUMMON_HERO_3] = TaskManager.xSummonHero3,
[GConst.TaskConst.TASK_TYPE.X_SUMMON_HERO] = TaskManager.xSummonHero,
[GConst.TaskConst.TASK_TYPE.X_STAR_HERO_5] = TaskManager.xStarHero5,
+ [GConst.TaskConst.TASK_TYPE.X_HERO_LVUP_5] = TaskManager.xHeroLvUp5,
+ [GConst.TaskConst.TASK_TYPE.X_TALENT_UP] = TaskManager.xTalentUp,
}
function TaskManager:taskGoto(taskType)
@@ -440,11 +450,11 @@ function TaskManager:gotoMainShopUI()
end
function TaskManager:gotoMainShopGemUI()
- EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.CHANGE_MAIN_CITY_PAGE, {page = GConst.MainCityConst.BOTTOM_PAGE.SHOP, storeIdx = GConst.ShopConst.MAIN_PAGE_TYPE.GEM})
+ EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.CHANGE_MAIN_CITY_PAGE, {page = GConst.MainCityConst.BOTTOM_PAGE.SHOP, subType = GConst.ShopConst.MAIN_PAGE_TYPE.GEM_STORE})
end
function TaskManager:gotoMainShopGoldUI()
- EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.CHANGE_MAIN_CITY_PAGE, {page = GConst.MainCityConst.BOTTOM_PAGE.SHOP, storeIdx = GConst.ShopConst.MAIN_PAGE_TYPE.GOLD})
+ EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.CHANGE_MAIN_CITY_PAGE, {page = GConst.MainCityConst.BOTTOM_PAGE.SHOP, subType = GConst.ShopConst.MAIN_PAGE_TYPE.GOLD_STORE})
end
function TaskManager:gotoMainHeroUI()
@@ -463,6 +473,10 @@ function TaskManager:gotoDailyChallengeUI()
ModuleManager.DailyChallengeManager:showDailyChallengeUI()
end
+function TaskManager:gotoTalentUI()
+ EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.CHANGE_MAIN_CITY_PAGE, {page = GConst.MainCityConst.BOTTOM_PAGE.COMPANY, companyIdx = 1})
+end
+
TaskManager.gotoFunc = {
[GConst.TaskConst.TASK_TYPE.X_WATCH_AD] = TaskManager.gotoMainShopUI,
[GConst.TaskConst.TASK_TYPE.X_GOLD_GOT] = TaskManager.gotoMainShopGoldUI,
@@ -487,6 +501,8 @@ TaskManager.gotoFunc = {
[GConst.TaskConst.TASK_TYPE.X_SUMMON_HERO_3] = TaskManager.gotoSummonUI,
[GConst.TaskConst.TASK_TYPE.X_SUMMON_HERO] = TaskManager.gotoSummonUI,
[GConst.TaskConst.TASK_TYPE.X_STAR_HERO_5] = TaskManager.gotoMainHeroUI,
+ [GConst.TaskConst.TASK_TYPE.X_HERO_LVUP_5] = TaskManager.gotoMainHeroUI,
+ [GConst.TaskConst.TASK_TYPE.X_TALENT_UP] = TaskManager.gotoTalentUI,
}
function TaskManager:dealTaskType(taskType, callback, onlyGet)
diff --git a/lua/app/ui/activity/act_seven_day/cell/task_cell.lua b/lua/app/ui/activity/act_seven_day/cell/task_cell.lua
index 86b46dac..2da77430 100755
--- a/lua/app/ui/activity/act_seven_day/cell/task_cell.lua
+++ b/lua/app/ui/activity/act_seven_day/cell/task_cell.lua
@@ -6,12 +6,18 @@ function TaskCell:refresh(id, period)
local taskInfo = DataManager.ActSevenDayData:getTaskData(id)
local slider = uiMap["task_cell.slider_bg.slider"]
local progress = math.max(taskInfo.progress, 0)
- progress = math.min(progress, cfg.number)
+ local targetCount = cfg.number
+ if cfg.type == GConst.TaskConst.TASK_TYPE.X_ARENA_GRADING then
+ targetCount = DataManager.ArenaData:getGradingScore(targetCount)
+ progress = DataManager.ArenaData:getGradingScore(progress)
+ end
+ progress = math.min(progress, targetCount)
+ progress = math.max(progress, 0)
- slider:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_SLIDER).value = progress / cfg.number
- uiMap["task_cell.progress"]:setText(progress .. "/" .. cfg.number)
+ slider:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_SLIDER).value = progress / targetCount
+ uiMap["task_cell.progress"]:setText(progress .. "/" .. targetCount)
local desc = uiMap["task_cell.desc"]
- local condition = cfg.number
+ local condition = targetCount
local str = GFunc.getTaskDesc(cfg.type, condition)
desc:setText(str)
if not self.rewardCell then
@@ -45,7 +51,7 @@ function TaskCell:onClick(id, period)
ModuleManager.ActSevenDayManager:onGetRewardTask(id, period)
else
if cfg.type then
- ModuleManager.TaskManager:goToTask(cfg.type)
+ ModuleManager.TaskManager:taskGoto(cfg.type)
end
end
end
diff --git a/lua/app/ui/currency_bar/cell/currency_cell.lua b/lua/app/ui/currency_bar/cell/currency_cell.lua
index 52fbf20a..b94cee38 100644
--- a/lua/app/ui/currency_bar/cell/currency_cell.lua
+++ b/lua/app/ui/currency_bar/cell/currency_cell.lua
@@ -39,12 +39,12 @@ function ResourceCell:show(itemId, hideAddImg)
self.timeTx:setVisible(true)
elseif itemId == GConst.ItemConst.ITEM_ID_GOLD then
self.baseObject:addClickListener(function()
- EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.GO_SHOP, {page = GConst.ShopConst.PAGE_TYPE.MAIN, subType = GConst.ShopConst.MAIN_PAGE_TYPE.GOLD})
+ EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.GO_SHOP, {page = GConst.MainCityConst.BOTTOM_PAGE.SHOP, subType = GConst.ShopConst.MAIN_PAGE_TYPE.GOLD_STORE})
end)
self.addImg:setVisible(true)
elseif itemId == GConst.ItemConst.ITEM_ID_GEM then
self.baseObject:addClickListener(function()
- EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.GO_SHOP, {page = GConst.ShopConst.PAGE_TYPE.MAIN, subType = GConst.ShopConst.MAIN_PAGE_TYPE.GEM})
+ EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.GO_SHOP, {page = GConst.MainCityConst.BOTTOM_PAGE.SHOP, subType = GConst.ShopConst.MAIN_PAGE_TYPE.GEM_STORE})
end)
self.addImg:setVisible(true)
elseif itemId == GConst.ItemConst.ITEM_ID_ARENA_TICKET then
diff --git a/lua/app/ui/main_city/main_city_ui.lua b/lua/app/ui/main_city/main_city_ui.lua
index c94a7a73..55d6495b 100644
--- a/lua/app/ui/main_city/main_city_ui.lua
+++ b/lua/app/ui/main_city/main_city_ui.lua
@@ -153,14 +153,8 @@ function MainCityUI:_addListeners()
self:addEventListener(EventManager.CUSTOM_EVENT.GO_SHOP, function(params)
if ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.MALL, false) then
local page = params and params.page or GConst.ShopConst.PAGE_TYPE.MAIN -- 默认主要商品
- local subType = params.subType
if self.selectedIndex == GConst.MainCityConst.BOTTOM_PAGE.SHOP then
- if self.subComps and self.subComps[GConst.MainCityConst.BOTTOM_PAGE.SHOP] then
- self.subComps[GConst.MainCityConst.BOTTOM_PAGE.SHOP]:switchPage(page)
- if page == GConst.ShopConst.PAGE_TYPE.MAIN and subType then
- self.subComps[GConst.MainCityConst.BOTTOM_PAGE.SHOP]:goSubType(subType)
- end
- end
+ self.subComps[GConst.MainCityConst.BOTTOM_PAGE.SHOP]:refresh(params.subType)
return
end
-- self.bottomBtnSpines[GConst.MainCityConst.BOTTOM_PAGE.SHOP]:playAnimComplete("born1", false, false, function()
@@ -170,10 +164,7 @@ function MainCityUI:_addListeners()
-- end)
self:refreshBottom(GConst.MainCityConst.BOTTOM_PAGE.SHOP, true)
if self.subComps and self.subComps[GConst.MainCityConst.BOTTOM_PAGE.SHOP] then
- self.subComps[GConst.MainCityConst.BOTTOM_PAGE.SHOP]:switchPage(page)
- if page == GConst.ShopConst.PAGE_TYPE.MAIN and subType then
- self.subComps[GConst.MainCityConst.BOTTOM_PAGE.SHOP]:goSubType(subType)
- end
+ self.subComps[GConst.MainCityConst.BOTTOM_PAGE.SHOP]:refresh(params.subType)
end
end
end)
@@ -194,9 +185,13 @@ function MainCityUI:_addListeners()
if page == GConst.MainCityConst.BOTTOM_PAGE.SHOP then
if self.selectedIndex == page then -- 直接跳转
if self.subComps[GConst.MainCityConst.BOTTOM_PAGE.SHOP] then
- self.subComps[GConst.MainCityConst.BOTTOM_PAGE.SHOP]:switchPage(params.storeIdx)
+ self.subComps[GConst.MainCityConst.BOTTOM_PAGE.SHOP]:refresh(params.subType)
end
end
+ elseif page == GConst.MainCityConst.BOTTOM_PAGE.COMPANY then
+ if params.companyIdx == 1 then
+ ModuleManager.TalentManager:showMainUI()
+ end
-- elseif page == GConst.MainCityConst.BOTTOM_PAGE.DUNGEON then
-- if self.selectedIndex == page then -- 直接跳转
-- if self.dungeonComp then
diff --git a/lua/app/ui/shop/shop_comp.lua b/lua/app/ui/shop/shop_comp.lua
index c461fdb8..8f2769b2 100644
--- a/lua/app/ui/shop/shop_comp.lua
+++ b/lua/app/ui/shop/shop_comp.lua
@@ -125,7 +125,7 @@ end
function ShopComp:refresh(showIdx, noShowIdx)
-- if showIdx ~= nil then
- -- if showIdx == ModuleManager.ShopManager.COMMERCE_TYPE.FORCE_SKIN then
+ -- if showIdx == GConst.ShopConst.MAIN_PAGE_TYPE.FORCE_SKIN then
-- self.curPage = PAGE_TYPE.SKIN
-- else
-- self.curPage = PAGE_TYPE.SHOP
@@ -160,13 +160,13 @@ function ShopComp:refreshShop(showIdx, noShowIdx)
self:updateList(noShowIdx)
-- if self.showIdx then -- 指定跳转
- -- if self.showIdx == ModuleManager.ShopManager.COMMERCE_TYPE.CHAPTER_GIFT then
+ -- if self.showIdx == GConst.ShopConst.MAIN_PAGE_TYPE.CHAPTER_GIFT then
-- BIReportV2:postOperation(BIReportV2.OPERATION_UI_NAME.SHOP_CHAPTER)
- -- elseif self.showIdx == ModuleManager.ShopManager.COMMERCE_TYPE.DAILY_STORE then
+ -- elseif self.showIdx == GConst.ShopConst.MAIN_PAGE_TYPE.DAILY_STORE then
-- BIReportV2:postOperation(BIReportV2.OPERATION_UI_NAME.SHOP_DAILY_STORE)
- -- elseif self.showIdx == ModuleManager.ShopManager.COMMERCE_TYPE.GEM_STORE then
+ -- elseif self.showIdx == GConst.ShopConst.MAIN_PAGE_TYPE.GEM_STORE then
-- BIReportV2:postOperation(BIReportV2.OPERATION_UI_NAME.SHOP_GEM_STORE)
- -- elseif self.showIdx == ModuleManager.ShopManager.COMMERCE_TYPE.GOLD_STORE then
+ -- elseif self.showIdx == GConst.ShopConst.MAIN_PAGE_TYPE.GOLD_STORE then
-- BIReportV2:postOperation(BIReportV2.OPERATION_UI_NAME.SHOP_GOLD_STORE)
-- else
-- BIReportV2:postOperation(BIReportV2.OPERATION_UI_NAME.MAIN_SHOP)
@@ -246,7 +246,7 @@ function ShopComp:updateChapterList(offsetY)
self.chapterScrollrect:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_SCROLL_RECT).enabled = true
end
- if self.showIdx == ModuleManager.ShopManager.COMMERCE_TYPE.CHAPTER_GIFT then
+ if self.showIdx == GConst.ShopConst.MAIN_PAGE_TYPE.CHAPTER_GIFT then
self.beginPosY = math.abs(offsetY)
end
@@ -281,7 +281,7 @@ end
-- end
-- self.coreSoulTitleBg:setActive(true)
-- self.coreSoulMainCell:setActive(true)
--- if self.showIdx == ModuleManager.ShopManager.COMMERCE_TYPE.CORE_SOUL_STORE then
+-- if self.showIdx == GConst.ShopConst.MAIN_PAGE_TYPE.CORE_SOUL_STORE then
-- self.beginPosY = math.abs(offsetY)
-- end
-- if self.rpPosY == nil then
@@ -307,7 +307,7 @@ function ShopComp:updateDailyCell(offsetY)
end
self.dailyTitleBg:setActive(true)
self.dailyCell:setActive(true)
- if self.showIdx == ModuleManager.ShopManager.COMMERCE_TYPE.DAILY_STORE then
+ if self.showIdx == GConst.ShopConst.MAIN_PAGE_TYPE.DAILY_STORE then
self.beginPosY = math.abs(offsetY)
end
if self.rpPosY == nil then
@@ -326,7 +326,7 @@ function ShopComp:updateDailyCell(offsetY)
end
function ShopComp:updateGemCell(offsetY)
- if self.showIdx == ModuleManager.ShopManager.COMMERCE_TYPE.GEM_STORE then
+ if self.showIdx == GConst.ShopConst.MAIN_PAGE_TYPE.GEM_STORE then
self.beginPosY = math.abs(offsetY)
end
@@ -347,7 +347,7 @@ end
function ShopComp:updateGoldCell(offsetY)
self.goldTitleBg:setActive(true)
self.goldCell:setActive(true)
- if self.showIdx == ModuleManager.ShopManager.COMMERCE_TYPE.GOLD_STORE then
+ if self.showIdx == GConst.ShopConst.MAIN_PAGE_TYPE.GOLD_STORE then
self.beginPosY = math.abs(offsetY)
end
if self.rpPosY == nil then
diff --git a/lua/app/ui/task/cell/achievement_task_cell.lua b/lua/app/ui/task/cell/achievement_task_cell.lua
index 7c798a27..f305c0d1 100644
--- a/lua/app/ui/task/cell/achievement_task_cell.lua
+++ b/lua/app/ui/task/cell/achievement_task_cell.lua
@@ -30,6 +30,12 @@ function AchievementTaskCell:refresh(taskId)
local taskTarget = DataManager.DailyTaskData:getAchievementCondition(self.taskId, self.taskStage)
local taskProg = DataManager.DailyTaskData:getAchievementProg(self.taskId)
taskProg = taskProg > taskTarget and taskTarget or taskProg
+ if self.taskType == GConst.TaskConst.TASK_TYPE.X_ARENA_GRADING then
+ taskTarget = DataManager.ArenaData:getGradingScore(taskTarget)
+ taskProg = DataManager.ArenaData:getGradingScore(taskProg)
+ end
+ taskProg = math.min(taskProg, taskTarget)
+ taskProg = math.max(taskProg, 0)
self.progress.value = taskProg / taskTarget
self.progressTx:setText(taskProg.."/"..taskTarget)
diff --git a/lua/app/userdata/activity/act_seven_day/act_seven_day_data.lua b/lua/app/userdata/activity/act_seven_day/act_seven_day_data.lua
index fd97d4a5..c5456d55 100755
--- a/lua/app/userdata/activity/act_seven_day/act_seven_day_data.lua
+++ b/lua/app/userdata/activity/act_seven_day/act_seven_day_data.lua
@@ -389,7 +389,7 @@ function ActSevenDayData:addTaskProgress(taskType, count)
-- addCount = 0
-- end
-- end
- if table.containValue(GConst.TaskConst.TASK_TYPE, taskType) then
+ if table.containValue(GConst.TaskConst.RELPACE_TASK_TYPE, taskType) then
serverData.progress = math.max(serverData.progress, addCount)
else
if serverData.progress <= math.maxinteger - addCount then -- 检查一下是否相加会溢出
diff --git a/lua/app/userdata/arena/arena_data.lua b/lua/app/userdata/arena/arena_data.lua
index f153d9a6..e76563be 100644
--- a/lua/app/userdata/arena/arena_data.lua
+++ b/lua/app/userdata/arena/arena_data.lua
@@ -1,5 +1,5 @@
local ArenaData = class("ArenaData", BaseData)
-
+local MIN_SCORE = 900
-- 竞技场
function ArenaData:ctor()
@@ -237,6 +237,9 @@ end
-- 获取所在段位的最低积分
function ArenaData:getGradingMinScore(score)
+ if not self.cfgRank then
+ return MIN_SCORE
+ end
local id = self:getGradingIdFromScore(score)
if not self.cfgRank[id] then
id = table.sort(table.keys(self.cfgRank))