diff --git a/lua/app/common/audio_manager.lua b/lua/app/common/audio_manager.lua
index c3945c3e..11d78b31 100644
--- a/lua/app/common/audio_manager.lua
+++ b/lua/app/common/audio_manager.lua
@@ -37,6 +37,10 @@ AudioManager.EFFECT_ID = {
LINK_CANCEL = "assets/arts/sounds/sfx/battle/link_cancel.wav",
FUNC_OPEN = "assets/arts/sounds/sfx/ui/func_open.wav",
BATTLE_BOX_OPEN = "assets/arts/sounds/sfx/ui/ui_battle_open_box.wav",
+ EQUIP_WEAPON_UP = "assets/arts/sounds/sfx/ui/equip_up.wav",
+ EQUIP_ARMOR_UP = "assets/arts/sounds/sfx/ui/armor_up.wav",
+ DUNGEON_SMASH = "assets/arts/sounds/sfx/ui/smash.wav",
+ STAR_GET = "assets/arts/sounds/sfx/ui/star_get.wav",
}
AudioManager.BO_EFFECT_ID = {
diff --git a/lua/app/common/bi_report.lua b/lua/app/common/bi_report.lua
index 6efda7e7..1031fe8c 100644
--- a/lua/app/common/bi_report.lua
+++ b/lua/app/common/bi_report.lua
@@ -134,6 +134,8 @@ BIReport.ITEM_GET_TYPE = {
WEAPON_GIFT = "WeaponGift",
ARMOR_GIFT = "ArmorGift",
EQUIP_UPGRADE = "EquipUpgrade",
+ ARMOR_UPGRADE = "ArmorUpgrade",
+ OFFLINE_RECOVERY = "OfflineRecovery",
}
BIReport.ADS_CLICK_TYPE = {
@@ -250,6 +252,26 @@ BIReport.ARENA_OPT_TYPE = {
SETTLEMENT = "Settlement",
}
+BIReport.PAY_UI_SHOW_TYPE = {
+ LOGIN_POP = "LoginPop",
+ TRIGGER_POP = "TriggerPop",
+ CLICK_SHOW = "ClickShow",
+ SHOP_SHOW = "ShopShow",
+}
+
+BIReport.BOX_OPEN_BOX_TYPE = {
+ SHOP = "Shop",
+ ACTIVITY = "Activity",
+}
+
+BIReport.BOX_OPEN_OPEN_TYPE = {
+ USE_KEY = "UseKey",
+ USE_GEM = "UseGem",
+ BOUNTY = "Bounty",
+ ARENA_BOUNTY = "ArenaBounty",
+}
+
+
-- b6
local EVENT_NAME_EXIT = "client_exit"
local EVENT_NAME_FIGHT = "client_fight"
@@ -279,6 +301,7 @@ local EVENT_NAME_IRONSOURCE_AD_REVENUE = "client_ironsource_ad_revenue" -- applo
local EVENT_NAME_DAILY_CHALLENGE_OPT = "client_daily_challenge_opt"
local EVENT_NAME_ARENA_OPT = "client_arena_opt"-- 竞技场
local EVENT_NAME_MISCELLANEOUS_OPT = "event_name_miscellaneous_opt" -- 一些杂项
+local EVENT_BOX_OPEN = "client_box_open"
function BIReport:setIsNewPlayer(isNewPlayer)
self.isNewPlayer = isNewPlayer
@@ -350,6 +373,9 @@ function BIReport:report(name, args)
local str, lv, atk, hp = DataManager.FormationData:getStageFormationBIStr()
args.formation_atk = atk
args.formation_hp = hp
+ if DataManager.DungeonData then
+ args.dungeon_progress = DataManager.DungeonData:getDungeonBIStr()
+ end
end
args.current_version = CS.BF.BFMain.Instance.GameLaunchMgr:GetCurrentVersion()
args.is_new_player = self.isNewPlayer
@@ -1084,11 +1110,12 @@ function BIReport:postVitGet(num, getType, vitAll)
end
-- 体力使用
-function BIReport:postVitUse(num)
+function BIReport:postVitUse(num, getType)
-- EnergyNum 当前体力数 减少体力时 Int 使用体力数量
-- IsNew 是否是新用户 Boolean 是否为当天新用户,True = 是,False = 否
-- MaxChapter 最大章节 Int 已解锁的最大章节
local args = {
+ type = getType,
vit_num = num,
vit_all = DataManager.BagData.ItemData:getItemNumById(GConst.ItemConst.ITEM_ID_VIT),
}
@@ -1391,10 +1418,11 @@ end
-- 内购相关界面展示,包括弹出/主动打开(如果是打开商城页签,钻石礼包只上报id2,章节礼包只上报首个可购买章节id)
-- giftType为BIReport.GIFT_TYPE
-function BIReport:postPayUIShow(giftType, giftId)
+function BIReport:postPayUIShow(giftType, giftId, showType)
local args = {
gift_type = giftType,
gift_id = giftId,
+ show_type = showType
}
self:report(EVENT_NAME_PAY_UI_SHOW, args)
end
@@ -1467,7 +1495,12 @@ function BIReport:postAppLovinAdRevenue(msg)
self:postAdjustAdRevenueAppLovinMAX(args.revenue, args.network_name, args.ad_unit_identifier, args.placement)
end
local args2 = {
- applovin_revenue = args.revenue
+ ad_platform = "applovin",
+ ad_source = args.network_name,
+ ad_unit_name = args.ad_unit_identifier,
+ ad_format = args.ad_format,
+ currency = "USD",
+ value = args.revenue,
}
self:postFirebaseLog("ad_impression", args2)
self:logAppsFlyerAdRevenue(3, args.network_name, args.revenue, args)
@@ -1486,7 +1519,12 @@ function BIReport:postIronSourceAdRevenue(msg)
end
if args.revenue then
local args2 = {
- ironsource_revenue = args.revenue
+ ad_platform = "ironSource",
+ ad_source = args.network_name,
+ ad_unit_name = args.ad_unit_identifier,
+ ad_format = args.ad_format,
+ currency = "USD",
+ value = args.revenue
}
self:postFirebaseLog("ad_impression", args2)
self:logAppsFlyerAdRevenue(2, args.network_name, args.revenue, args)
@@ -1584,4 +1622,15 @@ function BIReport:postPbAuthfailed(pbName, lastLoginInfo, authFailToLogin)
self:report(EVENT_NAME_NETWORK_OPT, args)
end
+function BIReport:postBoxOpen(id, boxType, openType, box_level, rewards)
+ local args = {
+ box_type = boxType,
+ open_type = openType,
+ box_item_id = id,
+ box_level = box_level,
+ rewards_str = GFunc.getItemRewardsStr(rewards)
+ }
+ self:report(EVENT_BOX_OPEN, args)
+end
+
return BIReport
\ No newline at end of file
diff --git a/lua/app/common/local_data.lua b/lua/app/common/local_data.lua
index 90965323..7b6da257 100644
--- a/lua/app/common/local_data.lua
+++ b/lua/app/common/local_data.lua
@@ -432,10 +432,10 @@ function LocalData:GetMarktrailHero()
end
function LocalData:saveBattleSnapshot(snapshot)
- self:setString(LocalData:getRoleKey(LOCAL_DATA_KEY.BATTLE_SNAPSHOT), json.encode(snapshot))
if EDITOR_MODE then
Logger.logHighlight(json.encode(snapshot))
end
+ self:setString(LocalData:getRoleKey(LOCAL_DATA_KEY.BATTLE_SNAPSHOT), json.encode(snapshot))
end
function LocalData:getBattleSnapshot()
diff --git a/lua/app/common/server_push_manager.lua b/lua/app/common/server_push_manager.lua
index f4aeb03a..d0cc21e3 100644
--- a/lua/app/common/server_push_manager.lua
+++ b/lua/app/common/server_push_manager.lua
@@ -21,6 +21,7 @@ function ServerPushManager:initWhenLogin()
self:addServerPushListener(ProtoMsgType.FromMsgEnum.TriggerGrowUpGift2Ntf, ModuleManager.ShopManager, ModuleManager.ShopManager.onTriggerGrowUpGift)
self:addServerPushListener(ProtoMsgType.FromMsgEnum.MallDailyResetNtf, ModuleManager.ShopManager, ModuleManager.ShopManager.onMallDailyReset)
self:addServerPushListener(ProtoMsgType.FromMsgEnum.AIHelpUnreadNtf, ModuleManager.GameSettingManager, ModuleManager.GameSettingManager.rspAiHelperNtf)
+ self:addServerPushListener(ProtoMsgType.FromMsgEnum.RecoveryNtf, ModuleManager.ItemManager, ModuleManager.ItemManager.rspRecoveryNtf)
end
---- 移除全局推送监听
diff --git a/lua/app/config/act_chapter_store.lua b/lua/app/config/act_chapter_store.lua
index 05f2fbd7..e9aefd97 100644
--- a/lua/app/config/act_chapter_store.lua
+++ b/lua/app/config/act_chapter_store.lua
@@ -141,8 +141,8 @@ local act_chapter_store = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -181,8 +181,8 @@ local act_chapter_store = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -221,8 +221,8 @@ local act_chapter_store = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=3,
["num_for_nothing"]="VQ=="
}
@@ -261,8 +261,8 @@ local act_chapter_store = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=3,
["num_for_nothing"]="VQ=="
}
@@ -301,8 +301,8 @@ local act_chapter_store = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=6,
["num_for_nothing"]="UA=="
}
@@ -341,8 +341,8 @@ local act_chapter_store = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=6,
["num_for_nothing"]="UA=="
}
@@ -381,8 +381,8 @@ local act_chapter_store = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=8,
["num_for_nothing"]="Xg=="
}
@@ -421,8 +421,8 @@ local act_chapter_store = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=8,
["num_for_nothing"]="Xg=="
}
@@ -461,8 +461,8 @@ local act_chapter_store = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=8,
["num_for_nothing"]="Xg=="
}
@@ -501,8 +501,8 @@ local act_chapter_store = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=20,
["num_for_nothing"]="VAg="
}
@@ -541,8 +541,8 @@ local act_chapter_store = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=20,
["num_for_nothing"]="VAg="
}
@@ -581,8 +581,8 @@ local act_chapter_store = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=20,
["num_for_nothing"]="VAg="
}
@@ -621,8 +621,8 @@ local act_chapter_store = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=20,
["num_for_nothing"]="VAg="
}
diff --git a/lua/app/config/act_gift.lua b/lua/app/config/act_gift.lua
index c08b50f3..aa6cb6ae 100644
--- a/lua/app/config/act_gift.lua
+++ b/lua/app/config/act_gift.lua
@@ -206,8 +206,8 @@ local act_gift = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=3,
["num_for_nothing"]="VQ=="
}
@@ -244,8 +244,8 @@ local act_gift = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=5,
["num_for_nothing"]="Uw=="
}
@@ -282,8 +282,8 @@ local act_gift = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=8,
["num_for_nothing"]="Xg=="
}
@@ -320,8 +320,8 @@ local act_gift = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=5,
["num_for_nothing"]="Uw=="
}
@@ -358,8 +358,8 @@ local act_gift = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=18,
["num_for_nothing"]="VwA="
}
@@ -396,8 +396,8 @@ local act_gift = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=24,
["num_for_nothing"]="VAw="
}
@@ -577,8 +577,8 @@ local act_gift = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=6,
["num_for_nothing"]="UA=="
}
@@ -619,8 +619,8 @@ local act_gift = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=6,
["num_for_nothing"]="UA=="
}
@@ -661,8 +661,8 @@ local act_gift = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=6,
["num_for_nothing"]="UA=="
}
@@ -703,8 +703,8 @@ local act_gift = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=6,
["num_for_nothing"]="UA=="
}
diff --git a/lua/app/config/act_growup_gift_new.lua b/lua/app/config/act_growup_gift_new.lua
index 23b3397d..219e832e 100644
--- a/lua/app/config/act_growup_gift_new.lua
+++ b/lua/app/config/act_growup_gift_new.lua
@@ -23,8 +23,8 @@ local act_growup_gift_new = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=8,
["num_for_nothing"]="Xg=="
}
@@ -57,8 +57,8 @@ local act_growup_gift_new = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=12,
["num_for_nothing"]="Vwo="
}
@@ -91,8 +91,8 @@ local act_growup_gift_new = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=24,
["num_for_nothing"]="VAw="
}
@@ -125,8 +125,8 @@ local act_growup_gift_new = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=36,
["num_for_nothing"]="VQ4="
}
@@ -159,8 +159,8 @@ local act_growup_gift_new = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=96,
["num_for_nothing"]="Xw4="
}
@@ -193,8 +193,8 @@ local act_growup_gift_new = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=138,
["num_for_nothing"]="VwtU"
}
diff --git a/lua/app/config/arena_rank.lua b/lua/app/config/arena_rank.lua
index fbc203a0..1d64e7fa 100644
--- a/lua/app/config/arena_rank.lua
+++ b/lua/app/config/arena_rank.lua
@@ -1047,8 +1047,8 @@ local arena_rank = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -1221,8 +1221,8 @@ local arena_rank = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -1395,8 +1395,8 @@ local arena_rank = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=2,
["num_for_nothing"]="VA=="
}
@@ -1569,8 +1569,8 @@ local arena_rank = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=3,
["num_for_nothing"]="VQ=="
}
@@ -1743,8 +1743,8 @@ local arena_rank = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=4,
["num_for_nothing"]="Ug=="
}
@@ -1917,8 +1917,8 @@ local arena_rank = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=5,
["num_for_nothing"]="Uw=="
}
@@ -3103,8 +3103,8 @@ local arena_rank = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -3277,8 +3277,8 @@ local arena_rank = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -3451,8 +3451,8 @@ local arena_rank = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=2,
["num_for_nothing"]="VA=="
}
@@ -3625,8 +3625,8 @@ local arena_rank = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=3,
["num_for_nothing"]="VQ=="
}
@@ -3799,8 +3799,8 @@ local arena_rank = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=4,
["num_for_nothing"]="Ug=="
}
@@ -3973,8 +3973,8 @@ local arena_rank = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=5,
["num_for_nothing"]="Uw=="
}
@@ -5145,8 +5145,8 @@ local arena_rank = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -5317,8 +5317,8 @@ local arena_rank = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -5489,8 +5489,8 @@ local arena_rank = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=2,
["num_for_nothing"]="VA=="
}
@@ -5661,8 +5661,8 @@ local arena_rank = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=3,
["num_for_nothing"]="VQ=="
}
@@ -5833,8 +5833,8 @@ local arena_rank = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=4,
["num_for_nothing"]="Ug=="
}
@@ -6005,8 +6005,8 @@ local arena_rank = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=5,
["num_for_nothing"]="Uw=="
}
diff --git a/lua/app/config/chapter.lua b/lua/app/config/chapter.lua
index 18ac9f66..78680970 100644
--- a/lua/app/config/chapter.lua
+++ b/lua/app/config/chapter.lua
@@ -127,8 +127,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 100,
- 100
+ 1,
+ 1
}
},
[2]={
@@ -278,8 +278,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 100,
- 100
+ 1,
+ 1
}
},
[3]={
@@ -424,8 +424,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 100,
- 100
+ 1,
+ 1
}
},
[4]={
@@ -621,8 +621,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 230,
- 44
+ 1,
+ 1
}
},
[5]={
@@ -824,8 +824,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 1785,
- 4062
+ 1425,
+ 3528
}
},
[6]={
@@ -1027,8 +1027,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 2511,
- 5397
+ 1976,
+ 5486
}
},
[7]={
@@ -1246,8 +1246,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 4456,
- 7506
+ 3300,
+ 7539
}
},
[8]={
@@ -1465,8 +1465,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 6127,
- 10184
+ 4837,
+ 9756
}
},
[9]={
@@ -1684,8 +1684,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 7787,
- 12470
+ 6364,
+ 12027
}
},
[10]={
@@ -1903,8 +1903,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 10159,
- 15963
+ 8546,
+ 14328
}
},
[11]={
@@ -2122,8 +2122,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 12466,
- 18556
+ 10668,
+ 15012
}
},
[12]={
@@ -2341,8 +2341,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 14126,
- 21487
+ 12196,
+ 16024
}
},
[13]={
@@ -2560,8 +2560,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 15225,
- 23424
+ 13207,
+ 17506
}
},
[14]={
@@ -2779,8 +2779,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 17392,
- 26737
+ 15201,
+ 18468
}
},
[15]={
@@ -2998,8 +2998,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 18125,
- 28176
+ 15875,
+ 19426
}
},
[16]={
@@ -3217,8 +3217,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 19440,
- 30378
+ 17085,
+ 21047
}
},
[17]={
@@ -3436,8 +3436,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 20691,
- 32484
+ 18235,
+ 22088
}
},
[18]={
@@ -3655,8 +3655,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 22146,
- 34908
+ 19574,
+ 23715
}
},
[19]={
@@ -3874,8 +3874,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 23030,
- 36601
+ 20388,
+ 25138
}
},
[20]={
@@ -4093,8 +4093,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 24712,
- 39364
+ 21935,
+ 26412
}
},
[21]={
@@ -4312,8 +4312,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 26059,
- 41629
+ 23174,
+ 27434
}
},
[22]={
@@ -4531,8 +4531,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 26965,
- 43375
+ 24007,
+ 28639
}
},
[23]={
@@ -4750,8 +4750,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 27859,
- 45058
+ 24831,
+ 29814
}
},
[24]={
@@ -4969,8 +4969,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 29509,
- 47863
+ 26348,
+ 31029
}
},
[25]={
@@ -5188,8 +5188,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 29800,
- 48678
+ 26616,
+ 32214
}
},
[26]={
@@ -5407,8 +5407,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 30716,
- 50392
+ 27459,
+ 33533
}
},
[27]={
@@ -5626,8 +5626,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 32506,
- 53451
+ 29105,
+ 34852
}
},
[28]={
@@ -5845,8 +5845,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 33303,
- 55081
+ 29839,
+ 36176
}
},
[29]={
@@ -6064,8 +6064,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 34166,
- 56796
+ 30632,
+ 37485
}
},
[30]={
@@ -6283,8 +6283,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 35718,
- 60278
+ 32061,
+ 38809
}
},
[31]={
@@ -6502,8 +6502,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 37410,
- 63294
+ 33618,
+ 40252
}
},
[32]={
@@ -6721,8 +6721,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 38984,
- 66067
+ 35066,
+ 43069
}
},
[33]={
@@ -6940,8 +6940,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 41000,
- 69592
+ 36920,
+ 45891
}
},
[34]={
@@ -7159,8 +7159,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 42574,
- 72471
+ 38368,
+ 49054
}
},
[35]={
@@ -7377,8 +7377,8 @@ local chapter = {
}
},
["daily_challenge_difficulty"]={
- 46207,
- 78535
+ 41710,
+ 53745
}
}
}
diff --git a/lua/app/config/chapter_board.lua b/lua/app/config/chapter_board.lua
index 8a819eeb..5e786ed7 100644
--- a/lua/app/config/chapter_board.lua
+++ b/lua/app/config/chapter_board.lua
@@ -1622,10 +1622,42 @@ local chapter_board = {
1,
0
},
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
{
1,
0
},
+ {
+ 1,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
{
0,
3
@@ -1646,41 +1678,13 @@ local chapter_board = {
1,
0
},
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
{
0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 4
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
+ 2
+ },
+ {
+ 0,
+ 2
},
{
0,
@@ -1702,6 +1706,26 @@ local chapter_board = {
1,
0
},
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
1,
0
@@ -1711,31 +1735,7 @@ local chapter_board = {
0
},
{
- 7,
- 0
- },
- {
- 7,
- 0
- },
- {
- 7,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
+ 0,
0
},
{
@@ -1751,7 +1751,7 @@ local chapter_board = {
0
},
{
- 1,
+ 0,
0
},
{
@@ -1763,7 +1763,7 @@ local chapter_board = {
0
},
{
- 1,
+ 0,
0
},
{
@@ -1779,7 +1779,7 @@ local chapter_board = {
0
},
{
- 1,
+ 0,
0
},
{
@@ -2677,7 +2677,7 @@ local chapter_board = {
0
},
{
- 1,
+ 0,
0
},
{
@@ -2693,7 +2693,7 @@ local chapter_board = {
0
},
{
- 1,
+ 0,
0
},
{
@@ -2705,7 +2705,7 @@ local chapter_board = {
0
},
{
- 1,
+ 0,
0
},
{
@@ -2721,7 +2721,7 @@ local chapter_board = {
0
},
{
- 1,
+ 0,
0
},
{
@@ -2733,7 +2733,7 @@ local chapter_board = {
0
},
{
- 1,
+ 0,
0
},
{
@@ -2749,7 +2749,7 @@ local chapter_board = {
0
},
{
- 1,
+ 0,
0
},
{
@@ -2761,23 +2761,23 @@ local chapter_board = {
0
},
{
- 1,
+ 0,
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 0,
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 0,
0
},
{
@@ -2875,7 +2875,7 @@ local chapter_board = {
0
},
{
- 1,
+ 0,
0
},
{
@@ -2891,7 +2891,7 @@ local chapter_board = {
0
},
{
- 1,
+ 0,
0
},
{
@@ -2903,7 +2903,7 @@ local chapter_board = {
0
},
{
- 1,
+ 0,
0
},
{
@@ -2919,7 +2919,7 @@ local chapter_board = {
0
},
{
- 1,
+ 0,
0
},
{
@@ -2931,7 +2931,7 @@ local chapter_board = {
0
},
{
- 1,
+ 0,
0
},
{
@@ -2947,7 +2947,7 @@ local chapter_board = {
0
},
{
- 1,
+ 0,
0
},
{
@@ -2959,23 +2959,23 @@ local chapter_board = {
0
},
{
- 1,
+ 0,
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 0,
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 0,
0
},
{
@@ -3079,15 +3079,15 @@ local chapter_board = {
1
},
{
- 3,
+ 2,
2
},
{
- 3,
+ 2,
3
},
{
- 3,
+ 2,
4
},
{
@@ -3163,7 +3163,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -3171,7 +3171,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -3187,7 +3187,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -3203,7 +3203,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -3277,15 +3277,15 @@ local chapter_board = {
1
},
{
- 3,
+ 2,
2
},
{
- 3,
+ 2,
3
},
{
- 3,
+ 2,
4
},
{
@@ -3361,7 +3361,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -3369,7 +3369,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -3385,7 +3385,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -3401,7 +3401,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -3417,7 +3417,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -3426,14 +3426,14 @@ local chapter_board = {
},
{
0,
- 3
+ 2
},
{
0,
- 3
+ 1
},
{
- 3,
+ 2,
0
},
{
@@ -3462,7 +3462,7 @@ local chapter_board = {
},
{
4,
- 3
+ 1
},
{
1,
@@ -3474,7 +3474,7 @@ local chapter_board = {
},
{
4,
- 3
+ 2
},
{
4,
@@ -3486,7 +3486,7 @@ local chapter_board = {
},
{
4,
- 1
+ 3
},
{
4,
@@ -3525,7 +3525,7 @@ local chapter_board = {
0
},
{
- 1,
+ 2,
0
},
{
@@ -3533,15 +3533,7 @@ local chapter_board = {
0
},
{
- 3,
- 0
- },
- {
- 1,
- 0
- },
- {
- 3,
+ 2,
0
},
{
@@ -3549,63 +3541,71 @@ local chapter_board = {
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 2,
0
},
{
- 3,
+ 2,
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 2,
0
},
{
- 3,
+ 2,
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
0
}
}
@@ -4015,8 +4015,8 @@ local chapter_board = {
0
},
{
- 1,
- 0
+ 0,
+ 3
},
{
0,
@@ -4028,11 +4028,11 @@ local chapter_board = {
},
{
0,
- 2
+ 3
},
{
- 1,
- 0
+ 0,
+ 3
},
{
1,
@@ -4056,7 +4056,7 @@ local chapter_board = {
},
{
0,
- 3
+ 2
},
{
0,
@@ -4072,11 +4072,7 @@ local chapter_board = {
},
{
4,
- 4
- },
- {
- 4,
- 2
+ 3
},
{
4,
@@ -4084,11 +4080,15 @@ local chapter_board = {
},
{
4,
- 2
+ 4
},
{
4,
- 2
+ 4
+ },
+ {
+ 4,
+ 3
},
{
1,
@@ -4136,15 +4136,15 @@ local chapter_board = {
},
{
5,
- 3
+ 2
},
{
5,
- 3
+ 4
},
{
5,
- 3
+ 2
},
{
2,
@@ -4218,21 +4218,21 @@ local chapter_board = {
0,
3
},
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
{
0,
1
},
{
0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
+ 1
},
{
0,
@@ -4254,14 +4254,6 @@ local chapter_board = {
0,
1
},
- {
- 5,
- 1
- },
- {
- 5,
- 1
- },
{
5,
3
@@ -4276,7 +4268,15 @@ local chapter_board = {
},
{
5,
- 1
+ 5
+ },
+ {
+ 5,
+ 5
+ },
+ {
+ 5,
+ 5
},
{
2,
@@ -4284,7 +4284,7 @@ local chapter_board = {
},
{
5,
- 2
+ 3
},
{
3,
@@ -4304,7 +4304,7 @@ local chapter_board = {
},
{
5,
- 1
+ 5
},
{
2,
@@ -4312,7 +4312,7 @@ local chapter_board = {
},
{
5,
- 2
+ 3
},
{
5,
@@ -4332,7 +4332,7 @@ local chapter_board = {
},
{
5,
- 1
+ 5
},
{
5,
@@ -4351,15 +4351,15 @@ local chapter_board = {
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 2,
0
},
{
@@ -4379,15 +4379,15 @@ local chapter_board = {
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 2,
0
},
{
@@ -4416,21 +4416,21 @@ local chapter_board = {
0,
3
},
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
{
0,
1
},
{
0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
+ 1
},
{
0,
@@ -4452,14 +4452,6 @@ local chapter_board = {
0,
1
},
- {
- 5,
- 1
- },
- {
- 5,
- 1
- },
{
5,
3
@@ -4474,7 +4466,15 @@ local chapter_board = {
},
{
5,
- 1
+ 5
+ },
+ {
+ 5,
+ 5
+ },
+ {
+ 5,
+ 5
},
{
2,
@@ -4482,7 +4482,7 @@ local chapter_board = {
},
{
5,
- 2
+ 3
},
{
3,
@@ -4502,7 +4502,7 @@ local chapter_board = {
},
{
5,
- 1
+ 5
},
{
2,
@@ -4510,7 +4510,7 @@ local chapter_board = {
},
{
5,
- 2
+ 3
},
{
5,
@@ -4530,7 +4530,7 @@ local chapter_board = {
},
{
5,
- 1
+ 5
},
{
5,
@@ -4549,15 +4549,15 @@ local chapter_board = {
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 2,
0
},
{
@@ -4577,15 +4577,15 @@ local chapter_board = {
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 2,
0
},
{
@@ -4613,7 +4613,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -4629,7 +4629,7 @@ local chapter_board = {
4
},
{
- 3,
+ 2,
0
},
{
@@ -4641,7 +4641,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -4657,7 +4657,7 @@ local chapter_board = {
3
},
{
- 3,
+ 2,
0
},
{
@@ -4669,11 +4669,11 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
- 3,
+ 2,
0
},
{
@@ -4681,11 +4681,11 @@ local chapter_board = {
2
},
{
- 3,
+ 2,
0
},
{
- 3,
+ 2,
0
},
{
@@ -4781,24 +4781,24 @@ local chapter_board = {
0
},
{
- 1,
- 0
+ 5,
+ 2
},
{
- 1,
- 0
+ 5,
+ 2
},
{
- 1,
- 0
+ 5,
+ 1
},
{
- 1,
- 0
+ 5,
+ 3
},
{
- 1,
- 0
+ 5,
+ 3
},
{
1,
@@ -4826,7 +4826,7 @@ local chapter_board = {
},
{
0,
- 3
+ 1
},
{
0,
@@ -5412,7 +5412,7 @@ local chapter_board = {
},
{
0,
- 4
+ 3
},
{
0,
@@ -5440,7 +5440,7 @@ local chapter_board = {
},
{
0,
- 4
+ 3
},
{
0,
@@ -5452,11 +5452,11 @@ local chapter_board = {
},
{
0,
- 3
+ 4
},
{
0,
- 3
+ 4
},
{
1,
@@ -5474,18 +5474,18 @@ local chapter_board = {
0,
5
},
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
{
0,
4
},
- {
- 0,
- 2
- },
- {
- 0,
- 1
- },
{
1,
0
@@ -5503,7 +5503,7 @@ local chapter_board = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -5632,7 +5632,7 @@ local chapter_board = {
},
{
0,
- 1
+ 4
},
{
1,
@@ -5640,11 +5640,11 @@ local chapter_board = {
},
{
5,
- 1
+ 2
},
{
- 2,
- 0
+ 0,
+ 3
},
{
0,
@@ -5659,19 +5659,11 @@ local chapter_board = {
3
},
{
- 0,
- 1
- },
- {
- 3,
+ 1,
0
},
{
- 5,
- 1
- },
- {
- 2,
+ 3,
0
},
{
@@ -5683,7 +5675,15 @@ local chapter_board = {
0
},
{
- 3,
+ 5,
+ 1
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -5694,14 +5694,6 @@ local chapter_board = {
3,
0
},
- {
- 5,
- 1
- },
- {
- 2,
- 0
- },
{
5,
2
@@ -5710,29 +5702,9 @@ local chapter_board = {
2,
0
},
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 3,
- 0
- },
{
5,
- 4
- },
- {
- 2,
- 0
- },
- {
- 5,
- 5
+ 1
},
{
2,
@@ -5752,7 +5724,35 @@ local chapter_board = {
},
{
5,
- 4
+ 2
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 5,
+ 1
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 1,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 5,
+ 2
},
{
14,
@@ -5760,14 +5760,14 @@ local chapter_board = {
},
{
5,
- 5
+ 1
},
{
2,
0
},
{
- 3,
+ 2,
0
},
{
@@ -5779,8 +5779,8 @@ local chapter_board = {
0
},
{
- 1,
- 0
+ 5,
+ 2
},
{
3,
@@ -5795,7 +5795,7 @@ local chapter_board = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -5830,7 +5830,7 @@ local chapter_board = {
},
{
0,
- 1
+ 4
},
{
1,
@@ -5838,11 +5838,11 @@ local chapter_board = {
},
{
5,
- 1
+ 2
},
{
- 2,
- 0
+ 0,
+ 3
},
{
0,
@@ -5857,19 +5857,11 @@ local chapter_board = {
3
},
{
- 0,
- 1
- },
- {
- 3,
+ 1,
0
},
{
- 5,
- 1
- },
- {
- 2,
+ 3,
0
},
{
@@ -5881,7 +5873,15 @@ local chapter_board = {
0
},
{
- 3,
+ 5,
+ 1
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -5892,14 +5892,6 @@ local chapter_board = {
3,
0
},
- {
- 5,
- 1
- },
- {
- 2,
- 0
- },
{
5,
2
@@ -5908,29 +5900,9 @@ local chapter_board = {
2,
0
},
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 3,
- 0
- },
{
5,
- 4
- },
- {
- 2,
- 0
- },
- {
- 5,
- 5
+ 1
},
{
2,
@@ -5950,7 +5922,35 @@ local chapter_board = {
},
{
5,
- 4
+ 2
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 5,
+ 1
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 1,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 5,
+ 2
},
{
17,
@@ -5958,14 +5958,14 @@ local chapter_board = {
},
{
5,
- 5
+ 1
},
{
2,
0
},
{
- 3,
+ 2,
0
},
{
@@ -5977,8 +5977,8 @@ local chapter_board = {
0
},
{
- 1,
- 0
+ 5,
+ 2
},
{
3,
@@ -5993,7 +5993,7 @@ local chapter_board = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -6210,11 +6210,11 @@ local chapter_board = {
},
{
0,
- 3
+ 4
},
{
0,
- 4
+ 3
},
{
0,
@@ -6254,7 +6254,7 @@ local chapter_board = {
},
{
0,
- 3
+ 2
},
{
1,
@@ -6292,18 +6292,6 @@ local chapter_board = {
2,
0
},
- {
- 4,
- 3
- },
- {
- 4,
- 2
- },
- {
- 4,
- 1
- },
{
4,
1
@@ -6317,27 +6305,15 @@ local chapter_board = {
0
},
{
- 0,
- 0
+ 4,
+ 5
},
{
- 3,
- 0
+ 4,
+ 5
},
{
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
+ 2,
0
},
{
@@ -6349,7 +6325,35 @@ local chapter_board = {
0
},
{
- 3,
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -6357,15 +6361,11 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
- 3,
- 0
- },
- {
- 3,
+ 2,
0
},
{
@@ -6408,11 +6408,11 @@ local chapter_board = {
},
{
0,
- 3
+ 4
},
{
0,
- 4
+ 3
},
{
0,
@@ -6452,7 +6452,7 @@ local chapter_board = {
},
{
0,
- 3
+ 2
},
{
1,
@@ -6490,18 +6490,6 @@ local chapter_board = {
2,
0
},
- {
- 4,
- 3
- },
- {
- 4,
- 2
- },
- {
- 4,
- 1
- },
{
4,
1
@@ -6515,27 +6503,15 @@ local chapter_board = {
0
},
{
- 0,
- 0
+ 4,
+ 5
},
{
- 3,
- 0
+ 4,
+ 5
},
{
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
+ 2,
0
},
{
@@ -6547,7 +6523,35 @@ local chapter_board = {
0
},
{
- 3,
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -6555,15 +6559,11 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
- 3,
- 0
- },
- {
- 3,
+ 2,
0
},
{
@@ -6623,7 +6623,7 @@ local chapter_board = {
0
},
{
- 1,
+ 2,
0
},
{
@@ -6651,7 +6651,7 @@ local chapter_board = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -6691,7 +6691,11 @@ local chapter_board = {
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -6699,11 +6703,7 @@ local chapter_board = {
0
},
{
- 3,
- 0
- },
- {
- 3,
+ 2,
0
},
{
@@ -6719,7 +6719,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -6727,7 +6727,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -6751,7 +6751,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -6759,7 +6759,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -6783,7 +6783,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -6821,7 +6821,7 @@ local chapter_board = {
0
},
{
- 1,
+ 2,
0
},
{
@@ -6849,7 +6849,7 @@ local chapter_board = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -6889,7 +6889,11 @@ local chapter_board = {
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -6897,11 +6901,7 @@ local chapter_board = {
0
},
{
- 3,
- 0
- },
- {
- 3,
+ 2,
0
},
{
@@ -6917,7 +6917,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -6925,7 +6925,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -6949,7 +6949,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -6957,7 +6957,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -6981,7 +6981,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -7006,11 +7006,11 @@ local chapter_board = {
},
{
0,
- 1
+ 5
},
{
0,
- 1
+ 5
},
{
0,
@@ -7018,7 +7018,7 @@ local chapter_board = {
},
{
0,
- 3
+ 5
},
{
0,
@@ -7034,19 +7034,19 @@ local chapter_board = {
},
{
0,
- 1
+ 5
},
{
0,
2
},
{
- 3,
+ 2,
0
},
{
0,
- 3
+ 2
},
{
0,
@@ -7057,7 +7057,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -7065,7 +7065,7 @@ local chapter_board = {
2
},
{
- 3,
+ 2,
0
},
{
@@ -7073,23 +7073,23 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
0,
- 5
+ 2
},
{
- 3,
+ 2,
0
},
{
- 3,
+ 2,
0
},
{
- 3,
+ 2,
0
},
{
@@ -7105,11 +7105,11 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
- 3,
+ 2,
0
},
{
@@ -7153,7 +7153,7 @@ local chapter_board = {
4
},
{
- 3,
+ 2,
0
},
{
@@ -7181,7 +7181,7 @@ local chapter_board = {
3
},
{
- 3,
+ 2,
0
},
{
@@ -7206,7 +7206,7 @@ local chapter_board = {
},
{
0,
- 2
+ 3
},
{
0,
@@ -7405,7 +7405,7 @@ local chapter_board = {
0
},
{
- 4,
+ 0,
2
},
{
@@ -7421,7 +7421,7 @@ local chapter_board = {
4
},
{
- 4,
+ 0,
2
},
{
@@ -7470,7 +7470,7 @@ local chapter_board = {
},
{
0,
- 2
+ 1
},
{
3,
@@ -7502,7 +7502,7 @@ local chapter_board = {
},
{
0,
- 5
+ 1
},
{
3,
@@ -7522,20 +7522,20 @@ local chapter_board = {
},
{
4,
- 2
- },
- {
- 4,
- 3
- },
- {
- 4,
- 4
+ 5
},
{
4,
5
},
+ {
+ 4,
+ 5
+ },
+ {
+ 4,
+ 1
+ },
{
3,
0
@@ -7603,7 +7603,7 @@ local chapter_board = {
0
},
{
- 4,
+ 0,
2
},
{
@@ -7619,7 +7619,7 @@ local chapter_board = {
4
},
{
- 4,
+ 0,
2
},
{
@@ -7668,7 +7668,7 @@ local chapter_board = {
},
{
0,
- 2
+ 1
},
{
3,
@@ -7700,7 +7700,7 @@ local chapter_board = {
},
{
0,
- 5
+ 1
},
{
3,
@@ -7720,20 +7720,20 @@ local chapter_board = {
},
{
4,
- 2
- },
- {
- 4,
- 3
- },
- {
- 4,
- 4
+ 5
},
{
4,
5
},
+ {
+ 4,
+ 5
+ },
+ {
+ 4,
+ 1
+ },
{
3,
0
@@ -7804,7 +7804,7 @@ local chapter_board = {
},
{
0,
- 4
+ 2
},
{
0,
@@ -7820,7 +7820,7 @@ local chapter_board = {
},
{
0,
- 2
+ 4
},
{
1,
@@ -7860,7 +7860,7 @@ local chapter_board = {
},
{
0,
- 4
+ 2
},
{
4,
@@ -7876,14 +7876,14 @@ local chapter_board = {
},
{
0,
- 2
+ 4
},
{
1,
0
},
{
- 3,
+ 2,
0
},
{
@@ -7896,7 +7896,7 @@ local chapter_board = {
},
{
4,
- 1
+ 3
},
{
3,
@@ -7907,7 +7907,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -7967,15 +7967,11 @@ local chapter_board = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
- 0
- },
- {
- 1,
+ 2,
0
},
{
@@ -7983,15 +7979,19 @@ local chapter_board = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 2,
+ 0
+ },
+ {
+ 3,
0
}
}
@@ -8004,11 +8004,11 @@ local chapter_board = {
},
{
0,
- 5
+ 1
},
{
0,
- 4
+ 2
},
{
0,
@@ -8016,11 +8016,11 @@ local chapter_board = {
},
{
0,
- 1
+ 4
},
{
0,
- 1
+ 5
},
{
1,
@@ -8119,7 +8119,7 @@ local chapter_board = {
0
},
{
- 1,
+ 2,
0
},
{
@@ -8127,7 +8127,7 @@ local chapter_board = {
0
},
{
- 1,
+ 2,
0
},
{
@@ -8175,15 +8175,15 @@ local chapter_board = {
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 2,
0
},
{
@@ -8202,11 +8202,11 @@ local chapter_board = {
},
{
0,
- 5
+ 1
},
{
0,
- 4
+ 2
},
{
0,
@@ -8214,11 +8214,11 @@ local chapter_board = {
},
{
0,
- 1
+ 4
},
{
0,
- 1
+ 5
},
{
1,
@@ -8317,7 +8317,7 @@ local chapter_board = {
0
},
{
- 1,
+ 2,
0
},
{
@@ -8325,7 +8325,7 @@ local chapter_board = {
0
},
{
- 1,
+ 2,
0
},
{
@@ -8373,15 +8373,15 @@ local chapter_board = {
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 2,
0
},
{
@@ -8406,7 +8406,7 @@ local chapter_board = {
},
{
0,
- 3
+ 4
},
{
0,
@@ -8414,7 +8414,7 @@ local chapter_board = {
},
{
0,
- 2
+ 4
},
{
1,
@@ -8442,7 +8442,7 @@ local chapter_board = {
},
{
0,
- 4
+ 3
},
{
4,
@@ -8470,7 +8470,7 @@ local chapter_board = {
},
{
4,
- 4
+ 2
},
{
3,
@@ -8604,7 +8604,7 @@ local chapter_board = {
},
{
0,
- 3
+ 4
},
{
0,
@@ -8612,7 +8612,7 @@ local chapter_board = {
},
{
0,
- 2
+ 4
},
{
1,
@@ -8640,7 +8640,7 @@ local chapter_board = {
},
{
0,
- 4
+ 3
},
{
4,
@@ -8668,7 +8668,7 @@ local chapter_board = {
},
{
4,
- 4
+ 2
},
{
3,
@@ -8808,7 +8808,7 @@ local chapter_board = {
},
{
0,
- 2
+ 3
},
{
4,
@@ -8840,7 +8840,7 @@ local chapter_board = {
},
{
4,
- 4
+ 2
},
{
9,
@@ -8860,7 +8860,7 @@ local chapter_board = {
},
{
4,
- 2
+ 1
},
{
0,
@@ -8868,7 +8868,7 @@ local chapter_board = {
},
{
4,
- 4
+ 2
},
{
7,
@@ -8888,7 +8888,7 @@ local chapter_board = {
},
{
4,
- 2
+ 1
},
{
4,
@@ -8971,15 +8971,15 @@ local chapter_board = {
0
},
{
- 1,
+ 0,
0
},
{
- 1,
+ 0,
0
},
{
- 1,
+ 0,
0
},
{
@@ -9012,15 +9012,15 @@ local chapter_board = {
},
{
0,
- 2
+ 1
},
{
0,
- 2
+ 1
},
{
0,
- 2
+ 1
},
{
1,
@@ -9210,15 +9210,15 @@ local chapter_board = {
},
{
0,
- 2
+ 1
},
{
0,
- 2
+ 1
},
{
0,
- 2
+ 1
},
{
1,
@@ -9392,42 +9392,6 @@ local chapter_board = {
},
[34]={
["board"]={
- {
- 1,
- 0
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 1,
- 0
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 1,
- 0
- },
- {
- 0,
- 1
- },
- {
- 3,
- 0
- },
{
3,
0
@@ -9437,8 +9401,8 @@ local chapter_board = {
1
},
{
- 3,
- 0
+ 0,
+ 1
},
{
3,
@@ -9457,19 +9421,27 @@ local chapter_board = {
0
},
{
- 3,
+ 0,
+ 1
+ },
+ {
+ 2,
0
},
{
- 7,
+ 2,
0
},
{
- 3,
+ 0,
+ 1
+ },
+ {
+ 2,
0
},
{
- 3,
+ 2,
0
},
{
@@ -9481,11 +9453,39 @@ local chapter_board = {
1
},
{
- 3,
+ 2,
0
},
{
- 7,
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -9493,7 +9493,47 @@ local chapter_board = {
0
},
{
- 7,
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 1,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 1,
+ 0
+ },
+ {
+ 1,
0
},
{
@@ -9505,7 +9545,7 @@ local chapter_board = {
1
},
{
- 1,
+ 2,
0
},
{
@@ -9517,7 +9557,15 @@ local chapter_board = {
0
},
{
- 7,
+ 1,
+ 0
+ },
+ {
+ 1,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -9528,60 +9576,12 @@ local chapter_board = {
0,
1
},
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 1
- },
{
3,
0
},
{
- 0,
- 1
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 1
- },
- {
- 1,
- 0
- },
- {
- 1,
+ 3,
0
},
{
@@ -9749,11 +9749,11 @@ local chapter_board = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -9773,11 +9773,11 @@ local chapter_board = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -9947,11 +9947,11 @@ local chapter_board = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -9971,11 +9971,11 @@ local chapter_board = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -10023,7 +10023,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -10031,15 +10031,15 @@ local chapter_board = {
4
},
{
- 0,
- 4
+ 2,
+ 0
},
{
0,
4
},
{
- 3,
+ 2,
0
},
{
@@ -10056,7 +10056,7 @@ local chapter_board = {
},
{
0,
- 3
+ 4
},
{
0,
@@ -10079,7 +10079,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -10087,7 +10087,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -10095,7 +10095,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -10111,7 +10111,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -10119,7 +10119,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -10195,7 +10195,7 @@ local chapter_board = {
0
},
{
- 1,
+ 2,
0
},
{
@@ -10211,7 +10211,7 @@ local chapter_board = {
3
},
{
- 1,
+ 2,
0
},
{
@@ -10231,7 +10231,7 @@ local chapter_board = {
5
},
{
- 5,
+ 0,
5
},
{
@@ -10255,7 +10255,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -10263,7 +10263,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -10283,15 +10283,15 @@ local chapter_board = {
1
},
{
- 3,
+ 0,
0
},
{
- 3,
+ 2,
0
},
{
- 3,
+ 0,
0
},
{
@@ -10311,7 +10311,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -10319,7 +10319,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -10339,15 +10339,15 @@ local chapter_board = {
3
},
{
- 3,
+ 0,
0
},
{
- 3,
+ 2,
0
},
{
- 3,
+ 0,
0
},
{
@@ -10363,11 +10363,11 @@ local chapter_board = {
0
},
{
- 1,
+ 3,
0
},
{
- 3,
+ 2,
0
},
{
@@ -10375,11 +10375,11 @@ local chapter_board = {
2
},
{
- 3,
+ 2,
0
},
{
- 1,
+ 3,
0
},
{
@@ -10391,11 +10391,11 @@ local chapter_board = {
[38]={
["board"]={
{
- 1,
+ 7,
0
},
{
- 1,
+ 2,
0
},
{
@@ -10408,18 +10408,18 @@ local chapter_board = {
},
{
0,
- 4
+ 2
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 7,
0
},
{
- 1,
+ 7,
0
},
{
@@ -10443,11 +10443,11 @@ local chapter_board = {
3
},
{
- 1,
+ 7,
0
},
{
- 1,
+ 7,
0
},
{
@@ -10464,18 +10464,18 @@ local chapter_board = {
},
{
0,
- 5
+ 1
},
{
2,
0
},
{
- 1,
+ 7,
0
},
{
- 1,
+ 7,
0
},
{
@@ -10499,11 +10499,11 @@ local chapter_board = {
2
},
{
- 1,
+ 7,
0
},
{
- 1,
+ 7,
0
},
{
@@ -10527,11 +10527,11 @@ local chapter_board = {
0
},
{
- 1,
+ 7,
0
},
{
- 1,
+ 7,
0
},
{
@@ -10539,7 +10539,7 @@ local chapter_board = {
3
},
{
- 3,
+ 2,
0
},
{
@@ -10547,7 +10547,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -10555,15 +10555,15 @@ local chapter_board = {
5
},
{
- 1,
+ 7,
0
},
{
- 1,
+ 7,
0
},
{
- 1,
+ 2,
0
},
{
@@ -10579,21 +10579,21 @@ local chapter_board = {
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 7,
0
}
},
["mystery_box_board"]={
{
- 1,
+ 7,
0
},
{
- 1,
+ 2,
0
},
{
@@ -10606,18 +10606,18 @@ local chapter_board = {
},
{
0,
- 4
+ 2
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 7,
0
},
{
- 1,
+ 7,
0
},
{
@@ -10641,11 +10641,11 @@ local chapter_board = {
3
},
{
- 1,
+ 7,
0
},
{
- 1,
+ 7,
0
},
{
@@ -10662,18 +10662,18 @@ local chapter_board = {
},
{
0,
- 5
+ 1
},
{
2,
0
},
{
- 1,
+ 7,
0
},
{
- 1,
+ 7,
0
},
{
@@ -10697,11 +10697,11 @@ local chapter_board = {
2
},
{
- 1,
+ 7,
0
},
{
- 1,
+ 7,
0
},
{
@@ -10725,11 +10725,11 @@ local chapter_board = {
0
},
{
- 1,
+ 7,
0
},
{
- 1,
+ 7,
0
},
{
@@ -10737,7 +10737,7 @@ local chapter_board = {
3
},
{
- 3,
+ 2,
0
},
{
@@ -10745,7 +10745,7 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -10753,15 +10753,15 @@ local chapter_board = {
5
},
{
- 1,
+ 7,
0
},
{
- 1,
+ 7,
0
},
{
- 1,
+ 2,
0
},
{
@@ -10777,11 +10777,11 @@ local chapter_board = {
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 7,
0
}
}
@@ -10849,8 +10849,8 @@ local chapter_board = {
0
},
{
- 13,
- 1
+ 2,
+ 0
},
{
2,
@@ -10877,8 +10877,8 @@ local chapter_board = {
0
},
{
- 13,
- 2
+ 2,
+ 0
},
{
2,
@@ -10890,23 +10890,23 @@ local chapter_board = {
},
{
0,
- 1
+ 3
},
{
0,
- 1
+ 3
},
{
0,
- 1
+ 3
},
{
14,
0
},
{
- 13,
- 3
+ 2,
+ 0
},
{
2,
@@ -10933,8 +10933,8 @@ local chapter_board = {
0
},
{
- 13,
- 4
+ 2,
+ 0
},
{
2,
@@ -10988,74 +10988,74 @@ local chapter_board = {
},
[40]={
["board"]={
- {
- 0,
- 3
- },
- {
- 0,
- 4
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 3
- },
- {
- 3,
- 0
- },
- {
- 1,
- 0
- },
{
0,
5
},
- {
- 0,
- 3
- },
- {
- 0,
- 4
- },
- {
- 0,
- 1
- },
- {
- 0,
- 3
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
{
0,
2
},
{
0,
- 5
+ 1
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
},
{
0,
5
},
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 1
+ },
{
0,
4
@@ -11074,7 +11074,7 @@ local chapter_board = {
},
{
0,
- 2
+ 5
},
{
0,
@@ -11082,11 +11082,11 @@ local chapter_board = {
},
{
0,
- 2
+ 1
},
{
- 1,
- 0
+ 0,
+ 4
},
{
0,
@@ -11100,10 +11100,6 @@ local chapter_board = {
3,
0
},
- {
- 3,
- 0
- },
{
2,
0
@@ -11121,7 +11117,11 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -11132,38 +11132,14 @@ local chapter_board = {
1,
0
},
+ {
+ 13,
+ 2
+ },
{
13,
1
},
- {
- 13,
- 2
- },
- {
- 13,
- 3
- },
- {
- 13,
- 4
- },
- {
- 13,
- 5
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 13,
- 5
- },
{
13,
4
@@ -11172,6 +11148,18 @@ local chapter_board = {
13,
3
},
+ {
+ 2,
+ 0
+ },
+ {
+ 1,
+ 0
+ },
+ {
+ 1,
+ 0
+ },
{
13,
2
@@ -11180,79 +11168,35 @@ local chapter_board = {
13,
1
},
+ {
+ 13,
+ 4
+ },
+ {
+ 13,
+ 3
+ },
+ {
+ 2,
+ 0
+ },
{
1,
0
}
},
["mystery_box_board"]={
- {
- 0,
- 3
- },
- {
- 0,
- 4
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 3
- },
- {
- 3,
- 0
- },
- {
- 1,
- 0
- },
{
0,
5
},
- {
- 0,
- 3
- },
- {
- 0,
- 4
- },
- {
- 0,
- 1
- },
- {
- 0,
- 3
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
{
0,
2
},
{
0,
- 5
- },
- {
- 0,
- 5
+ 1
},
{
0,
@@ -11267,12 +11211,12 @@ local chapter_board = {
0
},
{
- 14,
+ 3,
0
},
{
0,
- 2
+ 5
},
{
0,
@@ -11280,11 +11224,11 @@ local chapter_board = {
},
{
0,
- 2
+ 1
},
{
- 1,
- 0
+ 0,
+ 4
},
{
0,
@@ -11299,28 +11243,24 @@ local chapter_board = {
0
},
{
- 3,
- 0
+ 0,
+ 5
},
{
- 2,
- 0
+ 0,
+ 2
},
{
- 2,
- 0
+ 0,
+ 1
},
{
- 2,
- 0
+ 0,
+ 4
},
{
- 2,
- 0
- },
- {
- 3,
- 0
+ 0,
+ 3
},
{
3,
@@ -11331,16 +11271,72 @@ local chapter_board = {
0
},
{
- 13,
+ 0,
+ 5
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
1
},
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 1,
+ 0
+ },
{
13,
2
},
{
13,
- 3
+ 1
},
{
13,
@@ -11348,7 +11344,11 @@ local chapter_board = {
},
{
13,
- 5
+ 3
+ },
+ {
+ 2,
+ 0
},
{
1,
@@ -11360,7 +11360,11 @@ local chapter_board = {
},
{
13,
- 5
+ 2
+ },
+ {
+ 13,
+ 1
},
{
13,
@@ -11371,12 +11375,8 @@ local chapter_board = {
3
},
{
- 13,
- 2
- },
- {
- 13,
- 1
+ 2,
+ 0
},
{
1,
@@ -11392,7 +11392,7 @@ local chapter_board = {
},
{
0,
- 4
+ 1
},
{
0,
@@ -11400,16 +11400,16 @@ local chapter_board = {
},
{
0,
- 4
- },
- {
- 0,
- 4
+ 1
},
{
0,
3
},
+ {
+ 0,
+ 1
+ },
{
1,
0
@@ -11428,7 +11428,7 @@ local chapter_board = {
},
{
0,
- 1
+ 3
},
{
0,
@@ -11478,70 +11478,6 @@ local chapter_board = {
2,
0
},
- {
- 13,
- 1
- },
- {
- 2,
- 0
- },
- {
- 13,
- 2
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 13,
- 3
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 13,
- 3
- },
- {
- 2,
- 0
- },
- {
- 13,
- 2
- },
- {
- 2,
- 0
- },
- {
- 13,
- 4
- },
- {
- 2,
- 0
- },
{
13,
5
@@ -11552,7 +11488,71 @@ local chapter_board = {
},
{
13,
- 4
+ 5
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 13,
+ 5
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 13,
+ 5
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 13,
+ 2
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 13,
+ 2
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 13,
+ 2
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 13,
+ 2
},
{
1,
@@ -11590,7 +11590,7 @@ local chapter_board = {
},
{
0,
- 4
+ 1
},
{
0,
@@ -11598,16 +11598,16 @@ local chapter_board = {
},
{
0,
- 4
- },
- {
- 0,
- 4
+ 1
},
{
0,
3
},
+ {
+ 0,
+ 1
+ },
{
1,
0
@@ -11626,7 +11626,7 @@ local chapter_board = {
},
{
0,
- 1
+ 3
},
{
0,
@@ -11676,70 +11676,6 @@ local chapter_board = {
2,
0
},
- {
- 13,
- 1
- },
- {
- 2,
- 0
- },
- {
- 13,
- 2
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 13,
- 3
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 13,
- 3
- },
- {
- 2,
- 0
- },
- {
- 13,
- 2
- },
- {
- 2,
- 0
- },
- {
- 13,
- 4
- },
- {
- 2,
- 0
- },
{
13,
5
@@ -11750,14 +11686,78 @@ local chapter_board = {
},
{
13,
- 4
+ 5
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 13,
+ 5
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 13,
+ 5
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 13,
+ 2
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 13,
+ 2
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 13,
+ 2
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 13,
+ 2
},
{
1,
0
},
{
- 14,
+ 2,
0
},
{
@@ -11773,7 +11773,7 @@ local chapter_board = {
0
},
{
- 14,
+ 2,
0
},
{
@@ -11845,23 +11845,23 @@ local chapter_board = {
0
},
{
- 3,
+ 2,
0
},
{
- 3,
+ 2,
0
},
{
- 3,
+ 2,
0
},
{
- 3,
+ 2,
0
},
{
- 3,
+ 2,
0
},
{
@@ -11957,23 +11957,23 @@ local chapter_board = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
diff --git a/lua/app/config/chapter_board_daily_challenge.lua b/lua/app/config/chapter_board_daily_challenge.lua
index 2bbc37e7..7305b572 100644
--- a/lua/app/config/chapter_board_daily_challenge.lua
+++ b/lua/app/config/chapter_board_daily_challenge.lua
@@ -2407,39 +2407,7 @@ local chapter_board_daily_challenge = {
},
{
0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 0,
- 2
- },
- {
- 0,
- 1
- },
- {
- 0,
- 3
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 1
- },
- {
- 0,
- 4
+ 5
},
{
0,
@@ -2451,60 +2419,8 @@ local chapter_board_daily_challenge = {
},
{
0,
- 3
- },
- {
- 1,
- 0
- },
- {
- 23,
- 2
- },
- {
- 23,
- 2
- },
- {
- 27,
1
},
- {
- 27,
- 2
- },
- {
- 27,
- 3
- },
- {
- 0,
- 4
- },
- {
- 1,
- 0
- },
- {
- 23,
- 2
- },
- {
- 23,
- 2
- },
- {
- 27,
- 4
- },
- {
- 26,
- 0
- },
- {
- 27,
- 4
- },
{
0,
5
@@ -2513,13 +2429,97 @@ local chapter_board_daily_challenge = {
1,
0
},
+ {
+ 1,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 1,
+ 0
+ },
+ {
+ 1,
+ 0
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 27,
+ 1
+ },
+ {
+ 27,
+ 2
+ },
+ {
+ 27,
+ 1
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 1,
+ 0
+ },
+ {
+ 1,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 27,
+ 4
+ },
{
14,
0
},
{
- 23,
- 3
+ 27,
+ 4
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 1,
+ 0
+ },
+ {
+ 1,
+ 0
+ },
+ {
+ 0,
+ 4
},
{
27,
@@ -2547,32 +2547,12 @@ local chapter_board_daily_challenge = {
},
{
23,
- 3
+ 4
},
{
23,
5
},
- {
- 23,
- 5
- },
- {
- 23,
- 1
- },
- {
- 23,
- 1
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
{
23,
3
@@ -2581,17 +2561,37 @@ local chapter_board_daily_challenge = {
23,
5
},
+ {
+ 23,
+ 4
+ },
+ {
+ 1,
+ 0
+ },
+ {
+ 1,
+ 0
+ },
+ {
+ 23,
+ 4
+ },
{
23,
5
},
{
23,
- 1
+ 3
},
{
23,
- 1
+ 5
+ },
+ {
+ 23,
+ 4
},
{
1,
@@ -2619,7 +2619,7 @@ local chapter_board_daily_challenge = {
},
{
0,
- 3
+ 1
},
{
1,
@@ -2651,7 +2651,7 @@ local chapter_board_daily_challenge = {
},
{
0,
- 3
+ 1
},
{
1,
@@ -2675,7 +2675,7 @@ local chapter_board_daily_challenge = {
},
{
27,
- 3
+ 1
},
{
0,
@@ -2703,7 +2703,7 @@ local chapter_board_daily_challenge = {
},
{
27,
- 4
+ 5
},
{
25,
@@ -2731,7 +2731,7 @@ local chapter_board_daily_challenge = {
},
{
27,
- 5
+ 4
},
{
0,
@@ -2751,7 +2751,7 @@ local chapter_board_daily_challenge = {
},
{
23,
- 2
+ 4
},
{
23,
@@ -2763,7 +2763,7 @@ local chapter_board_daily_challenge = {
},
{
23,
- 5
+ 1
},
{
1,
@@ -2779,7 +2779,7 @@ local chapter_board_daily_challenge = {
},
{
23,
- 1
+ 4
},
{
14,
@@ -2787,7 +2787,7 @@ local chapter_board_daily_challenge = {
},
{
23,
- 3
+ 4
},
{
1,
@@ -2866,16 +2866,16 @@ local chapter_board_daily_challenge = {
5
},
{
- 23,
+ 0,
3
},
{
- 23,
+ 0,
2
},
{
- 23,
- 1
+ 0,
+ 3
},
{
0,
@@ -2890,24 +2890,24 @@ local chapter_board_daily_challenge = {
0
},
{
- 0,
- 5
- },
- {
- 23,
- 4
- },
- {
- 26,
+ 25,
0
},
{
- 23,
- 2
+ 25,
+ 0
},
{
- 0,
- 5
+ 25,
+ 0
+ },
+ {
+ 25,
+ 0
+ },
+ {
+ 25,
+ 0
},
{
1,
@@ -2919,15 +2919,7 @@ local chapter_board_daily_challenge = {
},
{
23,
- 4
- },
- {
- 23,
- 5
- },
- {
- 23,
- 4
+ 3
},
{
23,
@@ -2935,51 +2927,59 @@ local chapter_board_daily_challenge = {
},
{
23,
- 2
+ 3
+ },
+ {
+ 23,
+ 3
+ },
+ {
+ 23,
+ 3
+ },
+ {
+ 23,
+ 3
},
{
23,
1
},
+ {
+ 26,
+ 0
+ },
{
23,
- 2
+ 1
},
{
26,
0
},
+ {
+ 23,
+ 1
+ },
+ {
+ 26,
+ 0
+ },
+ {
+ 23,
+ 1
+ },
{
23,
4
},
{
- 26,
- 0
+ 23,
+ 4
},
{
23,
- 2
- },
- {
- 26,
- 0
- },
- {
- 23,
- 2
- },
- {
- 23,
- 1
- },
- {
- 23,
- 2
- },
- {
- 23,
- 3
+ 4
},
{
14,
@@ -2987,7 +2987,7 @@ local chapter_board_daily_challenge = {
},
{
23,
- 1
+ 4
},
{
23,
@@ -2995,16 +2995,12 @@ local chapter_board_daily_challenge = {
},
{
23,
- 3
+ 4
}
}
},
[16]={
["board_daily_challenge"]={
- {
- 1,
- 0
- },
{
1,
0
@@ -3013,33 +3009,9 @@ local chapter_board_daily_challenge = {
0,
3
},
- {
- 24,
- 0
- },
- {
- 24,
- 0
- },
{
0,
- 2
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 4
+ 5
},
{
0,
@@ -3069,6 +3041,30 @@ local chapter_board_daily_challenge = {
0,
4
},
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 1,
+ 0
+ },
+ {
+ 1,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
{
0,
4
@@ -3079,14 +3075,18 @@ local chapter_board_daily_challenge = {
},
{
0,
- 5
+ 4
},
{
0,
- 5
+ 1
},
{
- 23,
+ 1,
+ 0
+ },
+ {
+ 0,
1
},
{
@@ -3094,7 +3094,7 @@ local chapter_board_daily_challenge = {
0
},
{
- 23,
+ 0,
3
},
{
@@ -3102,15 +3102,15 @@ local chapter_board_daily_challenge = {
4
},
{
- 23,
- 5
+ 0,
+ 1
},
{
24,
0
},
{
- 23,
+ 0,
3
},
{
@@ -3194,8 +3194,8 @@ local chapter_board_daily_challenge = {
0
},
{
- 23,
- 3
+ 1,
+ 0
}
}
},
@@ -3223,7 +3223,7 @@ local chapter_board_daily_challenge = {
},
{
0,
- 4
+ 1
},
{
1,
@@ -3279,7 +3279,7 @@ local chapter_board_daily_challenge = {
},
{
0,
- 5
+ 2
},
{
32,
@@ -3303,11 +3303,11 @@ local chapter_board_daily_challenge = {
},
{
4,
- 4
+ 2
},
{
4,
- 5
+ 1
},
{
1,
@@ -3395,7 +3395,7 @@ local chapter_board_daily_challenge = {
},
{
1,
- 0
+ 1
}
}
},
@@ -4122,15 +4122,15 @@ local chapter_board_daily_challenge = {
2
},
{
- 1,
+ 31,
0
},
{
- 1,
+ 31,
0
},
{
- 1,
+ 31,
0
},
{
@@ -4146,23 +4146,23 @@ local chapter_board_daily_challenge = {
1
},
{
- 1,
+ 31,
0
},
{
- 1,
+ 31,
0
},
{
- 1,
+ 31,
0
},
{
- 1,
+ 31,
0
},
{
- 1,
+ 31,
0
},
{
@@ -4170,31 +4170,31 @@ local chapter_board_daily_challenge = {
3
},
{
- 1,
+ 31,
0
},
{
- 1,
+ 31,
0
},
{
- 1,
+ 31,
0
},
{
- 1,
+ 31,
0
},
{
- 1,
+ 31,
0
},
{
- 1,
+ 31,
0
},
{
- 1,
+ 31,
0
}
}
@@ -4317,6 +4317,34 @@ local chapter_board_daily_challenge = {
1,
0
},
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 34,
+ 3
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 1,
+ 0
+ },
+ {
+ 1,
+ 0
+ },
{
34,
1
@@ -4325,14 +4353,14 @@ local chapter_board_daily_challenge = {
34,
2
},
+ {
+ 14,
+ 0
+ },
{
34,
3
},
- {
- 34,
- 4
- },
{
34,
5
@@ -4353,34 +4381,6 @@ local chapter_board_daily_challenge = {
1,
0
},
- {
- 14,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
{
1,
0
@@ -4499,7 +4499,7 @@ local chapter_board_daily_challenge = {
},
{
0,
- 2
+ 3
},
{
32,
@@ -4522,12 +4522,12 @@ local chapter_board_daily_challenge = {
0
},
{
- 0,
- 2
+ 32,
+ 0
},
{
- 0,
- 2
+ 32,
+ 0
},
{
32,
diff --git a/lua/app/config/chapter_daily_challenge.lua b/lua/app/config/chapter_daily_challenge.lua
index 8d1b14a4..62f228b6 100644
--- a/lua/app/config/chapter_daily_challenge.lua
+++ b/lua/app/config/chapter_daily_challenge.lua
@@ -55,6 +55,14 @@ local chapter_daily_challenge = {
["id_for_nothing"]="Ug==",
["num"]=1,
["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
}
},
["begin_buff_id"]={
@@ -276,6 +284,14 @@ local chapter_daily_challenge = {
["id_for_nothing"]="Ug==",
["num"]=1,
["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
}
},
["begin_buff_id"]={
@@ -497,6 +513,14 @@ local chapter_daily_challenge = {
["id_for_nothing"]="Ug==",
["num"]=1,
["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
}
},
["begin_buff_id"]={
@@ -718,6 +742,14 @@ local chapter_daily_challenge = {
["id_for_nothing"]="Ug==",
["num"]=1,
["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
}
},
["begin_buff_id"]={
@@ -939,6 +971,14 @@ local chapter_daily_challenge = {
["id_for_nothing"]="Ug==",
["num"]=1,
["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
}
},
["begin_buff_id"]={
@@ -1160,6 +1200,14 @@ local chapter_daily_challenge = {
["id_for_nothing"]="Ug==",
["num"]=1,
["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
}
},
["begin_buff_id"]={
@@ -1381,6 +1429,14 @@ local chapter_daily_challenge = {
["id_for_nothing"]="Ug==",
["num"]=1,
["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
}
},
["begin_buff_id"]={
diff --git a/lua/app/config/chapter_dungeon_armor.lua b/lua/app/config/chapter_dungeon_armor.lua
index 1854a126..9203a047 100644
--- a/lua/app/config/chapter_dungeon_armor.lua
+++ b/lua/app/config/chapter_dungeon_armor.lua
@@ -1793,14 +1793,6 @@ local chapter_dungeon_armor = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1007,
- ["id_for_nothing"]="VwhcBA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
@@ -1938,14 +1930,6 @@ local chapter_dungeon_armor = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1013,
- ["id_for_nothing"]="VwhdAA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
@@ -2083,14 +2067,6 @@ local chapter_dungeon_armor = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1019,
- ["id_for_nothing"]="VwhdCg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
@@ -2228,14 +2204,6 @@ local chapter_dungeon_armor = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1025,
- ["id_for_nothing"]="VwheBg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
@@ -2889,14 +2857,6 @@ local chapter_dungeon_armor = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1007,
- ["id_for_nothing"]="VwhcBA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
@@ -3028,14 +2988,6 @@ local chapter_dungeon_armor = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1013,
- ["id_for_nothing"]="VwhdAA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
@@ -3167,14 +3119,6 @@ local chapter_dungeon_armor = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1019,
- ["id_for_nothing"]="VwhdCg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
@@ -3306,14 +3250,6 @@ local chapter_dungeon_armor = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1025,
- ["id_for_nothing"]="VwheBg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
@@ -5021,14 +4957,6 @@ local chapter_dungeon_armor = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1008,
- ["id_for_nothing"]="VwhcCw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
@@ -5160,14 +5088,6 @@ local chapter_dungeon_armor = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1014,
- ["id_for_nothing"]="VwhdBw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
@@ -5299,14 +5219,6 @@ local chapter_dungeon_armor = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1020,
- ["id_for_nothing"]="VwheAw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
@@ -5438,14 +5350,6 @@ local chapter_dungeon_armor = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1026,
- ["id_for_nothing"]="VwheBQ==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
@@ -7153,14 +7057,6 @@ local chapter_dungeon_armor = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1009,
- ["id_for_nothing"]="VwhcCg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
@@ -7292,14 +7188,6 @@ local chapter_dungeon_armor = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1015,
- ["id_for_nothing"]="VwhdBg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
@@ -7431,14 +7319,6 @@ local chapter_dungeon_armor = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1021,
- ["id_for_nothing"]="VwheAg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
@@ -7570,14 +7450,6 @@ local chapter_dungeon_armor = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1027,
- ["id_for_nothing"]="VwheBA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
@@ -9285,14 +9157,6 @@ local chapter_dungeon_armor = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1010,
- ["id_for_nothing"]="VwhdAw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
@@ -9424,14 +9288,6 @@ local chapter_dungeon_armor = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1016,
- ["id_for_nothing"]="VwhdBQ==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
@@ -9563,14 +9419,6 @@ local chapter_dungeon_armor = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1022,
- ["id_for_nothing"]="VwheAQ==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
@@ -9702,14 +9550,6 @@ local chapter_dungeon_armor = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1028,
- ["id_for_nothing"]="VwheCw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
diff --git a/lua/app/config/chapter_dungeon_equip.lua b/lua/app/config/chapter_dungeon_equip.lua
index 8c741473..dd5e946f 100644
--- a/lua/app/config/chapter_dungeon_equip.lua
+++ b/lua/app/config/chapter_dungeon_equip.lua
@@ -30,6 +30,14 @@ local chapter_dungeon_equip = {
["id_for_nothing"]="Vw==",
["num"]=500,
["num_for_nothing"]="Uwhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
["rand_drop"]={
@@ -95,6 +103,14 @@ local chapter_dungeon_equip = {
["id_for_nothing"]="Vw==",
["num"]=500,
["num_for_nothing"]="Uwhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
["rand_drop"]={
@@ -160,6 +176,14 @@ local chapter_dungeon_equip = {
["id_for_nothing"]="Vw==",
["num"]=600,
["num_for_nothing"]="UAhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
["rand_drop"]={
@@ -239,6 +263,14 @@ local chapter_dungeon_equip = {
["id_for_nothing"]="Vw==",
["num"]=600,
["num_for_nothing"]="UAhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
["rand_drop"]={
@@ -318,6 +350,14 @@ local chapter_dungeon_equip = {
["id_for_nothing"]="Vw==",
["num"]=700,
["num_for_nothing"]="UQhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
["rand_drop"]={
@@ -397,6 +437,14 @@ local chapter_dungeon_equip = {
["id_for_nothing"]="Vw==",
["num"]=700,
["num_for_nothing"]="UQhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
["rand_drop"]={
@@ -431,14 +479,6 @@ local chapter_dungeon_equip = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1001,
- ["id_for_nothing"]="VwhcAg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
@@ -490,6 +530,14 @@ local chapter_dungeon_equip = {
["id_for_nothing"]="Vw==",
["num"]=800,
["num_for_nothing"]="Xghc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
["rand_drop"]={
@@ -524,14 +572,6 @@ local chapter_dungeon_equip = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1001,
- ["id_for_nothing"]="VwhcAg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
@@ -583,6 +623,14 @@ local chapter_dungeon_equip = {
["id_for_nothing"]="Vw==",
["num"]=800,
["num_for_nothing"]="Xghc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
["rand_drop"]={
@@ -662,6 +710,14 @@ local chapter_dungeon_equip = {
["id_for_nothing"]="Vw==",
["num"]=900,
["num_for_nothing"]="Xwhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
["rand_drop"]={
@@ -747,6 +803,14 @@ local chapter_dungeon_equip = {
["id_for_nothing"]="Vw==",
["num"]=900,
["num_for_nothing"]="Xwhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
["rand_drop"]={
@@ -781,14 +845,6 @@ local chapter_dungeon_equip = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1002,
- ["id_for_nothing"]="VwhcAQ==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
@@ -840,6 +896,14 @@ local chapter_dungeon_equip = {
["id_for_nothing"]="Vw==",
["num"]=1000,
["num_for_nothing"]="VwhcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
["rand_drop"]={
@@ -919,6 +983,14 @@ local chapter_dungeon_equip = {
["id_for_nothing"]="Vw==",
["num"]=1000,
["num_for_nothing"]="VwhcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
["rand_drop"]={
@@ -953,14 +1025,6 @@ local chapter_dungeon_equip = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1003,
- ["id_for_nothing"]="VwhcAA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
@@ -1012,6 +1076,14 @@ local chapter_dungeon_equip = {
["id_for_nothing"]="Vw==",
["num"]=1100,
["num_for_nothing"]="VwlcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
["rand_drop"]={
@@ -1046,14 +1118,6 @@ local chapter_dungeon_equip = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1003,
- ["id_for_nothing"]="VwhcAA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
@@ -1105,6 +1169,14 @@ local chapter_dungeon_equip = {
["id_for_nothing"]="Vw==",
["num"]=1100,
["num_for_nothing"]="VwlcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
["rand_drop"]={
@@ -1184,6 +1256,14 @@ local chapter_dungeon_equip = {
["id_for_nothing"]="Vw==",
["num"]=1200,
["num_for_nothing"]="VwpcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
["rand_drop"]={
@@ -1277,6 +1357,14 @@ local chapter_dungeon_equip = {
["id_for_nothing"]="Vw==",
["num"]=1200,
["num_for_nothing"]="VwpcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
["rand_drop"]={
@@ -1311,14 +1399,6 @@ local chapter_dungeon_equip = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1004,
- ["id_for_nothing"]="VwhcBw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
@@ -1370,6 +1450,14 @@ local chapter_dungeon_equip = {
["id_for_nothing"]="Vw==",
["num"]=1300,
["num_for_nothing"]="VwtcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
["rand_drop"]={
@@ -1404,14 +1492,6 @@ local chapter_dungeon_equip = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1004,
- ["id_for_nothing"]="VwhcBw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
@@ -1463,6 +1543,14 @@ local chapter_dungeon_equip = {
["id_for_nothing"]="Vw==",
["num"]=1300,
["num_for_nothing"]="VwtcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
["rand_drop"]={
@@ -1497,14 +1585,6 @@ local chapter_dungeon_equip = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1004,
- ["id_for_nothing"]="VwhcBw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
@@ -1556,6 +1636,14 @@ local chapter_dungeon_equip = {
["id_for_nothing"]="Vw==",
["num"]=1400,
["num_for_nothing"]="VwxcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
["rand_drop"]={
@@ -1590,14 +1678,6 @@ local chapter_dungeon_equip = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1004,
- ["id_for_nothing"]="VwhcBw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
@@ -1649,6 +1729,14 @@ local chapter_dungeon_equip = {
["id_for_nothing"]="Vw==",
["num"]=1400,
["num_for_nothing"]="VwxcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
["rand_drop"]={
@@ -1683,14 +1771,6 @@ local chapter_dungeon_equip = {
},
["bao_drop_num"]=2,
["item_show"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1004,
- ["id_for_nothing"]="VwhcBw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
{
["type"]=1,
["type_for_nothing"]="Vw==",
diff --git a/lua/app/config/chapter_dungeon_gold.lua b/lua/app/config/chapter_dungeon_gold.lua
index 9e25a2fc..29bbebf9 100644
--- a/lua/app/config/chapter_dungeon_gold.lua
+++ b/lua/app/config/chapter_dungeon_gold.lua
@@ -33,6 +33,14 @@ local chapter_dungeon_gold = {
["ratio"]=10000,
["round"]=999
}
+ },
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
[2]={
@@ -69,6 +77,14 @@ local chapter_dungeon_gold = {
["ratio"]=10000,
["round"]=999
}
+ },
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
[3]={
@@ -105,6 +121,14 @@ local chapter_dungeon_gold = {
["ratio"]=10000,
["round"]=999
}
+ },
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
[4]={
@@ -141,6 +165,14 @@ local chapter_dungeon_gold = {
["ratio"]=10000,
["round"]=999
}
+ },
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
[5]={
@@ -177,6 +209,14 @@ local chapter_dungeon_gold = {
["ratio"]=10000,
["round"]=999
}
+ },
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
[6]={
@@ -213,6 +253,14 @@ local chapter_dungeon_gold = {
["ratio"]=10000,
["round"]=999
}
+ },
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
[7]={
@@ -249,6 +297,14 @@ local chapter_dungeon_gold = {
["ratio"]=10000,
["round"]=999
}
+ },
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
[8]={
@@ -285,6 +341,14 @@ local chapter_dungeon_gold = {
["ratio"]=10000,
["round"]=999
}
+ },
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
[9]={
@@ -321,6 +385,14 @@ local chapter_dungeon_gold = {
["ratio"]=10000,
["round"]=999
}
+ },
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
[10]={
@@ -357,6 +429,14 @@ local chapter_dungeon_gold = {
["ratio"]=10000,
["round"]=999
}
+ },
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
[11]={
@@ -393,6 +473,14 @@ local chapter_dungeon_gold = {
["ratio"]=10000,
["round"]=999
}
+ },
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
[12]={
@@ -429,6 +517,14 @@ local chapter_dungeon_gold = {
["ratio"]=10000,
["round"]=999
}
+ },
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
[13]={
@@ -465,6 +561,14 @@ local chapter_dungeon_gold = {
["ratio"]=10000,
["round"]=999
}
+ },
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
[14]={
@@ -501,6 +605,14 @@ local chapter_dungeon_gold = {
["ratio"]=10000,
["round"]=999
}
+ },
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
[15]={
@@ -537,6 +649,14 @@ local chapter_dungeon_gold = {
["ratio"]=10000,
["round"]=999
}
+ },
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
}
}
diff --git a/lua/app/config/chapter_dungeon_shards.lua b/lua/app/config/chapter_dungeon_shards.lua
index f17ad20f..d2b5a073 100644
--- a/lua/app/config/chapter_dungeon_shards.lua
+++ b/lua/app/config/chapter_dungeon_shards.lua
@@ -362,7 +362,15 @@ local chapter_dungeon_shards = {
["weight"]=400
}
},
- ["times_d"]=3
+ ["times_d"]=3,
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
+ }
},
[2]={
["scene"]="bg_debris",
@@ -727,7 +735,15 @@ local chapter_dungeon_shards = {
["weight"]=500
}
},
- ["times_d"]=5
+ ["times_d"]=5,
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
+ }
},
[3]={
["scene"]="bg_debris",
@@ -1092,7 +1108,15 @@ local chapter_dungeon_shards = {
["weight"]=500
}
},
- ["times_d"]=2
+ ["times_d"]=2,
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
+ }
},
[4]={
["scene"]="bg_debris",
@@ -1457,7 +1481,15 @@ local chapter_dungeon_shards = {
["weight"]=500
}
},
- ["times_d"]=4
+ ["times_d"]=4,
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
+ }
},
[5]={
["scene"]="bg_debris",
@@ -1822,7 +1854,15 @@ local chapter_dungeon_shards = {
["weight"]=550
}
},
- ["times_d"]=6
+ ["times_d"]=6,
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
+ }
},
[6]={
["scene"]="bg_debris",
@@ -2187,7 +2227,15 @@ local chapter_dungeon_shards = {
["weight"]=600
}
},
- ["times_d"]=3
+ ["times_d"]=3,
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
+ }
},
[7]={
["scene"]="bg_debris",
@@ -2552,7 +2600,15 @@ local chapter_dungeon_shards = {
["weight"]=600
}
},
- ["times_d"]=5
+ ["times_d"]=5,
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
+ }
},
[8]={
["scene"]="bg_debris",
@@ -2977,7 +3033,15 @@ local chapter_dungeon_shards = {
["weight"]=5
}
},
- ["times_d"]=7
+ ["times_d"]=7,
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
+ }
},
[9]={
["scene"]="bg_debris",
@@ -3402,7 +3466,15 @@ local chapter_dungeon_shards = {
["weight"]=8
}
},
- ["times_d"]=4
+ ["times_d"]=4,
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
+ }
},
[10]={
["scene"]="bg_debris",
@@ -3827,7 +3899,15 @@ local chapter_dungeon_shards = {
["weight"]=10
}
},
- ["times_d"]=6
+ ["times_d"]=6,
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
+ }
},
[11]={
["scene"]="bg_debris",
@@ -4252,7 +4332,15 @@ local chapter_dungeon_shards = {
["weight"]=10
}
},
- ["times_d"]=8
+ ["times_d"]=8,
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
+ }
},
[12]={
["scene"]="bg_debris",
@@ -4677,7 +4765,15 @@ local chapter_dungeon_shards = {
["weight"]=20
}
},
- ["times_d"]=5
+ ["times_d"]=5,
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
+ }
},
[13]={
["scene"]="bg_debris",
@@ -5102,7 +5198,15 @@ local chapter_dungeon_shards = {
["weight"]=18
}
},
- ["times_d"]=7
+ ["times_d"]=7,
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
+ }
},
[14]={
["scene"]="bg_debris",
@@ -5527,7 +5631,15 @@ local chapter_dungeon_shards = {
["weight"]=35
}
},
- ["times_d"]=4
+ ["times_d"]=4,
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
+ }
},
[15]={
["scene"]="bg_debris",
@@ -5952,7 +6064,15 @@ local chapter_dungeon_shards = {
["weight"]=30
}
},
- ["times_d"]=6
+ ["times_d"]=6,
+ ["exp_reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=12,
+ ["id_for_nothing"]="Vwo=",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
+ }
}
}
local config = {
diff --git a/lua/app/config/grid_type.lua b/lua/app/config/grid_type.lua
index f085926f..0c669518 100644
--- a/lua/app/config/grid_type.lua
+++ b/lua/app/config/grid_type.lua
@@ -5,6 +5,7 @@ local grid_type = {
[1]={
["icon"]="battle_hinder_1",
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1
},
[2]={
@@ -16,6 +17,7 @@ local grid_type = {
},
["break_count"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1,
["break_sfx"]="sfx_piece_za_b01"
},
@@ -28,6 +30,7 @@ local grid_type = {
},
["break_count"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1,
["break_sfx"]="sfx_piece_za_b01"
},
@@ -39,6 +42,7 @@ local grid_type = {
3
},
["break_count"]=1,
+ ["cant_upset"]=1,
["break_sfx"]="sfx_piece_za_b03"
},
[5]={
@@ -51,6 +55,7 @@ local grid_type = {
["break_count"]=1,
["break_stay_element"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["break_sfx"]="sfx_piece_za_b02"
},
[6]={
@@ -68,6 +73,7 @@ local grid_type = {
},
["break_count"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1,
["break_sfx"]="sfx_piece_zhuqiantk_b01"
},
@@ -80,6 +86,7 @@ local grid_type = {
},
["break_count"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1,
["effect"]=1,
["effect_sfx"]="sfx_piece_huojian_b01",
@@ -98,6 +105,7 @@ local grid_type = {
},
["break_count"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1,
["effect"]=1,
["effect_sfx"]="sfx_piece_huojian_b01",
@@ -116,6 +124,7 @@ local grid_type = {
},
["break_count"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1,
["effect"]=1,
["effect_sfx"]="sfx_piece_huojian_b01",
@@ -134,6 +143,7 @@ local grid_type = {
},
["break_count"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1,
["effect"]=1,
["effect_sfx"]="sfx_piece_huojian_b01",
@@ -154,6 +164,7 @@ local grid_type = {
["break_stay_element"]=1,
["can_fall"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["break_sfx"]="sfx_piece_kucao_b01"
},
[13]={
@@ -167,6 +178,7 @@ local grid_type = {
["break_stay_element"]=1,
["can_fall"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1,
["break_sfx"]="sfx_piece_guodong_b01",
["effect"]=5,
@@ -185,6 +197,7 @@ local grid_type = {
["bftc_icon"]="battle_obstacle_lamp",
["bftc_time"]=0.4,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1,
["break_sfx"]="sfx_piece_shendeng_b01",
["effect"]=3,
@@ -206,6 +219,7 @@ local grid_type = {
["bftc_icon"]="battle_obstacle_chest_4",
["bftc_time"]=0.3,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1,
["break_sfx"]="sfx_piece_baoxiang_b01",
["effect"]=4,
@@ -224,6 +238,7 @@ local grid_type = {
["spine_change"]="idle1_1",
["break_count"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1
},
[17]={
@@ -239,6 +254,7 @@ local grid_type = {
["spine_change"]="idle1",
["break_count"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1
},
[18]={
@@ -250,6 +266,7 @@ local grid_type = {
},
["break_count"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1,
["break_sfx"]="sfx_piece_muzhuang_b01"
},
@@ -262,6 +279,7 @@ local grid_type = {
},
["break_count"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1,
["break_sfx"]="sfx_piece_muzhuang_b01"
},
@@ -274,6 +292,7 @@ local grid_type = {
},
["break_count"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1,
["break_sfx"]="sfx_piece_muzhuang_b01"
},
@@ -288,6 +307,7 @@ local grid_type = {
["break_stay_element"]=1,
["can_fall"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1,
["break_sfx"]="sfx_piece_shuipao_b01",
["effect"]=5,
@@ -305,6 +325,7 @@ local grid_type = {
["break_stay_element"]=1,
["can_fall"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1,
["break_sfx"]="sfx_piece_yuni_b01",
["effect"]=5,
@@ -322,6 +343,7 @@ local grid_type = {
["break_stay_element"]=1,
["can_fall"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1,
["break_sfx"]="sfx_piece_duwu_b01",
["effect"]=5,
@@ -337,6 +359,7 @@ local grid_type = {
},
["break_count"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1,
["break_sfx"]="sfx_piece_jitang_b01"
},
@@ -349,6 +372,7 @@ local grid_type = {
},
["break_count"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1,
["break_sfx"]="sfx_piece_jitang_b01"
},
@@ -361,6 +385,7 @@ local grid_type = {
},
["break_count"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1,
["break_sfx"]="sfx_piece_jitang_b01"
},
@@ -372,6 +397,7 @@ local grid_type = {
3
},
["break_count"]=1,
+ ["cant_upset"]=1,
["break_sfx"]="sfx_piece_fazhen_b01"
},
[28]={
@@ -383,6 +409,7 @@ local grid_type = {
},
["break_count"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1,
["break_sfx"]="sfx_piece_zhongrushi_b01"
},
@@ -395,6 +422,7 @@ local grid_type = {
},
["break_count"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1,
["break_sfx"]="sfx_piece_zhongrushi_b01"
},
@@ -407,6 +435,7 @@ local grid_type = {
},
["break_count"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1,
["break_sfx"]="sfx_piece_zhongrushi_b01"
},
@@ -419,6 +448,7 @@ local grid_type = {
},
["break_count"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1,
["break_sfx"]="sfx_piece_tiexie_b01"
},
@@ -431,6 +461,7 @@ local grid_type = {
},
["break_count"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1,
["break_sfx"]="sfx_piece_tiexie_b01"
},
@@ -443,6 +474,7 @@ local grid_type = {
},
["break_count"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1,
["break_sfx"]="sfx_piece_tiexie_b01"
},
@@ -457,6 +489,7 @@ local grid_type = {
["break_stay_element"]=1,
["can_fall"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1,
["break_sfx"]="sfx_piece_rongyan_b01",
["effect"]=5,
@@ -474,6 +507,7 @@ local grid_type = {
["break_stay_element"]=1,
["can_fall"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["break_sfx"]="sfx_piece_caocong_b01"
},
[36]={
@@ -484,6 +518,7 @@ local grid_type = {
["spine_idle"]="idle",
["can_fall"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1,
["break_sfx"]="sfx_piece_rongyan_b01",
["effect"]=6,
@@ -497,6 +532,7 @@ local grid_type = {
["spine_idle"]="idle",
["can_fall"]=1,
["cant_link"]=1,
+ ["cant_upset"]=1,
["element_invalid"]=1,
["break_sfx"]="sfx_piece_duwu_b01",
["effect"]=6,
diff --git a/lua/app/config/mall_daily.lua b/lua/app/config/mall_daily.lua
index 15eba596..06037913 100644
--- a/lua/app/config/mall_daily.lua
+++ b/lua/app/config/mall_daily.lua
@@ -1420,6 +1420,86 @@ local mall_daily = {
["id_for_nothing"]="UwtcA2c=",
["num"]=6,
["num_for_nothing"]="UA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=14001,
+ ["id_for_nothing"]="VwxcA2Q=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=14002,
+ ["id_for_nothing"]="VwxcA2c=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=24001,
+ ["id_for_nothing"]="VAxcA2Q=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=24002,
+ ["id_for_nothing"]="VAxcA2c=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=34001,
+ ["id_for_nothing"]="VQxcA2Q=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=34002,
+ ["id_for_nothing"]="VQxcA2c=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=44001,
+ ["id_for_nothing"]="UgxcA2Q=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=44002,
+ ["id_for_nothing"]="UgxcA2c=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=54001,
+ ["id_for_nothing"]="UwxcA2Q=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=54002,
+ ["id_for_nothing"]="UwxcA2c=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
}
},
["weight"]={
@@ -1467,7 +1547,17 @@ local mall_daily = {
5,
5,
5,
- 5
+ 5,
+ 32,
+ 32,
+ 32,
+ 32,
+ 32,
+ 32,
+ 32,
+ 32,
+ 32,
+ 32
},
["cost"]={
{
@@ -1829,6 +1919,86 @@ local mall_daily = {
["id_for_nothing"]="VA==",
["num"]=30,
["num_for_nothing"]="VQg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
}
}
},
@@ -2193,6 +2363,86 @@ local mall_daily = {
["id_for_nothing"]="UwtcA2c=",
["num"]=6,
["num_for_nothing"]="UA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=14001,
+ ["id_for_nothing"]="VwxcA2Q=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=14002,
+ ["id_for_nothing"]="VwxcA2c=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=24001,
+ ["id_for_nothing"]="VAxcA2Q=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=24002,
+ ["id_for_nothing"]="VAxcA2c=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=34001,
+ ["id_for_nothing"]="VQxcA2Q=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=34002,
+ ["id_for_nothing"]="VQxcA2c=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=44001,
+ ["id_for_nothing"]="UgxcA2Q=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=44002,
+ ["id_for_nothing"]="UgxcA2c=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=54001,
+ ["id_for_nothing"]="UwxcA2Q=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=54002,
+ ["id_for_nothing"]="UwxcA2c=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
}
},
["weight"]={
@@ -2240,7 +2490,17 @@ local mall_daily = {
5,
5,
5,
- 5
+ 5,
+ 32,
+ 32,
+ 32,
+ 32,
+ 32,
+ 32,
+ 32,
+ 32,
+ 32,
+ 32
},
["cost"]={
{
@@ -2602,6 +2862,86 @@ local mall_daily = {
["id_for_nothing"]="VA==",
["num"]=30,
["num_for_nothing"]="VQg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
}
}
},
@@ -2966,6 +3306,86 @@ local mall_daily = {
["id_for_nothing"]="UwtcA2c=",
["num"]=6,
["num_for_nothing"]="UA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=14001,
+ ["id_for_nothing"]="VwxcA2Q=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=14002,
+ ["id_for_nothing"]="VwxcA2c=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=24001,
+ ["id_for_nothing"]="VAxcA2Q=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=24002,
+ ["id_for_nothing"]="VAxcA2c=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=34001,
+ ["id_for_nothing"]="VQxcA2Q=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=34002,
+ ["id_for_nothing"]="VQxcA2c=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=44001,
+ ["id_for_nothing"]="UgxcA2Q=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=44002,
+ ["id_for_nothing"]="UgxcA2c=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=54001,
+ ["id_for_nothing"]="UwxcA2Q=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=54002,
+ ["id_for_nothing"]="UwxcA2c=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
}
},
["weight"]={
@@ -3013,7 +3433,17 @@ local mall_daily = {
5,
5,
5,
- 5
+ 5,
+ 32,
+ 32,
+ 32,
+ 32,
+ 32,
+ 32,
+ 32,
+ 32,
+ 32,
+ 32
},
["cost"]={
{
@@ -3375,6 +3805,86 @@ local mall_daily = {
["id_for_nothing"]="VA==",
["num"]=30,
["num_for_nothing"]="VQg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
}
}
}
diff --git a/lua/app/config/monster_chapter.lua b/lua/app/config/monster_chapter.lua
index 204ff255..3db99c9b 100644
--- a/lua/app/config/monster_chapter.lua
+++ b/lua/app/config/monster_chapter.lua
@@ -25,7 +25,7 @@ local monster_chapter = {
},
[301]={
["monster_base"]=10003,
- ["hp"]=36000000,
+ ["hp"]=33000000,
["atk"]=600000,
["atk_times"]=2,
["hurt_skill"]={
@@ -66,7 +66,7 @@ local monster_chapter = {
[601]={
["monster_base"]=10008,
["hp"]=24000000,
- ["atk"]=750000,
+ ["atk"]=600000,
["atk_times"]=2,
["hurt_skill"]={
20022,
@@ -78,7 +78,7 @@ local monster_chapter = {
[701]={
["monster_base"]=10004,
["hp"]=24000000,
- ["atk"]=750000,
+ ["atk"]=600000,
["atk_times"]=2,
["hurt_skill"]={
20010,
@@ -90,7 +90,7 @@ local monster_chapter = {
[801]={
["monster_base"]=10001,
["hp"]=30000000,
- ["atk"]=750000,
+ ["atk"]=600000,
["atk_times"]=2,
["hurt_skill"]={
20001,
@@ -102,7 +102,7 @@ local monster_chapter = {
[901]={
["monster_base"]=10007,
["hp"]=36000000,
- ["atk"]=840000,
+ ["atk"]=670000,
["atk_times"]=2,
["hurt_skill"]={
20019,
@@ -115,7 +115,7 @@ local monster_chapter = {
["monster_base"]=20014,
["is_boss"]=1,
["hp"]=60000000,
- ["atk"]=1020000,
+ ["atk"]=820000,
["atk_times"]=3,
["hurt_skill"]={
30040,
@@ -130,7 +130,7 @@ local monster_chapter = {
[1101]={
["monster_base"]=10006,
["hp"]=45000000,
- ["atk"]=900000,
+ ["atk"]=720000,
["atk_times"]=2,
["hurt_skill"]={
20016,
@@ -142,7 +142,7 @@ local monster_chapter = {
[1201]={
["monster_base"]=10007,
["hp"]=51000000,
- ["atk"]=930000,
+ ["atk"]=740000,
["atk_times"]=2,
["hurt_skill"]={
20019,
@@ -154,7 +154,7 @@ local monster_chapter = {
[1301]={
["monster_base"]=10002,
["hp"]=60000000,
- ["atk"]=960000,
+ ["atk"]=770000,
["atk_times"]=2,
["hurt_skill"]={
20004,
@@ -166,7 +166,7 @@ local monster_chapter = {
[1401]={
["monster_base"]=10005,
["hp"]=66000000,
- ["atk"]=990000,
+ ["atk"]=790000,
["atk_times"]=2,
["hurt_skill"]={
20013,
@@ -179,7 +179,7 @@ local monster_chapter = {
["monster_base"]=20015,
["is_boss"]=2,
["hp"]=108000000,
- ["atk"]=1140000,
+ ["atk"]=910000,
["atk_times"]=3,
["hurt_skill"]={
30043,
@@ -197,7 +197,7 @@ local monster_chapter = {
[1601]={
["monster_base"]=10009,
["hp"]=18000000,
- ["atk"]=750000,
+ ["atk"]=630000,
["atk_times"]=3,
["hurt_skill"]={
20025,
@@ -209,7 +209,7 @@ local monster_chapter = {
[1701]={
["monster_base"]=10001,
["hp"]=24000000,
- ["atk"]=750000,
+ ["atk"]=630000,
["atk_times"]=3,
["hurt_skill"]={
20001,
@@ -221,7 +221,7 @@ local monster_chapter = {
[1801]={
["monster_base"]=10038,
["hp"]=33000000,
- ["atk"]=750000,
+ ["atk"]=630000,
["atk_times"]=3,
["hurt_skill"]={
20109,
@@ -233,7 +233,7 @@ local monster_chapter = {
[1901]={
["monster_base"]=10007,
["hp"]=42000000,
- ["atk"]=840000,
+ ["atk"]=710000,
["atk_times"]=3,
["hurt_skill"]={
20019,
@@ -246,7 +246,7 @@ local monster_chapter = {
["monster_base"]=20004,
["is_boss"]=1,
["hp"]=60000000,
- ["atk"]=1020000,
+ ["atk"]=860000,
["atk_times"]=4,
["hurt_skill"]={
30010,
@@ -261,7 +261,7 @@ local monster_chapter = {
[2101]={
["monster_base"]=10038,
["hp"]=45000000,
- ["atk"]=900000,
+ ["atk"]=760000,
["atk_times"]=3,
["hurt_skill"]={
20109,
@@ -273,7 +273,7 @@ local monster_chapter = {
[2201]={
["monster_base"]=10007,
["hp"]=54000000,
- ["atk"]=930000,
+ ["atk"]=780000,
["atk_times"]=3,
["hurt_skill"]={
20019,
@@ -285,7 +285,7 @@ local monster_chapter = {
[2301]={
["monster_base"]=10010,
["hp"]=60000000,
- ["atk"]=960000,
+ ["atk"]=810000,
["atk_times"]=3,
["hurt_skill"]={
20028,
@@ -297,7 +297,7 @@ local monster_chapter = {
[2401]={
["monster_base"]=10001,
["hp"]=66000000,
- ["atk"]=1020000,
+ ["atk"]=860000,
["atk_times"]=3,
["hurt_skill"]={
20001,
@@ -310,7 +310,7 @@ local monster_chapter = {
["monster_base"]=20015,
["is_boss"]=1,
["hp"]=117000000,
- ["atk"]=1170000,
+ ["atk"]=980000,
["atk_times"]=4,
["hurt_skill"]={
30043,
@@ -328,7 +328,7 @@ local monster_chapter = {
[2601]={
["monster_base"]=10039,
["hp"]=60000000,
- ["atk"]=990000,
+ ["atk"]=830000,
["atk_times"]=3,
["hurt_skill"]={
20112,
@@ -340,7 +340,7 @@ local monster_chapter = {
[2701]={
["monster_base"]=10002,
["hp"]=72000000,
- ["atk"]=1020000,
+ ["atk"]=860000,
["atk_times"]=3,
["hurt_skill"]={
20004,
@@ -352,7 +352,7 @@ local monster_chapter = {
[2801]={
["monster_base"]=10001,
["hp"]=81000000,
- ["atk"]=1050000,
+ ["atk"]=880000,
["atk_times"]=3,
["hurt_skill"]={
20001,
@@ -364,7 +364,7 @@ local monster_chapter = {
[2901]={
["monster_base"]=10009,
["hp"]=90000000,
- ["atk"]=1080000,
+ ["atk"]=910000,
["atk_times"]=3,
["hurt_skill"]={
20025,
@@ -377,7 +377,7 @@ local monster_chapter = {
["monster_base"]=20012,
["is_boss"]=2,
["hp"]=138000000,
- ["atk"]=1260000,
+ ["atk"]=1060000,
["atk_times"]=4,
["hurt_skill"]={
30034,
@@ -392,7 +392,7 @@ local monster_chapter = {
[3101]={
["monster_base"]=10010,
["hp"]=24000000,
- ["atk"]=750000,
+ ["atk"]=660000,
["atk_times"]=3,
["hurt_skill"]={
20028,
@@ -404,7 +404,7 @@ local monster_chapter = {
[3201]={
["monster_base"]=10039,
["hp"]=33000000,
- ["atk"]=810000,
+ ["atk"]=710000,
["atk_times"]=3,
["hurt_skill"]={
20112,
@@ -416,7 +416,7 @@ local monster_chapter = {
[3301]={
["monster_base"]=10040,
["hp"]=36000000,
- ["atk"]=870000,
+ ["atk"]=770000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -428,7 +428,7 @@ local monster_chapter = {
[3401]={
["monster_base"]=10038,
["hp"]=45000000,
- ["atk"]=930000,
+ ["atk"]=820000,
["atk_times"]=3,
["hurt_skill"]={
20109,
@@ -441,7 +441,7 @@ local monster_chapter = {
["monster_base"]=20011,
["is_boss"]=1,
["hp"]=69000000,
- ["atk"]=1110000,
+ ["atk"]=980000,
["atk_times"]=4,
["hurt_skill"]={
30031,
@@ -456,7 +456,7 @@ local monster_chapter = {
[3601]={
["monster_base"]=10009,
["hp"]=45000000,
- ["atk"]=930000,
+ ["atk"]=820000,
["atk_times"]=3,
["hurt_skill"]={
20025,
@@ -468,7 +468,7 @@ local monster_chapter = {
[3701]={
["monster_base"]=10010,
["hp"]=51000000,
- ["atk"]=990000,
+ ["atk"]=870000,
["atk_times"]=3,
["hurt_skill"]={
20028,
@@ -480,7 +480,7 @@ local monster_chapter = {
[3801]={
["monster_base"]=10038,
["hp"]=60000000,
- ["atk"]=990000,
+ ["atk"]=870000,
["atk_times"]=3,
["hurt_skill"]={
20109,
@@ -492,7 +492,7 @@ local monster_chapter = {
[3901]={
["monster_base"]=10040,
["hp"]=66000000,
- ["atk"]=1050000,
+ ["atk"]=920000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -505,7 +505,7 @@ local monster_chapter = {
["monster_base"]=20012,
["is_boss"]=1,
["hp"]=126000000,
- ["atk"]=1200000,
+ ["atk"]=1060000,
["atk_times"]=4,
["hurt_skill"]={
30034,
@@ -520,7 +520,7 @@ local monster_chapter = {
[4101]={
["monster_base"]=10039,
["hp"]=69000000,
- ["atk"]=1050000,
+ ["atk"]=920000,
["atk_times"]=3,
["hurt_skill"]={
20112,
@@ -532,7 +532,7 @@ local monster_chapter = {
[4201]={
["monster_base"]=10040,
["hp"]=84000000,
- ["atk"]=1110000,
+ ["atk"]=980000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -544,7 +544,7 @@ local monster_chapter = {
[4301]={
["monster_base"]=10038,
["hp"]=93000000,
- ["atk"]=1170000,
+ ["atk"]=1030000,
["atk_times"]=3,
["hurt_skill"]={
20109,
@@ -556,7 +556,7 @@ local monster_chapter = {
[4401]={
["monster_base"]=10009,
["hp"]=105000000,
- ["atk"]=1230000,
+ ["atk"]=1080000,
["atk_times"]=3,
["hurt_skill"]={
20025,
@@ -569,7 +569,7 @@ local monster_chapter = {
["monster_base"]=20015,
["is_boss"]=1,
["hp"]=156000000,
- ["atk"]=1320000,
+ ["atk"]=1160000,
["atk_times"]=4,
["hurt_skill"]={
30043,
@@ -587,7 +587,7 @@ local monster_chapter = {
[4601]={
["monster_base"]=10040,
["hp"]=120000000,
- ["atk"]=1290000,
+ ["atk"]=1140000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -599,7 +599,7 @@ local monster_chapter = {
[4701]={
["monster_base"]=10009,
["hp"]=132000000,
- ["atk"]=1350000,
+ ["atk"]=1190000,
["atk_times"]=3,
["hurt_skill"]={
20025,
@@ -611,7 +611,7 @@ local monster_chapter = {
[4801]={
["monster_base"]=10038,
["hp"]=150000000,
- ["atk"]=1410000,
+ ["atk"]=1240000,
["atk_times"]=3,
["hurt_skill"]={
20109,
@@ -623,7 +623,7 @@ local monster_chapter = {
[4901]={
["monster_base"]=10039,
["hp"]=162000000,
- ["atk"]=1470000,
+ ["atk"]=1290000,
["atk_times"]=3,
["hurt_skill"]={
20112,
@@ -636,7 +636,7 @@ local monster_chapter = {
["monster_base"]=20029,
["is_boss"]=2,
["hp"]=270000000,
- ["atk"]=2010000,
+ ["atk"]=1770000,
["atk_times"]=4,
["hurt_skill"]={
30085,
@@ -651,7 +651,7 @@ local monster_chapter = {
[5101]={
["monster_base"]=10016,
["hp"]=25500000,
- ["atk"]=1050000,
+ ["atk"]=900000,
["atk_times"]=3,
["hurt_skill"]={
20043,
@@ -663,7 +663,7 @@ local monster_chapter = {
[5201]={
["monster_base"]=10002,
["hp"]=36000000,
- ["atk"]=1110000,
+ ["atk"]=950000,
["atk_times"]=3,
["hurt_skill"]={
20004,
@@ -675,7 +675,7 @@ local monster_chapter = {
[5301]={
["monster_base"]=10003,
["hp"]=40500000,
- ["atk"]=1170000,
+ ["atk"]=1000000,
["atk_times"]=3,
["hurt_skill"]={
20007,
@@ -687,7 +687,7 @@ local monster_chapter = {
[5401]={
["monster_base"]=10019,
["hp"]=54000000,
- ["atk"]=1230000,
+ ["atk"]=1050000,
["atk_times"]=3,
["hurt_skill"]={
20052,
@@ -700,7 +700,7 @@ local monster_chapter = {
["monster_base"]=20002,
["is_boss"]=1,
["hp"]=75000000,
- ["atk"]=1410000,
+ ["atk"]=1210000,
["atk_times"]=4,
["hurt_skill"]={
30004,
@@ -715,7 +715,7 @@ local monster_chapter = {
[5601]={
["monster_base"]=10007,
["hp"]=51000000,
- ["atk"]=1290000,
+ ["atk"]=1110000,
["atk_times"]=3,
["hurt_skill"]={
20019,
@@ -727,7 +727,7 @@ local monster_chapter = {
[5701]={
["monster_base"]=10017,
["hp"]=57000000,
- ["atk"]=1470000,
+ ["atk"]=1260000,
["atk_times"]=3,
["hurt_skill"]={
20046,
@@ -739,7 +739,7 @@ local monster_chapter = {
[5801]={
["monster_base"]=10004,
["hp"]=66000000,
- ["atk"]=1350000,
+ ["atk"]=1160000,
["atk_times"]=3,
["hurt_skill"]={
20010,
@@ -751,7 +751,7 @@ local monster_chapter = {
[5901]={
["monster_base"]=10018,
["hp"]=75000000,
- ["atk"]=1530000,
+ ["atk"]=1310000,
["atk_times"]=3,
["hurt_skill"]={
20049,
@@ -764,7 +764,7 @@ local monster_chapter = {
["monster_base"]=20014,
["is_boss"]=1,
["hp"]=156000000,
- ["atk"]=1710000,
+ ["atk"]=1470000,
["atk_times"]=4,
["hurt_skill"]={
30040,
@@ -782,7 +782,7 @@ local monster_chapter = {
[6101]={
["monster_base"]=10019,
["hp"]=90000000,
- ["atk"]=1590000,
+ ["atk"]=1360000,
["atk_times"]=3,
["hurt_skill"]={
20052,
@@ -794,7 +794,7 @@ local monster_chapter = {
[6201]={
["monster_base"]=10008,
["hp"]=102000000,
- ["atk"]=1650000,
+ ["atk"]=1410000,
["atk_times"]=3,
["hurt_skill"]={
20022,
@@ -806,7 +806,7 @@ local monster_chapter = {
[6301]={
["monster_base"]=10016,
["hp"]=108000000,
- ["atk"]=1710000,
+ ["atk"]=1470000,
["atk_times"]=3,
["hurt_skill"]={
20043,
@@ -818,7 +818,7 @@ local monster_chapter = {
[6401]={
["monster_base"]=10003,
["hp"]=117000000,
- ["atk"]=1770000,
+ ["atk"]=1520000,
["atk_times"]=3,
["hurt_skill"]={
20007,
@@ -831,7 +831,7 @@ local monster_chapter = {
["monster_base"]=20015,
["is_boss"]=1,
["hp"]=213000000,
- ["atk"]=1770000,
+ ["atk"]=1520000,
["atk_times"]=4,
["hurt_skill"]={
30043,
@@ -849,7 +849,7 @@ local monster_chapter = {
[6601]={
["monster_base"]=10018,
["hp"]=141000000,
- ["atk"]=1830000,
+ ["atk"]=1570000,
["atk_times"]=3,
["hurt_skill"]={
20049,
@@ -861,7 +861,7 @@ local monster_chapter = {
[6701]={
["monster_base"]=10004,
["hp"]=150000000,
- ["atk"]=1890000,
+ ["atk"]=1620000,
["atk_times"]=3,
["hurt_skill"]={
20010,
@@ -873,7 +873,7 @@ local monster_chapter = {
[6801]={
["monster_base"]=10007,
["hp"]=165000000,
- ["atk"]=1950000,
+ ["atk"]=1670000,
["atk_times"]=3,
["hurt_skill"]={
20019,
@@ -885,7 +885,7 @@ local monster_chapter = {
[6901]={
["monster_base"]=10017,
["hp"]=180000000,
- ["atk"]=2010000,
+ ["atk"]=1720000,
["atk_times"]=3,
["hurt_skill"]={
20046,
@@ -898,7 +898,7 @@ local monster_chapter = {
["monster_base"]=20001,
["is_boss"]=2,
["hp"]=285000000,
- ["atk"]=2760000,
+ ["atk"]=2370000,
["atk_times"]=4,
["hurt_skill"]={
30001,
@@ -913,7 +913,7 @@ local monster_chapter = {
[7101]={
["monster_base"]=10042,
["hp"]=25250000,
- ["atk"]=1090000,
+ ["atk"]=1030000,
["atk_times"]=3,
["hurt_skill"]={
20121,
@@ -925,7 +925,7 @@ local monster_chapter = {
[7201]={
["monster_base"]=10041,
["hp"]=35640000,
- ["atk"]=1150000,
+ ["atk"]=1090000,
["atk_times"]=3,
["hurt_skill"]={
20118,
@@ -937,7 +937,7 @@ local monster_chapter = {
[7301]={
["monster_base"]=10013,
["hp"]=40100000,
- ["atk"]=1210000,
+ ["atk"]=1150000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -949,7 +949,7 @@ local monster_chapter = {
[7401]={
["monster_base"]=10019,
["hp"]=53460000,
- ["atk"]=1260000,
+ ["atk"]=1200000,
["atk_times"]=3,
["hurt_skill"]={
20052,
@@ -962,7 +962,7 @@ local monster_chapter = {
["monster_base"]=20022,
["is_boss"]=1,
["hp"]=74250000,
- ["atk"]=1410000,
+ ["atk"]=1390000,
["atk_times"]=4,
["hurt_skill"]={
30064,
@@ -980,7 +980,7 @@ local monster_chapter = {
[7601]={
["monster_base"]=10001,
["hp"]=55540000,
- ["atk"]=1440000,
+ ["atk"]=1270000,
["atk_times"]=3,
["hurt_skill"]={
20001,
@@ -992,7 +992,7 @@ local monster_chapter = {
[7701]={
["monster_base"]=10005,
["hp"]=62070000,
- ["atk"]=1650000,
+ ["atk"]=1440000,
["atk_times"]=3,
["hurt_skill"]={
20013,
@@ -1004,7 +1004,7 @@ local monster_chapter = {
[7801]={
["monster_base"]=10041,
["hp"]=71870000,
- ["atk"]=1500000,
+ ["atk"]=1330000,
["atk_times"]=3,
["hurt_skill"]={
20118,
@@ -1016,7 +1016,7 @@ local monster_chapter = {
[7901]={
["monster_base"]=10013,
["hp"]=81680000,
- ["atk"]=1710000,
+ ["atk"]=1500000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -1026,10 +1026,74 @@ local monster_chapter = {
["monster_exp"]=12000
},
[8001]={
- ["monster_base"]=20023,
+ ["monster_base"]=20002,
["is_boss"]=1,
["hp"]=158600000,
- ["atk"]=1760000,
+ ["atk"]=1680000,
+ ["atk_times"]=4,
+ ["hurt_skill"]={
+ 30004,
+ 30005,
+ 30006
+ },
+ ["skill"]={
+ 10019
+ },
+ ["monster_exp"]=12000
+ },
+ [8101]={
+ ["monster_base"]=10042,
+ ["hp"]=91480000,
+ ["atk"]=1560000,
+ ["atk_times"]=3,
+ ["hurt_skill"]={
+ 20121,
+ 20122,
+ 20123
+ },
+ ["monster_exp"]=16000
+ },
+ [8201]={
+ ["monster_base"]=10001,
+ ["hp"]=103650000,
+ ["atk"]=1610000,
+ ["atk_times"]=3,
+ ["hurt_skill"]={
+ 20001,
+ 20002,
+ 20003
+ },
+ ["monster_exp"]=18000
+ },
+ [8301]={
+ ["monster_base"]=10013,
+ ["hp"]=109890000,
+ ["atk"]=1680000,
+ ["atk_times"]=3,
+ ["hurt_skill"]={
+ 20034,
+ 20035,
+ 20036
+ },
+ ["monster_exp"]=21000
+ },
+ [8401]={
+ ["monster_base"]=10044,
+ ["hp"]=119100000,
+ ["atk"]=1740000,
+ ["atk_times"]=3,
+ ["hurt_skill"]={
+ 20127,
+ 20128,
+ 20129
+ },
+ ["monster_exp"]=22000
+ },
+ [8501]={
+ ["monster_base"]=20023,
+ ["is_boss"]=1,
+ ["hp"]=216510000,
+ ["atk"]=1740000,
["atk_times"]=4,
["hurt_skill"]={
30067,
@@ -1042,79 +1106,12 @@ local monster_chapter = {
["passive_skill"]={
10013
},
- ["monster_exp"]=12000
- },
- [8101]={
- ["monster_base"]=10042,
- ["hp"]=91480000,
- ["atk"]=1650000,
- ["atk_times"]=3,
- ["hurt_skill"]={
- 20121,
- 20122,
- 20123
- },
- ["monster_exp"]=16000
- },
- [8201]={
- ["monster_base"]=10001,
- ["hp"]=103650000,
- ["atk"]=1710000,
- ["atk_times"]=3,
- ["hurt_skill"]={
- 20001,
- 20002,
- 20003
- },
- ["monster_exp"]=18000
- },
- [8301]={
- ["monster_base"]=10013,
- ["hp"]=109890000,
- ["atk"]=1760000,
- ["atk_times"]=3,
- ["hurt_skill"]={
- 20034,
- 20035,
- 20036
- },
- ["monster_exp"]=21000
- },
- [8401]={
- ["monster_base"]=10044,
- ["hp"]=119100000,
- ["atk"]=1820000,
- ["atk_times"]=3,
- ["hurt_skill"]={
- 20127,
- 20128,
- 20129
- },
- ["monster_exp"]=22000
- },
- [8501]={
- ["monster_base"]=20022,
- ["is_boss"]=1,
- ["hp"]=216510000,
- ["atk"]=1820000,
- ["atk_times"]=4,
- ["hurt_skill"]={
- 30064,
- 30065,
- 30066
- },
- ["skill"]={
- 10023
- },
- ["passive_skill"]={
- 10013
- },
["monster_exp"]=24000
},
[8601]={
["monster_base"]=10041,
["hp"]=156820000,
- ["atk"]=2060000,
+ ["atk"]=1800000,
["atk_times"]=3,
["hurt_skill"]={
20118,
@@ -1126,7 +1123,7 @@ local monster_chapter = {
[8701]={
["monster_base"]=10001,
["hp"]=166910000,
- ["atk"]=2150000,
+ ["atk"]=1850000,
["atk_times"]=3,
["hurt_skill"]={
20001,
@@ -1138,7 +1135,7 @@ local monster_chapter = {
[8801]={
["monster_base"]=10042,
["hp"]=183550000,
- ["atk"]=2210000,
+ ["atk"]=1910000,
["atk_times"]=3,
["hurt_skill"]={
20121,
@@ -1150,7 +1147,7 @@ local monster_chapter = {
[8901]={
["monster_base"]=10044,
["hp"]=200480000,
- ["atk"]=2260000,
+ ["atk"]=1970000,
["atk_times"]=3,
["hurt_skill"]={
20127,
@@ -1163,7 +1160,7 @@ local monster_chapter = {
["monster_base"]=30019,
["is_boss"]=2,
["hp"]=324920000,
- ["atk"]=3150000,
+ ["atk"]=2710000,
["atk_times"]=4,
["hurt_skill"]={
40029,
@@ -1183,7 +1180,7 @@ local monster_chapter = {
[9101]={
["monster_base"]=10041,
["hp"]=31430000,
- ["atk"]=1380000,
+ ["atk"]=1170000,
["atk_times"]=3,
["hurt_skill"]={
20118,
@@ -1195,7 +1192,7 @@ local monster_chapter = {
[9201]={
["monster_base"]=10001,
["hp"]=44230000,
- ["atk"]=1440000,
+ ["atk"]=1240000,
["atk_times"]=3,
["hurt_skill"]={
20001,
@@ -1207,7 +1204,7 @@ local monster_chapter = {
[9301]={
["monster_base"]=10013,
["hp"]=49760000,
- ["atk"]=1520000,
+ ["atk"]=1300000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -1219,7 +1216,7 @@ local monster_chapter = {
[9401]={
["monster_base"]=10044,
["hp"]=66350000,
- ["atk"]=1580000,
+ ["atk"]=1360000,
["atk_times"]=3,
["hurt_skill"]={
20127,
@@ -1232,7 +1229,7 @@ local monster_chapter = {
["monster_base"]=20026,
["is_boss"]=1,
["hp"]=92250000,
- ["atk"]=1780000,
+ ["atk"]=1570000,
["atk_times"]=4,
["hurt_skill"]={
30076,
@@ -1250,7 +1247,7 @@ local monster_chapter = {
[9601]={
["monster_base"]=10001,
["hp"]=62860000,
- ["atk"]=1660000,
+ ["atk"]=1440000,
["atk_times"]=3,
["hurt_skill"]={
20001,
@@ -1262,7 +1259,7 @@ local monster_chapter = {
[9701]={
["monster_base"]=10042,
["hp"]=70130000,
- ["atk"]=1860000,
+ ["atk"]=1630000,
["atk_times"]=3,
["hurt_skill"]={
20121,
@@ -1274,7 +1271,7 @@ local monster_chapter = {
[9801]={
["monster_base"]=10005,
["hp"]=81190000,
- ["atk"]=1720000,
+ ["atk"]=1510000,
["atk_times"]=3,
["hurt_skill"]={
20013,
@@ -1286,7 +1283,7 @@ local monster_chapter = {
[9901]={
["monster_base"]=10013,
["hp"]=92250000,
- ["atk"]=1950000,
+ ["atk"]=1700000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -1299,7 +1296,7 @@ local monster_chapter = {
["monster_base"]=20022,
["is_boss"]=1,
["hp"]=174600000,
- ["atk"]=1950000,
+ ["atk"]=1900000,
["atk_times"]=4,
["hurt_skill"]={
30064,
@@ -1317,7 +1314,7 @@ local monster_chapter = {
[10101]={
["monster_base"]=10001,
["hp"]=100690000,
- ["atk"]=1830000,
+ ["atk"]=1770000,
["atk_times"]=3,
["hurt_skill"]={
20001,
@@ -1329,7 +1326,7 @@ local monster_chapter = {
[10201]={
["monster_base"]=10042,
["hp"]=114070000,
- ["atk"]=1920000,
+ ["atk"]=1820000,
["atk_times"]=3,
["hurt_skill"]={
20121,
@@ -1341,7 +1338,7 @@ local monster_chapter = {
[10301]={
["monster_base"]=10013,
["hp"]=121060000,
- ["atk"]=1970000,
+ ["atk"]=1900000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -1353,7 +1350,7 @@ local monster_chapter = {
[10401]={
["monster_base"]=10001,
["hp"]=130950000,
- ["atk"]=2030000,
+ ["atk"]=1970000,
["atk_times"]=3,
["hurt_skill"]={
20001,
@@ -1363,28 +1360,28 @@ local monster_chapter = {
["monster_exp"]=22000
},
[10501]={
- ["monster_base"]=20023,
+ ["monster_base"]=20014,
["is_boss"]=1,
["hp"]=238040000,
- ["atk"]=2000000,
+ ["atk"]=1970000,
["atk_times"]=4,
["hurt_skill"]={
- 30067,
- 30068,
- 30069
+ 30040,
+ 30041,
+ 30042
},
["skill"]={
- 10063
+ 10016
},
["passive_skill"]={
- 10013
+ 10010
},
["monster_exp"]=24000
},
[10601]={
["monster_base"]=10042,
["hp"]=161510000,
- ["atk"]=2140000,
+ ["atk"]=2040000,
["atk_times"]=3,
["hurt_skill"]={
20121,
@@ -1396,7 +1393,7 @@ local monster_chapter = {
[10701]={
["monster_base"]=10044,
["hp"]=171980000,
- ["atk"]=2230000,
+ ["atk"]=2090000,
["atk_times"]=3,
["hurt_skill"]={
20127,
@@ -1408,7 +1405,7 @@ local monster_chapter = {
[10801]={
["monster_base"]=10013,
["hp"]=189150000,
- ["atk"]=2280000,
+ ["atk"]=2160000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -1420,7 +1417,7 @@ local monster_chapter = {
[10901]={
["monster_base"]=10041,
["hp"]=206610000,
- ["atk"]=2340000,
+ ["atk"]=2230000,
["atk_times"]=3,
["hurt_skill"]={
20118,
@@ -1433,7 +1430,7 @@ local monster_chapter = {
["monster_base"]=20025,
["is_boss"]=2,
["hp"]=355890000,
- ["atk"]=3410000,
+ ["atk"]=3060000,
["atk_times"]=4,
["hurt_skill"]={
30073,
@@ -1451,7 +1448,7 @@ local monster_chapter = {
[11101]={
["monster_base"]=10010,
["hp"]=34970000,
- ["atk"]=1600000,
+ ["atk"]=1320000,
["atk_times"]=3,
["hurt_skill"]={
20028,
@@ -1463,7 +1460,7 @@ local monster_chapter = {
[11201]={
["monster_base"]=10009,
["hp"]=49070000,
- ["atk"]=1680000,
+ ["atk"]=1400000,
["atk_times"]=3,
["hurt_skill"]={
20025,
@@ -1475,7 +1472,7 @@ local monster_chapter = {
[11301]={
["monster_base"]=10038,
["hp"]=55270000,
- ["atk"]=1770000,
+ ["atk"]=1470000,
["atk_times"]=3,
["hurt_skill"]={
20109,
@@ -1487,7 +1484,7 @@ local monster_chapter = {
[11401]={
["monster_base"]=10039,
["hp"]=73600000,
- ["atk"]=1850000,
+ ["atk"]=1530000,
["atk_times"]=3,
["hurt_skill"]={
20112,
@@ -1500,7 +1497,7 @@ local monster_chapter = {
["monster_base"]=20012,
["is_boss"]=1,
["hp"]=102370000,
- ["atk"]=2010000,
+ ["atk"]=1770000,
["atk_times"]=4,
["hurt_skill"]={
30034,
@@ -1515,7 +1512,7 @@ local monster_chapter = {
[11601]={
["monster_base"]=10013,
["hp"]=69650000,
- ["atk"]=1900000,
+ ["atk"]=1620000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -1527,7 +1524,7 @@ local monster_chapter = {
[11701]={
["monster_base"]=10016,
["hp"]=77830000,
- ["atk"]=2150000,
+ ["atk"]=1840000,
["atk_times"]=3,
["hurt_skill"]={
20043,
@@ -1539,7 +1536,7 @@ local monster_chapter = {
[11801]={
["monster_base"]=10015,
["hp"]=89960000,
- ["atk"]=1990000,
+ ["atk"]=1700000,
["atk_times"]=3,
["hurt_skill"]={
20040,
@@ -1551,7 +1548,7 @@ local monster_chapter = {
[11901]={
["monster_base"]=10017,
["hp"]=102370000,
- ["atk"]=2240000,
+ ["atk"]=1910000,
["atk_times"]=3,
["hurt_skill"]={
20046,
@@ -1564,7 +1561,7 @@ local monster_chapter = {
["monster_base"]=20007,
["is_boss"]=1,
["hp"]=193450000,
- ["atk"]=2210000,
+ ["atk"]=2140000,
["atk_times"]=4,
["hurt_skill"]={
30019,
@@ -1582,7 +1579,7 @@ local monster_chapter = {
[12101]={
["monster_base"]=10018,
["hp"]=111670000,
- ["atk"]=2130000,
+ ["atk"]=1990000,
["atk_times"]=3,
["hurt_skill"]={
20049,
@@ -1594,7 +1591,7 @@ local monster_chapter = {
[12201]={
["monster_base"]=10003,
["hp"]=126340000,
- ["atk"]=2180000,
+ ["atk"]=2050000,
["atk_times"]=3,
["hurt_skill"]={
20007,
@@ -1606,7 +1603,7 @@ local monster_chapter = {
[12301]={
["monster_base"]=10006,
["hp"]=134230000,
- ["atk"]=2260000,
+ ["atk"]=2140000,
["atk_times"]=3,
["hurt_skill"]={
20016,
@@ -1618,7 +1615,7 @@ local monster_chapter = {
[12401]={
["monster_base"]=10014,
["hp"]=145230000,
- ["atk"]=2320000,
+ ["atk"]=2220000,
["atk_times"]=3,
["hurt_skill"]={
20037,
@@ -1628,28 +1625,25 @@ local monster_chapter = {
["monster_exp"]=22000
},
[12501]={
- ["monster_base"]=20025,
+ ["monster_base"]=20001,
["is_boss"]=1,
["hp"]=276360000,
- ["atk"]=2400000,
+ ["atk"]=2220000,
["atk_times"]=4,
["hurt_skill"]={
- 30073,
- 30074,
- 30075
+ 30001,
+ 30002,
+ 30003
},
["skill"]={
- 10062
- },
- ["passive_skill"]={
- 10013
+ 10020
},
["monster_exp"]=24000
},
[12601]={
["monster_base"]=10030,
["hp"]=183020000,
- ["atk"]=2510000,
+ ["atk"]=2300000,
["atk_times"]=3,
["hurt_skill"]={
20085,
@@ -1661,7 +1655,7 @@ local monster_chapter = {
[12701]={
["monster_base"]=10032,
["hp"]=194860000,
- ["atk"]=2590000,
+ ["atk"]=2350000,
["atk_times"]=3,
["hurt_skill"]={
20091,
@@ -1673,7 +1667,7 @@ local monster_chapter = {
[12801]={
["monster_base"]=10031,
["hp"]=214320000,
- ["atk"]=2680000,
+ ["atk"]=2430000,
["atk_times"]=3,
["hurt_skill"]={
20088,
@@ -1685,7 +1679,7 @@ local monster_chapter = {
[12901]={
["monster_base"]=10033,
["hp"]=234060000,
- ["atk"]=2730000,
+ ["atk"]=2510000,
["atk_times"]=3,
["hurt_skill"]={
20094,
@@ -1698,7 +1692,7 @@ local monster_chapter = {
["monster_base"]=20005,
["is_boss"]=2,
["hp"]=369980000,
- ["atk"]=3640000,
+ ["atk"]=3440000,
["atk_times"]=4,
["hurt_skill"]={
30013,
@@ -1716,7 +1710,7 @@ local monster_chapter = {
[13101]={
["monster_base"]=10030,
["hp"]=38780000,
- ["atk"]=1810000,
+ ["atk"]=1470000,
["atk_times"]=3,
["hurt_skill"]={
20085,
@@ -1728,7 +1722,7 @@ local monster_chapter = {
[13201]={
["monster_base"]=10033,
["hp"]=54130000,
- ["atk"]=1890000,
+ ["atk"]=1560000,
["atk_times"]=3,
["hurt_skill"]={
20094,
@@ -1740,7 +1734,7 @@ local monster_chapter = {
[13301]={
["monster_base"]=10019,
["hp"]=61100000,
- ["atk"]=1970000,
+ ["atk"]=1640000,
["atk_times"]=3,
["hurt_skill"]={
20052,
@@ -1752,7 +1746,7 @@ local monster_chapter = {
[13401]={
["monster_base"]=10012,
["hp"]=76450000,
- ["atk"]=1940000,
+ ["atk"]=1710000,
["atk_times"]=3,
["hurt_skill"]={
20031,
@@ -1765,7 +1759,7 @@ local monster_chapter = {
["monster_base"]=20015,
["is_boss"]=1,
["hp"]=113000000,
- ["atk"]=2240000,
+ ["atk"]=1970000,
["atk_times"]=4,
["hurt_skill"]={
30043,
@@ -1783,7 +1777,7 @@ local monster_chapter = {
[13601]={
["monster_base"]=10017,
["hp"]=77000000,
- ["atk"]=2160000,
+ ["atk"]=1810000,
["atk_times"]=3,
["hurt_skill"]={
20046,
@@ -1795,7 +1789,7 @@ local monster_chapter = {
[13701]={
["monster_base"]=10013,
["hp"]=85930000,
- ["atk"]=2400000,
+ ["atk"]=2050000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -1807,7 +1801,7 @@ local monster_chapter = {
[13801]={
["monster_base"]=10032,
["hp"]=99320000,
- ["atk"]=2240000,
+ ["atk"]=1900000,
["atk_times"]=3,
["hurt_skill"]={
20091,
@@ -1819,7 +1813,7 @@ local monster_chapter = {
[13901]={
["monster_base"]=10033,
["hp"]=113000000,
- ["atk"]=2510000,
+ ["atk"]=2130000,
["atk_times"]=3,
["hurt_skill"]={
20094,
@@ -1829,77 +1823,10 @@ local monster_chapter = {
["monster_exp"]=12000
},
[14001]={
- ["monster_base"]=20005,
- ["is_boss"]=1,
- ["hp"]=213440000,
- ["atk"]=2460000,
- ["atk_times"]=4,
- ["hurt_skill"]={
- 30013,
- 30014,
- 30015
- },
- ["skill"]={
- 10024
- },
- ["passive_skill"]={
- 10012
- },
- ["monster_exp"]=12000
- },
- [14101]={
- ["monster_base"]=10031,
- ["hp"]=123320000,
- ["atk"]=2380000,
- ["atk_times"]=3,
- ["hurt_skill"]={
- 20088,
- 20089,
- 20090
- },
- ["monster_exp"]=16000
- },
- [14201]={
- ["monster_base"]=10034,
- ["hp"]=139500000,
- ["atk"]=2460000,
- ["atk_times"]=3,
- ["hurt_skill"]={
- 20097,
- 20098,
- 20099
- },
- ["monster_exp"]=18000
- },
- [14301]={
- ["monster_base"]=10003,
- ["hp"]=148150000,
- ["atk"]=2540000,
- ["atk_times"]=3,
- ["hurt_skill"]={
- 20007,
- 20008,
- 20009
- },
- ["monster_exp"]=21000
- },
- [14401]={
- ["monster_base"]=10014,
- ["hp"]=160430000,
- ["atk"]=2590000,
- ["atk_times"]=3,
- ["hurt_skill"]={
- 20037,
- 20038,
- 20039
- },
- ["monster_exp"]=22000
- },
- [14501]={
["monster_base"]=20026,
["is_boss"]=1,
- ["hp"]=304390000,
- ["atk"]=2650000,
+ ["hp"]=213440000,
+ ["atk"]=2380000,
["atk_times"]=4,
["hurt_skill"]={
30076,
@@ -1912,12 +1839,76 @@ local monster_chapter = {
["passive_skill"]={
10013
},
+ ["monster_exp"]=12000
+ },
+ [14101]={
+ ["monster_base"]=10031,
+ ["hp"]=123320000,
+ ["atk"]=2220000,
+ ["atk_times"]=3,
+ ["hurt_skill"]={
+ 20088,
+ 20089,
+ 20090
+ },
+ ["monster_exp"]=16000
+ },
+ [14201]={
+ ["monster_base"]=10034,
+ ["hp"]=139500000,
+ ["atk"]=2280000,
+ ["atk_times"]=3,
+ ["hurt_skill"]={
+ 20097,
+ 20098,
+ 20099
+ },
+ ["monster_exp"]=18000
+ },
+ [14301]={
+ ["monster_base"]=10003,
+ ["hp"]=148150000,
+ ["atk"]=2380000,
+ ["atk_times"]=3,
+ ["hurt_skill"]={
+ 20007,
+ 20008,
+ 20009
+ },
+ ["monster_exp"]=21000
+ },
+ [14401]={
+ ["monster_base"]=10014,
+ ["hp"]=160430000,
+ ["atk"]=2470000,
+ ["atk_times"]=3,
+ ["hurt_skill"]={
+ 20037,
+ 20038,
+ 20039
+ },
+ ["monster_exp"]=22000
+ },
+ [14501]={
+ ["monster_base"]=20004,
+ ["is_boss"]=1,
+ ["hp"]=304390000,
+ ["atk"]=2470000,
+ ["atk_times"]=4,
+ ["hurt_skill"]={
+ 30010,
+ 30011,
+ 30012
+ },
+ ["skill"]={
+ 10015
+ },
["monster_exp"]=24000
},
[14601]={
["monster_base"]=10015,
["hp"]=201720000,
- ["atk"]=2780000,
+ ["atk"]=2560000,
["atk_times"]=3,
["hurt_skill"]={
20040,
@@ -1929,7 +1920,7 @@ local monster_chapter = {
[14701]={
["monster_base"]=10016,
["hp"]=214830000,
- ["atk"]=2890000,
+ ["atk"]=2620000,
["atk_times"]=3,
["hurt_skill"]={
20043,
@@ -1941,7 +1932,7 @@ local monster_chapter = {
[14801]={
["monster_base"]=10030,
["hp"]=236030000,
- ["atk"]=2970000,
+ ["atk"]=2710000,
["atk_times"]=3,
["hurt_skill"]={
20085,
@@ -1953,7 +1944,7 @@ local monster_chapter = {
[14901]={
["monster_base"]=10035,
["hp"]=257800000,
- ["atk"]=3020000,
+ ["atk"]=2800000,
["atk_times"]=3,
["hurt_skill"]={
20100,
@@ -1966,7 +1957,7 @@ local monster_chapter = {
["monster_base"]=30012,
["is_boss"]=2,
["hp"]=407620000,
- ["atk"]=4000000,
+ ["atk"]=3830000,
["atk_times"]=4,
["hurt_skill"]={
40005,
@@ -1983,7 +1974,7 @@ local monster_chapter = {
[15101]={
["monster_base"]=10034,
["hp"]=42410000,
- ["atk"]=2000000,
+ ["atk"]=1600000,
["atk_times"]=3,
["hurt_skill"]={
20097,
@@ -1995,7 +1986,7 @@ local monster_chapter = {
[15201]={
["monster_base"]=10032,
["hp"]=59150000,
- ["atk"]=2110000,
+ ["atk"]=1700000,
["atk_times"]=3,
["hurt_skill"]={
20091,
@@ -2007,7 +1998,7 @@ local monster_chapter = {
[15301]={
["monster_base"]=10002,
["hp"]=66960000,
- ["atk"]=2190000,
+ ["atk"]=1790000,
["atk_times"]=3,
["hurt_skill"]={
20004,
@@ -2019,7 +2010,7 @@ local monster_chapter = {
[15401]={
["monster_base"]=10005,
["hp"]=89000000,
- ["atk"]=2300000,
+ ["atk"]=1860000,
["atk_times"]=3,
["hurt_skill"]={
20013,
@@ -2032,7 +2023,7 @@ local monster_chapter = {
["monster_base"]=20007,
["is_boss"]=1,
["hp"]=123600000,
- ["atk"]=2460000,
+ ["atk"]=2140000,
["atk_times"]=4,
["hurt_skill"]={
30019,
@@ -2050,7 +2041,7 @@ local monster_chapter = {
[15601]={
["monster_base"]=10001,
["hp"]=84260000,
- ["atk"]=2380000,
+ ["atk"]=1970000,
["atk_times"]=3,
["hurt_skill"]={
20001,
@@ -2062,7 +2053,7 @@ local monster_chapter = {
[15701]={
["monster_base"]=10007,
["hp"]=94020000,
- ["atk"]=2670000,
+ ["atk"]=2230000,
["atk_times"]=3,
["hurt_skill"]={
20019,
@@ -2074,7 +2065,7 @@ local monster_chapter = {
[15801]={
["monster_base"]=10040,
["hp"]=108530000,
- ["atk"]=2480000,
+ ["atk"]=2070000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -2086,7 +2077,7 @@ local monster_chapter = {
[15901]={
["monster_base"]=10039,
["hp"]=123600000,
- ["atk"]=2750000,
+ ["atk"]=2320000,
["atk_times"]=3,
["hurt_skill"]={
20112,
@@ -2099,7 +2090,7 @@ local monster_chapter = {
["monster_base"]=20012,
["is_boss"]=1,
["hp"]=242450000,
- ["atk"]=2800000,
+ ["atk"]=2590000,
["atk_times"]=4,
["hurt_skill"]={
30034,
@@ -2114,7 +2105,7 @@ local monster_chapter = {
[16101]={
["monster_base"]=10039,
["hp"]=140060000,
- ["atk"]=2720000,
+ ["atk"]=2420000,
["atk_times"]=3,
["hurt_skill"]={
20112,
@@ -2126,7 +2117,7 @@ local monster_chapter = {
[16201]={
["monster_base"]=10038,
["hp"]=158470000,
- ["atk"]=2800000,
+ ["atk"]=2480000,
["atk_times"]=3,
["hurt_skill"]={
20109,
@@ -2138,7 +2129,7 @@ local monster_chapter = {
[16301]={
["monster_base"]=10014,
["hp"]=168240000,
- ["atk"]=2910000,
+ ["atk"]=2590000,
["atk_times"]=3,
["hurt_skill"]={
20037,
@@ -2150,7 +2141,7 @@ local monster_chapter = {
[16401]={
["monster_base"]=10019,
["hp"]=182190000,
- ["atk"]=2990000,
+ ["atk"]=2690000,
["atk_times"]=3,
["hurt_skill"]={
20052,
@@ -2163,7 +2154,7 @@ local monster_chapter = {
["monster_base"]=20015,
["is_boss"]=1,
["hp"]=353210000,
- ["atk"]=3100000,
+ ["atk"]=2690000,
["atk_times"]=4,
["hurt_skill"]={
30043,
@@ -2181,7 +2172,7 @@ local monster_chapter = {
[16601]={
["monster_base"]=10016,
["hp"]=243290000,
- ["atk"]=3390000,
+ ["atk"]=2780000,
["atk_times"]=3,
["hurt_skill"]={
20043,
@@ -2193,7 +2184,7 @@ local monster_chapter = {
[16701]={
["monster_base"]=10005,
["hp"]=259190000,
- ["atk"]=3500000,
+ ["atk"]=2850000,
["atk_times"]=3,
["hurt_skill"]={
20013,
@@ -2205,7 +2196,7 @@ local monster_chapter = {
[16801]={
["monster_base"]=10040,
["hp"]=284580000,
- ["atk"]=3580000,
+ ["atk"]=2950000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -2217,7 +2208,7 @@ local monster_chapter = {
[16901]={
["monster_base"]=10039,
["hp"]=310810000,
- ["atk"]=3680000,
+ ["atk"]=3050000,
["atk_times"]=3,
["hurt_skill"]={
20112,
@@ -2230,7 +2221,7 @@ local monster_chapter = {
["monster_base"]=20017,
["is_boss"]=2,
["hp"]=545450000,
- ["atk"]=5340000,
+ ["atk"]=4160000,
["atk_times"]=4,
["hurt_skill"]={
30049,
@@ -2243,21 +2234,9 @@ local monster_chapter = {
["monster_exp"]=22000
},
[17101]={
- ["monster_base"]=10010,
- ["hp"]=50510000,
- ["atk"]=2400000,
- ["atk_times"]=3,
- ["hurt_skill"]={
- 20028,
- 20029,
- 20030
- },
- ["monster_exp"]=11000
- },
- [17201]={
["monster_base"]=10038,
- ["hp"]=70380000,
- ["atk"]=2530000,
+ ["hp"]=50510000,
+ ["atk"]=1670000,
["atk_times"]=3,
["hurt_skill"]={
20109,
@@ -2266,53 +2245,62 @@ local monster_chapter = {
},
["monster_exp"]=11000
},
- [17301]={
- ["monster_base"]=10033,
- ["hp"]=79490000,
- ["atk"]=2640000,
+ [17201]={
+ ["monster_base"]=10040,
+ ["hp"]=70380000,
+ ["atk"]=1780000,
["atk_times"]=3,
["hurt_skill"]={
- 20094,
- 20095,
- 20096
+ 20115,
+ 20116,
+ 20117
+ },
+ ["monster_exp"]=11000
+ },
+ [17301]={
+ ["monster_base"]=10010,
+ ["hp"]=79490000,
+ ["atk"]=1870000,
+ ["atk_times"]=3,
+ ["hurt_skill"]={
+ 20028,
+ 20029,
+ 20030
},
["monster_exp"]=17000
},
[17401]={
- ["monster_base"]=10031,
+ ["monster_base"]=10039,
["hp"]=105710000,
- ["atk"]=2740000,
+ ["atk"]=1940000,
["atk_times"]=3,
["hurt_skill"]={
- 20088,
- 20089,
- 20090
+ 20112,
+ 20113,
+ 20114
},
["monster_exp"]=19000
},
[17501]={
- ["monster_base"]=20005,
+ ["monster_base"]=20012,
["is_boss"]=1,
["hp"]=146830000,
- ["atk"]=2920000,
+ ["atk"]=2230000,
["atk_times"]=4,
["hurt_skill"]={
- 30013,
- 30014,
- 30015
+ 30034,
+ 30035,
+ 30036
},
["skill"]={
- 10024
- },
- ["passive_skill"]={
- 10012
+ 10017
},
["monster_exp"]=18000
},
[17601]={
["monster_base"]=10030,
["hp"]=100190000,
- ["atk"]=2840000,
+ ["atk"]=2060000,
["atk_times"]=3,
["hurt_skill"]={
20085,
@@ -2324,7 +2312,7 @@ local monster_chapter = {
[17701]={
["monster_base"]=10035,
["hp"]=111500000,
- ["atk"]=3180000,
+ ["atk"]=2330000,
["atk_times"]=3,
["hurt_skill"]={
20100,
@@ -2336,7 +2324,7 @@ local monster_chapter = {
[17801]={
["monster_base"]=10039,
["hp"]=128890000,
- ["atk"]=2950000,
+ ["atk"]=2160000,
["atk_times"]=3,
["hurt_skill"]={
20112,
@@ -2348,7 +2336,7 @@ local monster_chapter = {
[17901]={
["monster_base"]=10010,
["hp"]=146830000,
- ["atk"]=3290000,
+ ["atk"]=2420000,
["atk_times"]=3,
["hurt_skill"]={
20028,
@@ -2361,7 +2349,7 @@ local monster_chapter = {
["monster_base"]=20017,
["is_boss"]=1,
["hp"]=276830000,
- ["atk"]=3210000,
+ ["atk"]=2700000,
["atk_times"]=4,
["hurt_skill"]={
30049,
@@ -2374,73 +2362,76 @@ local monster_chapter = {
["monster_exp"]=12000
},
[18101]={
- ["monster_base"]=10038,
+ ["monster_base"]=10013,
["hp"]=159800000,
- ["atk"]=3110000,
+ ["atk"]=2530000,
["atk_times"]=3,
["hurt_skill"]={
- 20109,
- 20110,
- 20111
+ 20034,
+ 20035,
+ 20036
},
["monster_exp"]=16000
},
[18201]={
- ["monster_base"]=10040,
+ ["monster_base"]=10016,
["hp"]=181060000,
- ["atk"]=3210000,
+ ["atk"]=2590000,
["atk_times"]=3,
["hurt_skill"]={
- 20115,
- 20116,
- 20117
+ 20043,
+ 20044,
+ 20045
},
["monster_exp"]=18000
},
[18301]={
- ["monster_base"]=10010,
+ ["monster_base"]=10015,
["hp"]=192100000,
- ["atk"]=3310000,
+ ["atk"]=2700000,
["atk_times"]=3,
["hurt_skill"]={
- 20028,
- 20029,
- 20030
+ 20040,
+ 20041,
+ 20042
},
["monster_exp"]=21000
},
[18401]={
- ["monster_base"]=10039,
+ ["monster_base"]=10017,
["hp"]=208100000,
- ["atk"]=3420000,
+ ["atk"]=2810000,
["atk_times"]=3,
["hurt_skill"]={
- 20112,
- 20113,
- 20114
+ 20046,
+ 20047,
+ 20048
},
["monster_exp"]=22000
},
[18501]={
- ["monster_base"]=20012,
+ ["monster_base"]=20007,
["is_boss"]=1,
["hp"]=377020000,
- ["atk"]=3290000,
+ ["atk"]=2810000,
["atk_times"]=4,
["hurt_skill"]={
- 30034,
- 30035,
- 30036
+ 30019,
+ 30020,
+ 30021
},
["skill"]={
- 10017
+ 10060
+ },
+ ["passive_skill"]={
+ 10061
},
["monster_exp"]=24000
},
[18601]={
["monster_base"]=10032,
["hp"]=249780000,
- ["atk"]=3500000,
+ ["atk"]=2900000,
["atk_times"]=3,
["hurt_skill"]={
20091,
@@ -2452,7 +2443,7 @@ local monster_chapter = {
[18701]={
["monster_base"]=10034,
["hp"]=266340000,
- ["atk"]=3600000,
+ ["atk"]=2970000,
["atk_times"]=3,
["hurt_skill"]={
20097,
@@ -2464,7 +2455,7 @@ local monster_chapter = {
[18801]={
["monster_base"]=10035,
["hp"]=292280000,
- ["atk"]=3710000,
+ ["atk"]=3080000,
["atk_times"]=3,
["hurt_skill"]={
20100,
@@ -2476,7 +2467,7 @@ local monster_chapter = {
[18901]={
["monster_base"]=10033,
["hp"]=319330000,
- ["atk"]=3780000,
+ ["atk"]=3180000,
["atk_times"]=3,
["hurt_skill"]={
20094,
@@ -2489,7 +2480,7 @@ local monster_chapter = {
["monster_base"]=20003,
["is_boss"]=2,
["hp"]=504800000,
- ["atk"]=4930000,
+ ["atk"]=4340000,
["atk_times"]=4,
["hurt_skill"]={
30007,
@@ -2509,7 +2500,7 @@ local monster_chapter = {
[19101]={
["monster_base"]=10020,
["hp"]=54410000,
- ["atk"]=2670000,
+ ["atk"]=1740000,
["atk_times"]=3,
["hurt_skill"]={
20055,
@@ -2521,7 +2512,7 @@ local monster_chapter = {
[19201]={
["monster_base"]=10038,
["hp"]=75610000,
- ["atk"]=2800000,
+ ["atk"]=1850000,
["atk_times"]=3,
["hurt_skill"]={
20109,
@@ -2533,7 +2524,7 @@ local monster_chapter = {
[19301]={
["monster_base"]=10021,
["hp"]=85370000,
- ["atk"]=2910000,
+ ["atk"]=1950000,
["atk_times"]=3,
["hurt_skill"]={
20058,
@@ -2545,7 +2536,7 @@ local monster_chapter = {
[19401]={
["monster_base"]=10040,
["hp"]=113550000,
- ["atk"]=3040000,
+ ["atk"]=2020000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -2558,7 +2549,7 @@ local monster_chapter = {
["monster_base"]=20017,
["is_boss"]=1,
["hp"]=157640000,
- ["atk"]=3230000,
+ ["atk"]=2320000,
["atk_times"]=4,
["hurt_skill"]={
30049,
@@ -2573,7 +2564,7 @@ local monster_chapter = {
[19601]={
["monster_base"]=10022,
["hp"]=107690000,
- ["atk"]=3150000,
+ ["atk"]=2140000,
["atk_times"]=3,
["hurt_skill"]={
20061,
@@ -2585,7 +2576,7 @@ local monster_chapter = {
[19701]={
["monster_base"]=10004,
["hp"]=119690000,
- ["atk"]=3500000,
+ ["atk"]=2420000,
["atk_times"]=3,
["hurt_skill"]={
20010,
@@ -2597,7 +2588,7 @@ local monster_chapter = {
[19801]={
["monster_base"]=10023,
["hp"]=138380000,
- ["atk"]=3280000,
+ ["atk"]=2250000,
["atk_times"]=3,
["hurt_skill"]={
20064,
@@ -2609,7 +2600,7 @@ local monster_chapter = {
[19901]={
["monster_base"]=10007,
["hp"]=157640000,
- ["atk"]=3630000,
+ ["atk"]=2520000,
["atk_times"]=3,
["hurt_skill"]={
20019,
@@ -2622,7 +2613,7 @@ local monster_chapter = {
["monster_base"]=20007,
["is_boss"]=1,
["hp"]=297140000,
- ["atk"]=3520000,
+ ["atk"]=2810000,
["atk_times"]=4,
["hurt_skill"]={
30019,
@@ -2640,7 +2631,7 @@ local monster_chapter = {
[20101]={
["monster_base"]=10048,
["hp"]=171590000,
- ["atk"]=3440000,
+ ["atk"]=2630000,
["atk_times"]=3,
["hurt_skill"]={
20139,
@@ -2652,7 +2643,7 @@ local monster_chapter = {
[20201]={
["monster_base"]=10023,
["hp"]=194460000,
- ["atk"]=3550000,
+ ["atk"]=2690000,
["atk_times"]=3,
["hurt_skill"]={
20064,
@@ -2664,7 +2655,7 @@ local monster_chapter = {
[20301]={
["monster_base"]=10006,
["hp"]=206180000,
- ["atk"]=3660000,
+ ["atk"]=2810000,
["atk_times"]=3,
["hurt_skill"]={
20016,
@@ -2676,7 +2667,7 @@ local monster_chapter = {
[20401]={
["monster_base"]=10047,
["hp"]=223480000,
- ["atk"]=3760000,
+ ["atk"]=2920000,
["atk_times"]=3,
["hurt_skill"]={
20136,
@@ -2689,7 +2680,7 @@ local monster_chapter = {
["monster_base"]=20015,
["is_boss"]=1,
["hp"]=404830000,
- ["atk"]=3630000,
+ ["atk"]=2920000,
["atk_times"]=4,
["hurt_skill"]={
30043,
@@ -2707,7 +2698,7 @@ local monster_chapter = {
[20601]={
["monster_base"]=10021,
["hp"]=268120000,
- ["atk"]=3840000,
+ ["atk"]=3020000,
["atk_times"]=3,
["hurt_skill"]={
20058,
@@ -2719,7 +2710,7 @@ local monster_chapter = {
[20701]={
["monster_base"]=10006,
["hp"]=285980000,
- ["atk"]=3950000,
+ ["atk"]=3090000,
["atk_times"]=3,
["hurt_skill"]={
20016,
@@ -2731,7 +2722,7 @@ local monster_chapter = {
[20801]={
["monster_base"]=10048,
["hp"]=313880000,
- ["atk"]=4090000,
+ ["atk"]=3200000,
["atk_times"]=3,
["hurt_skill"]={
20139,
@@ -2743,7 +2734,7 @@ local monster_chapter = {
[20901]={
["monster_base"]=10023,
["hp"]=342890000,
- ["atk"]=4170000,
+ ["atk"]=3310000,
["atk_times"]=3,
["hurt_skill"]={
20064,
@@ -2756,7 +2747,7 @@ local monster_chapter = {
["monster_base"]=30014,
["is_boss"]=2,
["hp"]=541820000,
- ["atk"]=5390000,
+ ["atk"]=4510000,
["atk_times"]=4,
["hurt_skill"]={
40009,
@@ -2772,7 +2763,7 @@ local monster_chapter = {
[21101]={
["monster_base"]=10024,
["hp"]=57200000,
- ["atk"]=2860000,
+ ["atk"]=1840000,
["atk_times"]=3,
["hurt_skill"]={
20067,
@@ -2784,7 +2775,7 @@ local monster_chapter = {
[21201]={
["monster_base"]=10006,
["hp"]=79240000,
- ["atk"]=2990000,
+ ["atk"]=1960000,
["atk_times"]=3,
["hurt_skill"]={
20016,
@@ -2796,7 +2787,7 @@ local monster_chapter = {
[21301]={
["monster_base"]=10007,
["hp"]=89560000,
- ["atk"]=3120000,
+ ["atk"]=2060000,
["atk_times"]=3,
["hurt_skill"]={
20019,
@@ -2808,7 +2799,7 @@ local monster_chapter = {
[21401]={
["monster_base"]=10023,
["hp"]=118850000,
- ["atk"]=3230000,
+ ["atk"]=2140000,
["atk_times"]=3,
["hurt_skill"]={
20064,
@@ -2821,7 +2812,7 @@ local monster_chapter = {
["monster_base"]=20015,
["is_boss"]=1,
["hp"]=165170000,
- ["atk"]=3420000,
+ ["atk"]=2450000,
["atk_times"]=4,
["hurt_skill"]={
30043,
@@ -2839,7 +2830,7 @@ local monster_chapter = {
[21601]={
["monster_base"]=10048,
["hp"]=112720000,
- ["atk"]=3360000,
+ ["atk"]=2260000,
["atk_times"]=3,
["hurt_skill"]={
20139,
@@ -2851,7 +2842,7 @@ local monster_chapter = {
[21701]={
["monster_base"]=10025,
["hp"]=125270000,
- ["atk"]=3740000,
+ ["atk"]=2560000,
["atk_times"]=3,
["hurt_skill"]={
20070,
@@ -2863,7 +2854,7 @@ local monster_chapter = {
[21801]={
["monster_base"]=10004,
["hp"]=144800000,
- ["atk"]=3470000,
+ ["atk"]=2380000,
["atk_times"]=3,
["hurt_skill"]={
20010,
@@ -2875,7 +2866,7 @@ local monster_chapter = {
[21901]={
["monster_base"]=10022,
["hp"]=165170000,
- ["atk"]=3840000,
+ ["atk"]=2660000,
["atk_times"]=3,
["hurt_skill"]={
20061,
@@ -2888,7 +2879,7 @@ local monster_chapter = {
["monster_base"]=20005,
["is_boss"]=1,
["hp"]=311090000,
- ["atk"]=3740000,
+ ["atk"]=2970000,
["atk_times"]=4,
["hurt_skill"]={
30013,
@@ -2906,7 +2897,7 @@ local monster_chapter = {
[22101]={
["monster_base"]=10047,
["hp"]=179680000,
- ["atk"]=3660000,
+ ["atk"]=2780000,
["atk_times"]=3,
["hurt_skill"]={
20136,
@@ -2918,7 +2909,7 @@ local monster_chapter = {
[22201]={
["monster_base"]=10026,
["hp"]=203670000,
- ["atk"]=3790000,
+ ["atk"]=2840000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -2930,7 +2921,7 @@ local monster_chapter = {
[22301]={
["monster_base"]=10006,
["hp"]=215950000,
- ["atk"]=3900000,
+ ["atk"]=2970000,
["atk_times"]=3,
["hurt_skill"]={
20016,
@@ -2942,7 +2933,7 @@ local monster_chapter = {
[22401]={
["monster_base"]=10040,
["hp"]=234080000,
- ["atk"]=4010000,
+ ["atk"]=3090000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -2955,7 +2946,7 @@ local monster_chapter = {
["monster_base"]=20017,
["is_boss"]=1,
["hp"]=423800000,
- ["atk"]=3840000,
+ ["atk"]=3090000,
["atk_times"]=4,
["hurt_skill"]={
30049,
@@ -2970,7 +2961,7 @@ local monster_chapter = {
[22601]={
["monster_base"]=10020,
["hp"]=280670000,
- ["atk"]=4090000,
+ ["atk"]=3190000,
["atk_times"]=3,
["hurt_skill"]={
20055,
@@ -2982,7 +2973,7 @@ local monster_chapter = {
[22701]={
["monster_base"]=10010,
["hp"]=299370000,
- ["atk"]=4190000,
+ ["atk"]=3270000,
["atk_times"]=3,
["hurt_skill"]={
20028,
@@ -2994,7 +2985,7 @@ local monster_chapter = {
[22801]={
["monster_base"]=10038,
["hp"]=328380000,
- ["atk"]=4330000,
+ ["atk"]=3380000,
["atk_times"]=3,
["hurt_skill"]={
20109,
@@ -3006,7 +2997,7 @@ local monster_chapter = {
[22901]={
["monster_base"]=10027,
["hp"]=358790000,
- ["atk"]=4430000,
+ ["atk"]=3500000,
["atk_times"]=3,
["hurt_skill"]={
20076,
@@ -3019,7 +3010,7 @@ local monster_chapter = {
["monster_base"]=20008,
["is_boss"]=2,
["hp"]=566930000,
- ["atk"]=5690000,
+ ["atk"]=4760000,
["atk_times"]=4,
["hurt_skill"]={
30022,
@@ -3037,7 +3028,7 @@ local monster_chapter = {
[23101]={
["monster_base"]=10005,
["hp"]=62220000,
- ["atk"]=3150000,
+ ["atk"]=1910000,
["atk_times"]=3,
["hurt_skill"]={
20013,
@@ -3049,7 +3040,7 @@ local monster_chapter = {
[23201]={
["monster_base"]=10022,
["hp"]=86210000,
- ["atk"]=3310000,
+ ["atk"]=2030000,
["atk_times"]=3,
["hurt_skill"]={
20061,
@@ -3061,7 +3052,7 @@ local monster_chapter = {
[23301]={
["monster_base"]=10005,
["hp"]=97370000,
- ["atk"]=3440000,
+ ["atk"]=2130000,
["atk_times"]=3,
["hurt_skill"]={
20013,
@@ -3073,7 +3064,7 @@ local monster_chapter = {
[23401]={
["monster_base"]=10026,
["hp"]=129180000,
- ["atk"]=3550000,
+ ["atk"]=2220000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -3086,7 +3077,7 @@ local monster_chapter = {
["monster_base"]=20014,
["is_boss"]=1,
["hp"]=179400000,
- ["atk"]=3760000,
+ ["atk"]=2540000,
["atk_times"]=4,
["hurt_skill"]={
30040,
@@ -3104,7 +3095,7 @@ local monster_chapter = {
[23601]={
["monster_base"]=10022,
["hp"]=122480000,
- ["atk"]=3710000,
+ ["atk"]=2340000,
["atk_times"]=3,
["hurt_skill"]={
20061,
@@ -3116,7 +3107,7 @@ local monster_chapter = {
[23701]={
["monster_base"]=10026,
["hp"]=135870000,
- ["atk"]=4110000,
+ ["atk"]=2650000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -3128,7 +3119,7 @@ local monster_chapter = {
[23801]={
["monster_base"]=10032,
["hp"]=157080000,
- ["atk"]=3840000,
+ ["atk"]=2460000,
["atk_times"]=3,
["hurt_skill"]={
20091,
@@ -3140,7 +3131,7 @@ local monster_chapter = {
[23901]={
["monster_base"]=10044,
["hp"]=179400000,
- ["atk"]=4250000,
+ ["atk"]=2750000,
["atk_times"]=3,
["hurt_skill"]={
20127,
@@ -3153,7 +3144,7 @@ local monster_chapter = {
["monster_base"]=20015,
["is_boss"]=1,
["hp"]=337590000,
- ["atk"]=4110000,
+ ["atk"]=3070000,
["atk_times"]=4,
["hurt_skill"]={
30043,
@@ -3171,7 +3162,7 @@ local monster_chapter = {
[24101]={
["monster_base"]=10001,
["hp"]=195020000,
- ["atk"]=4030000,
+ ["atk"]=2880000,
["atk_times"]=3,
["hurt_skill"]={
20001,
@@ -3183,7 +3174,7 @@ local monster_chapter = {
[24201]={
["monster_base"]=10022,
["hp"]=220970000,
- ["atk"]=4170000,
+ ["atk"]=2940000,
["atk_times"]=3,
["hurt_skill"]={
20061,
@@ -3195,7 +3186,7 @@ local monster_chapter = {
[24301]={
["monster_base"]=10044,
["hp"]=234360000,
- ["atk"]=4270000,
+ ["atk"]=3070000,
["atk_times"]=3,
["hurt_skill"]={
20127,
@@ -3207,7 +3198,7 @@ local monster_chapter = {
[24401]={
["monster_base"]=10019,
["hp"]=253890000,
- ["atk"]=4410000,
+ ["atk"]=3200000,
["atk_times"]=3,
["hurt_skill"]={
20052,
@@ -3220,7 +3211,7 @@ local monster_chapter = {
["monster_base"]=20001,
["is_boss"]=1,
["hp"]=459790000,
- ["atk"]=4220000,
+ ["atk"]=3200000,
["atk_times"]=4,
["hurt_skill"]={
30001,
@@ -3235,7 +3226,7 @@ local monster_chapter = {
[24601]={
["monster_base"]=10013,
["hp"]=304670000,
- ["atk"]=4490000,
+ ["atk"]=3300000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -3247,7 +3238,7 @@ local monster_chapter = {
[24701]={
["monster_base"]=10005,
["hp"]=324760000,
- ["atk"]=4620000,
+ ["atk"]=3380000,
["atk_times"]=3,
["hurt_skill"]={
20013,
@@ -3259,7 +3250,7 @@ local monster_chapter = {
[24801]={
["monster_base"]=10026,
["hp"]=356280000,
- ["atk"]=4750000,
+ ["atk"]=3500000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -3271,7 +3262,7 @@ local monster_chapter = {
[24901]={
["monster_base"]=10032,
["hp"]=389210000,
- ["atk"]=4860000,
+ ["atk"]=3620000,
["atk_times"]=3,
["hurt_skill"]={
20091,
@@ -3284,7 +3275,7 @@ local monster_chapter = {
["monster_base"]=20006,
["is_boss"]=2,
["hp"]=614920000,
- ["atk"]=6220000,
+ ["atk"]=4920000,
["atk_times"]=4,
["hurt_skill"]={
30016,
@@ -3302,7 +3293,7 @@ local monster_chapter = {
[25101]={
["monster_base"]=10044,
["hp"]=63890000,
- ["atk"]=3280000,
+ ["atk"]=1980000,
["atk_times"]=3,
["hurt_skill"]={
20127,
@@ -3314,7 +3305,7 @@ local monster_chapter = {
[25201]={
["monster_base"]=10013,
["hp"]=88720000,
- ["atk"]=3440000,
+ ["atk"]=2100000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -3326,7 +3317,7 @@ local monster_chapter = {
[25301]={
["monster_base"]=10001,
["hp"]=100160000,
- ["atk"]=3580000,
+ ["atk"]=2200000,
["atk_times"]=3,
["hurt_skill"]={
20001,
@@ -3338,7 +3329,7 @@ local monster_chapter = {
[25401]={
["monster_base"]=10026,
["hp"]=132800000,
- ["atk"]=3710000,
+ ["atk"]=2300000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -3351,7 +3342,7 @@ local monster_chapter = {
["monster_base"]=20015,
["is_boss"]=1,
["hp"]=184420000,
- ["atk"]=3900000,
+ ["atk"]=2630000,
["atk_times"]=4,
["hurt_skill"]={
30043,
@@ -3369,7 +3360,7 @@ local monster_chapter = {
[25601]={
["monster_base"]=10022,
["hp"]=125830000,
- ["atk"]=3870000,
+ ["atk"]=2420000,
["atk_times"]=3,
["hurt_skill"]={
20061,
@@ -3381,7 +3372,7 @@ local monster_chapter = {
[25701]={
["monster_base"]=10044,
["hp"]=139500000,
- ["atk"]=4270000,
+ ["atk"]=2740000,
["atk_times"]=3,
["hurt_skill"]={
20127,
@@ -3393,7 +3384,7 @@ local monster_chapter = {
[25801]={
["monster_base"]=10032,
["hp"]=161540000,
- ["atk"]=4010000,
+ ["atk"]=2540000,
["atk_times"]=3,
["hurt_skill"]={
20091,
@@ -3405,7 +3396,7 @@ local monster_chapter = {
[25901]={
["monster_base"]=10019,
["hp"]=184420000,
- ["atk"]=4410000,
+ ["atk"]=2840000,
["atk_times"]=3,
["hurt_skill"]={
20052,
@@ -3418,7 +3409,7 @@ local monster_chapter = {
["monster_base"]=20008,
["is_boss"]=1,
["hp"]=346800000,
- ["atk"]=4250000,
+ ["atk"]=3170000,
["atk_times"]=4,
["hurt_skill"]={
30022,
@@ -3436,7 +3427,7 @@ local monster_chapter = {
[26101]={
["monster_base"]=10026,
["hp"]=200320000,
- ["atk"]=4190000,
+ ["atk"]=2980000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -3448,7 +3439,7 @@ local monster_chapter = {
[26201]={
["monster_base"]=10001,
["hp"]=227110000,
- ["atk"]=4330000,
+ ["atk"]=3040000,
["atk_times"]=3,
["hurt_skill"]={
20001,
@@ -3460,7 +3451,7 @@ local monster_chapter = {
[26301]={
["monster_base"]=10044,
["hp"]=240780000,
- ["atk"]=4460000,
+ ["atk"]=3170000,
["atk_times"]=3,
["hurt_skill"]={
20127,
@@ -3472,7 +3463,7 @@ local monster_chapter = {
[26401]={
["monster_base"]=10013,
["hp"]=260870000,
- ["atk"]=4590000,
+ ["atk"]=3310000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -3485,7 +3476,7 @@ local monster_chapter = {
["monster_base"]=20002,
["is_boss"]=1,
["hp"]=472070000,
- ["atk"]=4380000,
+ ["atk"]=3310000,
["atk_times"]=4,
["hurt_skill"]={
30004,
@@ -3500,7 +3491,7 @@ local monster_chapter = {
[26601]={
["monster_base"]=10001,
["hp"]=313040000,
- ["atk"]=4670000,
+ ["atk"]=3410000,
["atk_times"]=3,
["hurt_skill"]={
20001,
@@ -3512,7 +3503,7 @@ local monster_chapter = {
[26701]={
["monster_base"]=10032,
["hp"]=333680000,
- ["atk"]=4810000,
+ ["atk"]=3490000,
["atk_times"]=3,
["hurt_skill"]={
20091,
@@ -3524,7 +3515,7 @@ local monster_chapter = {
[26801]={
["monster_base"]=10022,
["hp"]=366050000,
- ["atk"]=4940000,
+ ["atk"]=3620000,
["atk_times"]=3,
["hurt_skill"]={
20061,
@@ -3536,7 +3527,7 @@ local monster_chapter = {
[26901]={
["monster_base"]=10005,
["hp"]=399810000,
- ["atk"]=5050000,
+ ["atk"]=3740000,
["atk_times"]=3,
["hurt_skill"]={
20013,
@@ -3549,7 +3540,7 @@ local monster_chapter = {
["monster_base"]=20021,
["is_boss"]=2,
["hp"]=631380000,
- ["atk"]=6430000,
+ ["atk"]=5080000,
["atk_times"]=4,
["hurt_skill"]={
30061,
@@ -3568,7 +3559,7 @@ local monster_chapter = {
[27101]={
["monster_base"]=10022,
["hp"]=67070000,
- ["atk"]=3510000,
+ ["atk"]=2090000,
["atk_times"]=3,
["hurt_skill"]={
20061,
@@ -3580,7 +3571,7 @@ local monster_chapter = {
[27201]={
["monster_base"]=10044,
["hp"]=93010000,
- ["atk"]=3670000,
+ ["atk"]=2220000,
["atk_times"]=3,
["hurt_skill"]={
20127,
@@ -3592,7 +3583,7 @@ local monster_chapter = {
[27301]={
["monster_base"]=10032,
["hp"]=104880000,
- ["atk"]=3800000,
+ ["atk"]=2320000,
["atk_times"]=3,
["hurt_skill"]={
20091,
@@ -3604,7 +3595,7 @@ local monster_chapter = {
[27401]={
["monster_base"]=10019,
["hp"]=139100000,
- ["atk"]=3930000,
+ ["atk"]=2430000,
["atk_times"]=3,
["hurt_skill"]={
20052,
@@ -3617,7 +3608,7 @@ local monster_chapter = {
["monster_base"]=20008,
["is_boss"]=1,
["hp"]=192920000,
- ["atk"]=4120000,
+ ["atk"]=2780000,
["atk_times"]=4,
["hurt_skill"]={
30022,
@@ -3635,7 +3626,7 @@ local monster_chapter = {
[27601]={
["monster_base"]=10005,
["hp"]=131650000,
- ["atk"]=4090000,
+ ["atk"]=2550000,
["atk_times"]=3,
["hurt_skill"]={
20013,
@@ -3647,7 +3638,7 @@ local monster_chapter = {
[27701]={
["monster_base"]=10022,
["hp"]=146000000,
- ["atk"]=4510000,
+ ["atk"]=2890000,
["atk_times"]=3,
["hurt_skill"]={
20061,
@@ -3659,7 +3650,7 @@ local monster_chapter = {
[27801]={
["monster_base"]=10005,
["hp"]=169190000,
- ["atk"]=4220000,
+ ["atk"]=2680000,
["atk_times"]=3,
["hurt_skill"]={
20013,
@@ -3671,7 +3662,7 @@ local monster_chapter = {
[27901]={
["monster_base"]=10026,
["hp"]=192920000,
- ["atk"]=4670000,
+ ["atk"]=3000000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -3684,7 +3675,7 @@ local monster_chapter = {
["monster_base"]=20014,
["is_boss"]=1,
["hp"]=362940000,
- ["atk"]=4490000,
+ ["atk"]=3340000,
["atk_times"]=4,
["hurt_skill"]={
30040,
@@ -3702,7 +3693,7 @@ local monster_chapter = {
[28101]={
["monster_base"]=10013,
["hp"]=209760000,
- ["atk"]=4460000,
+ ["atk"]=3140000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -3714,7 +3705,7 @@ local monster_chapter = {
[28201]={
["monster_base"]=10005,
["hp"]=237640000,
- ["atk"]=4590000,
+ ["atk"]=3210000,
["atk_times"]=3,
["hurt_skill"]={
20013,
@@ -3726,7 +3717,7 @@ local monster_chapter = {
[28301]={
["monster_base"]=10026,
["hp"]=251990000,
- ["atk"]=4700000,
+ ["atk"]=3340000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -3738,7 +3729,7 @@ local monster_chapter = {
[28401]={
["monster_base"]=10032,
["hp"]=272960000,
- ["atk"]=4860000,
+ ["atk"]=3490000,
["atk_times"]=3,
["hurt_skill"]={
20091,
@@ -3751,7 +3742,7 @@ local monster_chapter = {
["monster_base"]=20006,
["is_boss"]=1,
["hp"]=494040000,
- ["atk"]=4620000,
+ ["atk"]=3490000,
["atk_times"]=4,
["hurt_skill"]={
30016,
@@ -3769,7 +3760,7 @@ local monster_chapter = {
[28601]={
["monster_base"]=10013,
["hp"]=327610000,
- ["atk"]=4940000,
+ ["atk"]=3600000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -3781,7 +3772,7 @@ local monster_chapter = {
[28701]={
["monster_base"]=10005,
["hp"]=349140000,
- ["atk"]=5070000,
+ ["atk"]=3680000,
["atk_times"]=3,
["hurt_skill"]={
20013,
@@ -3793,7 +3784,7 @@ local monster_chapter = {
[28801]={
["monster_base"]=10026,
["hp"]=383090000,
- ["atk"]=5230000,
+ ["atk"]=3820000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -3805,7 +3796,7 @@ local monster_chapter = {
[28901]={
["monster_base"]=10001,
["hp"]=418420000,
- ["atk"]=5330000,
+ ["atk"]=3940000,
["atk_times"]=3,
["hurt_skill"]={
20001,
@@ -3818,7 +3809,7 @@ local monster_chapter = {
["monster_base"]=30010,
["is_boss"]=2,
["hp"]=660740000,
- ["atk"]=6760000,
+ ["atk"]=5360000,
["atk_times"]=4,
["hurt_skill"]={
40013,
@@ -3834,7 +3825,7 @@ local monster_chapter = {
[29101]={
["monster_base"]=10013,
["hp"]=70100000,
- ["atk"]=3700000,
+ ["atk"]=2160000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -3846,7 +3837,7 @@ local monster_chapter = {
[29201]={
["monster_base"]=10005,
["hp"]=97150000,
- ["atk"]=3880000,
+ ["atk"]=2300000,
["atk_times"]=3,
["hurt_skill"]={
20013,
@@ -3858,7 +3849,7 @@ local monster_chapter = {
[29301]={
["monster_base"]=10026,
["hp"]=109300000,
- ["atk"]=4040000,
+ ["atk"]=2400000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -3870,7 +3861,7 @@ local monster_chapter = {
[29401]={
["monster_base"]=10032,
["hp"]=145180000,
- ["atk"]=4170000,
+ ["atk"]=2510000,
["atk_times"]=3,
["hurt_skill"]={
20091,
@@ -3883,7 +3874,7 @@ local monster_chapter = {
["monster_base"]=20006,
["is_boss"]=1,
["hp"]=201200000,
- ["atk"]=4330000,
+ ["atk"]=2870000,
["atk_times"]=4,
["hurt_skill"]={
30016,
@@ -3901,7 +3892,7 @@ local monster_chapter = {
[29601]={
["monster_base"]=10001,
["hp"]=137450000,
- ["atk"]=4330000,
+ ["atk"]=2640000,
["atk_times"]=3,
["hurt_skill"]={
20001,
@@ -3913,7 +3904,7 @@ local monster_chapter = {
[29701]={
["monster_base"]=10032,
["hp"]=152350000,
- ["atk"]=4780000,
+ ["atk"]=2990000,
["atk_times"]=3,
["hurt_skill"]={
20091,
@@ -3925,7 +3916,7 @@ local monster_chapter = {
[29801]={
["monster_base"]=10022,
["hp"]=176360000,
- ["atk"]=4460000,
+ ["atk"]=2770000,
["atk_times"]=3,
["hurt_skill"]={
20061,
@@ -3937,7 +3928,7 @@ local monster_chapter = {
[29901]={
["monster_base"]=10005,
["hp"]=201200000,
- ["atk"]=4910000,
+ ["atk"]=3100000,
["atk_times"]=3,
["hurt_skill"]={
20013,
@@ -3950,7 +3941,7 @@ local monster_chapter = {
["monster_base"]=20021,
["is_boss"]=1,
["hp"]=378400000,
- ["atk"]=4730000,
+ ["atk"]=3450000,
["atk_times"]=4,
["hurt_skill"]={
30061,
@@ -3969,7 +3960,7 @@ local monster_chapter = {
[30101]={
["monster_base"]=10022,
["hp"]=218590000,
- ["atk"]=4700000,
+ ["atk"]=3240000,
["atk_times"]=3,
["hurt_skill"]={
20061,
@@ -3981,7 +3972,7 @@ local monster_chapter = {
[30201]={
["monster_base"]=10004,
["hp"]=247850000,
- ["atk"]=4830000,
+ ["atk"]=3320000,
["atk_times"]=3,
["hurt_skill"]={
20010,
@@ -3993,7 +3984,7 @@ local monster_chapter = {
[30301]={
["monster_base"]=10023,
["hp"]=262750000,
- ["atk"]=4960000,
+ ["atk"]=3450000,
["atk_times"]=3,
["hurt_skill"]={
20064,
@@ -4005,7 +3996,7 @@ local monster_chapter = {
[30401]={
["monster_base"]=10007,
["hp"]=284560000,
- ["atk"]=5120000,
+ ["atk"]=3610000,
["atk_times"]=3,
["hurt_skill"]={
20019,
@@ -4018,7 +4009,7 @@ local monster_chapter = {
["monster_base"]=20007,
["is_boss"]=1,
["hp"]=515020000,
- ["atk"]=4860000,
+ ["atk"]=3610000,
["atk_times"]=4,
["hurt_skill"]={
30019,
@@ -4036,7 +4027,7 @@ local monster_chapter = {
[30601]={
["monster_base"]=10019,
["hp"]=341410000,
- ["atk"]=5200000,
+ ["atk"]=3720000,
["atk_times"]=3,
["hurt_skill"]={
20052,
@@ -4048,7 +4039,7 @@ local monster_chapter = {
[30701]={
["monster_base"]=10023,
["hp"]=364040000,
- ["atk"]=5360000,
+ ["atk"]=3800000,
["atk_times"]=3,
["hurt_skill"]={
20064,
@@ -4060,7 +4051,7 @@ local monster_chapter = {
[30801]={
["monster_base"]=10005,
["hp"]=399370000,
- ["atk"]=5490000,
+ ["atk"]=3950000,
["atk_times"]=3,
["hurt_skill"]={
20013,
@@ -4072,7 +4063,7 @@ local monster_chapter = {
[30901]={
["monster_base"]=10033,
["hp"]=436080000,
- ["atk"]=5620000,
+ ["atk"]=4070000,
["atk_times"]=3,
["hurt_skill"]={
20094,
@@ -4085,7 +4076,7 @@ local monster_chapter = {
["monster_base"]=20016,
["is_boss"]=2,
["hp"]=688620000,
- ["atk"]=7080000,
+ ["atk"]=5530000,
["atk_times"]=4,
["hurt_skill"]={
30046,
@@ -4104,7 +4095,7 @@ local monster_chapter = {
[31101]={
["monster_base"]=10026,
["hp"]=73440000,
- ["atk"]=3940000,
+ ["atk"]=2270000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -4116,7 +4107,7 @@ local monster_chapter = {
[31201]={
["monster_base"]=10001,
["hp"]=101830000,
- ["atk"]=4120000,
+ ["atk"]=2420000,
["atk_times"]=3,
["hurt_skill"]={
20001,
@@ -4128,7 +4119,7 @@ local monster_chapter = {
[31301]={
["monster_base"]=10044,
["hp"]=114660000,
- ["atk"]=4280000,
+ ["atk"]=2520000,
["atk_times"]=3,
["hurt_skill"]={
20127,
@@ -4140,7 +4131,7 @@ local monster_chapter = {
[31401]={
["monster_base"]=10013,
["hp"]=152060000,
- ["atk"]=4410000,
+ ["atk"]=2640000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -4153,7 +4144,7 @@ local monster_chapter = {
["monster_base"]=20002,
["is_boss"]=1,
["hp"]=210760000,
- ["atk"]=4590000,
+ ["atk"]=3020000,
["atk_times"]=4,
["hurt_skill"]={
30004,
@@ -4168,7 +4159,7 @@ local monster_chapter = {
[31601]={
["monster_base"]=10048,
["hp"]=144140000,
- ["atk"]=4570000,
+ ["atk"]=2770000,
["atk_times"]=3,
["hurt_skill"]={
20139,
@@ -4180,7 +4171,7 @@ local monster_chapter = {
[31701]={
["monster_base"]=10006,
["hp"]=159710000,
- ["atk"]=5040000,
+ ["atk"]=3140000,
["atk_times"]=3,
["hurt_skill"]={
20016,
@@ -4192,7 +4183,7 @@ local monster_chapter = {
[31801]={
["monster_base"]=10012,
["hp"]=184820000,
- ["atk"]=4720000,
+ ["atk"]=2910000,
["atk_times"]=3,
["hurt_skill"]={
20031,
@@ -4204,7 +4195,7 @@ local monster_chapter = {
[31901]={
["monster_base"]=10004,
["hp"]=210760000,
- ["atk"]=5190000,
+ ["atk"]=3260000,
["atk_times"]=3,
["hurt_skill"]={
20010,
@@ -4217,7 +4208,7 @@ local monster_chapter = {
["monster_base"]=20004,
["is_boss"]=1,
["hp"]=396120000,
- ["atk"]=4990000,
+ ["atk"]=3620000,
["atk_times"]=4,
["hurt_skill"]={
30010,
@@ -4232,7 +4223,7 @@ local monster_chapter = {
[32101]={
["monster_base"]=10024,
["hp"]=229050000,
- ["atk"]=4990000,
+ ["atk"]=3400000,
["atk_times"]=3,
["hurt_skill"]={
20067,
@@ -4244,7 +4235,7 @@ local monster_chapter = {
[32201]={
["monster_base"]=10044,
["hp"]=259620000,
- ["atk"]=5120000,
+ ["atk"]=3490000,
["atk_times"]=3,
["hurt_skill"]={
20127,
@@ -4256,7 +4247,7 @@ local monster_chapter = {
[32301]={
["monster_base"]=10016,
["hp"]=275180000,
- ["atk"]=5250000,
+ ["atk"]=3620000,
["atk_times"]=3,
["hurt_skill"]={
20043,
@@ -4268,7 +4259,7 @@ local monster_chapter = {
[32401]={
["monster_base"]=10019,
["hp"]=298120000,
- ["atk"]=5400000,
+ ["atk"]=3790000,
["atk_times"]=3,
["hurt_skill"]={
20052,
@@ -4281,7 +4272,7 @@ local monster_chapter = {
["monster_base"]=20008,
["is_boss"]=1,
["hp"]=539180000,
- ["atk"]=5120000,
+ ["atk"]=3790000,
["atk_times"]=4,
["hurt_skill"]={
30022,
@@ -4299,7 +4290,7 @@ local monster_chapter = {
[32601]={
["monster_base"]=10004,
["hp"]=357630000,
- ["atk"]=5510000,
+ ["atk"]=3910000,
["atk_times"]=3,
["hurt_skill"]={
20010,
@@ -4311,7 +4302,7 @@ local monster_chapter = {
[32701]={
["monster_base"]=10006,
["hp"]=381110000,
- ["atk"]=5660000,
+ ["atk"]=3990000,
["atk_times"]=3,
["hurt_skill"]={
20016,
@@ -4323,7 +4314,7 @@ local monster_chapter = {
[32801]={
["monster_base"]=10048,
["hp"]=418240000,
- ["atk"]=5790000,
+ ["atk"]=4150000,
["atk_times"]=3,
["hurt_skill"]={
20139,
@@ -4335,7 +4326,7 @@ local monster_chapter = {
[32901]={
["monster_base"]=10037,
["hp"]=456730000,
- ["atk"]=5920000,
+ ["atk"]=4280000,
["atk_times"]=3,
["hurt_skill"]={
20106,
@@ -4348,7 +4339,7 @@ local monster_chapter = {
["monster_base"]=30020,
["is_boss"]=2,
["hp"]=720990000,
- ["atk"]=7460000,
+ ["atk"]=5810000,
["atk_times"]=4,
["hurt_skill"]={
40033,
@@ -4364,7 +4355,7 @@ local monster_chapter = {
[33101]={
["monster_base"]=10049,
["hp"]=75620000,
- ["atk"]=4100000,
+ ["atk"]=2370000,
["atk_times"]=3,
["hurt_skill"]={
20142,
@@ -4376,7 +4367,7 @@ local monster_chapter = {
[33201]={
["monster_base"]=10005,
["hp"]=104830000,
- ["atk"]=4280000,
+ ["atk"]=2520000,
["atk_times"]=3,
["hurt_skill"]={
20013,
@@ -4388,7 +4379,7 @@ local monster_chapter = {
[33301]={
["monster_base"]=10024,
["hp"]=117940000,
- ["atk"]=4440000,
+ ["atk"]=2630000,
["atk_times"]=3,
["hurt_skill"]={
20067,
@@ -4400,7 +4391,7 @@ local monster_chapter = {
[33401]={
["monster_base"]=10012,
["hp"]=156430000,
- ["atk"]=4590000,
+ ["atk"]=2750000,
["atk_times"]=3,
["hurt_skill"]={
20031,
@@ -4413,7 +4404,7 @@ local monster_chapter = {
["monster_base"]=20006,
["is_boss"]=1,
["hp"]=216760000,
- ["atk"]=4750000,
+ ["atk"]=3150000,
["atk_times"]=4,
["hurt_skill"]={
30016,
@@ -4431,7 +4422,7 @@ local monster_chapter = {
[33601]={
["monster_base"]=10048,
["hp"]=148240000,
- ["atk"]=4750000,
+ ["atk"]=2890000,
["atk_times"]=3,
["hurt_skill"]={
20139,
@@ -4443,7 +4434,7 @@ local monster_chapter = {
[33701]={
["monster_base"]=10049,
["hp"]=164350000,
- ["atk"]=5250000,
+ ["atk"]=3270000,
["atk_times"]=3,
["hurt_skill"]={
20142,
@@ -4455,7 +4446,7 @@ local monster_chapter = {
[33801]={
["monster_base"]=10004,
["hp"]=190010000,
- ["atk"]=4930000,
+ ["atk"]=3030000,
["atk_times"]=3,
["hurt_skill"]={
20010,
@@ -4467,7 +4458,7 @@ local monster_chapter = {
[33901]={
["monster_base"]=10006,
["hp"]=216760000,
- ["atk"]=5400000,
+ ["atk"]=3400000,
["atk_times"]=3,
["hurt_skill"]={
20016,
@@ -4480,7 +4471,7 @@ local monster_chapter = {
["monster_base"]=20007,
["is_boss"]=1,
["hp"]=407040000,
- ["atk"]=5170000,
+ ["atk"]=3770000,
["atk_times"]=4,
["hurt_skill"]={
30019,
@@ -4498,7 +4489,7 @@ local monster_chapter = {
[34101]={
["monster_base"]=10020,
["hp"]=235600000,
- ["atk"]=5170000,
+ ["atk"]=3540000,
["atk_times"]=3,
["hurt_skill"]={
20055,
@@ -4510,7 +4501,7 @@ local monster_chapter = {
[34201]={
["monster_base"]=10024,
["hp"]=266990000,
- ["atk"]=5320000,
+ ["atk"]=3640000,
["atk_times"]=3,
["hurt_skill"]={
20067,
@@ -4522,7 +4513,7 @@ local monster_chapter = {
[34301]={
["monster_base"]=10012,
["hp"]=282830000,
- ["atk"]=5450000,
+ ["atk"]=3770000,
["atk_times"]=3,
["hurt_skill"]={
20031,
@@ -4534,7 +4525,7 @@ local monster_chapter = {
[34401]={
["monster_base"]=10016,
["hp"]=306580000,
- ["atk"]=5610000,
+ ["atk"]=3950000,
["atk_times"]=3,
["hurt_skill"]={
20043,
@@ -4547,7 +4538,7 @@ local monster_chapter = {
["monster_base"]=20002,
["is_boss"]=1,
["hp"]=554190000,
- ["atk"]=5300000,
+ ["atk"]=3950000,
["atk_times"]=4,
["hurt_skill"]={
30004,
@@ -4562,7 +4553,7 @@ local monster_chapter = {
[34601]={
["monster_base"]=10004,
["hp"]=367730000,
- ["atk"]=5720000,
+ ["atk"]=4070000,
["atk_times"]=3,
["hurt_skill"]={
20010,
@@ -4574,7 +4565,7 @@ local monster_chapter = {
[34701]={
["monster_base"]=10012,
["hp"]=391760000,
- ["atk"]=5870000,
+ ["atk"]=4160000,
["atk_times"]=3,
["hurt_skill"]={
20031,
@@ -4586,7 +4577,7 @@ local monster_chapter = {
[34801]={
["monster_base"]=10049,
["hp"]=429980000,
- ["atk"]=6030000,
+ ["atk"]=4320000,
["atk_times"]=3,
["hurt_skill"]={
20142,
@@ -4598,7 +4589,7 @@ local monster_chapter = {
[34901]={
["monster_base"]=10048,
["hp"]=469560000,
- ["atk"]=6160000,
+ ["atk"]=4460000,
["atk_times"]=3,
["hurt_skill"]={
20139,
@@ -4611,7 +4602,7 @@ local monster_chapter = {
["monster_base"]=20009,
["is_boss"]=2,
["hp"]=740920000,
- ["atk"]=7700000,
+ ["atk"]=6050000,
["atk_times"]=4,
["hurt_skill"]={
30025,
@@ -4630,7 +4621,7 @@ local monster_chapter = {
[35101]={
["monster_base"]=10004,
["hp"]=79650000,
- ["atk"]=4360000,
+ ["atk"]=2460000,
["atk_times"]=3,
["hurt_skill"]={
20010,
@@ -4642,7 +4633,7 @@ local monster_chapter = {
[35201]={
["monster_base"]=10020,
["hp"]=110160000,
- ["atk"]=4570000,
+ ["atk"]=2610000,
["atk_times"]=3,
["hurt_skill"]={
20055,
@@ -4654,7 +4645,7 @@ local monster_chapter = {
[35301]={
["monster_base"]=10048,
["hp"]=123930000,
- ["atk"]=4720000,
+ ["atk"]=2730000,
["atk_times"]=3,
["hurt_skill"]={
20139,
@@ -4666,7 +4657,7 @@ local monster_chapter = {
[35401]={
["monster_base"]=10012,
["hp"]=164430000,
- ["atk"]=4880000,
+ ["atk"]=2850000,
["atk_times"]=3,
["hurt_skill"]={
20031,
@@ -4679,7 +4670,7 @@ local monster_chapter = {
["monster_base"]=20014,
["is_boss"]=1,
["hp"]=227610000,
- ["atk"]=5030000,
+ ["atk"]=3260000,
["atk_times"]=4,
["hurt_skill"]={
30040,
@@ -4697,7 +4688,7 @@ local monster_chapter = {
[35601]={
["monster_base"]=10004,
["hp"]=155790000,
- ["atk"]=5060000,
+ ["atk"]=2990000,
["atk_times"]=3,
["hurt_skill"]={
20010,
@@ -4709,7 +4700,7 @@ local monster_chapter = {
[35701]={
["monster_base"]=10012,
["hp"]=172800000,
- ["atk"]=5570000,
+ ["atk"]=3390000,
["atk_times"]=3,
["hurt_skill"]={
20031,
@@ -4721,7 +4712,7 @@ local monster_chapter = {
[35801]={
["monster_base"]=10037,
["hp"]=199530000,
- ["atk"]=5210000,
+ ["atk"]=3140000,
["atk_times"]=3,
["hurt_skill"]={
20106,
@@ -4733,7 +4724,7 @@ local monster_chapter = {
[35901]={
["monster_base"]=10048,
["hp"]=227610000,
- ["atk"]=5730000,
+ ["atk"]=3520000,
["atk_times"]=3,
["hurt_skill"]={
20139,
@@ -4746,7 +4737,7 @@ local monster_chapter = {
["monster_base"]=20009,
["is_boss"]=1,
["hp"]=427410000,
- ["atk"]=5470000,
+ ["atk"]=3900000,
["atk_times"]=4,
["hurt_skill"]={
30025,
@@ -4765,7 +4756,7 @@ local monster_chapter = {
[36101]={
["monster_base"]=10014,
["hp"]=247590000,
- ["atk"]=5500000,
+ ["atk"]=3670000,
["atk_times"]=3,
["hurt_skill"]={
20037,
@@ -4777,7 +4768,7 @@ local monster_chapter = {
[36201]={
["monster_base"]=10027,
["hp"]=280530000,
- ["atk"]=5650000,
+ ["atk"]=3770000,
["atk_times"]=3,
["hurt_skill"]={
20076,
@@ -4789,7 +4780,7 @@ local monster_chapter = {
[36301]={
["monster_base"]=10017,
["hp"]=297000000,
- ["atk"]=5780000,
+ ["atk"]=3900000,
["atk_times"]=3,
["hurt_skill"]={
20046,
@@ -4801,7 +4792,7 @@ local monster_chapter = {
[36401]={
["monster_base"]=10023,
["hp"]=322110000,
- ["atk"]=5930000,
+ ["atk"]=4090000,
["atk_times"]=3,
["hurt_skill"]={
20064,
@@ -4814,7 +4805,7 @@ local monster_chapter = {
["monster_base"]=20015,
["is_boss"]=1,
["hp"]=582120000,
- ["atk"]=5600000,
+ ["atk"]=4090000,
["atk_times"]=4,
["hurt_skill"]={
30043,
@@ -4832,7 +4823,7 @@ local monster_chapter = {
[36601]={
["monster_base"]=10014,
["hp"]=386370000,
- ["atk"]=6060000,
+ ["atk"]=4220000,
["atk_times"]=3,
["hurt_skill"]={
20037,
@@ -4844,7 +4835,7 @@ local monster_chapter = {
[36701]={
["monster_base"]=10002,
["hp"]=411480000,
- ["atk"]=6220000,
+ ["atk"]=4310000,
["atk_times"]=3,
["hurt_skill"]={
20004,
@@ -4856,7 +4847,7 @@ local monster_chapter = {
[36801]={
["monster_base"]=10029,
["hp"]=451710000,
- ["atk"]=6370000,
+ ["atk"]=4470000,
["atk_times"]=3,
["hurt_skill"]={
20082,
@@ -4868,7 +4859,7 @@ local monster_chapter = {
[36901]={
["monster_base"]=10036,
["hp"]=493290000,
- ["atk"]=6530000,
+ ["atk"]=4620000,
["atk_times"]=3,
["hurt_skill"]={
20103,
@@ -4881,7 +4872,7 @@ local monster_chapter = {
["monster_base"]=30009,
["is_boss"]=2,
["hp"]=778140000,
- ["atk"]=8130000,
+ ["atk"]=6260000,
["atk_times"]=4,
["hurt_skill"]={
40021,
@@ -4897,7 +4888,7 @@ local monster_chapter = {
[37101]={
["monster_base"]=10054,
["hp"]=82890000,
- ["atk"]=4590000,
+ ["atk"]=2530000,
["atk_times"]=3,
["hurt_skill"]={
20157,
@@ -4909,7 +4900,7 @@ local monster_chapter = {
[37201]={
["monster_base"]=10024,
["hp"]=114480000,
- ["atk"]=4800000,
+ ["atk"]=2690000,
["atk_times"]=3,
["hurt_skill"]={
20067,
@@ -4921,7 +4912,7 @@ local monster_chapter = {
[37301]={
["monster_base"]=10012,
["hp"]=128790000,
- ["atk"]=4950000,
+ ["atk"]=2810000,
["atk_times"]=3,
["hurt_skill"]={
20031,
@@ -4933,7 +4924,7 @@ local monster_chapter = {
[37401]={
["monster_base"]=10048,
["hp"]=170910000,
- ["atk"]=5110000,
+ ["atk"]=2930000,
["atk_times"]=3,
["hurt_skill"]={
20139,
@@ -4946,7 +4937,7 @@ local monster_chapter = {
["monster_base"]=20009,
["is_boss"]=1,
["hp"]=236520000,
- ["atk"]=5260000,
+ ["atk"]=3350000,
["atk_times"]=4,
["hurt_skill"]={
30025,
@@ -4965,7 +4956,7 @@ local monster_chapter = {
[37601]={
["monster_base"]=10048,
["hp"]=162000000,
- ["atk"]=5290000,
+ ["atk"]=3080000,
["atk_times"]=3,
["hurt_skill"]={
20139,
@@ -4977,7 +4968,7 @@ local monster_chapter = {
[37701]={
["monster_base"]=10054,
["hp"]=179550000,
- ["atk"]=5830000,
+ ["atk"]=3490000,
["atk_times"]=3,
["hurt_skill"]={
20157,
@@ -4989,7 +4980,7 @@ local monster_chapter = {
[37801]={
["monster_base"]=10012,
["hp"]=207360000,
- ["atk"]=5470000,
+ ["atk"]=3230000,
["atk_times"]=3,
["hurt_skill"]={
20031,
@@ -5001,7 +4992,7 @@ local monster_chapter = {
[37901]={
["monster_base"]=10024,
["hp"]=236520000,
- ["atk"]=6010000,
+ ["atk"]=3620000,
["atk_times"]=3,
["hurt_skill"]={
20067,
@@ -5014,7 +5005,7 @@ local monster_chapter = {
["monster_base"]=20006,
["is_boss"]=1,
["hp"]=443880000,
- ["atk"]=5700000,
+ ["atk"]=4010000,
["atk_times"]=4,
["hurt_skill"]={
30016,
@@ -5032,7 +5023,7 @@ local monster_chapter = {
[38101]={
["monster_base"]=10020,
["hp"]=257310000,
- ["atk"]=5750000,
+ ["atk"]=3770000,
["atk_times"]=3,
["hurt_skill"]={
20055,
@@ -5044,7 +5035,7 @@ local monster_chapter = {
[38201]={
["monster_base"]=10053,
["hp"]=291330000,
- ["atk"]=5910000,
+ ["atk"]=3880000,
["atk_times"]=3,
["hurt_skill"]={
20154,
@@ -5056,7 +5047,7 @@ local monster_chapter = {
[38301]={
["monster_base"]=10006,
["hp"]=308340000,
- ["atk"]=6040000,
+ ["atk"]=4010000,
["atk_times"]=3,
["hurt_skill"]={
20016,
@@ -5068,7 +5059,7 @@ local monster_chapter = {
[38401]={
["monster_base"]=10004,
["hp"]=334530000,
- ["atk"]=6220000,
+ ["atk"]=4210000,
["atk_times"]=3,
["hurt_skill"]={
20010,
@@ -5081,7 +5072,7 @@ local monster_chapter = {
["monster_base"]=20004,
["is_boss"]=1,
["hp"]=604530000,
- ["atk"]=5860000,
+ ["atk"]=4210000,
["atk_times"]=4,
["hurt_skill"]={
30010,
@@ -5096,7 +5087,7 @@ local monster_chapter = {
[38601]={
["monster_base"]=10053,
["hp"]=401220000,
- ["atk"]=6350000,
+ ["atk"]=4340000,
["atk_times"]=3,
["hurt_skill"]={
20154,
@@ -5108,7 +5099,7 @@ local monster_chapter = {
[38701]={
["monster_base"]=10049,
["hp"]=427410000,
- ["atk"]=6500000,
+ ["atk"]=4430000,
["atk_times"]=3,
["hurt_skill"]={
20142,
@@ -5120,7 +5111,7 @@ local monster_chapter = {
[38801]={
["monster_base"]=10020,
["hp"]=468990000,
- ["atk"]=6680000,
+ ["atk"]=4600000,
["atk_times"]=3,
["hurt_skill"]={
20055,
@@ -5132,7 +5123,7 @@ local monster_chapter = {
[38901]={
["monster_base"]=10054,
["hp"]=512190000,
- ["atk"]=6810000,
+ ["atk"]=4750000,
["atk_times"]=3,
["hurt_skill"]={
20157,
@@ -5145,7 +5136,7 @@ local monster_chapter = {
["monster_base"]=20010,
["is_boss"]=2,
["hp"]=808110000,
- ["atk"]=8490000,
+ ["atk"]=6440000,
["atk_times"]=4,
["hurt_skill"]={
30028,
@@ -5166,7 +5157,7 @@ local monster_chapter = {
[39101]={
["monster_base"]=10052,
["hp"]=85050000,
- ["atk"]=4750000,
+ ["atk"]=2610000,
["atk_times"]=3,
["hurt_skill"]={
20151,
@@ -5178,7 +5169,7 @@ local monster_chapter = {
[39201]={
["monster_base"]=10050,
["hp"]=117450000,
- ["atk"]=4980000,
+ ["atk"]=2780000,
["atk_times"]=3,
["hurt_skill"]={
20145,
@@ -5190,7 +5181,7 @@ local monster_chapter = {
[39301]={
["monster_base"]=10010,
["hp"]=132030000,
- ["atk"]=5130000,
+ ["atk"]=2900000,
["atk_times"]=3,
["hurt_skill"]={
20028,
@@ -5202,7 +5193,7 @@ local monster_chapter = {
[39401]={
["monster_base"]=10053,
["hp"]=175230000,
- ["atk"]=5310000,
+ ["atk"]=3020000,
["atk_times"]=3,
["hurt_skill"]={
20154,
@@ -5215,7 +5206,7 @@ local monster_chapter = {
["monster_base"]=20005,
["is_boss"]=1,
["hp"]=242460000,
- ["atk"]=5440000,
+ ["atk"]=3460000,
["atk_times"]=4,
["hurt_skill"]={
30013,
@@ -5233,7 +5224,7 @@ local monster_chapter = {
[39601]={
["monster_base"]=10040,
["hp"]=166050000,
- ["atk"]=5500000,
+ ["atk"]=3180000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -5245,7 +5236,7 @@ local monster_chapter = {
[39701]={
["monster_base"]=10052,
["hp"]=184140000,
- ["atk"]=6040000,
+ ["atk"]=3600000,
["atk_times"]=3,
["hurt_skill"]={
20151,
@@ -5257,7 +5248,7 @@ local monster_chapter = {
[39801]={
["monster_base"]=10054,
["hp"]=212760000,
- ["atk"]=5680000,
+ ["atk"]=3330000,
["atk_times"]=3,
["hurt_skill"]={
20157,
@@ -5269,7 +5260,7 @@ local monster_chapter = {
[39901]={
["monster_base"]=10038,
["hp"]=242460000,
- ["atk"]=6220000,
+ ["atk"]=3740000,
["atk_times"]=3,
["hurt_skill"]={
20109,
@@ -5282,7 +5273,7 @@ local monster_chapter = {
["monster_base"]=20015,
["is_boss"]=1,
["hp"]=454950000,
- ["atk"]=5910000,
+ ["atk"]=4140000,
["atk_times"]=4,
["hurt_skill"]={
30043,
@@ -5300,7 +5291,7 @@ local monster_chapter = {
[40101]={
["monster_base"]=10009,
["hp"]=263790000,
- ["atk"]=5960000,
+ ["atk"]=3890000,
["atk_times"]=3,
["hurt_skill"]={
20025,
@@ -5312,7 +5303,7 @@ local monster_chapter = {
[40201]={
["monster_base"]=10054,
["hp"]=298620000,
- ["atk"]=6110000,
+ ["atk"]=4000000,
["atk_times"]=3,
["hurt_skill"]={
20157,
@@ -5324,7 +5315,7 @@ local monster_chapter = {
[40301]={
["monster_base"]=10052,
["hp"]=316170000,
- ["atk"]=6240000,
+ ["atk"]=4140000,
["atk_times"]=3,
["hurt_skill"]={
20151,
@@ -5336,7 +5327,7 @@ local monster_chapter = {
[40401]={
["monster_base"]=10050,
["hp"]=342900000,
- ["atk"]=6450000,
+ ["atk"]=4340000,
["atk_times"]=3,
["hurt_skill"]={
20145,
@@ -5349,7 +5340,7 @@ local monster_chapter = {
["monster_base"]=20008,
["is_boss"]=1,
["hp"]=619650000,
- ["atk"]=6040000,
+ ["atk"]=4340000,
["atk_times"]=4,
["hurt_skill"]={
30022,
@@ -5367,7 +5358,7 @@ local monster_chapter = {
[40601]={
["monster_base"]=10038,
["hp"]=411210000,
- ["atk"]=6550000,
+ ["atk"]=4480000,
["atk_times"]=3,
["hurt_skill"]={
20109,
@@ -5379,7 +5370,7 @@ local monster_chapter = {
[40701]={
["monster_base"]=10053,
["hp"]=438210000,
- ["atk"]=6730000,
+ ["atk"]=4570000,
["atk_times"]=3,
["hurt_skill"]={
20154,
@@ -5391,7 +5382,7 @@ local monster_chapter = {
[40801]={
["monster_base"]=10050,
["hp"]=480870000,
- ["atk"]=6890000,
+ ["atk"]=4750000,
["atk_times"]=3,
["hurt_skill"]={
20145,
@@ -5403,7 +5394,7 @@ local monster_chapter = {
[40901]={
["monster_base"]=10040,
["hp"]=525150000,
- ["atk"]=7040000,
+ ["atk"]=4900000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -5416,7 +5407,7 @@ local monster_chapter = {
["monster_base"]=30015,
["is_boss"]=2,
["hp"]=828360000,
- ["atk"]=8750000,
+ ["atk"]=6640000,
["atk_times"]=4,
["hurt_skill"]={
40025,
@@ -5432,7 +5423,7 @@ local monster_chapter = {
[41101]={
["monster_base"]=10043,
["hp"]=87310000,
- ["atk"]=4920000,
+ ["atk"]=2690000,
["atk_times"]=3,
["hurt_skill"]={
20124,
@@ -5444,7 +5435,7 @@ local monster_chapter = {
[41201]={
["monster_base"]=10054,
["hp"]=120420000,
- ["atk"]=5150000,
+ ["atk"]=2870000,
["atk_times"]=3,
["hurt_skill"]={
20157,
@@ -5456,7 +5447,7 @@ local monster_chapter = {
[41301]={
["monster_base"]=10038,
["hp"]=135370000,
- ["atk"]=5300000,
+ ["atk"]=2990000,
["atk_times"]=3,
["hurt_skill"]={
20109,
@@ -5468,7 +5459,7 @@ local monster_chapter = {
[41401]={
["monster_base"]=10053,
["hp"]=179690000,
- ["atk"]=5480000,
+ ["atk"]=3110000,
["atk_times"]=3,
["hurt_skill"]={
20154,
@@ -5481,7 +5472,7 @@ local monster_chapter = {
["monster_base"]=20010,
["is_boss"]=1,
["hp"]=248580000,
- ["atk"]=5610000,
+ ["atk"]=3570000,
["atk_times"]=4,
["hurt_skill"]={
30028,
@@ -5502,7 +5493,7 @@ local monster_chapter = {
[41601]={
["monster_base"]=10038,
["hp"]=170350000,
- ["atk"]=5660000,
+ ["atk"]=3280000,
["atk_times"]=3,
["hurt_skill"]={
20109,
@@ -5514,7 +5505,7 @@ local monster_chapter = {
[41701]={
["monster_base"]=10053,
["hp"]=188770000,
- ["atk"]=6220000,
+ ["atk"]=3710000,
["atk_times"]=3,
["hurt_skill"]={
20154,
@@ -5526,7 +5517,7 @@ local monster_chapter = {
[41801]={
["monster_base"]=10006,
["hp"]=218140000,
- ["atk"]=5870000,
+ ["atk"]=3430000,
["atk_times"]=3,
["hurt_skill"]={
20016,
@@ -5538,7 +5529,7 @@ local monster_chapter = {
[41901]={
["monster_base"]=10004,
["hp"]=248580000,
- ["atk"]=6400000,
+ ["atk"]=3860000,
["atk_times"]=3,
["hurt_skill"]={
20010,
@@ -5551,7 +5542,7 @@ local monster_chapter = {
["monster_base"]=20004,
["is_boss"]=1,
["hp"]=466180000,
- ["atk"]=6070000,
+ ["atk"]=4270000,
["atk_times"]=4,
["hurt_skill"]={
30010,
@@ -5566,7 +5557,7 @@ local monster_chapter = {
[42101]={
["monster_base"]=10052,
["hp"]=270470000,
- ["atk"]=6150000,
+ ["atk"]=4010000,
["atk_times"]=3,
["hurt_skill"]={
20151,
@@ -5578,7 +5569,7 @@ local monster_chapter = {
[42201]={
["monster_base"]=10050,
["hp"]=305980000,
- ["atk"]=6320000,
+ ["atk"]=4120000,
["atk_times"]=3,
["hurt_skill"]={
20145,
@@ -5590,7 +5581,7 @@ local monster_chapter = {
[42301]={
["monster_base"]=10010,
["hp"]=324140000,
- ["atk"]=6450000,
+ ["atk"]=4270000,
["atk_times"]=3,
["hurt_skill"]={
20028,
@@ -5602,7 +5593,7 @@ local monster_chapter = {
[42401]={
["monster_base"]=10039,
["hp"]=351370000,
- ["atk"]=6660000,
+ ["atk"]=4470000,
["atk_times"]=3,
["hurt_skill"]={
20112,
@@ -5615,7 +5606,7 @@ local monster_chapter = {
["monster_base"]=20005,
["is_boss"]=1,
["hp"]=634930000,
- ["atk"]=6220000,
+ ["atk"]=4470000,
["atk_times"]=4,
["hurt_skill"]={
30013,
@@ -5633,7 +5624,7 @@ local monster_chapter = {
[42601]={
["monster_base"]=10040,
["hp"]=421330000,
- ["atk"]=6760000,
+ ["atk"]=4620000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -5645,7 +5636,7 @@ local monster_chapter = {
[42701]={
["monster_base"]=10010,
["hp"]=449090000,
- ["atk"]=6940000,
+ ["atk"]=4710000,
["atk_times"]=3,
["hurt_skill"]={
20028,
@@ -5657,7 +5648,7 @@ local monster_chapter = {
[42801]={
["monster_base"]=10040,
["hp"]=492620000,
- ["atk"]=7110000,
+ ["atk"]=4900000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -5669,7 +5660,7 @@ local monster_chapter = {
[42901]={
["monster_base"]=10009,
["hp"]=538010000,
- ["atk"]=7270000,
+ ["atk"]=5050000,
["atk_times"]=3,
["hurt_skill"]={
20025,
@@ -5682,7 +5673,7 @@ local monster_chapter = {
["monster_base"]=20024,
["is_boss"]=2,
["hp"]=848790000,
- ["atk"]=8980000,
+ ["atk"]=6840000,
["atk_times"]=4,
["hurt_skill"]={
30070,
@@ -5701,7 +5692,7 @@ local monster_chapter = {
[43101]={
["monster_base"]=10009,
["hp"]=91310000,
- ["atk"]=5180000,
+ ["atk"]=2770000,
["atk_times"]=3,
["hurt_skill"]={
20025,
@@ -5713,7 +5704,7 @@ local monster_chapter = {
[43201]={
["monster_base"]=10054,
["hp"]=125760000,
- ["atk"]=5430000,
+ ["atk"]=2960000,
["atk_times"]=3,
["hurt_skill"]={
20157,
@@ -5725,7 +5716,7 @@ local monster_chapter = {
[43301]={
["monster_base"]=10052,
["hp"]=141240000,
- ["atk"]=5580000,
+ ["atk"]=3080000,
["atk_times"]=3,
["hurt_skill"]={
20151,
@@ -5737,7 +5728,7 @@ local monster_chapter = {
[43401]={
["monster_base"]=10050,
["hp"]=187430000,
- ["atk"]=5760000,
+ ["atk"]=3200000,
["atk_times"]=3,
["hurt_skill"]={
20145,
@@ -5750,7 +5741,7 @@ local monster_chapter = {
["monster_base"]=20008,
["is_boss"]=1,
["hp"]=259260000,
- ["atk"]=5890000,
+ ["atk"]=3680000,
["atk_times"]=4,
["hurt_skill"]={
30022,
@@ -5768,7 +5759,7 @@ local monster_chapter = {
[43601]={
["monster_base"]=10044,
["hp"]=177820000,
- ["atk"]=5970000,
+ ["atk"]=3380000,
["atk_times"]=3,
["hurt_skill"]={
20127,
@@ -5780,7 +5771,7 @@ local monster_chapter = {
[43701]={
["monster_base"]=10054,
["hp"]=197050000,
- ["atk"]=6550000,
+ ["atk"]=3820000,
["atk_times"]=3,
["hurt_skill"]={
20157,
@@ -5792,7 +5783,7 @@ local monster_chapter = {
[43801]={
["monster_base"]=10014,
["hp"]=227750000,
- ["atk"]=6170000,
+ ["atk"]=3530000,
["atk_times"]=3,
["hurt_skill"]={
20037,
@@ -5804,7 +5795,7 @@ local monster_chapter = {
[43901]={
["monster_base"]=10018,
["hp"]=259260000,
- ["atk"]=6730000,
+ ["atk"]=3980000,
["atk_times"]=3,
["hurt_skill"]={
20049,
@@ -5817,7 +5808,7 @@ local monster_chapter = {
["monster_base"]=20014,
["is_boss"]=1,
["hp"]=486210000,
- ["atk"]=6380000,
+ ["atk"]=4400000,
["atk_times"]=4,
["hurt_skill"]={
30040,
@@ -5835,7 +5826,7 @@ local monster_chapter = {
[44101]={
["monster_base"]=10009,
["hp"]=282220000,
- ["atk"]=6480000,
+ ["atk"]=4130000,
["atk_times"]=3,
["hurt_skill"]={
20025,
@@ -5847,7 +5838,7 @@ local monster_chapter = {
[44201]={
["monster_base"]=10010,
["hp"]=319330000,
- ["atk"]=6660000,
+ ["atk"]=4240000,
["atk_times"]=3,
["hurt_skill"]={
20028,
@@ -5859,7 +5850,7 @@ local monster_chapter = {
[44301]={
["monster_base"]=10053,
["hp"]=338290000,
- ["atk"]=6780000,
+ ["atk"]=4400000,
["atk_times"]=3,
["hurt_skill"]={
20154,
@@ -5871,7 +5862,7 @@ local monster_chapter = {
[44401]={
["monster_base"]=10039,
["hp"]=366590000,
- ["atk"]=6990000,
+ ["atk"]=4600000,
["atk_times"]=3,
["hurt_skill"]={
20112,
@@ -5884,7 +5875,7 @@ local monster_chapter = {
["monster_base"]=20012,
["is_boss"]=1,
["hp"]=662430000,
- ["atk"]=6550000,
+ ["atk"]=4600000,
["atk_times"]=4,
["hurt_skill"]={
30034,
@@ -5899,7 +5890,7 @@ local monster_chapter = {
[44601]={
["monster_base"]=10052,
["hp"]=439480000,
- ["atk"]=7110000,
+ ["atk"]=4760000,
["atk_times"]=3,
["hurt_skill"]={
20151,
@@ -5911,7 +5902,7 @@ local monster_chapter = {
[44701]={
["monster_base"]=10043,
["hp"]=468590000,
- ["atk"]=7290000,
+ ["atk"]=4850000,
["atk_times"]=3,
["hurt_skill"]={
20124,
@@ -5923,7 +5914,7 @@ local monster_chapter = {
[44801]={
["monster_base"]=10054,
["hp"]=513980000,
- ["atk"]=7470000,
+ ["atk"]=5050000,
["atk_times"]=3,
["hurt_skill"]={
20157,
@@ -5935,7 +5926,7 @@ local monster_chapter = {
[44901]={
["monster_base"]=10050,
["hp"]=561230000,
- ["atk"]=7620000,
+ ["atk"]=5200000,
["atk_times"]=3,
["hurt_skill"]={
20145,
@@ -5948,7 +5939,7 @@ local monster_chapter = {
["monster_base"]=20019,
["is_boss"]=2,
["hp"]=708290000,
- ["atk"]=8460000,
+ ["atk"]=6330000,
["atk_times"]=4,
["hurt_skill"]={
30055,
@@ -5968,7 +5959,7 @@ local monster_chapter = {
["monster_base"]=20010,
["is_boss"]=1,
["hp"]=531220000,
- ["atk"]=7520000,
+ ["atk"]=5630000,
["atk_times"]=4,
["hurt_skill"]={
30028,
@@ -5989,7 +5980,7 @@ local monster_chapter = {
[45101]={
["monster_base"]=10046,
["hp"]=92140000,
- ["atk"]=5270000,
+ ["atk"]=2850000,
["atk_times"]=3,
["hurt_skill"]={
20133,
@@ -6001,7 +5992,7 @@ local monster_chapter = {
[45201]={
["monster_base"]=10043,
["hp"]=126720000,
- ["atk"]=5520000,
+ ["atk"]=3050000,
["atk_times"]=3,
["hurt_skill"]={
20124,
@@ -6013,7 +6004,7 @@ local monster_chapter = {
[45301]={
["monster_base"]=10050,
["hp"]=142300000,
- ["atk"]=5700000,
+ ["atk"]=3170000,
["atk_times"]=3,
["hurt_skill"]={
20145,
@@ -6025,7 +6016,7 @@ local monster_chapter = {
[45401]={
["monster_base"]=10054,
["hp"]=188760000,
- ["atk"]=5870000,
+ ["atk"]=3290000,
["atk_times"]=3,
["hurt_skill"]={
20157,
@@ -6038,7 +6029,7 @@ local monster_chapter = {
["monster_base"]=20010,
["is_boss"]=1,
["hp"]=261100000,
- ["atk"]=5950000,
+ ["atk"]=3790000,
["atk_times"]=4,
["hurt_skill"]={
30028,
@@ -6059,7 +6050,7 @@ local monster_chapter = {
[45601]={
["monster_base"]=10052,
["hp"]=179260000,
- ["atk"]=6050000,
+ ["atk"]=3480000,
["atk_times"]=3,
["hurt_skill"]={
20151,
@@ -6071,7 +6062,7 @@ local monster_chapter = {
[45701]={
["monster_base"]=10045,
["hp"]=198530000,
- ["atk"]=6650000,
+ ["atk"]=3930000,
["atk_times"]=3,
["hurt_skill"]={
20130,
@@ -6083,7 +6074,7 @@ local monster_chapter = {
[45801]={
["monster_base"]=10043,
["hp"]=229420000,
- ["atk"]=6270000,
+ ["atk"]=3630000,
["atk_times"]=3,
["hurt_skill"]={
20124,
@@ -6095,7 +6086,7 @@ local monster_chapter = {
[45901]={
["monster_base"]=10053,
["hp"]=261100000,
- ["atk"]=6830000,
+ ["atk"]=4100000,
["atk_times"]=3,
["hurt_skill"]={
20154,
@@ -6108,7 +6099,7 @@ local monster_chapter = {
["monster_base"]=20005,
["is_boss"]=1,
["hp"]=489720000,
- ["atk"]=6480000,
+ ["atk"]=4530000,
["atk_times"]=4,
["hurt_skill"]={
30013,
@@ -6126,7 +6117,7 @@ local monster_chapter = {
[46101]={
["monster_base"]=10045,
["hp"]=284330000,
- ["atk"]=6550000,
+ ["atk"]=4250000,
["atk_times"]=3,
["hurt_skill"]={
20130,
@@ -6138,7 +6129,7 @@ local monster_chapter = {
[46201]={
["monster_base"]=10052,
["hp"]=321550000,
- ["atk"]=6750000,
+ ["atk"]=4360000,
["atk_times"]=3,
["hurt_skill"]={
20151,
@@ -6150,7 +6141,7 @@ local monster_chapter = {
[46301]={
["monster_base"]=10010,
["hp"]=340820000,
- ["atk"]=6880000,
+ ["atk"]=4530000,
["atk_times"]=3,
["hurt_skill"]={
20028,
@@ -6162,7 +6153,7 @@ local monster_chapter = {
[46401]={
["monster_base"]=10039,
["hp"]=369340000,
- ["atk"]=7080000,
+ ["atk"]=4730000,
["atk_times"]=3,
["hurt_skill"]={
20112,
@@ -6175,7 +6166,7 @@ local monster_chapter = {
["monster_base"]=20012,
["is_boss"]=1,
["hp"]=667130000,
- ["atk"]=6630000,
+ ["atk"]=4730000,
["atk_times"]=4,
["hurt_skill"]={
30034,
@@ -6190,7 +6181,7 @@ local monster_chapter = {
[46601]={
["monster_base"]=10050,
["hp"]=442730000,
- ["atk"]=7210000,
+ ["atk"]=4900000,
["atk_times"]=3,
["hurt_skill"]={
20145,
@@ -6202,7 +6193,7 @@ local monster_chapter = {
[46701]={
["monster_base"]=10043,
["hp"]=472030000,
- ["atk"]=7410000,
+ ["atk"]=4990000,
["atk_times"]=3,
["hurt_skill"]={
20124,
@@ -6214,7 +6205,7 @@ local monster_chapter = {
[46801]={
["monster_base"]=10046,
["hp"]=517700000,
- ["atk"]=7590000,
+ ["atk"]=5200000,
["atk_times"]=3,
["hurt_skill"]={
20133,
@@ -6226,7 +6217,7 @@ local monster_chapter = {
[46901]={
["monster_base"]=10054,
["hp"]=565220000,
- ["atk"]=7740000,
+ ["atk"]=5350000,
["atk_times"]=3,
["hurt_skill"]={
20157,
@@ -6239,7 +6230,7 @@ local monster_chapter = {
["monster_base"]=20020,
["is_boss"]=2,
["hp"]=713220000,
- ["atk"]=8550000,
+ ["atk"]=6510000,
["atk_times"]=4,
["hurt_skill"]={
30058,
@@ -6259,7 +6250,7 @@ local monster_chapter = {
["monster_base"]=20010,
["is_boss"]=1,
["hp"]=534910000,
- ["atk"]=7600000,
+ ["atk"]=5790000,
["atk_times"]=4,
["hurt_skill"]={
30028,
@@ -6280,7 +6271,7 @@ local monster_chapter = {
[47101]={
["monster_base"]=10047,
["hp"]=94250000,
- ["atk"]=5440000,
+ ["atk"]=2940000,
["atk_times"]=3,
["hurt_skill"]={
20136,
@@ -6292,7 +6283,7 @@ local monster_chapter = {
[47201]={
["monster_base"]=10038,
["hp"]=129620000,
- ["atk"]=5700000,
+ ["atk"]=3150000,
["atk_times"]=3,
["hurt_skill"]={
20109,
@@ -6304,7 +6295,7 @@ local monster_chapter = {
[47301]={
["monster_base"]=10021,
["hp"]=145730000,
- ["atk"]=5870000,
+ ["atk"]=3270000,
["atk_times"]=3,
["hurt_skill"]={
20058,
@@ -6316,7 +6307,7 @@ local monster_chapter = {
[47401]={
["monster_base"]=10040,
["hp"]=193250000,
- ["atk"]=6050000,
+ ["atk"]=3390000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -6329,7 +6320,7 @@ local monster_chapter = {
["monster_base"]=20017,
["is_boss"]=1,
["hp"]=267170000,
- ["atk"]=6120000,
+ ["atk"]=3910000,
["atk_times"]=4,
["hurt_skill"]={
30049,
@@ -6344,7 +6335,7 @@ local monster_chapter = {
[47601]={
["monster_base"]=10010,
["hp"]=183480000,
- ["atk"]=6250000,
+ ["atk"]=3590000,
["atk_times"]=3,
["hurt_skill"]={
20028,
@@ -6356,7 +6347,7 @@ local monster_chapter = {
[47701]={
["monster_base"]=10039,
["hp"]=203020000,
- ["atk"]=6850000,
+ ["atk"]=4050000,
["atk_times"]=3,
["hurt_skill"]={
20112,
@@ -6368,7 +6359,7 @@ local monster_chapter = {
[47801]={
["monster_base"]=10040,
["hp"]=234700000,
- ["atk"]=6450000,
+ ["atk"]=3740000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -6380,7 +6371,7 @@ local monster_chapter = {
[47901]={
["monster_base"]=10009,
["hp"]=267170000,
- ["atk"]=7060000,
+ ["atk"]=4230000,
["atk_times"]=3,
["hurt_skill"]={
20025,
@@ -6393,7 +6384,7 @@ local monster_chapter = {
["monster_base"]=20024,
["is_boss"]=1,
["hp"]=500810000,
- ["atk"]=6650000,
+ ["atk"]=4670000,
["atk_times"]=4,
["hurt_skill"]={
30070,
@@ -6412,7 +6403,7 @@ local monster_chapter = {
[48101]={
["monster_base"]=10052,
["hp"]=290930000,
- ["atk"]=6750000,
+ ["atk"]=4380000,
["atk_times"]=3,
["hurt_skill"]={
20151,
@@ -6424,7 +6415,7 @@ local monster_chapter = {
[48201]={
["monster_base"]=10043,
["hp"]=328940000,
- ["atk"]=6960000,
+ ["atk"]=4500000,
["atk_times"]=3,
["hurt_skill"]={
20124,
@@ -6436,7 +6427,7 @@ local monster_chapter = {
[48301]={
["monster_base"]=10050,
["hp"]=348740000,
- ["atk"]=7080000,
+ ["atk"]=4670000,
["atk_times"]=3,
["hurt_skill"]={
20145,
@@ -6448,7 +6439,7 @@ local monster_chapter = {
[48401]={
["monster_base"]=10054,
["hp"]=377780000,
- ["atk"]=7310000,
+ ["atk"]=4880000,
["atk_times"]=3,
["hurt_skill"]={
20157,
@@ -6461,7 +6452,7 @@ local monster_chapter = {
["monster_base"]=20019,
["is_boss"]=1,
["hp"]=682180000,
- ["atk"]=6800000,
+ ["atk"]=4880000,
["atk_times"]=4,
["hurt_skill"]={
30055,
@@ -6479,7 +6470,7 @@ local monster_chapter = {
[48601]={
["monster_base"]=10029,
["hp"]=452760000,
- ["atk"]=7430000,
+ ["atk"]=5050000,
["atk_times"]=3,
["hurt_skill"]={
20082,
@@ -6491,7 +6482,7 @@ local monster_chapter = {
[48701]={
["monster_base"]=10050,
["hp"]=482860000,
- ["atk"]=7610000,
+ ["atk"]=5150000,
["atk_times"]=3,
["hurt_skill"]={
20145,
@@ -6503,7 +6494,7 @@ local monster_chapter = {
[48801]={
["monster_base"]=10043,
["hp"]=529580000,
- ["atk"]=7810000,
+ ["atk"]=5360000,
["atk_times"]=3,
["hurt_skill"]={
20124,
@@ -6515,7 +6506,7 @@ local monster_chapter = {
[48901]={
["monster_base"]=10028,
["hp"]=578160000,
- ["atk"]=7960000,
+ ["atk"]=5520000,
["atk_times"]=3,
["hurt_skill"]={
20079,
@@ -6528,7 +6519,7 @@ local monster_chapter = {
["monster_base"]=20013,
["is_boss"]=2,
["hp"]=911860000,
- ["atk"]=9780000,
+ ["atk"]=7460000,
["atk_times"]=4,
["hurt_skill"]={
30037,
@@ -6544,7 +6535,7 @@ local monster_chapter = {
[49101]={
["monster_base"]=10052,
["hp"]=98400000,
- ["atk"]=5750000,
+ ["atk"]=3030000,
["atk_times"]=3,
["hurt_skill"]={
20151,
@@ -6556,7 +6547,7 @@ local monster_chapter = {
[49201]={
["monster_base"]=10045,
["hp"]=135460000,
- ["atk"]=5980000,
+ ["atk"]=3250000,
["atk_times"]=3,
["hurt_skill"]={
20130,
@@ -6568,7 +6559,7 @@ local monster_chapter = {
[49301]={
["monster_base"]=10043,
["hp"]=152160000,
- ["atk"]=6180000,
+ ["atk"]=3370000,
["atk_times"]=3,
["hurt_skill"]={
20124,
@@ -6580,7 +6571,7 @@ local monster_chapter = {
[49401]={
["monster_base"]=10053,
["hp"]=201750000,
- ["atk"]=6370000,
+ ["atk"]=3490000,
["atk_times"]=3,
["hurt_skill"]={
20154,
@@ -6593,7 +6584,7 @@ local monster_chapter = {
["monster_base"]=20005,
["is_boss"]=1,
["hp"]=279010000,
- ["atk"]=6450000,
+ ["atk"]=4030000,
["atk_times"]=4,
["hurt_skill"]={
30013,
@@ -6611,7 +6602,7 @@ local monster_chapter = {
[49601]={
["monster_base"]=10010,
["hp"]=191570000,
- ["atk"]=6570000,
+ ["atk"]=3700000,
["atk_times"]=3,
["hurt_skill"]={
20028,
@@ -6623,7 +6614,7 @@ local monster_chapter = {
[49701]={
["monster_base"]=10039,
["hp"]=211930000,
- ["atk"]=7200000,
+ ["atk"]=4170000,
["atk_times"]=3,
["hurt_skill"]={
20112,
@@ -6635,7 +6626,7 @@ local monster_chapter = {
[49801]={
["monster_base"]=10040,
["hp"]=245080000,
- ["atk"]=6800000,
+ ["atk"]=3850000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -6647,7 +6638,7 @@ local monster_chapter = {
[49901]={
["monster_base"]=10009,
["hp"]=279010000,
- ["atk"]=7400000,
+ ["atk"]=4360000,
["atk_times"]=3,
["hurt_skill"]={
20025,
@@ -6660,7 +6651,7 @@ local monster_chapter = {
["monster_base"]=20024,
["is_boss"]=1,
["hp"]=522780000,
- ["atk"]=6970000,
+ ["atk"]=4810000,
["atk_times"]=4,
["hurt_skill"]={
30070,
@@ -6679,7 +6670,7 @@ local monster_chapter = {
[50101]={
["monster_base"]=10040,
["hp"]=303800000,
- ["atk"]=7100000,
+ ["atk"]=4510000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -6691,7 +6682,7 @@ local monster_chapter = {
[50201]={
["monster_base"]=10039,
["hp"]=343480000,
- ["atk"]=7320000,
+ ["atk"]=4640000,
["atk_times"]=3,
["hurt_skill"]={
20112,
@@ -6703,7 +6694,7 @@ local monster_chapter = {
[50301]={
["monster_base"]=10010,
["hp"]=364100000,
- ["atk"]=7450000,
+ ["atk"]=4810000,
["atk_times"]=3,
["hurt_skill"]={
20028,
@@ -6715,7 +6706,7 @@ local monster_chapter = {
[50401]={
["monster_base"]=10039,
["hp"]=394370000,
- ["atk"]=7670000,
+ ["atk"]=5030000,
["atk_times"]=3,
["hurt_skill"]={
20112,
@@ -6728,7 +6719,7 @@ local monster_chapter = {
["monster_base"]=20012,
["is_boss"]=1,
["hp"]=712010000,
- ["atk"]=7150000,
+ ["atk"]=5030000,
["atk_times"]=4,
["hurt_skill"]={
30034,
@@ -6743,7 +6734,7 @@ local monster_chapter = {
[50601]={
["monster_base"]=10010,
["hp"]=472670000,
- ["atk"]=7820000,
+ ["atk"]=5200000,
["atk_times"]=3,
["hurt_skill"]={
20028,
@@ -6755,7 +6746,7 @@ local monster_chapter = {
[50701]={
["monster_base"]=10040,
["hp"]=503990000,
- ["atk"]=7990000,
+ ["atk"]=5310000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -6767,7 +6758,7 @@ local monster_chapter = {
[50801]={
["monster_base"]=10038,
["hp"]=552800000,
- ["atk"]=8190000,
+ ["atk"]=5520000,
["atk_times"]=3,
["hurt_skill"]={
20109,
@@ -6779,7 +6770,7 @@ local monster_chapter = {
[50901]={
["monster_base"]=10032,
["hp"]=603430000,
- ["atk"]=8370000,
+ ["atk"]=5690000,
["atk_times"]=3,
["hurt_skill"]={
20091,
@@ -6792,7 +6783,7 @@ local monster_chapter = {
["monster_base"]=20018,
["is_boss"]=2,
["hp"]=951870000,
- ["atk"]=10230000,
+ ["atk"]=7680000,
["atk_times"]=4,
["hurt_skill"]={
30052,
@@ -6811,7 +6802,7 @@ local monster_chapter = {
[51101]={
["monster_base"]=10033,
["hp"]=100490000,
- ["atk"]=5900000,
+ ["atk"]=3120000,
["atk_times"]=3,
["hurt_skill"]={
20094,
@@ -6823,7 +6814,7 @@ local monster_chapter = {
[51201]={
["monster_base"]=10029,
["hp"]=138070000,
- ["atk"]=6150000,
+ ["atk"]=3350000,
["atk_times"]=3,
["hurt_skill"]={
20082,
@@ -6835,7 +6826,7 @@ local monster_chapter = {
[51301]={
["monster_base"]=10031,
["hp"]=155030000,
- ["atk"]=6350000,
+ ["atk"]=3470000,
["atk_times"]=3,
["hurt_skill"]={
20088,
@@ -6847,7 +6838,7 @@ local monster_chapter = {
[51401]={
["monster_base"]=10028,
["hp"]=205670000,
- ["atk"]=6550000,
+ ["atk"]=3590000,
["atk_times"]=3,
["hurt_skill"]={
20079,
@@ -6860,7 +6851,7 @@ local monster_chapter = {
["monster_base"]=20013,
["is_boss"]=1,
["hp"]=284490000,
- ["atk"]=6600000,
+ ["atk"]=4150000,
["atk_times"]=4,
["hurt_skill"]={
30037,
@@ -6876,7 +6867,7 @@ local monster_chapter = {
[51601]={
["monster_base"]=10030,
["hp"]=195230000,
- ["atk"]=6750000,
+ ["atk"]=3810000,
["atk_times"]=3,
["hurt_skill"]={
20085,
@@ -6888,7 +6879,7 @@ local monster_chapter = {
[51701]={
["monster_base"]=10029,
["hp"]=216110000,
- ["atk"]=7400000,
+ ["atk"]=4290000,
["atk_times"]=3,
["hurt_skill"]={
20082,
@@ -6900,7 +6891,7 @@ local monster_chapter = {
[51801]={
["monster_base"]=10033,
["hp"]=249780000,
- ["atk"]=6970000,
+ ["atk"]=3960000,
["atk_times"]=3,
["hurt_skill"]={
20094,
@@ -6912,7 +6903,7 @@ local monster_chapter = {
[51901]={
["monster_base"]=10054,
["hp"]=284490000,
- ["atk"]=7590000,
+ ["atk"]=4490000,
["atk_times"]=3,
["hurt_skill"]={
20157,
@@ -6925,7 +6916,7 @@ local monster_chapter = {
["monster_base"]=20010,
["is_boss"]=1,
["hp"]=532700000,
- ["atk"]=7150000,
+ ["atk"]=4950000,
["atk_times"]=4,
["hurt_skill"]={
30028,
@@ -6946,7 +6937,7 @@ local monster_chapter = {
[52101]={
["monster_base"]=10053,
["hp"]=309550000,
- ["atk"]=7300000,
+ ["atk"]=4640000,
["atk_times"]=3,
["hurt_skill"]={
20154,
@@ -6958,7 +6949,7 @@ local monster_chapter = {
[52201]={
["monster_base"]=10033,
["hp"]=350000000,
- ["atk"]=7490000,
+ ["atk"]=4780000,
["atk_times"]=3,
["hurt_skill"]={
20094,
@@ -6970,7 +6961,7 @@ local monster_chapter = {
[52301]={
["monster_base"]=10029,
["hp"]=371140000,
- ["atk"]=7640000,
+ ["atk"]=4950000,
["atk_times"]=3,
["hurt_skill"]={
20082,
@@ -6982,7 +6973,7 @@ local monster_chapter = {
[52401]={
["monster_base"]=10054,
["hp"]=401940000,
- ["atk"]=7870000,
+ ["atk"]=5180000,
["atk_times"]=3,
["hurt_skill"]={
20157,
@@ -6995,7 +6986,7 @@ local monster_chapter = {
["monster_base"]=20020,
["is_boss"]=1,
["hp"]=725580000,
- ["atk"]=7320000,
+ ["atk"]=5180000,
["atk_times"]=4,
["hurt_skill"]={
30058,
@@ -7013,7 +7004,7 @@ local monster_chapter = {
[52601]={
["monster_base"]=10053,
["hp"]=481550000,
- ["atk"]=8020000,
+ ["atk"]=5350000,
["atk_times"]=3,
["hurt_skill"]={
20154,
@@ -7025,7 +7016,7 @@ local monster_chapter = {
[52701]={
["monster_base"]=10028,
["hp"]=513650000,
- ["atk"]=8220000,
+ ["atk"]=5470000,
["atk_times"]=3,
["hurt_skill"]={
20079,
@@ -7037,7 +7028,7 @@ local monster_chapter = {
[52801]={
["monster_base"]=10046,
["hp"]=563240000,
- ["atk"]=8420000,
+ ["atk"]=5680000,
["atk_times"]=3,
["hurt_skill"]={
20133,
@@ -7049,7 +7040,7 @@ local monster_chapter = {
[52901]={
["monster_base"]=10058,
["hp"]=614920000,
- ["atk"]=8570000,
+ ["atk"]=5860000,
["atk_times"]=3,
["hurt_skill"]={
20169,
@@ -7062,7 +7053,7 @@ local monster_chapter = {
["monster_base"]=20032,
["is_boss"]=2,
["hp"]=969880000,
- ["atk"]=10460000,
+ ["atk"]=7900000,
["atk_times"]=4,
["hurt_skill"]={
30094,
@@ -7084,7 +7075,7 @@ local monster_chapter = {
[53101]={
["monster_base"]=10057,
["hp"]=102570000,
- ["atk"]=6080000,
+ ["atk"]=3210000,
["atk_times"]=3,
["hurt_skill"]={
20166,
@@ -7096,7 +7087,7 @@ local monster_chapter = {
[53201]={
["monster_base"]=10046,
["hp"]=140940000,
- ["atk"]=6320000,
+ ["atk"]=3450000,
["atk_times"]=3,
["hurt_skill"]={
20133,
@@ -7108,7 +7099,7 @@ local monster_chapter = {
[53301]={
["monster_base"]=10052,
["hp"]=158170000,
- ["atk"]=6520000,
+ ["atk"]=3570000,
["atk_times"]=3,
["hurt_skill"]={
20151,
@@ -7120,7 +7111,7 @@ local monster_chapter = {
[53401]={
["monster_base"]=10029,
["hp"]=209840000,
- ["atk"]=6720000,
+ ["atk"]=3690000,
["atk_times"]=3,
["hurt_skill"]={
20082,
@@ -7133,7 +7124,7 @@ local monster_chapter = {
["monster_base"]=20008,
["is_boss"]=1,
["hp"]=290230000,
- ["atk"]=6770000,
+ ["atk"]=4270000,
["atk_times"]=4,
["hurt_skill"]={
30022,
@@ -7151,7 +7142,7 @@ local monster_chapter = {
[53601]={
["monster_base"]=10058,
["hp"]=199140000,
- ["atk"]=6950000,
+ ["atk"]=3920000,
["atk_times"]=3,
["hurt_skill"]={
20169,
@@ -7163,7 +7154,7 @@ local monster_chapter = {
[53701]={
["monster_base"]=10033,
["hp"]=220550000,
- ["atk"]=7590000,
+ ["atk"]=4410000,
["atk_times"]=3,
["hurt_skill"]={
20094,
@@ -7175,7 +7166,7 @@ local monster_chapter = {
[53801]={
["monster_base"]=10044,
["hp"]=255000000,
- ["atk"]=7170000,
+ ["atk"]=4070000,
["atk_times"]=3,
["hurt_skill"]={
20127,
@@ -7187,7 +7178,7 @@ local monster_chapter = {
[53901]={
["monster_base"]=10053,
["hp"]=290230000,
- ["atk"]=7790000,
+ ["atk"]=4620000,
["atk_times"]=3,
["hurt_skill"]={
20154,
@@ -7200,7 +7191,7 @@ local monster_chapter = {
["monster_base"]=20011,
["is_boss"]=1,
["hp"]=543400000,
- ["atk"]=7350000,
+ ["atk"]=5090000,
["atk_times"]=4,
["hurt_skill"]={
30031,
@@ -7215,7 +7206,7 @@ local monster_chapter = {
[54101]={
["monster_base"]=10029,
["hp"]=315810000,
- ["atk"]=7490000,
+ ["atk"]=4770000,
["atk_times"]=3,
["hurt_skill"]={
20082,
@@ -7227,7 +7218,7 @@ local monster_chapter = {
[54201]={
["monster_base"]=10058,
["hp"]=357050000,
- ["atk"]=7720000,
+ ["atk"]=4920000,
["atk_times"]=3,
["hurt_skill"]={
20169,
@@ -7239,7 +7230,7 @@ local monster_chapter = {
[54301]={
["monster_base"]=10052,
["hp"]=378710000,
- ["atk"]=7840000,
+ ["atk"]=5090000,
["atk_times"]=3,
["hurt_skill"]={
20151,
@@ -7251,7 +7242,7 @@ local monster_chapter = {
[54401]={
["monster_base"]=10054,
["hp"]=410030000,
- ["atk"]=8090000,
+ ["atk"]=5330000,
["atk_times"]=3,
["hurt_skill"]={
20157,
@@ -7264,7 +7255,7 @@ local monster_chapter = {
["monster_base"]=20005,
["is_boss"]=1,
["hp"]=740200000,
- ["atk"]=7520000,
+ ["atk"]=5330000,
["atk_times"]=4,
["hurt_skill"]={
30013,
@@ -7282,7 +7273,7 @@ local monster_chapter = {
[54601]={
["monster_base"]=10053,
["hp"]=491200000,
- ["atk"]=8220000,
+ ["atk"]=5500000,
["atk_times"]=3,
["hurt_skill"]={
20154,
@@ -7294,7 +7285,7 @@ local monster_chapter = {
[54701]={
["monster_base"]=10028,
["hp"]=524090000,
- ["atk"]=8420000,
+ ["atk"]=5630000,
["atk_times"]=3,
["hurt_skill"]={
20079,
@@ -7306,7 +7297,7 @@ local monster_chapter = {
[54801]={
["monster_base"]=10046,
["hp"]=574720000,
- ["atk"]=8640000,
+ ["atk"]=5840000,
["atk_times"]=3,
["hurt_skill"]={
20133,
@@ -7318,7 +7309,7 @@ local monster_chapter = {
[54901]={
["monster_base"]=10057,
["hp"]=627440000,
- ["atk"]=8790000,
+ ["atk"]=6030000,
["atk_times"]=3,
["hurt_skill"]={
20166,
@@ -7331,7 +7322,7 @@ local monster_chapter = {
["monster_base"]=20032,
["is_boss"]=2,
["hp"]=791560000,
- ["atk"]=9630000,
+ ["atk"]=7300000,
["atk_times"]=4,
["hurt_skill"]={
30094,
@@ -7355,7 +7346,7 @@ local monster_chapter = {
["monster_base"]=20030,
["is_boss"]=2,
["hp"]=593670000,
- ["atk"]=8560000,
+ ["atk"]=6490000,
["atk_times"]=4,
["hurt_skill"]={
30088,
@@ -7374,7 +7365,7 @@ local monster_chapter = {
[55201]={
["monster_base"]=10056,
["hp"]=106340000,
- ["atk"]=6420000,
+ ["atk"]=3300000,
["atk_times"]=3,
["hurt_skill"]={
20163,
@@ -7386,7 +7377,7 @@ local monster_chapter = {
[55301]={
["monster_base"]=10009,
["hp"]=145860000,
- ["atk"]=6670000,
+ ["atk"]=3550000,
["atk_times"]=3,
["hurt_skill"]={
20025,
@@ -7398,7 +7389,7 @@ local monster_chapter = {
[55401]={
["monster_base"]=10010,
["hp"]=163710000,
- ["atk"]=6890000,
+ ["atk"]=3670000,
["atk_times"]=3,
["hurt_skill"]={
20028,
@@ -7410,7 +7401,7 @@ local monster_chapter = {
[55501]={
["monster_base"]=10039,
["hp"]=217260000,
- ["atk"]=7080000,
+ ["atk"]=3790000,
["atk_times"]=3,
["hurt_skill"]={
20112,
@@ -7423,7 +7414,7 @@ local monster_chapter = {
["monster_base"]=20012,
["is_boss"]=1,
["hp"]=300390000,
- ["atk"]=7130000,
+ ["atk"]=4390000,
["atk_times"]=4,
["hurt_skill"]={
30034,
@@ -7438,7 +7429,7 @@ local monster_chapter = {
[55701]={
["monster_base"]=10009,
["hp"]=206040000,
- ["atk"]=7310000,
+ ["atk"]=4030000,
["atk_times"]=3,
["hurt_skill"]={
20025,
@@ -7450,7 +7441,7 @@ local monster_chapter = {
[55801]={
["monster_base"]=10055,
["hp"]=228230000,
- ["atk"]=8000000,
+ ["atk"]=4530000,
["atk_times"]=3,
["hurt_skill"]={
20160,
@@ -7462,7 +7453,7 @@ local monster_chapter = {
[55901]={
["monster_base"]=10046,
["hp"]=263930000,
- ["atk"]=7550000,
+ ["atk"]=4180000,
["atk_times"]=3,
["hurt_skill"]={
20133,
@@ -7474,7 +7465,7 @@ local monster_chapter = {
[56001]={
["monster_base"]=10057,
["hp"]=300390000,
- ["atk"]=8220000,
+ ["atk"]=4750000,
["atk_times"]=3,
["hurt_skill"]={
20166,
@@ -7487,7 +7478,7 @@ local monster_chapter = {
["monster_base"]=20030,
["is_boss"]=1,
["hp"]=562280000,
- ["atk"]=7720000,
+ ["atk"]=5230000,
["atk_times"]=4,
["hurt_skill"]={
30088,
@@ -7506,7 +7497,7 @@ local monster_chapter = {
[56201]={
["monster_base"]=10058,
["hp"]=326910000,
- ["atk"]=7900000,
+ ["atk"]=4900000,
["atk_times"]=3,
["hurt_skill"]={
20169,
@@ -7518,7 +7509,7 @@ local monster_chapter = {
[56301]={
["monster_base"]=10051,
["hp"]=369500000,
- ["atk"]=8120000,
+ ["atk"]=5060000,
["atk_times"]=3,
["hurt_skill"]={
20148,
@@ -7530,7 +7521,7 @@ local monster_chapter = {
[56401]={
["monster_base"]=10053,
["hp"]=391940000,
- ["atk"]=8270000,
+ ["atk"]=5230000,
["atk_times"]=3,
["hurt_skill"]={
20154,
@@ -7542,7 +7533,7 @@ local monster_chapter = {
[56501]={
["monster_base"]=10055,
["hp"]=424320000,
- ["atk"]=8510000,
+ ["atk"]=5480000,
["atk_times"]=3,
["hurt_skill"]={
20160,
@@ -7555,7 +7546,7 @@ local monster_chapter = {
["monster_base"]=20029,
["is_boss"]=1,
["hp"]=766020000,
- ["atk"]=7900000,
+ ["atk"]=5480000,
["atk_times"]=4,
["hurt_skill"]={
30085,
@@ -7573,7 +7564,7 @@ local monster_chapter = {
[56701]={
["monster_base"]=10058,
["hp"]=508220000,
- ["atk"]=8660000,
+ ["atk"]=5650000,
["atk_times"]=3,
["hurt_skill"]={
20169,
@@ -7585,7 +7576,7 @@ local monster_chapter = {
[56801]={
["monster_base"]=10051,
["hp"]=542390000,
- ["atk"]=8860000,
+ ["atk"]=5790000,
["atk_times"]=3,
["hurt_skill"]={
20148,
@@ -7597,7 +7588,7 @@ local monster_chapter = {
[56901]={
["monster_base"]=10055,
["hp"]=594660000,
- ["atk"]=9080000,
+ ["atk"]=6000000,
["atk_times"]=3,
["hurt_skill"]={
20160,
@@ -7609,7 +7600,7 @@ local monster_chapter = {
[57001]={
["monster_base"]=10057,
["hp"]=649230000,
- ["atk"]=9250000,
+ ["atk"]=6200000,
["atk_times"]=3,
["hurt_skill"]={
20166,
@@ -7622,7 +7613,7 @@ local monster_chapter = {
["monster_base"]=20031,
["is_boss"]=2,
["hp"]=1023830000,
- ["atk"]=11240000,
+ ["atk"]=8340000,
["atk_times"]=4,
["hurt_skill"]={
30091,
@@ -7643,7 +7634,7 @@ local monster_chapter = {
[57201]={
["monster_base"]=10060,
["hp"]=110420000,
- ["atk"]=6720000,
+ ["atk"]=3400000,
["atk_times"]=3,
["hurt_skill"]={
20175,
@@ -7655,7 +7646,7 @@ local monster_chapter = {
[57301]={
["monster_base"]=10046,
["hp"]=151470000,
- ["atk"]=6960000,
+ ["atk"]=3660000,
["atk_times"]=3,
["hurt_skill"]={
20133,
@@ -7667,7 +7658,7 @@ local monster_chapter = {
[57401]={
["monster_base"]=10061,
["hp"]=169830000,
- ["atk"]=7210000,
+ ["atk"]=3780000,
["atk_times"]=3,
["hurt_skill"]={
20178,
@@ -7679,7 +7670,7 @@ local monster_chapter = {
[57501]={
["monster_base"]=10052,
["hp"]=225420000,
- ["atk"]=7400000,
+ ["atk"]=3900000,
["atk_times"]=3,
["hurt_skill"]={
20151,
@@ -7692,7 +7683,7 @@ local monster_chapter = {
["monster_base"]=20017,
["is_boss"]=1,
["hp"]=311610000,
- ["atk"]=7430000,
+ ["atk"]=4520000,
["atk_times"]=4,
["hurt_skill"]={
30049,
@@ -7707,7 +7698,7 @@ local monster_chapter = {
[57701]={
["monster_base"]=10023,
["hp"]=213690000,
- ["atk"]=7650000,
+ ["atk"]=4150000,
["atk_times"]=3,
["hurt_skill"]={
20064,
@@ -7719,7 +7710,7 @@ local monster_chapter = {
[57801]={
["monster_base"]=10060,
["hp"]=236900000,
- ["atk"]=8360000,
+ ["atk"]=4660000,
["atk_times"]=3,
["hurt_skill"]={
20175,
@@ -7731,7 +7722,7 @@ local monster_chapter = {
[57901]={
["monster_base"]=10057,
["hp"]=273870000,
- ["atk"]=7870000,
+ ["atk"]=4300000,
["atk_times"]=3,
["hurt_skill"]={
20166,
@@ -7743,7 +7734,7 @@ local monster_chapter = {
[58001]={
["monster_base"]=10055,
["hp"]=311610000,
- ["atk"]=8590000,
+ ["atk"]=4890000,
["atk_times"]=3,
["hurt_skill"]={
20160,
@@ -7756,7 +7747,7 @@ local monster_chapter = {
["monster_base"]=20031,
["is_boss"]=1,
["hp"]=583190000,
- ["atk"]=8040000,
+ ["atk"]=5380000,
["atk_times"]=4,
["hurt_skill"]={
30091,
@@ -7777,7 +7768,7 @@ local monster_chapter = {
[58201]={
["monster_base"]=10047,
["hp"]=339150000,
- ["atk"]=8240000,
+ ["atk"]=5040000,
["atk_times"]=3,
["hurt_skill"]={
20136,
@@ -7789,7 +7780,7 @@ local monster_chapter = {
[58301]={
["monster_base"]=10052,
["hp"]=383270000,
- ["atk"]=8460000,
+ ["atk"]=5210000,
["atk_times"]=3,
["hurt_skill"]={
20151,
@@ -7801,7 +7792,7 @@ local monster_chapter = {
[58401]={
["monster_base"]=10027,
["hp"]=406730000,
- ["atk"]=8610000,
+ ["atk"]=5380000,
["atk_times"]=3,
["hurt_skill"]={
20076,
@@ -7813,7 +7804,7 @@ local monster_chapter = {
[58501]={
["monster_base"]=10061,
["hp"]=440130000,
- ["atk"]=8880000,
+ ["atk"]=5640000,
["atk_times"]=3,
["hurt_skill"]={
20178,
@@ -7826,7 +7817,7 @@ local monster_chapter = {
["monster_base"]=20029,
["is_boss"]=1,
["hp"]=794580000,
- ["atk"]=8240000,
+ ["atk"]=5640000,
["atk_times"]=4,
["hurt_skill"]={
30085,
@@ -7844,7 +7835,7 @@ local monster_chapter = {
[58701]={
["monster_base"]=10051,
["hp"]=527090000,
- ["atk"]=9030000,
+ ["atk"]=5820000,
["atk_times"]=3,
["hurt_skill"]={
20148,
@@ -7856,7 +7847,7 @@ local monster_chapter = {
[58801]={
["monster_base"]=10027,
["hp"]=562530000,
- ["atk"]=9250000,
+ ["atk"]=5960000,
["atk_times"]=3,
["hurt_skill"]={
20076,
@@ -7868,7 +7859,7 @@ local monster_chapter = {
[58901]={
["monster_base"]=10052,
["hp"]=616850000,
- ["atk"]=9470000,
+ ["atk"]=6180000,
["atk_times"]=3,
["hurt_skill"]={
20151,
@@ -7880,7 +7871,7 @@ local monster_chapter = {
[59001]={
["monster_base"]=10061,
["hp"]=673460000,
- ["atk"]=9640000,
+ ["atk"]=6380000,
["atk_times"]=3,
["hurt_skill"]={
20178,
@@ -7893,7 +7884,7 @@ local monster_chapter = {
["monster_base"]=20034,
["is_boss"]=2,
["hp"]=1062080000,
- ["atk"]=11710000,
+ ["atk"]=8580000,
["atk_times"]=4,
["hurt_skill"]={
30097,
@@ -7913,7 +7904,7 @@ local monster_chapter = {
[59201]={
["monster_base"]=10060,
["hp"]=114160000,
- ["atk"]=6970000,
+ ["atk"]=3590000,
["atk_times"]=3,
["hurt_skill"]={
20175,
@@ -7925,7 +7916,7 @@ local monster_chapter = {
[59301]={
["monster_base"]=10027,
["hp"]=156490000,
- ["atk"]=7240000,
+ ["atk"]=3870000,
["atk_times"]=3,
["hurt_skill"]={
20076,
@@ -7937,7 +7928,7 @@ local monster_chapter = {
[59401]={
["monster_base"]=10051,
["hp"]=175390000,
- ["atk"]=7480000,
+ ["atk"]=3990000,
["atk_times"]=3,
["hurt_skill"]={
20148,
@@ -7949,7 +7940,7 @@ local monster_chapter = {
[59501]={
["monster_base"]=10055,
["hp"]=232850000,
- ["atk"]=7700000,
+ ["atk"]=4120000,
["atk_times"]=3,
["hurt_skill"]={
20160,
@@ -7962,7 +7953,7 @@ local monster_chapter = {
["monster_base"]=20019,
["is_boss"]=1,
["hp"]=321800000,
- ["atk"]=7730000,
+ ["atk"]=4780000,
["atk_times"]=4,
["hurt_skill"]={
30055,
@@ -7980,7 +7971,7 @@ local monster_chapter = {
[59701]={
["monster_base"]=10057,
["hp"]=220750000,
- ["atk"]=7950000,
+ ["atk"]=4380000,
["atk_times"]=3,
["hurt_skill"]={
20166,
@@ -7992,7 +7983,7 @@ local monster_chapter = {
[59801]={
["monster_base"]=10027,
["hp"]=244690000,
- ["atk"]=8680000,
+ ["atk"]=4920000,
["atk_times"]=3,
["hurt_skill"]={
20076,
@@ -8004,7 +7995,7 @@ local monster_chapter = {
[59901]={
["monster_base"]=10052,
["hp"]=283000000,
- ["atk"]=8190000,
+ ["atk"]=4540000,
["atk_times"]=3,
["hurt_skill"]={
20151,
@@ -8016,7 +8007,7 @@ local monster_chapter = {
[60001]={
["monster_base"]=10061,
["hp"]=321800000,
- ["atk"]=8890000,
+ ["atk"]=5170000,
["atk_times"]=3,
["hurt_skill"]={
20178,
@@ -8029,7 +8020,7 @@ local monster_chapter = {
["monster_base"]=20034,
["is_boss"]=1,
["hp"]=602280000,
- ["atk"]=8330000,
+ ["atk"]=5680000,
["atk_times"]=4,
["hurt_skill"]={
30097,
@@ -8049,7 +8040,7 @@ local monster_chapter = {
[60201]={
["monster_base"]=10047,
["hp"]=350280000,
- ["atk"]=8550000,
+ ["atk"]=5320000,
["atk_times"]=3,
["hurt_skill"]={
20136,
@@ -8061,7 +8052,7 @@ local monster_chapter = {
[60301]={
["monster_base"]=10023,
["hp"]=395890000,
- ["atk"]=8800000,
+ ["atk"]=5500000,
["atk_times"]=3,
["hurt_skill"]={
20064,
@@ -8073,7 +8064,7 @@ local monster_chapter = {
[60401]={
["monster_base"]=10046,
["hp"]=420080000,
- ["atk"]=8940000,
+ ["atk"]=5680000,
["atk_times"]=3,
["hurt_skill"]={
20133,
@@ -8085,7 +8076,7 @@ local monster_chapter = {
[60501]={
["monster_base"]=10052,
["hp"]=454610000,
- ["atk"]=9230000,
+ ["atk"]=5960000,
["atk_times"]=3,
["hurt_skill"]={
20151,
@@ -8098,7 +8089,7 @@ local monster_chapter = {
["monster_base"]=20010,
["is_boss"]=1,
["hp"]=820510000,
- ["atk"]=8530000,
+ ["atk"]=5960000,
["atk_times"]=4,
["hurt_skill"]={
30028,
@@ -8119,7 +8110,7 @@ local monster_chapter = {
[60701]={
["monster_base"]=10027,
["hp"]=544320000,
- ["atk"]=9380000,
+ ["atk"]=6150000,
["atk_times"]=3,
["hurt_skill"]={
20076,
@@ -8131,7 +8122,7 @@ local monster_chapter = {
[60801]={
["monster_base"]=10047,
["hp"]=580860000,
- ["atk"]=9600000,
+ ["atk"]=6300000,
["atk_times"]=3,
["hurt_skill"]={
20136,
@@ -8143,7 +8134,7 @@ local monster_chapter = {
[60901]={
["monster_base"]=10057,
["hp"]=637060000,
- ["atk"]=9840000,
+ ["atk"]=6530000,
["atk_times"]=3,
["hurt_skill"]={
20166,
@@ -8155,7 +8146,7 @@ local monster_chapter = {
[61001]={
["monster_base"]=10060,
["hp"]=695520000,
- ["atk"]=10010000,
+ ["atk"]=6740000,
["atk_times"]=3,
["hurt_skill"]={
20175,
@@ -8168,7 +8159,7 @@ local monster_chapter = {
["monster_base"]=20035,
["is_boss"]=2,
["hp"]=1096700000,
- ["atk"]=12130000,
+ ["atk"]=9060000,
["atk_times"]=4,
["hurt_skill"]={
30100,
@@ -8188,7 +8179,7 @@ local monster_chapter = {
[61201]={
["monster_base"]=10062,
["hp"]=119020000,
- ["atk"]=7320000,
+ ["atk"]=3780000,
["atk_times"]=3,
["hurt_skill"]={
20181,
@@ -8200,7 +8191,7 @@ local monster_chapter = {
[61301]={
["monster_base"]=10049,
["hp"]=163100000,
- ["atk"]=7580000,
+ ["atk"]=4080000,
["atk_times"]=3,
["hurt_skill"]={
20142,
@@ -8212,7 +8203,7 @@ local monster_chapter = {
[61401]={
["monster_base"]=10042,
["hp"]=182770000,
- ["atk"]=7850000,
+ ["atk"]=4200000,
["atk_times"]=3,
["hurt_skill"]={
20121,
@@ -8224,7 +8215,7 @@ local monster_chapter = {
[61501]={
["monster_base"]=10026,
["hp"]=242530000,
- ["atk"]=8060000,
+ ["atk"]=4340000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -8237,7 +8228,7 @@ local monster_chapter = {
["monster_base"]=20006,
["is_boss"]=1,
["hp"]=335150000,
- ["atk"]=8060000,
+ ["atk"]=5040000,
["atk_times"]=4,
["hurt_skill"]={
30016,
@@ -8255,7 +8246,7 @@ local monster_chapter = {
[61701]={
["monster_base"]=10064,
["hp"]=229830000,
- ["atk"]=8300000,
+ ["atk"]=4610000,
["atk_times"]=3,
["hurt_skill"]={
20190,
@@ -8267,7 +8258,7 @@ local monster_chapter = {
[61801]={
["monster_base"]=10042,
["hp"]=254730000,
- ["atk"]=9070000,
+ ["atk"]=5180000,
["atk_times"]=3,
["hurt_skill"]={
20121,
@@ -8279,7 +8270,7 @@ local monster_chapter = {
[61901]={
["monster_base"]=10019,
["hp"]=294820000,
- ["atk"]=8570000,
+ ["atk"]=4780000,
["atk_times"]=3,
["hurt_skill"]={
20052,
@@ -8291,7 +8282,7 @@ local monster_chapter = {
[62001]={
["monster_base"]=10062,
["hp"]=335150000,
- ["atk"]=9310000,
+ ["atk"]=5450000,
["atk_times"]=3,
["hurt_skill"]={
20181,
@@ -8304,7 +8295,7 @@ local monster_chapter = {
["monster_base"]=20021,
["is_boss"]=1,
["hp"]=626980000,
- ["atk"]=8710000,
+ ["atk"]=5980000,
["atk_times"]=4,
["hurt_skill"]={
30061,
@@ -8323,7 +8314,7 @@ local monster_chapter = {
[62201]={
["monster_base"]=10013,
["hp"]=364790000,
- ["atk"]=8950000,
+ ["atk"]=5600000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -8335,7 +8326,7 @@ local monster_chapter = {
[62301]={
["monster_base"]=10026,
["hp"]=412340000,
- ["atk"]=9220000,
+ ["atk"]=5790000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -8347,7 +8338,7 @@ local monster_chapter = {
[62401]={
["monster_base"]=10062,
["hp"]=437490000,
- ["atk"]=9360000,
+ ["atk"]=5980000,
["atk_times"]=3,
["hurt_skill"]={
20181,
@@ -8359,7 +8350,7 @@ local monster_chapter = {
[62501]={
["monster_base"]=10044,
["hp"]=473350000,
- ["atk"]=9650000,
+ ["atk"]=6280000,
["atk_times"]=3,
["hurt_skill"]={
20127,
@@ -8372,7 +8363,7 @@ local monster_chapter = {
["monster_base"]=20016,
["is_boss"]=1,
["hp"]=854320000,
- ["atk"]=8930000,
+ ["atk"]=6280000,
["atk_times"]=4,
["hurt_skill"]={
30046,
@@ -8391,7 +8382,7 @@ local monster_chapter = {
[62701]={
["monster_base"]=10062,
["hp"]=566720000,
- ["atk"]=9820000,
+ ["atk"]=6480000,
["atk_times"]=3,
["hurt_skill"]={
20181,
@@ -8403,7 +8394,7 @@ local monster_chapter = {
[62801]={
["monster_base"]=10019,
["hp"]=604820000,
- ["atk"]=10030000,
+ ["atk"]=6640000,
["atk_times"]=3,
["hurt_skill"]={
20052,
@@ -8415,7 +8406,7 @@ local monster_chapter = {
[62901]={
["monster_base"]=10064,
["hp"]=663340000,
- ["atk"]=10300000,
+ ["atk"]=6880000,
["atk_times"]=3,
["hurt_skill"]={
20190,
@@ -8427,7 +8418,7 @@ local monster_chapter = {
[63001]={
["monster_base"]=10013,
["hp"]=724090000,
- ["atk"]=10460000,
+ ["atk"]=7100000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -8440,7 +8431,7 @@ local monster_chapter = {
["monster_base"]=20036,
["is_boss"]=2,
["hp"]=1141670000,
- ["atk"]=12650000,
+ ["atk"]=9540000,
["atk_times"]=4,
["hurt_skill"]={
30103,
@@ -8459,7 +8450,7 @@ local monster_chapter = {
[63201]={
["monster_base"]=10063,
["hp"]=122760000,
- ["atk"]=7580000,
+ ["atk"]=3990000,
["atk_times"]=3,
["hurt_skill"]={
20184,
@@ -8471,7 +8462,7 @@ local monster_chapter = {
[63301]={
["monster_base"]=10064,
["hp"]=168080000,
- ["atk"]=7870000,
+ ["atk"]=4310000,
["atk_times"]=3,
["hurt_skill"]={
20190,
@@ -8483,7 +8474,7 @@ local monster_chapter = {
[63401]={
["monster_base"]=10062,
["hp"]=188490000,
- ["atk"]=8140000,
+ ["atk"]=4440000,
["atk_times"]=3,
["hurt_skill"]={
20181,
@@ -8495,7 +8486,7 @@ local monster_chapter = {
[63501]={
["monster_base"]=10026,
["hp"]=250000000,
- ["atk"]=8350000,
+ ["atk"]=4590000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -8508,7 +8499,7 @@ local monster_chapter = {
["monster_base"]=20021,
["is_boss"]=1,
["hp"]=345610000,
- ["atk"]=8350000,
+ ["atk"]=5320000,
["atk_times"]=4,
["hurt_skill"]={
30061,
@@ -8527,7 +8518,7 @@ local monster_chapter = {
[63701]={
["monster_base"]=10064,
["hp"]=237050000,
- ["atk"]=8620000,
+ ["atk"]=4870000,
["atk_times"]=3,
["hurt_skill"]={
20190,
@@ -8539,7 +8530,7 @@ local monster_chapter = {
[63801]={
["monster_base"]=10062,
["hp"]=262700000,
- ["atk"]=9410000,
+ ["atk"]=5470000,
["atk_times"]=3,
["hurt_skill"]={
20181,
@@ -8551,7 +8542,7 @@ local monster_chapter = {
[63901]={
["monster_base"]=10022,
["hp"]=304030000,
- ["atk"]=8880000,
+ ["atk"]=5050000,
["atk_times"]=3,
["hurt_skill"]={
20061,
@@ -8563,7 +8554,7 @@ local monster_chapter = {
[64001]={
["monster_base"]=10063,
["hp"]=345610000,
- ["atk"]=9650000,
+ ["atk"]=5760000,
["atk_times"]=3,
["hurt_skill"]={
20184,
@@ -8576,7 +8567,7 @@ local monster_chapter = {
["monster_base"]=20036,
["is_boss"]=1,
["hp"]=646160000,
- ["atk"]=9020000,
+ ["atk"]=6320000,
["atk_times"]=4,
["hurt_skill"]={
30103,
@@ -8595,7 +8586,7 @@ local monster_chapter = {
[64201]={
["monster_base"]=10019,
["hp"]=375990000,
- ["atk"]=9290000,
+ ["atk"]=5920000,
["atk_times"]=3,
["hurt_skill"]={
20052,
@@ -8607,7 +8598,7 @@ local monster_chapter = {
[64301]={
["monster_base"]=10026,
["hp"]=425040000,
- ["atk"]=9550000,
+ ["atk"]=6120000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -8619,7 +8610,7 @@ local monster_chapter = {
[64401]={
["monster_base"]=10062,
["hp"]=450940000,
- ["atk"]=9700000,
+ ["atk"]=6320000,
["atk_times"]=3,
["hurt_skill"]={
20181,
@@ -8631,7 +8622,7 @@ local monster_chapter = {
[64501]={
["monster_base"]=10063,
["hp"]=487790000,
- ["atk"]=10010000,
+ ["atk"]=6630000,
["atk_times"]=3,
["hurt_skill"]={
20184,
@@ -8644,7 +8635,7 @@ local monster_chapter = {
["monster_base"]=20006,
["is_boss"]=1,
["hp"]=880460000,
- ["atk"]=9240000,
+ ["atk"]=6630000,
["atk_times"]=4,
["hurt_skill"]={
30016,
@@ -8662,7 +8653,7 @@ local monster_chapter = {
[64701]={
["monster_base"]=10013,
["hp"]=584150000,
- ["atk"]=10180000,
+ ["atk"]=6840000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -8674,7 +8665,7 @@ local monster_chapter = {
[64801]={
["monster_base"]=10062,
["hp"]=623500000,
- ["atk"]=10390000,
+ ["atk"]=7010000,
["atk_times"]=3,
["hurt_skill"]={
20181,
@@ -8686,7 +8677,7 @@ local monster_chapter = {
[64901]={
["monster_base"]=10064,
["hp"]=683750000,
- ["atk"]=10660000,
+ ["atk"]=7270000,
["atk_times"]=3,
["hurt_skill"]={
20190,
@@ -8698,7 +8689,7 @@ local monster_chapter = {
[65001]={
["monster_base"]=10063,
["hp"]=746250000,
- ["atk"]=10850000,
+ ["atk"]=7500000,
["atk_times"]=3,
["hurt_skill"]={
20184,
@@ -8711,7 +8702,7 @@ local monster_chapter = {
["monster_base"]=20037,
["is_boss"]=2,
["hp"]=1176530000,
- ["atk"]=13080000,
+ ["atk"]=10070000,
["atk_times"]=4,
["hurt_skill"]={
30106,
@@ -8731,7 +8722,7 @@ local monster_chapter = {
[65201]={
["monster_base"]=10065,
["hp"]=131470000,
- ["atk"]=8160000,
+ ["atk"]=4310000,
["atk_times"]=3,
["hurt_skill"]={
20187,
@@ -8743,7 +8734,7 @@ local monster_chapter = {
[65301]={
["monster_base"]=10062,
["hp"]=179780000,
- ["atk"]=8470000,
+ ["atk"]=4650000,
["atk_times"]=3,
["hurt_skill"]={
20181,
@@ -8755,7 +8746,7 @@ local monster_chapter = {
[65401]={
["monster_base"]=10064,
["hp"]=201690000,
- ["atk"]=8740000,
+ ["atk"]=4790000,
["atk_times"]=3,
["hurt_skill"]={
20190,
@@ -8767,7 +8758,7 @@ local monster_chapter = {
[65501]={
["monster_base"]=10063,
["hp"]=267430000,
- ["atk"]=8980000,
+ ["atk"]=4960000,
["atk_times"]=3,
["hurt_skill"]={
20184,
@@ -8780,7 +8771,7 @@ local monster_chapter = {
["monster_base"]=20027,
["is_boss"]=1,
["hp"]=369520000,
- ["atk"]=8980000,
+ ["atk"]=5740000,
["atk_times"]=4,
["hurt_skill"]={
30079,
@@ -8795,7 +8786,7 @@ local monster_chapter = {
[65701]={
["monster_base"]=10026,
["hp"]=253480000,
- ["atk"]=9260000,
+ ["atk"]=5260000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -8807,7 +8798,7 @@ local monster_chapter = {
[65801]={
["monster_base"]=10063,
["hp"]=280870000,
- ["atk"]=10100000,
+ ["atk"]=5910000,
["atk_times"]=3,
["hurt_skill"]={
20184,
@@ -8819,7 +8810,7 @@ local monster_chapter = {
[65901]={
["monster_base"]=10062,
["hp"]=325190000,
- ["atk"]=9550000,
+ ["atk"]=5450000,
["atk_times"]=3,
["hurt_skill"]={
20181,
@@ -8831,7 +8822,7 @@ local monster_chapter = {
[66001]={
["monster_base"]=10065,
["hp"]=369520000,
- ["atk"]=10370000,
+ ["atk"]=6220000,
["atk_times"]=3,
["hurt_skill"]={
20187,
@@ -8844,7 +8835,7 @@ local monster_chapter = {
["monster_base"]=20036,
["is_boss"]=1,
["hp"]=690980000,
- ["atk"]=9700000,
+ ["atk"]=6820000,
["atk_times"]=4,
["hurt_skill"]={
30103,
@@ -8863,7 +8854,7 @@ local monster_chapter = {
[66201]={
["monster_base"]=10063,
["hp"]=402140000,
- ["atk"]=9980000,
+ ["atk"]=6390000,
["atk_times"]=3,
["hurt_skill"]={
20184,
@@ -8875,7 +8866,7 @@ local monster_chapter = {
[66301]={
["monster_base"]=10062,
["hp"]=454430000,
- ["atk"]=10250000,
+ ["atk"]=6610000,
["atk_times"]=3,
["hurt_skill"]={
20181,
@@ -8887,7 +8878,7 @@ local monster_chapter = {
[66401]={
["monster_base"]=10022,
["hp"]=482310000,
- ["atk"]=10420000,
+ ["atk"]=6820000,
["atk_times"]=3,
["hurt_skill"]={
20061,
@@ -8899,7 +8890,7 @@ local monster_chapter = {
[66501]={
["monster_base"]=10065,
["hp"]=521660000,
- ["atk"]=10750000,
+ ["atk"]=7160000,
["atk_times"]=3,
["hurt_skill"]={
20187,
@@ -8912,7 +8903,7 @@ local monster_chapter = {
["monster_base"]=20037,
["is_boss"]=1,
["hp"]=941470000,
- ["atk"]=9910000,
+ ["atk"]=7160000,
["atk_times"]=4,
["hurt_skill"]={
30106,
@@ -8932,7 +8923,7 @@ local monster_chapter = {
[66701]={
["monster_base"]=10062,
["hp"]=624490000,
- ["atk"]=10920000,
+ ["atk"]=7380000,
["atk_times"]=3,
["hurt_skill"]={
20181,
@@ -8944,7 +8935,7 @@ local monster_chapter = {
[66801]={
["monster_base"]=10063,
["hp"]=666570000,
- ["atk"]=11160000,
+ ["atk"]=7570000,
["atk_times"]=3,
["hurt_skill"]={
20184,
@@ -8956,7 +8947,7 @@ local monster_chapter = {
[66901]={
["monster_base"]=10026,
["hp"]=731060000,
- ["atk"]=11450000,
+ ["atk"]=7850000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -8968,7 +8959,7 @@ local monster_chapter = {
[67001]={
["monster_base"]=10065,
["hp"]=797800000,
- ["atk"]=11640000,
+ ["atk"]=8100000,
["atk_times"]=3,
["hurt_skill"]={
20187,
@@ -8981,7 +8972,7 @@ local monster_chapter = {
["monster_base"]=20038,
["is_boss"]=2,
["hp"]=1257950000,
- ["atk"]=14020000,
+ ["atk"]=10870000,
["atk_times"]=4,
["hurt_skill"]={
30109,
diff --git a/lua/app/config/monster_daily_challenge.lua b/lua/app/config/monster_daily_challenge.lua
index e25526f0..ae07cdef 100644
--- a/lua/app/config/monster_daily_challenge.lua
+++ b/lua/app/config/monster_daily_challenge.lua
@@ -1,8 +1,8 @@
local monster_daily_challenge = {
[102]={
["monster_base"]=10001,
- ["hp"]=21810000,
- ["atk"]=690000,
+ ["hp"]=21820000,
+ ["atk"]=610000,
["atk_times"]=3,
["hurt_skill"]={
20001,
@@ -14,7 +14,7 @@ local monster_daily_challenge = {
[202]={
["monster_base"]=10002,
["hp"]=30000000,
- ["atk"]=750000,
+ ["atk"]=660000,
["atk_times"]=3,
["hurt_skill"]={
20004,
@@ -25,8 +25,8 @@ local monster_daily_challenge = {
},
[302]={
["monster_base"]=10003,
- ["hp"]=32700000,
- ["atk"]=780000,
+ ["hp"]=32730000,
+ ["atk"]=710000,
["atk_times"]=3,
["hurt_skill"]={
20007,
@@ -37,8 +37,8 @@ local monster_daily_challenge = {
},
[402]={
["monster_base"]=10005,
- ["hp"]=40890000,
- ["atk"]=840000,
+ ["hp"]=40910000,
+ ["atk"]=760000,
["atk_times"]=3,
["hurt_skill"]={
20013,
@@ -50,8 +50,8 @@ local monster_daily_challenge = {
[502]={
["monster_base"]=20004,
["is_boss"]=1,
- ["hp"]=62700000,
- ["atk"]=1020000,
+ ["hp"]=62730000,
+ ["atk"]=910000,
["atk_times"]=4,
["hurt_skill"]={
30010,
@@ -62,8 +62,8 @@ local monster_daily_challenge = {
},
[602]={
["monster_base"]=10038,
- ["hp"]=40890000,
- ["atk"]=840000,
+ ["hp"]=40910000,
+ ["atk"]=760000,
["atk_times"]=3,
["hurt_skill"]={
20109,
@@ -74,8 +74,8 @@ local monster_daily_challenge = {
},
[702]={
["monster_base"]=10040,
- ["hp"]=46350000,
- ["atk"]=900000,
+ ["hp"]=46360000,
+ ["atk"]=810000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -86,8 +86,8 @@ local monster_daily_challenge = {
},
[802]={
["monster_base"]=10010,
- ["hp"]=54540000,
- ["atk"]=900000,
+ ["hp"]=54550000,
+ ["atk"]=810000,
["atk_times"]=3,
["hurt_skill"]={
20028,
@@ -99,7 +99,7 @@ local monster_daily_challenge = {
[902]={
["monster_base"]=10009,
["hp"]=60000000,
- ["atk"]=960000,
+ ["atk"]=850000,
["atk_times"]=3,
["hurt_skill"]={
20025,
@@ -111,8 +111,8 @@ local monster_daily_challenge = {
[1002]={
["monster_base"]=20017,
["is_boss"]=1,
- ["hp"]=114540000,
- ["atk"]=1110000,
+ ["hp"]=114550000,
+ ["atk"]=980000,
["atk_times"]=4,
["hurt_skill"]={
30049,
@@ -126,8 +126,8 @@ local monster_daily_challenge = {
},
[1102]={
["monster_base"]=10002,
- ["hp"]=62700000,
- ["atk"]=960000,
+ ["hp"]=62730000,
+ ["atk"]=850000,
["atk_times"]=3,
["hurt_skill"]={
20004,
@@ -138,8 +138,8 @@ local monster_daily_challenge = {
},
[1202]={
["monster_base"]=10009,
- ["hp"]=76350000,
- ["atk"]=1020000,
+ ["hp"]=76360000,
+ ["atk"]=910000,
["atk_times"]=3,
["hurt_skill"]={
20025,
@@ -150,8 +150,8 @@ local monster_daily_challenge = {
},
[1302]={
["monster_base"]=10001,
- ["hp"]=84540000,
- ["atk"]=1080000,
+ ["hp"]=84550000,
+ ["atk"]=950000,
["atk_times"]=3,
["hurt_skill"]={
20001,
@@ -162,8 +162,8 @@ local monster_daily_challenge = {
},
[1402]={
["monster_base"]=10039,
- ["hp"]=95430000,
- ["atk"]=1110000,
+ ["hp"]=95450000,
+ ["atk"]=1000000,
["atk_times"]=3,
["hurt_skill"]={
20112,
@@ -175,8 +175,8 @@ local monster_daily_challenge = {
[1502]={
["monster_base"]=20015,
["is_boss"]=1,
- ["hp"]=141810000,
- ["atk"]=1200000,
+ ["hp"]=141820000,
+ ["atk"]=1070000,
["atk_times"]=4,
["hurt_skill"]={
30043,
@@ -193,8 +193,8 @@ local monster_daily_challenge = {
},
[1602]={
["monster_base"]=10031,
- ["hp"]=109080000,
- ["atk"]=1170000,
+ ["hp"]=109090000,
+ ["atk"]=1060000,
["atk_times"]=3,
["hurt_skill"]={
20088,
@@ -206,7 +206,7 @@ local monster_daily_challenge = {
[1702]={
["monster_base"]=10034,
["hp"]=120000000,
- ["atk"]=1230000,
+ ["atk"]=1100000,
["atk_times"]=3,
["hurt_skill"]={
20097,
@@ -217,8 +217,8 @@ local monster_daily_challenge = {
},
[1802]={
["monster_base"]=10032,
- ["hp"]=136350000,
- ["atk"]=1290000,
+ ["hp"]=136360000,
+ ["atk"]=1150000,
["atk_times"]=3,
["hurt_skill"]={
20091,
@@ -230,7 +230,7 @@ local monster_daily_challenge = {
[1902]={
["monster_base"]=10035,
["hp"]=147270000,
- ["atk"]=1350000,
+ ["atk"]=1190000,
["atk_times"]=3,
["hurt_skill"]={
20100,
@@ -242,8 +242,8 @@ local monster_daily_challenge = {
[2002]={
["monster_base"]=20003,
["is_boss"]=2,
- ["hp"]=245430000,
- ["atk"]=1860000,
+ ["hp"]=245450000,
+ ["atk"]=1640000,
["atk_times"]=4,
["hurt_skill"]={
30007,
@@ -262,8 +262,8 @@ local monster_daily_challenge = {
},
[2102]={
["monster_base"]=10030,
- ["hp"]=21810000,
- ["atk"]=690000,
+ ["hp"]=21820000,
+ ["atk"]=610000,
["atk_times"]=3,
["hurt_skill"]={
20085,
@@ -275,7 +275,7 @@ local monster_daily_challenge = {
[2202]={
["monster_base"]=10035,
["hp"]=30000000,
- ["atk"]=750000,
+ ["atk"]=660000,
["atk_times"]=3,
["hurt_skill"]={
20100,
@@ -286,8 +286,8 @@ local monster_daily_challenge = {
},
[2302]={
["monster_base"]=10039,
- ["hp"]=32700000,
- ["atk"]=780000,
+ ["hp"]=32730000,
+ ["atk"]=710000,
["atk_times"]=3,
["hurt_skill"]={
20112,
@@ -298,8 +298,8 @@ local monster_daily_challenge = {
},
[2402]={
["monster_base"]=10010,
- ["hp"]=40890000,
- ["atk"]=840000,
+ ["hp"]=40910000,
+ ["atk"]=760000,
["atk_times"]=3,
["hurt_skill"]={
20028,
@@ -311,8 +311,8 @@ local monster_daily_challenge = {
[2502]={
["monster_base"]=20007,
["is_boss"]=1,
- ["hp"]=62700000,
- ["atk"]=1020000,
+ ["hp"]=62730000,
+ ["atk"]=910000,
["atk_times"]=4,
["hurt_skill"]={
30019,
@@ -329,8 +329,8 @@ local monster_daily_challenge = {
},
[2602]={
["monster_base"]=10044,
- ["hp"]=40890000,
- ["atk"]=840000,
+ ["hp"]=40910000,
+ ["atk"]=760000,
["atk_times"]=3,
["hurt_skill"]={
20127,
@@ -341,8 +341,8 @@ local monster_daily_challenge = {
},
[2702]={
["monster_base"]=10038,
- ["hp"]=46350000,
- ["atk"]=900000,
+ ["hp"]=46360000,
+ ["atk"]=810000,
["atk_times"]=3,
["hurt_skill"]={
20109,
@@ -353,8 +353,8 @@ local monster_daily_challenge = {
},
[2802]={
["monster_base"]=10022,
- ["hp"]=54540000,
- ["atk"]=900000,
+ ["hp"]=54550000,
+ ["atk"]=810000,
["atk_times"]=3,
["hurt_skill"]={
20061,
@@ -366,7 +366,7 @@ local monster_daily_challenge = {
[2902]={
["monster_base"]=10026,
["hp"]=60000000,
- ["atk"]=960000,
+ ["atk"]=850000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -378,8 +378,8 @@ local monster_daily_challenge = {
[3002]={
["monster_base"]=20014,
["is_boss"]=1,
- ["hp"]=114540000,
- ["atk"]=1110000,
+ ["hp"]=114550000,
+ ["atk"]=980000,
["atk_times"]=4,
["hurt_skill"]={
30040,
@@ -396,8 +396,8 @@ local monster_daily_challenge = {
},
[3102]={
["monster_base"]=10020,
- ["hp"]=62700000,
- ["atk"]=960000,
+ ["hp"]=62730000,
+ ["atk"]=850000,
["atk_times"]=3,
["hurt_skill"]={
20055,
@@ -408,8 +408,8 @@ local monster_daily_challenge = {
},
[3202]={
["monster_base"]=10006,
- ["hp"]=76350000,
- ["atk"]=1020000,
+ ["hp"]=76360000,
+ ["atk"]=910000,
["atk_times"]=3,
["hurt_skill"]={
20016,
@@ -420,8 +420,8 @@ local monster_daily_challenge = {
},
[3302]={
["monster_base"]=10026,
- ["hp"]=84540000,
- ["atk"]=1080000,
+ ["hp"]=84550000,
+ ["atk"]=950000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -432,8 +432,8 @@ local monster_daily_challenge = {
},
[3402]={
["monster_base"]=10014,
- ["hp"]=95430000,
- ["atk"]=1110000,
+ ["hp"]=95450000,
+ ["atk"]=1000000,
["atk_times"]=3,
["hurt_skill"]={
20037,
@@ -445,8 +445,8 @@ local monster_daily_challenge = {
[3502]={
["monster_base"]=20002,
["is_boss"]=1,
- ["hp"]=141810000,
- ["atk"]=1200000,
+ ["hp"]=141820000,
+ ["atk"]=1070000,
["atk_times"]=4,
["hurt_skill"]={
30004,
@@ -460,8 +460,8 @@ local monster_daily_challenge = {
},
[3602]={
["monster_base"]=10008,
- ["hp"]=109080000,
- ["atk"]=1170000,
+ ["hp"]=109090000,
+ ["atk"]=1060000,
["atk_times"]=3,
["hurt_skill"]={
20022,
@@ -473,7 +473,7 @@ local monster_daily_challenge = {
[3702]={
["monster_base"]=10033,
["hp"]=120000000,
- ["atk"]=1230000,
+ ["atk"]=1100000,
["atk_times"]=3,
["hurt_skill"]={
20094,
@@ -484,8 +484,8 @@ local monster_daily_challenge = {
},
[3802]={
["monster_base"]=10014,
- ["hp"]=136350000,
- ["atk"]=1290000,
+ ["hp"]=136360000,
+ ["atk"]=1150000,
["atk_times"]=3,
["hurt_skill"]={
20037,
@@ -497,7 +497,7 @@ local monster_daily_challenge = {
[3902]={
["monster_base"]=10032,
["hp"]=147270000,
- ["atk"]=1350000,
+ ["atk"]=1190000,
["atk_times"]=3,
["hurt_skill"]={
20091,
@@ -509,8 +509,8 @@ local monster_daily_challenge = {
[4002]={
["monster_base"]=20021,
["is_boss"]=2,
- ["hp"]=245430000,
- ["atk"]=1860000,
+ ["hp"]=245450000,
+ ["atk"]=1640000,
["atk_times"]=4,
["hurt_skill"]={
30061,
@@ -528,8 +528,8 @@ local monster_daily_challenge = {
},
[4102]={
["monster_base"]=10044,
- ["hp"]=21810000,
- ["atk"]=690000,
+ ["hp"]=21820000,
+ ["atk"]=610000,
["atk_times"]=3,
["hurt_skill"]={
20127,
@@ -541,7 +541,7 @@ local monster_daily_challenge = {
[4202]={
["monster_base"]=10001,
["hp"]=30000000,
- ["atk"]=750000,
+ ["atk"]=660000,
["atk_times"]=3,
["hurt_skill"]={
20001,
@@ -552,8 +552,8 @@ local monster_daily_challenge = {
},
[4302]={
["monster_base"]=10038,
- ["hp"]=32700000,
- ["atk"]=780000,
+ ["hp"]=32730000,
+ ["atk"]=710000,
["atk_times"]=3,
["hurt_skill"]={
20109,
@@ -564,8 +564,8 @@ local monster_daily_challenge = {
},
[4402]={
["monster_base"]=10022,
- ["hp"]=40890000,
- ["atk"]=840000,
+ ["hp"]=40910000,
+ ["atk"]=760000,
["atk_times"]=3,
["hurt_skill"]={
20061,
@@ -577,8 +577,8 @@ local monster_daily_challenge = {
[4502]={
["monster_base"]=20007,
["is_boss"]=1,
- ["hp"]=62700000,
- ["atk"]=1020000,
+ ["hp"]=62730000,
+ ["atk"]=910000,
["atk_times"]=4,
["hurt_skill"]={
30019,
@@ -595,8 +595,8 @@ local monster_daily_challenge = {
},
[4602]={
["monster_base"]=10013,
- ["hp"]=40890000,
- ["atk"]=840000,
+ ["hp"]=40910000,
+ ["atk"]=760000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -607,8 +607,8 @@ local monster_daily_challenge = {
},
[4702]={
["monster_base"]=10005,
- ["hp"]=46350000,
- ["atk"]=900000,
+ ["hp"]=46360000,
+ ["atk"]=810000,
["atk_times"]=3,
["hurt_skill"]={
20013,
@@ -619,8 +619,8 @@ local monster_daily_challenge = {
},
[4802]={
["monster_base"]=10026,
- ["hp"]=54540000,
- ["atk"]=900000,
+ ["hp"]=54550000,
+ ["atk"]=810000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -632,7 +632,7 @@ local monster_daily_challenge = {
[4902]={
["monster_base"]=10042,
["hp"]=60000000,
- ["atk"]=960000,
+ ["atk"]=850000,
["atk_times"]=3,
["hurt_skill"]={
20121,
@@ -644,8 +644,8 @@ local monster_daily_challenge = {
[5002]={
["monster_base"]=20006,
["is_boss"]=1,
- ["hp"]=114540000,
- ["atk"]=1110000,
+ ["hp"]=114550000,
+ ["atk"]=980000,
["atk_times"]=4,
["hurt_skill"]={
30016,
@@ -662,8 +662,8 @@ local monster_daily_challenge = {
},
[5102]={
["monster_base"]=10047,
- ["hp"]=62700000,
- ["atk"]=960000,
+ ["hp"]=62730000,
+ ["atk"]=850000,
["atk_times"]=3,
["hurt_skill"]={
20136,
@@ -674,8 +674,8 @@ local monster_daily_challenge = {
},
[5202]={
["monster_base"]=10038,
- ["hp"]=76350000,
- ["atk"]=1020000,
+ ["hp"]=76360000,
+ ["atk"]=910000,
["atk_times"]=3,
["hurt_skill"]={
20109,
@@ -686,8 +686,8 @@ local monster_daily_challenge = {
},
[5302]={
["monster_base"]=10021,
- ["hp"]=84540000,
- ["atk"]=1080000,
+ ["hp"]=84550000,
+ ["atk"]=950000,
["atk_times"]=3,
["hurt_skill"]={
20058,
@@ -698,8 +698,8 @@ local monster_daily_challenge = {
},
[5402]={
["monster_base"]=10040,
- ["hp"]=95430000,
- ["atk"]=1110000,
+ ["hp"]=95450000,
+ ["atk"]=1000000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -711,8 +711,8 @@ local monster_daily_challenge = {
[5502]={
["monster_base"]=20009,
["is_boss"]=1,
- ["hp"]=141810000,
- ["atk"]=1200000,
+ ["hp"]=141820000,
+ ["atk"]=1070000,
["atk_times"]=4,
["hurt_skill"]={
30025,
@@ -730,8 +730,8 @@ local monster_daily_challenge = {
},
[5602]={
["monster_base"]=10019,
- ["hp"]=109080000,
- ["atk"]=1170000,
+ ["hp"]=109090000,
+ ["atk"]=1060000,
["atk_times"]=3,
["hurt_skill"]={
20052,
@@ -743,7 +743,7 @@ local monster_daily_challenge = {
[5702]={
["monster_base"]=10023,
["hp"]=120000000,
- ["atk"]=1230000,
+ ["atk"]=1100000,
["atk_times"]=3,
["hurt_skill"]={
20064,
@@ -754,8 +754,8 @@ local monster_daily_challenge = {
},
[5802]={
["monster_base"]=10008,
- ["hp"]=136350000,
- ["atk"]=1290000,
+ ["hp"]=136360000,
+ ["atk"]=1150000,
["atk_times"]=3,
["hurt_skill"]={
20022,
@@ -767,7 +767,7 @@ local monster_daily_challenge = {
[5902]={
["monster_base"]=10033,
["hp"]=147270000,
- ["atk"]=1350000,
+ ["atk"]=1190000,
["atk_times"]=3,
["hurt_skill"]={
20094,
@@ -779,8 +779,8 @@ local monster_daily_challenge = {
[6002]={
["monster_base"]=20016,
["is_boss"]=2,
- ["hp"]=245430000,
- ["atk"]=1860000,
+ ["hp"]=245450000,
+ ["atk"]=1640000,
["atk_times"]=4,
["hurt_skill"]={
30046,
@@ -798,8 +798,8 @@ local monster_daily_challenge = {
},
[6102]={
["monster_base"]=10001,
- ["hp"]=21810000,
- ["atk"]=690000,
+ ["hp"]=21820000,
+ ["atk"]=610000,
["atk_times"]=3,
["hurt_skill"]={
20001,
@@ -811,7 +811,7 @@ local monster_daily_challenge = {
[6202]={
["monster_base"]=10005,
["hp"]=30000000,
- ["atk"]=750000,
+ ["atk"]=660000,
["atk_times"]=3,
["hurt_skill"]={
20013,
@@ -822,8 +822,8 @@ local monster_daily_challenge = {
},
[6302]={
["monster_base"]=10041,
- ["hp"]=32700000,
- ["atk"]=780000,
+ ["hp"]=32730000,
+ ["atk"]=710000,
["atk_times"]=3,
["hurt_skill"]={
20118,
@@ -834,8 +834,8 @@ local monster_daily_challenge = {
},
[6402]={
["monster_base"]=10013,
- ["hp"]=40890000,
- ["atk"]=840000,
+ ["hp"]=40910000,
+ ["atk"]=760000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -847,8 +847,8 @@ local monster_daily_challenge = {
[6502]={
["monster_base"]=20026,
["is_boss"]=1,
- ["hp"]=62700000,
- ["atk"]=1020000,
+ ["hp"]=62730000,
+ ["atk"]=910000,
["atk_times"]=4,
["hurt_skill"]={
30076,
@@ -865,8 +865,8 @@ local monster_daily_challenge = {
},
[6602]={
["monster_base"]=10043,
- ["hp"]=40890000,
- ["atk"]=840000,
+ ["hp"]=40910000,
+ ["atk"]=760000,
["atk_times"]=3,
["hurt_skill"]={
20124,
@@ -877,8 +877,8 @@ local monster_daily_challenge = {
},
[6702]={
["monster_base"]=10047,
- ["hp"]=46350000,
- ["atk"]=900000,
+ ["hp"]=46360000,
+ ["atk"]=810000,
["atk_times"]=3,
["hurt_skill"]={
20136,
@@ -889,8 +889,8 @@ local monster_daily_challenge = {
},
[6802]={
["monster_base"]=10006,
- ["hp"]=54540000,
- ["atk"]=900000,
+ ["hp"]=54550000,
+ ["atk"]=810000,
["atk_times"]=3,
["hurt_skill"]={
20016,
@@ -902,7 +902,7 @@ local monster_daily_challenge = {
[6902]={
["monster_base"]=10053,
["hp"]=60000000,
- ["atk"]=960000,
+ ["atk"]=850000,
["atk_times"]=3,
["hurt_skill"]={
20154,
@@ -914,8 +914,8 @@ local monster_daily_challenge = {
[7002]={
["monster_base"]=20010,
["is_boss"]=1,
- ["hp"]=114540000,
- ["atk"]=1110000,
+ ["hp"]=114550000,
+ ["atk"]=980000,
["atk_times"]=4,
["hurt_skill"]={
30028,
@@ -935,8 +935,8 @@ local monster_daily_challenge = {
},
[7102]={
["monster_base"]=10024,
- ["hp"]=62700000,
- ["atk"]=960000,
+ ["hp"]=62730000,
+ ["atk"]=850000,
["atk_times"]=3,
["hurt_skill"]={
20067,
@@ -947,8 +947,8 @@ local monster_daily_challenge = {
},
[7202]={
["monster_base"]=10044,
- ["hp"]=76350000,
- ["atk"]=1020000,
+ ["hp"]=76360000,
+ ["atk"]=910000,
["atk_times"]=3,
["hurt_skill"]={
20127,
@@ -959,8 +959,8 @@ local monster_daily_challenge = {
},
[7302]={
["monster_base"]=10016,
- ["hp"]=84540000,
- ["atk"]=1080000,
+ ["hp"]=84550000,
+ ["atk"]=950000,
["atk_times"]=3,
["hurt_skill"]={
20043,
@@ -971,8 +971,8 @@ local monster_daily_challenge = {
},
[7402]={
["monster_base"]=10019,
- ["hp"]=95430000,
- ["atk"]=1110000,
+ ["hp"]=95450000,
+ ["atk"]=1000000,
["atk_times"]=3,
["hurt_skill"]={
20052,
@@ -984,8 +984,8 @@ local monster_daily_challenge = {
[7502]={
["monster_base"]=20008,
["is_boss"]=1,
- ["hp"]=141810000,
- ["atk"]=1200000,
+ ["hp"]=141820000,
+ ["atk"]=1070000,
["atk_times"]=4,
["hurt_skill"]={
30022,
@@ -1002,8 +1002,8 @@ local monster_daily_challenge = {
},
[7602]={
["monster_base"]=10052,
- ["hp"]=109080000,
- ["atk"]=1170000,
+ ["hp"]=109090000,
+ ["atk"]=1060000,
["atk_times"]=3,
["hurt_skill"]={
20151,
@@ -1015,7 +1015,7 @@ local monster_daily_challenge = {
[7702]={
["monster_base"]=10043,
["hp"]=120000000,
- ["atk"]=1230000,
+ ["atk"]=1100000,
["atk_times"]=3,
["hurt_skill"]={
20124,
@@ -1026,8 +1026,8 @@ local monster_daily_challenge = {
},
[7802]={
["monster_base"]=10050,
- ["hp"]=136350000,
- ["atk"]=1290000,
+ ["hp"]=136360000,
+ ["atk"]=1150000,
["atk_times"]=3,
["hurt_skill"]={
20145,
@@ -1039,7 +1039,7 @@ local monster_daily_challenge = {
[7902]={
["monster_base"]=10054,
["hp"]=147270000,
- ["atk"]=1350000,
+ ["atk"]=1190000,
["atk_times"]=3,
["hurt_skill"]={
20157,
@@ -1051,8 +1051,8 @@ local monster_daily_challenge = {
[8002]={
["monster_base"]=20024,
["is_boss"]=2,
- ["hp"]=245430000,
- ["atk"]=1860000,
+ ["hp"]=245450000,
+ ["atk"]=1640000,
["atk_times"]=4,
["hurt_skill"]={
30070,
@@ -1070,8 +1070,8 @@ local monster_daily_challenge = {
},
[8102]={
["monster_base"]=10045,
- ["hp"]=21810000,
- ["atk"]=690000,
+ ["hp"]=21820000,
+ ["atk"]=610000,
["atk_times"]=3,
["hurt_skill"]={
20130,
@@ -1083,7 +1083,7 @@ local monster_daily_challenge = {
[8202]={
["monster_base"]=10047,
["hp"]=30000000,
- ["atk"]=750000,
+ ["atk"]=660000,
["atk_times"]=3,
["hurt_skill"]={
20136,
@@ -1094,8 +1094,8 @@ local monster_daily_challenge = {
},
[8302]={
["monster_base"]=10010,
- ["hp"]=32700000,
- ["atk"]=780000,
+ ["hp"]=32730000,
+ ["atk"]=710000,
["atk_times"]=3,
["hurt_skill"]={
20028,
@@ -1106,8 +1106,8 @@ local monster_daily_challenge = {
},
[8402]={
["monster_base"]=10039,
- ["hp"]=40890000,
- ["atk"]=840000,
+ ["hp"]=40910000,
+ ["atk"]=760000,
["atk_times"]=3,
["hurt_skill"]={
20112,
@@ -1119,8 +1119,8 @@ local monster_daily_challenge = {
[8502]={
["monster_base"]=20012,
["is_boss"]=1,
- ["hp"]=62700000,
- ["atk"]=1020000,
+ ["hp"]=62730000,
+ ["atk"]=910000,
["atk_times"]=4,
["hurt_skill"]={
30034,
@@ -1134,8 +1134,8 @@ local monster_daily_challenge = {
},
[8602]={
["monster_base"]=10058,
- ["hp"]=40890000,
- ["atk"]=840000,
+ ["hp"]=40910000,
+ ["atk"]=760000,
["atk_times"]=3,
["hurt_skill"]={
20169,
@@ -1146,8 +1146,8 @@ local monster_daily_challenge = {
},
[8702]={
["monster_base"]=10024,
- ["hp"]=46350000,
- ["atk"]=900000,
+ ["hp"]=46360000,
+ ["atk"]=810000,
["atk_times"]=3,
["hurt_skill"]={
20067,
@@ -1158,8 +1158,8 @@ local monster_daily_challenge = {
},
[8802]={
["monster_base"]=10044,
- ["hp"]=54540000,
- ["atk"]=900000,
+ ["hp"]=54550000,
+ ["atk"]=810000,
["atk_times"]=3,
["hurt_skill"]={
20127,
@@ -1171,7 +1171,7 @@ local monster_daily_challenge = {
[8902]={
["monster_base"]=10056,
["hp"]=60000000,
- ["atk"]=960000,
+ ["atk"]=850000,
["atk_times"]=3,
["hurt_skill"]={
20163,
@@ -1183,8 +1183,8 @@ local monster_daily_challenge = {
[9002]={
["monster_base"]=20011,
["is_boss"]=1,
- ["hp"]=114540000,
- ["atk"]=1110000,
+ ["hp"]=114550000,
+ ["atk"]=980000,
["atk_times"]=4,
["hurt_skill"]={
30031,
@@ -1198,8 +1198,8 @@ local monster_daily_challenge = {
},
[9102]={
["monster_base"]=10022,
- ["hp"]=62700000,
- ["atk"]=960000,
+ ["hp"]=62730000,
+ ["atk"]=850000,
["atk_times"]=3,
["hurt_skill"]={
20061,
@@ -1210,8 +1210,8 @@ local monster_daily_challenge = {
},
[9202]={
["monster_base"]=10040,
- ["hp"]=76350000,
- ["atk"]=1020000,
+ ["hp"]=76360000,
+ ["atk"]=910000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -1222,8 +1222,8 @@ local monster_daily_challenge = {
},
[9302]={
["monster_base"]=10025,
- ["hp"]=84540000,
- ["atk"]=1080000,
+ ["hp"]=84550000,
+ ["atk"]=950000,
["atk_times"]=3,
["hurt_skill"]={
20070,
@@ -1234,8 +1234,8 @@ local monster_daily_challenge = {
},
[9402]={
["monster_base"]=10032,
- ["hp"]=95430000,
- ["atk"]=1110000,
+ ["hp"]=95450000,
+ ["atk"]=1000000,
["atk_times"]=3,
["hurt_skill"]={
20091,
@@ -1247,8 +1247,8 @@ local monster_daily_challenge = {
[9502]={
["monster_base"]=20018,
["is_boss"]=1,
- ["hp"]=141810000,
- ["atk"]=1200000,
+ ["hp"]=141820000,
+ ["atk"]=1070000,
["atk_times"]=4,
["hurt_skill"]={
30052,
@@ -1266,8 +1266,8 @@ local monster_daily_challenge = {
},
[9602]={
["monster_base"]=10048,
- ["hp"]=109080000,
- ["atk"]=1170000,
+ ["hp"]=109090000,
+ ["atk"]=1060000,
["atk_times"]=3,
["hurt_skill"]={
20139,
@@ -1279,7 +1279,7 @@ local monster_daily_challenge = {
[9702]={
["monster_base"]=10029,
["hp"]=120000000,
- ["atk"]=1230000,
+ ["atk"]=1100000,
["atk_times"]=3,
["hurt_skill"]={
20082,
@@ -1290,8 +1290,8 @@ local monster_daily_challenge = {
},
[9802]={
["monster_base"]=10031,
- ["hp"]=136350000,
- ["atk"]=1290000,
+ ["hp"]=136360000,
+ ["atk"]=1150000,
["atk_times"]=3,
["hurt_skill"]={
20088,
@@ -1303,7 +1303,7 @@ local monster_daily_challenge = {
[9902]={
["monster_base"]=10028,
["hp"]=147270000,
- ["atk"]=1350000,
+ ["atk"]=1190000,
["atk_times"]=3,
["hurt_skill"]={
20079,
@@ -1315,8 +1315,8 @@ local monster_daily_challenge = {
[10002]={
["monster_base"]=20013,
["is_boss"]=2,
- ["hp"]=245430000,
- ["atk"]=1860000,
+ ["hp"]=245450000,
+ ["atk"]=1640000,
["atk_times"]=4,
["hurt_skill"]={
30037,
@@ -1331,8 +1331,8 @@ local monster_daily_challenge = {
},
[10102]={
["monster_base"]=10030,
- ["hp"]=21810000,
- ["atk"]=690000,
+ ["hp"]=21820000,
+ ["atk"]=610000,
["atk_times"]=3,
["hurt_skill"]={
20085,
@@ -1344,7 +1344,7 @@ local monster_daily_challenge = {
[10202]={
["monster_base"]=10029,
["hp"]=30000000,
- ["atk"]=750000,
+ ["atk"]=660000,
["atk_times"]=3,
["hurt_skill"]={
20082,
@@ -1355,8 +1355,8 @@ local monster_daily_challenge = {
},
[10302]={
["monster_base"]=10033,
- ["hp"]=32700000,
- ["atk"]=780000,
+ ["hp"]=32730000,
+ ["atk"]=710000,
["atk_times"]=3,
["hurt_skill"]={
20094,
@@ -1367,8 +1367,8 @@ local monster_daily_challenge = {
},
[10402]={
["monster_base"]=10031,
- ["hp"]=40890000,
- ["atk"]=840000,
+ ["hp"]=40910000,
+ ["atk"]=760000,
["atk_times"]=3,
["hurt_skill"]={
20088,
@@ -1380,8 +1380,8 @@ local monster_daily_challenge = {
[10502]={
["monster_base"]=20025,
["is_boss"]=1,
- ["hp"]=62700000,
- ["atk"]=1020000,
+ ["hp"]=62730000,
+ ["atk"]=910000,
["atk_times"]=4,
["hurt_skill"]={
30073,
@@ -1398,8 +1398,8 @@ local monster_daily_challenge = {
},
[10602]={
["monster_base"]=10053,
- ["hp"]=40890000,
- ["atk"]=840000,
+ ["hp"]=40910000,
+ ["atk"]=760000,
["atk_times"]=3,
["hurt_skill"]={
20154,
@@ -1410,8 +1410,8 @@ local monster_daily_challenge = {
},
[10702]={
["monster_base"]=10048,
- ["hp"]=46350000,
- ["atk"]=900000,
+ ["hp"]=46360000,
+ ["atk"]=810000,
["atk_times"]=3,
["hurt_skill"]={
20139,
@@ -1422,8 +1422,8 @@ local monster_daily_challenge = {
},
[10802]={
["monster_base"]=10029,
- ["hp"]=54540000,
- ["atk"]=900000,
+ ["hp"]=54550000,
+ ["atk"]=810000,
["atk_times"]=3,
["hurt_skill"]={
20082,
@@ -1435,7 +1435,7 @@ local monster_daily_challenge = {
[10902]={
["monster_base"]=10054,
["hp"]=60000000,
- ["atk"]=960000,
+ ["atk"]=850000,
["atk_times"]=3,
["hurt_skill"]={
20157,
@@ -1447,8 +1447,8 @@ local monster_daily_challenge = {
[11002]={
["monster_base"]=20020,
["is_boss"]=1,
- ["hp"]=114540000,
- ["atk"]=1110000,
+ ["hp"]=114550000,
+ ["atk"]=980000,
["atk_times"]=4,
["hurt_skill"]={
30058,
@@ -1465,8 +1465,8 @@ local monster_daily_challenge = {
},
[11102]={
["monster_base"]=10052,
- ["hp"]=62700000,
- ["atk"]=960000,
+ ["hp"]=62730000,
+ ["atk"]=850000,
["atk_times"]=3,
["hurt_skill"]={
20151,
@@ -1477,8 +1477,8 @@ local monster_daily_challenge = {
},
[11202]={
["monster_base"]=10045,
- ["hp"]=76350000,
- ["atk"]=1020000,
+ ["hp"]=76360000,
+ ["atk"]=910000,
["atk_times"]=3,
["hurt_skill"]={
20130,
@@ -1489,8 +1489,8 @@ local monster_daily_challenge = {
},
[11302]={
["monster_base"]=10043,
- ["hp"]=84540000,
- ["atk"]=1080000,
+ ["hp"]=84550000,
+ ["atk"]=950000,
["atk_times"]=3,
["hurt_skill"]={
20124,
@@ -1501,8 +1501,8 @@ local monster_daily_challenge = {
},
[11402]={
["monster_base"]=10053,
- ["hp"]=95430000,
- ["atk"]=1110000,
+ ["hp"]=95450000,
+ ["atk"]=1000000,
["atk_times"]=3,
["hurt_skill"]={
20154,
@@ -1514,8 +1514,8 @@ local monster_daily_challenge = {
[11502]={
["monster_base"]=20029,
["is_boss"]=1,
- ["hp"]=141810000,
- ["atk"]=1200000,
+ ["hp"]=141820000,
+ ["atk"]=1070000,
["atk_times"]=4,
["hurt_skill"]={
30085,
@@ -1532,8 +1532,8 @@ local monster_daily_challenge = {
},
[11602]={
["monster_base"]=10056,
- ["hp"]=109080000,
- ["atk"]=1170000,
+ ["hp"]=109090000,
+ ["atk"]=1060000,
["atk_times"]=3,
["hurt_skill"]={
20163,
@@ -1545,7 +1545,7 @@ local monster_daily_challenge = {
[11702]={
["monster_base"]=10028,
["hp"]=120000000,
- ["atk"]=1230000,
+ ["atk"]=1100000,
["atk_times"]=3,
["hurt_skill"]={
20079,
@@ -1556,8 +1556,8 @@ local monster_daily_challenge = {
},
[11802]={
["monster_base"]=10046,
- ["hp"]=136350000,
- ["atk"]=1290000,
+ ["hp"]=136360000,
+ ["atk"]=1150000,
["atk_times"]=3,
["hurt_skill"]={
20133,
@@ -1569,7 +1569,7 @@ local monster_daily_challenge = {
[11902]={
["monster_base"]=10057,
["hp"]=147270000,
- ["atk"]=1350000,
+ ["atk"]=1190000,
["atk_times"]=3,
["hurt_skill"]={
20166,
@@ -1581,8 +1581,8 @@ local monster_daily_challenge = {
[12002]={
["monster_base"]=20032,
["is_boss"]=2,
- ["hp"]=245430000,
- ["atk"]=1860000,
+ ["hp"]=245450000,
+ ["atk"]=1640000,
["atk_times"]=4,
["hurt_skill"]={
30094,
@@ -1602,8 +1602,8 @@ local monster_daily_challenge = {
},
[12102]={
["monster_base"]=10057,
- ["hp"]=21810000,
- ["atk"]=690000,
+ ["hp"]=21820000,
+ ["atk"]=610000,
["atk_times"]=3,
["hurt_skill"]={
20166,
@@ -1615,7 +1615,7 @@ local monster_daily_challenge = {
[12202]={
["monster_base"]=10046,
["hp"]=30000000,
- ["atk"]=750000,
+ ["atk"]=660000,
["atk_times"]=3,
["hurt_skill"]={
20133,
@@ -1626,8 +1626,8 @@ local monster_daily_challenge = {
},
[12302]={
["monster_base"]=10051,
- ["hp"]=32700000,
- ["atk"]=780000,
+ ["hp"]=32730000,
+ ["atk"]=710000,
["atk_times"]=3,
["hurt_skill"]={
20148,
@@ -1638,8 +1638,8 @@ local monster_daily_challenge = {
},
[12402]={
["monster_base"]=10029,
- ["hp"]=40890000,
- ["atk"]=840000,
+ ["hp"]=40910000,
+ ["atk"]=760000,
["atk_times"]=3,
["hurt_skill"]={
20082,
@@ -1651,8 +1651,8 @@ local monster_daily_challenge = {
[12502]={
["monster_base"]=20026,
["is_boss"]=1,
- ["hp"]=62700000,
- ["atk"]=1020000,
+ ["hp"]=62730000,
+ ["atk"]=910000,
["atk_times"]=4,
["hurt_skill"]={
30076,
@@ -1669,8 +1669,8 @@ local monster_daily_challenge = {
},
[12602]={
["monster_base"]=10050,
- ["hp"]=40890000,
- ["atk"]=840000,
+ ["hp"]=40910000,
+ ["atk"]=760000,
["atk_times"]=3,
["hurt_skill"]={
20145,
@@ -1681,8 +1681,8 @@ local monster_daily_challenge = {
},
[12702]={
["monster_base"]=10058,
- ["hp"]=46350000,
- ["atk"]=900000,
+ ["hp"]=46360000,
+ ["atk"]=810000,
["atk_times"]=3,
["hurt_skill"]={
20169,
@@ -1693,8 +1693,8 @@ local monster_daily_challenge = {
},
[12802]={
["monster_base"]=10052,
- ["hp"]=54540000,
- ["atk"]=900000,
+ ["hp"]=54550000,
+ ["atk"]=810000,
["atk_times"]=3,
["hurt_skill"]={
20151,
@@ -1706,7 +1706,7 @@ local monster_daily_challenge = {
[12902]={
["monster_base"]=10054,
["hp"]=60000000,
- ["atk"]=960000,
+ ["atk"]=850000,
["atk_times"]=3,
["hurt_skill"]={
20157,
@@ -1718,8 +1718,8 @@ local monster_daily_challenge = {
[13002]={
["monster_base"]=20005,
["is_boss"]=1,
- ["hp"]=114540000,
- ["atk"]=1110000,
+ ["hp"]=114550000,
+ ["atk"]=980000,
["atk_times"]=4,
["hurt_skill"]={
30013,
@@ -1736,8 +1736,8 @@ local monster_daily_challenge = {
},
[13102]={
["monster_base"]=10009,
- ["hp"]=62700000,
- ["atk"]=960000,
+ ["hp"]=62730000,
+ ["atk"]=850000,
["atk_times"]=3,
["hurt_skill"]={
20025,
@@ -1748,8 +1748,8 @@ local monster_daily_challenge = {
},
[13202]={
["monster_base"]=10055,
- ["hp"]=76350000,
- ["atk"]=1020000,
+ ["hp"]=76360000,
+ ["atk"]=910000,
["atk_times"]=3,
["hurt_skill"]={
20160,
@@ -1760,8 +1760,8 @@ local monster_daily_challenge = {
},
[13302]={
["monster_base"]=10046,
- ["hp"]=84540000,
- ["atk"]=1080000,
+ ["hp"]=84550000,
+ ["atk"]=950000,
["atk_times"]=3,
["hurt_skill"]={
20133,
@@ -1772,8 +1772,8 @@ local monster_daily_challenge = {
},
[13402]={
["monster_base"]=10042,
- ["hp"]=95430000,
- ["atk"]=1110000,
+ ["hp"]=95450000,
+ ["atk"]=1000000,
["atk_times"]=3,
["hurt_skill"]={
20121,
@@ -1785,8 +1785,8 @@ local monster_daily_challenge = {
[13502]={
["monster_base"]=20030,
["is_boss"]=1,
- ["hp"]=141810000,
- ["atk"]=1200000,
+ ["hp"]=141820000,
+ ["atk"]=1070000,
["atk_times"]=4,
["hurt_skill"]={
30088,
@@ -1804,8 +1804,8 @@ local monster_daily_challenge = {
},
[13602]={
["monster_base"]=10058,
- ["hp"]=109080000,
- ["atk"]=1170000,
+ ["hp"]=109090000,
+ ["atk"]=1060000,
["atk_times"]=3,
["hurt_skill"]={
20169,
@@ -1817,7 +1817,7 @@ local monster_daily_challenge = {
[13702]={
["monster_base"]=10051,
["hp"]=120000000,
- ["atk"]=1230000,
+ ["atk"]=1100000,
["atk_times"]=3,
["hurt_skill"]={
20148,
@@ -1828,8 +1828,8 @@ local monster_daily_challenge = {
},
[13802]={
["monster_base"]=10055,
- ["hp"]=136350000,
- ["atk"]=1290000,
+ ["hp"]=136360000,
+ ["atk"]=1150000,
["atk_times"]=3,
["hurt_skill"]={
20160,
@@ -1841,7 +1841,7 @@ local monster_daily_challenge = {
[13902]={
["monster_base"]=10057,
["hp"]=147270000,
- ["atk"]=1350000,
+ ["atk"]=1190000,
["atk_times"]=3,
["hurt_skill"]={
20166,
@@ -1853,8 +1853,8 @@ local monster_daily_challenge = {
[14002]={
["monster_base"]=20031,
["is_boss"]=2,
- ["hp"]=245430000,
- ["atk"]=1860000,
+ ["hp"]=245450000,
+ ["atk"]=1640000,
["atk_times"]=4,
["hurt_skill"]={
30091,
diff --git a/lua/app/config/monster_dungeon_armor.lua b/lua/app/config/monster_dungeon_armor.lua
index 7a1e15bd..0103a741 100644
--- a/lua/app/config/monster_dungeon_armor.lua
+++ b/lua/app/config/monster_dungeon_armor.lua
@@ -2,7 +2,7 @@ local monster_dungeon_armor = {
[107]={
["monster_base"]=10022,
["hp"]=76340000,
- ["atk"]=2000000,
+ ["atk"]=1760000,
["atk_times"]=3,
["hurt_skill"]={
20061,
@@ -14,7 +14,7 @@ local monster_dungeon_armor = {
[207]={
["monster_base"]=10043,
["hp"]=113830000,
- ["atk"]=2190000,
+ ["atk"]=1970000,
["atk_times"]=3,
["hurt_skill"]={
20124,
@@ -26,7 +26,7 @@ local monster_dungeon_armor = {
[307]={
["monster_base"]=10033,
["hp"]=142400000,
- ["atk"]=2300000,
+ ["atk"]=2050000,
["atk_times"]=3,
["hurt_skill"]={
20094,
@@ -38,7 +38,7 @@ local monster_dungeon_armor = {
[407]={
["monster_base"]=10048,
["hp"]=150430000,
- ["atk"]=2670000,
+ ["atk"]=2450000,
["atk_times"]=3,
["hurt_skill"]={
20139,
@@ -51,7 +51,7 @@ local monster_dungeon_armor = {
["monster_base"]=20004,
["is_boss"]=1,
["hp"]=290940000,
- ["atk"]=2800000,
+ ["atk"]=2640000,
["atk_times"]=4,
["hurt_skill"]={
30010,
@@ -66,7 +66,7 @@ local monster_dungeon_armor = {
[607]={
["monster_base"]=10051,
["hp"]=185400000,
- ["atk"]=2750000,
+ ["atk"]=2550000,
["atk_times"]=3,
["hurt_skill"]={
20148,
@@ -78,7 +78,7 @@ local monster_dungeon_armor = {
[707]={
["monster_base"]=10046,
["hp"]=203090000,
- ["atk"]=2720000,
+ ["atk"]=2640000,
["atk_times"]=3,
["hurt_skill"]={
20133,
@@ -90,7 +90,7 @@ local monster_dungeon_armor = {
[807]={
["monster_base"]=10003,
["hp"]=237710000,
- ["atk"]=2800000,
+ ["atk"]=2600000,
["atk_times"]=2,
["hurt_skill"]={
20007,
@@ -102,7 +102,7 @@ local monster_dungeon_armor = {
[907]={
["monster_base"]=10058,
["hp"]=273290000,
- ["atk"]=2990000,
+ ["atk"]=2740000,
["atk_times"]=3,
["hurt_skill"]={
20169,
@@ -115,7 +115,7 @@ local monster_dungeon_armor = {
["monster_base"]=20012,
["is_boss"]=2,
["hp"]=494490000,
- ["atk"]=3100000,
+ ["atk"]=2740000,
["atk_times"]=4,
["hurt_skill"]={
30034,
@@ -130,7 +130,7 @@ local monster_dungeon_armor = {
[1107]={
["monster_base"]=10017,
["hp"]=76340000,
- ["atk"]=2000000,
+ ["atk"]=1760000,
["atk_times"]=3,
["hurt_skill"]={
20046,
@@ -142,7 +142,7 @@ local monster_dungeon_armor = {
[1207]={
["monster_base"]=10009,
["hp"]=113830000,
- ["atk"]=2190000,
+ ["atk"]=1970000,
["atk_times"]=3,
["hurt_skill"]={
20025,
@@ -154,7 +154,7 @@ local monster_dungeon_armor = {
[1307]={
["monster_base"]=10019,
["hp"]=142400000,
- ["atk"]=2300000,
+ ["atk"]=2050000,
["atk_times"]=3,
["hurt_skill"]={
20052,
@@ -166,7 +166,7 @@ local monster_dungeon_armor = {
[1407]={
["monster_base"]=10039,
["hp"]=150430000,
- ["atk"]=2670000,
+ ["atk"]=2450000,
["atk_times"]=3,
["hurt_skill"]={
20112,
@@ -179,7 +179,7 @@ local monster_dungeon_armor = {
["monster_base"]=20015,
["is_boss"]=1,
["hp"]=290940000,
- ["atk"]=2800000,
+ ["atk"]=2640000,
["atk_times"]=4,
["hurt_skill"]={
30043,
@@ -197,7 +197,7 @@ local monster_dungeon_armor = {
[1607]={
["monster_base"]=10048,
["hp"]=185400000,
- ["atk"]=2750000,
+ ["atk"]=2550000,
["atk_times"]=3,
["hurt_skill"]={
20139,
@@ -209,7 +209,7 @@ local monster_dungeon_armor = {
[1707]={
["monster_base"]=10017,
["hp"]=203090000,
- ["atk"]=2720000,
+ ["atk"]=2640000,
["atk_times"]=3,
["hurt_skill"]={
20046,
@@ -221,7 +221,7 @@ local monster_dungeon_armor = {
[1807]={
["monster_base"]=10009,
["hp"]=237710000,
- ["atk"]=2800000,
+ ["atk"]=2600000,
["atk_times"]=3,
["hurt_skill"]={
20025,
@@ -233,7 +233,7 @@ local monster_dungeon_armor = {
[1907]={
["monster_base"]=10039,
["hp"]=273290000,
- ["atk"]=2990000,
+ ["atk"]=2740000,
["atk_times"]=3,
["hurt_skill"]={
20112,
@@ -246,7 +246,7 @@ local monster_dungeon_armor = {
["monster_base"]=20011,
["is_boss"]=2,
["hp"]=494490000,
- ["atk"]=3100000,
+ ["atk"]=2740000,
["atk_times"]=4,
["hurt_skill"]={
30031,
@@ -261,7 +261,7 @@ local monster_dungeon_armor = {
[2107]={
["monster_base"]=10046,
["hp"]=76340000,
- ["atk"]=2000000,
+ ["atk"]=1760000,
["atk_times"]=3,
["hurt_skill"]={
20133,
@@ -273,7 +273,7 @@ local monster_dungeon_armor = {
[2207]={
["monster_base"]=10005,
["hp"]=113830000,
- ["atk"]=2190000,
+ ["atk"]=1970000,
["atk_times"]=2,
["hurt_skill"]={
20013,
@@ -285,7 +285,7 @@ local monster_dungeon_armor = {
[2307]={
["monster_base"]=10044,
["hp"]=142400000,
- ["atk"]=2300000,
+ ["atk"]=2050000,
["atk_times"]=3,
["hurt_skill"]={
20127,
@@ -297,7 +297,7 @@ local monster_dungeon_armor = {
[2407]={
["monster_base"]=10052,
["hp"]=150430000,
- ["atk"]=2670000,
+ ["atk"]=2450000,
["atk_times"]=3,
["hurt_skill"]={
20151,
@@ -310,7 +310,7 @@ local monster_dungeon_armor = {
["monster_base"]=20014,
["is_boss"]=1,
["hp"]=290940000,
- ["atk"]=2800000,
+ ["atk"]=2640000,
["atk_times"]=4,
["hurt_skill"]={
30040,
@@ -325,7 +325,7 @@ local monster_dungeon_armor = {
[2607]={
["monster_base"]=10060,
["hp"]=185400000,
- ["atk"]=2750000,
+ ["atk"]=2550000,
["atk_times"]=3,
["hurt_skill"]={
20175,
@@ -337,7 +337,7 @@ local monster_dungeon_armor = {
[2707]={
["monster_base"]=10051,
["hp"]=203090000,
- ["atk"]=2720000,
+ ["atk"]=2640000,
["atk_times"]=3,
["hurt_skill"]={
20148,
@@ -349,7 +349,7 @@ local monster_dungeon_armor = {
[2807]={
["monster_base"]=10036,
["hp"]=237710000,
- ["atk"]=2800000,
+ ["atk"]=2600000,
["atk_times"]=3,
["hurt_skill"]={
20103,
@@ -361,7 +361,7 @@ local monster_dungeon_armor = {
[2907]={
["monster_base"]=10029,
["hp"]=273290000,
- ["atk"]=2990000,
+ ["atk"]=2740000,
["atk_times"]=3,
["hurt_skill"]={
20082,
@@ -374,7 +374,7 @@ local monster_dungeon_armor = {
["monster_base"]=20029,
["is_boss"]=2,
["hp"]=494490000,
- ["atk"]=3100000,
+ ["atk"]=2740000,
["atk_times"]=4,
["hurt_skill"]={
30085,
@@ -389,7 +389,7 @@ local monster_dungeon_armor = {
[3107]={
["monster_base"]=10029,
["hp"]=76340000,
- ["atk"]=2000000,
+ ["atk"]=1760000,
["atk_times"]=3,
["hurt_skill"]={
20082,
@@ -401,7 +401,7 @@ local monster_dungeon_armor = {
[3207]={
["monster_base"]=10061,
["hp"]=113830000,
- ["atk"]=2190000,
+ ["atk"]=1970000,
["atk_times"]=3,
["hurt_skill"]={
20178,
@@ -413,7 +413,7 @@ local monster_dungeon_armor = {
[3307]={
["monster_base"]=10041,
["hp"]=142400000,
- ["atk"]=2300000,
+ ["atk"]=2050000,
["atk_times"]=3,
["hurt_skill"]={
20118,
@@ -425,7 +425,7 @@ local monster_dungeon_armor = {
[3407]={
["monster_base"]=10020,
["hp"]=150430000,
- ["atk"]=2670000,
+ ["atk"]=2450000,
["atk_times"]=3,
["hurt_skill"]={
20055,
@@ -438,7 +438,7 @@ local monster_dungeon_armor = {
["monster_base"]=20002,
["is_boss"]=1,
["hp"]=290940000,
- ["atk"]=2800000,
+ ["atk"]=2640000,
["atk_times"]=4,
["hurt_skill"]={
30004,
@@ -453,7 +453,7 @@ local monster_dungeon_armor = {
[3607]={
["monster_base"]=10035,
["hp"]=185400000,
- ["atk"]=2750000,
+ ["atk"]=2550000,
["atk_times"]=3,
["hurt_skill"]={
20100,
@@ -465,7 +465,7 @@ local monster_dungeon_armor = {
[3707]={
["monster_base"]=10018,
["hp"]=203090000,
- ["atk"]=2720000,
+ ["atk"]=2640000,
["atk_times"]=3,
["hurt_skill"]={
20049,
@@ -477,7 +477,7 @@ local monster_dungeon_armor = {
[3807]={
["monster_base"]=10049,
["hp"]=237710000,
- ["atk"]=2800000,
+ ["atk"]=2600000,
["atk_times"]=3,
["hurt_skill"]={
20142,
@@ -489,7 +489,7 @@ local monster_dungeon_armor = {
[3907]={
["monster_base"]=10014,
["hp"]=273290000,
- ["atk"]=2990000,
+ ["atk"]=2740000,
["atk_times"]=3,
["hurt_skill"]={
20037,
@@ -502,7 +502,7 @@ local monster_dungeon_armor = {
["monster_base"]=20023,
["is_boss"]=2,
["hp"]=494490000,
- ["atk"]=3100000,
+ ["atk"]=2740000,
["atk_times"]=4,
["hurt_skill"]={
30067,
@@ -520,7 +520,7 @@ local monster_dungeon_armor = {
[4107]={
["monster_base"]=10004,
["hp"]=76340000,
- ["atk"]=2000000,
+ ["atk"]=1760000,
["atk_times"]=2,
["hurt_skill"]={
20010,
@@ -532,7 +532,7 @@ local monster_dungeon_armor = {
[4207]={
["monster_base"]=10055,
["hp"]=113830000,
- ["atk"]=2190000,
+ ["atk"]=1970000,
["atk_times"]=3,
["hurt_skill"]={
20160,
@@ -544,7 +544,7 @@ local monster_dungeon_armor = {
[4307]={
["monster_base"]=10010,
["hp"]=142400000,
- ["atk"]=2300000,
+ ["atk"]=2050000,
["atk_times"]=3,
["hurt_skill"]={
20028,
@@ -556,7 +556,7 @@ local monster_dungeon_armor = {
[4407]={
["monster_base"]=10015,
["hp"]=150430000,
- ["atk"]=2670000,
+ ["atk"]=2450000,
["atk_times"]=3,
["hurt_skill"]={
20040,
@@ -569,7 +569,7 @@ local monster_dungeon_armor = {
["monster_base"]=20007,
["is_boss"]=1,
["hp"]=290940000,
- ["atk"]=2800000,
+ ["atk"]=2640000,
["atk_times"]=4,
["hurt_skill"]={
30019,
@@ -587,7 +587,7 @@ local monster_dungeon_armor = {
[4607]={
["monster_base"]=10031,
["hp"]=185400000,
- ["atk"]=2750000,
+ ["atk"]=2550000,
["atk_times"]=3,
["hurt_skill"]={
20088,
@@ -599,7 +599,7 @@ local monster_dungeon_armor = {
[4707]={
["monster_base"]=10038,
["hp"]=203090000,
- ["atk"]=2720000,
+ ["atk"]=2640000,
["atk_times"]=3,
["hurt_skill"]={
20109,
@@ -611,7 +611,7 @@ local monster_dungeon_armor = {
[4807]={
["monster_base"]=10025,
["hp"]=237710000,
- ["atk"]=2800000,
+ ["atk"]=2600000,
["atk_times"]=3,
["hurt_skill"]={
20070,
@@ -623,7 +623,7 @@ local monster_dungeon_armor = {
[4907]={
["monster_base"]=10007,
["hp"]=273290000,
- ["atk"]=2990000,
+ ["atk"]=2740000,
["atk_times"]=2,
["hurt_skill"]={
20019,
@@ -636,7 +636,7 @@ local monster_dungeon_armor = {
["monster_base"]=20025,
["is_boss"]=2,
["hp"]=494490000,
- ["atk"]=3100000,
+ ["atk"]=2740000,
["atk_times"]=4,
["hurt_skill"]={
30073,
@@ -654,7 +654,7 @@ local monster_dungeon_armor = {
[5107]={
["monster_base"]=10049,
["hp"]=76340000,
- ["atk"]=2000000,
+ ["atk"]=1760000,
["atk_times"]=3,
["hurt_skill"]={
20142,
@@ -666,7 +666,7 @@ local monster_dungeon_armor = {
[5207]={
["monster_base"]=10008,
["hp"]=113830000,
- ["atk"]=2190000,
+ ["atk"]=1970000,
["atk_times"]=2,
["hurt_skill"]={
20022,
@@ -678,7 +678,7 @@ local monster_dungeon_armor = {
[5307]={
["monster_base"]=10050,
["hp"]=142400000,
- ["atk"]=2300000,
+ ["atk"]=2050000,
["atk_times"]=3,
["hurt_skill"]={
20145,
@@ -690,7 +690,7 @@ local monster_dungeon_armor = {
[5407]={
["monster_base"]=10051,
["hp"]=150430000,
- ["atk"]=2670000,
+ ["atk"]=2450000,
["atk_times"]=3,
["hurt_skill"]={
20148,
@@ -703,7 +703,7 @@ local monster_dungeon_armor = {
["monster_base"]=20001,
["is_boss"]=1,
["hp"]=290940000,
- ["atk"]=2800000,
+ ["atk"]=2640000,
["atk_times"]=4,
["hurt_skill"]={
30001,
@@ -718,7 +718,7 @@ local monster_dungeon_armor = {
[5607]={
["monster_base"]=10036,
["hp"]=185400000,
- ["atk"]=2750000,
+ ["atk"]=2550000,
["atk_times"]=3,
["hurt_skill"]={
20103,
@@ -730,7 +730,7 @@ local monster_dungeon_armor = {
[5707]={
["monster_base"]=10030,
["hp"]=203090000,
- ["atk"]=2720000,
+ ["atk"]=2640000,
["atk_times"]=3,
["hurt_skill"]={
20085,
@@ -742,7 +742,7 @@ local monster_dungeon_armor = {
[5807]={
["monster_base"]=10055,
["hp"]=237710000,
- ["atk"]=2800000,
+ ["atk"]=2600000,
["atk_times"]=3,
["hurt_skill"]={
20160,
@@ -754,7 +754,7 @@ local monster_dungeon_armor = {
[5907]={
["monster_base"]=10062,
["hp"]=273290000,
- ["atk"]=2990000,
+ ["atk"]=2740000,
["atk_times"]=3,
["hurt_skill"]={
20181,
@@ -767,7 +767,7 @@ local monster_dungeon_armor = {
["monster_base"]=20005,
["is_boss"]=2,
["hp"]=494490000,
- ["atk"]=3100000,
+ ["atk"]=2740000,
["atk_times"]=4,
["hurt_skill"]={
30013,
@@ -785,7 +785,7 @@ local monster_dungeon_armor = {
[6107]={
["monster_base"]=10054,
["hp"]=97940000,
- ["atk"]=2670000,
+ ["atk"]=1910000,
["atk_times"]=3,
["hurt_skill"]={
20157,
@@ -797,7 +797,7 @@ local monster_dungeon_armor = {
[6207]={
["monster_base"]=10007,
["hp"]=145130000,
- ["atk"]=2910000,
+ ["atk"]=2150000,
["atk_times"]=2,
["hurt_skill"]={
20019,
@@ -809,7 +809,7 @@ local monster_dungeon_armor = {
[6307]={
["monster_base"]=10035,
["hp"]=181680000,
- ["atk"]=3040000,
+ ["atk"]=2220000,
["atk_times"]=3,
["hurt_skill"]={
20100,
@@ -821,7 +821,7 @@ local monster_dungeon_armor = {
[6407]={
["monster_base"]=10037,
["hp"]=191500000,
- ["atk"]=3500000,
+ ["atk"]=2660000,
["atk_times"]=3,
["hurt_skill"]={
20106,
@@ -834,7 +834,7 @@ local monster_dungeon_armor = {
["monster_base"]=20011,
["is_boss"]=1,
["hp"]=356570000,
- ["atk"]=3520000,
+ ["atk"]=2870000,
["atk_times"]=4,
["hurt_skill"]={
30031,
@@ -849,7 +849,7 @@ local monster_dungeon_armor = {
[6607]={
["monster_base"]=10004,
["hp"]=236460000,
- ["atk"]=3630000,
+ ["atk"]=2770000,
["atk_times"]=2,
["hurt_skill"]={
20010,
@@ -861,7 +861,7 @@ local monster_dungeon_armor = {
[6707]={
["monster_base"]=10060,
["hp"]=248810000,
- ["atk"]=3440000,
+ ["atk"]=2870000,
["atk_times"]=3,
["hurt_skill"]={
20175,
@@ -873,7 +873,7 @@ local monster_dungeon_armor = {
[6807]={
["monster_base"]=10036,
["hp"]=291690000,
- ["atk"]=3550000,
+ ["atk"]=2820000,
["atk_times"]=3,
["hurt_skill"]={
20103,
@@ -885,7 +885,7 @@ local monster_dungeon_armor = {
[6907]={
["monster_base"]=10057,
["hp"]=335220000,
- ["atk"]=3760000,
+ ["atk"]=2980000,
["atk_times"]=3,
["hurt_skill"]={
20166,
@@ -898,7 +898,7 @@ local monster_dungeon_armor = {
["monster_base"]=20017,
["is_boss"]=2,
["hp"]=566760000,
- ["atk"]=3630000,
+ ["atk"]=2980000,
["atk_times"]=4,
["hurt_skill"]={
30049,
@@ -913,7 +913,7 @@ local monster_dungeon_armor = {
[7107]={
["monster_base"]=10045,
["hp"]=97940000,
- ["atk"]=2670000,
+ ["atk"]=1910000,
["atk_times"]=3,
["hurt_skill"]={
20130,
@@ -925,7 +925,7 @@ local monster_dungeon_armor = {
[7207]={
["monster_base"]=10015,
["hp"]=145130000,
- ["atk"]=2910000,
+ ["atk"]=2150000,
["atk_times"]=3,
["hurt_skill"]={
20040,
@@ -937,7 +937,7 @@ local monster_dungeon_armor = {
[7307]={
["monster_base"]=10025,
["hp"]=181680000,
- ["atk"]=3040000,
+ ["atk"]=2220000,
["atk_times"]=3,
["hurt_skill"]={
20070,
@@ -949,7 +949,7 @@ local monster_dungeon_armor = {
[7407]={
["monster_base"]=10035,
["hp"]=191500000,
- ["atk"]=3500000,
+ ["atk"]=2660000,
["atk_times"]=3,
["hurt_skill"]={
20100,
@@ -962,7 +962,7 @@ local monster_dungeon_armor = {
["monster_base"]=20014,
["is_boss"]=1,
["hp"]=356570000,
- ["atk"]=3520000,
+ ["atk"]=2870000,
["atk_times"]=4,
["hurt_skill"]={
30040,
@@ -977,7 +977,7 @@ local monster_dungeon_armor = {
[7607]={
["monster_base"]=10040,
["hp"]=236460000,
- ["atk"]=3630000,
+ ["atk"]=2770000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -989,7 +989,7 @@ local monster_dungeon_armor = {
[7707]={
["monster_base"]=10002,
["hp"]=248810000,
- ["atk"]=3440000,
+ ["atk"]=2870000,
["atk_times"]=2,
["hurt_skill"]={
20004,
@@ -1001,7 +1001,7 @@ local monster_dungeon_armor = {
[7807]={
["monster_base"]=10047,
["hp"]=291690000,
- ["atk"]=3550000,
+ ["atk"]=2820000,
["atk_times"]=3,
["hurt_skill"]={
20136,
@@ -1013,7 +1013,7 @@ local monster_dungeon_armor = {
[7907]={
["monster_base"]=10034,
["hp"]=335220000,
- ["atk"]=3760000,
+ ["atk"]=2980000,
["atk_times"]=3,
["hurt_skill"]={
20097,
@@ -1026,7 +1026,7 @@ local monster_dungeon_armor = {
["monster_base"]=30014,
["is_boss"]=2,
["hp"]=566760000,
- ["atk"]=3630000,
+ ["atk"]=2980000,
["atk_times"]=4,
["hurt_skill"]={
40009,
@@ -1042,7 +1042,7 @@ local monster_dungeon_armor = {
[8107]={
["monster_base"]=10005,
["hp"]=97940000,
- ["atk"]=2670000,
+ ["atk"]=1910000,
["atk_times"]=2,
["hurt_skill"]={
20013,
@@ -1054,7 +1054,7 @@ local monster_dungeon_armor = {
[8207]={
["monster_base"]=10037,
["hp"]=145130000,
- ["atk"]=2910000,
+ ["atk"]=2150000,
["atk_times"]=3,
["hurt_skill"]={
20106,
@@ -1066,7 +1066,7 @@ local monster_dungeon_armor = {
[8307]={
["monster_base"]=10022,
["hp"]=181680000,
- ["atk"]=3040000,
+ ["atk"]=2220000,
["atk_times"]=3,
["hurt_skill"]={
20061,
@@ -1078,7 +1078,7 @@ local monster_dungeon_armor = {
[8407]={
["monster_base"]=10012,
["hp"]=191500000,
- ["atk"]=3500000,
+ ["atk"]=2660000,
["atk_times"]=3,
["hurt_skill"]={
20031,
@@ -1091,7 +1091,7 @@ local monster_dungeon_armor = {
["monster_base"]=20008,
["is_boss"]=1,
["hp"]=356570000,
- ["atk"]=3520000,
+ ["atk"]=2870000,
["atk_times"]=4,
["hurt_skill"]={
30022,
@@ -1109,7 +1109,7 @@ local monster_dungeon_armor = {
[8607]={
["monster_base"]=10029,
["hp"]=236460000,
- ["atk"]=3630000,
+ ["atk"]=2770000,
["atk_times"]=3,
["hurt_skill"]={
20082,
@@ -1121,7 +1121,7 @@ local monster_dungeon_armor = {
[8707]={
["monster_base"]=10030,
["hp"]=248810000,
- ["atk"]=3440000,
+ ["atk"]=2870000,
["atk_times"]=3,
["hurt_skill"]={
20085,
@@ -1133,7 +1133,7 @@ local monster_dungeon_armor = {
[8807]={
["monster_base"]=10021,
["hp"]=291690000,
- ["atk"]=3550000,
+ ["atk"]=2820000,
["atk_times"]=3,
["hurt_skill"]={
20058,
@@ -1145,7 +1145,7 @@ local monster_dungeon_armor = {
[8907]={
["monster_base"]=10024,
["hp"]=335220000,
- ["atk"]=3760000,
+ ["atk"]=2980000,
["atk_times"]=3,
["hurt_skill"]={
20067,
@@ -1158,7 +1158,7 @@ local monster_dungeon_armor = {
["monster_base"]=30012,
["is_boss"]=2,
["hp"]=566760000,
- ["atk"]=3630000,
+ ["atk"]=2980000,
["atk_times"]=4,
["hurt_skill"]={
40005,
@@ -1175,7 +1175,7 @@ local monster_dungeon_armor = {
[9107]={
["monster_base"]=10039,
["hp"]=97940000,
- ["atk"]=2670000,
+ ["atk"]=1910000,
["atk_times"]=3,
["hurt_skill"]={
20112,
@@ -1187,7 +1187,7 @@ local monster_dungeon_armor = {
[9207]={
["monster_base"]=10061,
["hp"]=145130000,
- ["atk"]=2910000,
+ ["atk"]=2150000,
["atk_times"]=3,
["hurt_skill"]={
20178,
@@ -1199,7 +1199,7 @@ local monster_dungeon_armor = {
[9307]={
["monster_base"]=10048,
["hp"]=181680000,
- ["atk"]=3040000,
+ ["atk"]=2220000,
["atk_times"]=3,
["hurt_skill"]={
20139,
@@ -1211,7 +1211,7 @@ local monster_dungeon_armor = {
[9407]={
["monster_base"]=10027,
["hp"]=191500000,
- ["atk"]=3500000,
+ ["atk"]=2660000,
["atk_times"]=3,
["hurt_skill"]={
20076,
@@ -1224,7 +1224,7 @@ local monster_dungeon_armor = {
["monster_base"]=20006,
["is_boss"]=1,
["hp"]=356570000,
- ["atk"]=3520000,
+ ["atk"]=2870000,
["atk_times"]=4,
["hurt_skill"]={
30016,
@@ -1242,7 +1242,7 @@ local monster_dungeon_armor = {
[9607]={
["monster_base"]=10031,
["hp"]=236460000,
- ["atk"]=3630000,
+ ["atk"]=2770000,
["atk_times"]=3,
["hurt_skill"]={
20088,
@@ -1254,7 +1254,7 @@ local monster_dungeon_armor = {
[9707]={
["monster_base"]=10041,
["hp"]=248810000,
- ["atk"]=3440000,
+ ["atk"]=2870000,
["atk_times"]=3,
["hurt_skill"]={
20118,
@@ -1266,7 +1266,7 @@ local monster_dungeon_armor = {
[9807]={
["monster_base"]=10040,
["hp"]=291690000,
- ["atk"]=3550000,
+ ["atk"]=2820000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -1278,7 +1278,7 @@ local monster_dungeon_armor = {
[9907]={
["monster_base"]=10017,
["hp"]=335220000,
- ["atk"]=3760000,
+ ["atk"]=2980000,
["atk_times"]=3,
["hurt_skill"]={
20046,
@@ -1291,7 +1291,7 @@ local monster_dungeon_armor = {
["monster_base"]=20021,
["is_boss"]=2,
["hp"]=566760000,
- ["atk"]=3630000,
+ ["atk"]=2980000,
["atk_times"]=4,
["hurt_skill"]={
30061,
@@ -1310,7 +1310,7 @@ local monster_dungeon_armor = {
[10107]={
["monster_base"]=10039,
["hp"]=97940000,
- ["atk"]=2670000,
+ ["atk"]=1910000,
["atk_times"]=3,
["hurt_skill"]={
20112,
@@ -1322,7 +1322,7 @@ local monster_dungeon_armor = {
[10207]={
["monster_base"]=10053,
["hp"]=145130000,
- ["atk"]=2910000,
+ ["atk"]=2150000,
["atk_times"]=3,
["hurt_skill"]={
20154,
@@ -1334,7 +1334,7 @@ local monster_dungeon_armor = {
[10307]={
["monster_base"]=10002,
["hp"]=181680000,
- ["atk"]=3040000,
+ ["atk"]=2220000,
["atk_times"]=2,
["hurt_skill"]={
20004,
@@ -1346,7 +1346,7 @@ local monster_dungeon_armor = {
[10407]={
["monster_base"]=10063,
["hp"]=191500000,
- ["atk"]=3500000,
+ ["atk"]=2660000,
["atk_times"]=3,
["hurt_skill"]={
20184,
@@ -1359,7 +1359,7 @@ local monster_dungeon_armor = {
["monster_base"]=20016,
["is_boss"]=1,
["hp"]=356570000,
- ["atk"]=3520000,
+ ["atk"]=2870000,
["atk_times"]=4,
["hurt_skill"]={
30046,
@@ -1378,7 +1378,7 @@ local monster_dungeon_armor = {
[10607]={
["monster_base"]=10061,
["hp"]=236460000,
- ["atk"]=3630000,
+ ["atk"]=2770000,
["atk_times"]=3,
["hurt_skill"]={
20178,
@@ -1390,7 +1390,7 @@ local monster_dungeon_armor = {
[10707]={
["monster_base"]=10050,
["hp"]=248810000,
- ["atk"]=3440000,
+ ["atk"]=2870000,
["atk_times"]=3,
["hurt_skill"]={
20145,
@@ -1402,7 +1402,7 @@ local monster_dungeon_armor = {
[10807]={
["monster_base"]=10033,
["hp"]=291690000,
- ["atk"]=3550000,
+ ["atk"]=2820000,
["atk_times"]=3,
["hurt_skill"]={
20094,
@@ -1414,7 +1414,7 @@ local monster_dungeon_armor = {
[10907]={
["monster_base"]=10057,
["hp"]=335220000,
- ["atk"]=3760000,
+ ["atk"]=2980000,
["atk_times"]=3,
["hurt_skill"]={
20166,
@@ -1427,7 +1427,7 @@ local monster_dungeon_armor = {
["monster_base"]=30020,
["is_boss"]=2,
["hp"]=566760000,
- ["atk"]=3630000,
+ ["atk"]=2980000,
["atk_times"]=4,
["hurt_skill"]={
40033,
@@ -1443,7 +1443,7 @@ local monster_dungeon_armor = {
[11107]={
["monster_base"]=10034,
["hp"]=97940000,
- ["atk"]=2670000,
+ ["atk"]=1910000,
["atk_times"]=3,
["hurt_skill"]={
20097,
@@ -1455,7 +1455,7 @@ local monster_dungeon_armor = {
[11207]={
["monster_base"]=10056,
["hp"]=145130000,
- ["atk"]=2910000,
+ ["atk"]=2150000,
["atk_times"]=3,
["hurt_skill"]={
20163,
@@ -1467,7 +1467,7 @@ local monster_dungeon_armor = {
[11307]={
["monster_base"]=10037,
["hp"]=181680000,
- ["atk"]=3040000,
+ ["atk"]=2220000,
["atk_times"]=3,
["hurt_skill"]={
20106,
@@ -1479,7 +1479,7 @@ local monster_dungeon_armor = {
[11407]={
["monster_base"]=10042,
["hp"]=191500000,
- ["atk"]=3500000,
+ ["atk"]=2660000,
["atk_times"]=3,
["hurt_skill"]={
20121,
@@ -1492,7 +1492,7 @@ local monster_dungeon_armor = {
["monster_base"]=30010,
["is_boss"]=1,
["hp"]=356570000,
- ["atk"]=3520000,
+ ["atk"]=2870000,
["atk_times"]=4,
["hurt_skill"]={
40013,
@@ -1508,7 +1508,7 @@ local monster_dungeon_armor = {
[11607]={
["monster_base"]=10062,
["hp"]=236460000,
- ["atk"]=3630000,
+ ["atk"]=2770000,
["atk_times"]=3,
["hurt_skill"]={
20181,
@@ -1520,7 +1520,7 @@ local monster_dungeon_armor = {
[11707]={
["monster_base"]=10042,
["hp"]=248810000,
- ["atk"]=3440000,
+ ["atk"]=2870000,
["atk_times"]=3,
["hurt_skill"]={
20121,
@@ -1532,7 +1532,7 @@ local monster_dungeon_armor = {
[11807]={
["monster_base"]=10008,
["hp"]=291690000,
- ["atk"]=3550000,
+ ["atk"]=2820000,
["atk_times"]=2,
["hurt_skill"]={
20022,
@@ -1544,7 +1544,7 @@ local monster_dungeon_armor = {
[11907]={
["monster_base"]=10023,
["hp"]=335220000,
- ["atk"]=3760000,
+ ["atk"]=2980000,
["atk_times"]=3,
["hurt_skill"]={
20064,
@@ -1557,7 +1557,7 @@ local monster_dungeon_armor = {
["monster_base"]=20003,
["is_boss"]=2,
["hp"]=566760000,
- ["atk"]=3630000,
+ ["atk"]=2980000,
["atk_times"]=4,
["hurt_skill"]={
30007,
@@ -1577,7 +1577,7 @@ local monster_dungeon_armor = {
[12107]={
["monster_base"]=10062,
["hp"]=132190000,
- ["atk"]=3940000,
+ ["atk"]=2500000,
["atk_times"]=3,
["hurt_skill"]={
20181,
@@ -1589,7 +1589,7 @@ local monster_dungeon_armor = {
[12207]={
["monster_base"]=10008,
["hp"]=194920000,
- ["atk"]=4280000,
+ ["atk"]=2770000,
["atk_times"]=2,
["hurt_skill"]={
20022,
@@ -1601,7 +1601,7 @@ local monster_dungeon_armor = {
[12307]={
["monster_base"]=10065,
["hp"]=243300000,
- ["atk"]=4410000,
+ ["atk"]=2900000,
["atk_times"]=3,
["hurt_skill"]={
20187,
@@ -1613,7 +1613,7 @@ local monster_dungeon_armor = {
[12407]={
["monster_base"]=10013,
["hp"]=255540000,
- ["atk"]=5040000,
+ ["atk"]=3450000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -1626,7 +1626,7 @@ local monster_dungeon_armor = {
["monster_base"]=20014,
["is_boss"]=1,
["hp"]=475340000,
- ["atk"]=4990000,
+ ["atk"]=3690000,
["atk_times"]=4,
["hurt_skill"]={
30040,
@@ -1641,7 +1641,7 @@ local monster_dungeon_armor = {
[12607]={
["monster_base"]=10020,
["hp"]=316140000,
- ["atk"]=5190000,
+ ["atk"]=3590000,
["atk_times"]=3,
["hurt_skill"]={
20055,
@@ -1653,7 +1653,7 @@ local monster_dungeon_armor = {
[12707]={
["monster_base"]=10047,
["hp"]=332120000,
- ["atk"]=4990000,
+ ["atk"]=3710000,
["atk_times"]=3,
["hurt_skill"]={
20136,
@@ -1665,7 +1665,7 @@ local monster_dungeon_armor = {
[12807]={
["monster_base"]=10065,
["hp"]=389430000,
- ["atk"]=5120000,
+ ["atk"]=3660000,
["atk_times"]=3,
["hurt_skill"]={
20187,
@@ -1677,7 +1677,7 @@ local monster_dungeon_armor = {
[12907]={
["monster_base"]=10063,
["hp"]=447180000,
- ["atk"]=5400000,
+ ["atk"]=3870000,
["atk_times"]=3,
["hurt_skill"]={
20184,
@@ -1690,7 +1690,7 @@ local monster_dungeon_armor = {
["monster_base"]=20005,
["is_boss"]=2,
["hp"]=754850000,
- ["atk"]=5120000,
+ ["atk"]=3870000,
["atk_times"]=4,
["hurt_skill"]={
30013,
@@ -1708,7 +1708,7 @@ local monster_dungeon_armor = {
[13107]={
["monster_base"]=10033,
["hp"]=132190000,
- ["atk"]=3940000,
+ ["atk"]=2500000,
["atk_times"]=3,
["hurt_skill"]={
20094,
@@ -1720,7 +1720,7 @@ local monster_dungeon_armor = {
[13207]={
["monster_base"]=10020,
["hp"]=194920000,
- ["atk"]=4280000,
+ ["atk"]=2770000,
["atk_times"]=3,
["hurt_skill"]={
20055,
@@ -1732,7 +1732,7 @@ local monster_dungeon_armor = {
[13307]={
["monster_base"]=10057,
["hp"]=243300000,
- ["atk"]=4410000,
+ ["atk"]=2900000,
["atk_times"]=3,
["hurt_skill"]={
20166,
@@ -1744,7 +1744,7 @@ local monster_dungeon_armor = {
[13407]={
["monster_base"]=10006,
["hp"]=255540000,
- ["atk"]=5040000,
+ ["atk"]=3450000,
["atk_times"]=2,
["hurt_skill"]={
20016,
@@ -1757,7 +1757,7 @@ local monster_dungeon_armor = {
["monster_base"]=20015,
["is_boss"]=1,
["hp"]=475340000,
- ["atk"]=4990000,
+ ["atk"]=3690000,
["atk_times"]=4,
["hurt_skill"]={
30043,
@@ -1775,7 +1775,7 @@ local monster_dungeon_armor = {
[13607]={
["monster_base"]=10048,
["hp"]=316140000,
- ["atk"]=5190000,
+ ["atk"]=3590000,
["atk_times"]=3,
["hurt_skill"]={
20139,
@@ -1787,7 +1787,7 @@ local monster_dungeon_armor = {
[13707]={
["monster_base"]=10020,
["hp"]=332120000,
- ["atk"]=4990000,
+ ["atk"]=3710000,
["atk_times"]=3,
["hurt_skill"]={
20055,
@@ -1799,7 +1799,7 @@ local monster_dungeon_armor = {
[13807]={
["monster_base"]=10041,
["hp"]=389430000,
- ["atk"]=5120000,
+ ["atk"]=3660000,
["atk_times"]=3,
["hurt_skill"]={
20118,
@@ -1811,7 +1811,7 @@ local monster_dungeon_armor = {
[13907]={
["monster_base"]=10006,
["hp"]=447180000,
- ["atk"]=5400000,
+ ["atk"]=3870000,
["atk_times"]=2,
["hurt_skill"]={
20016,
@@ -1824,7 +1824,7 @@ local monster_dungeon_armor = {
["monster_base"]=30012,
["is_boss"]=2,
["hp"]=754850000,
- ["atk"]=5120000,
+ ["atk"]=3870000,
["atk_times"]=4,
["hurt_skill"]={
40005,
@@ -1841,7 +1841,7 @@ local monster_dungeon_armor = {
[14107]={
["monster_base"]=10001,
["hp"]=132190000,
- ["atk"]=3940000,
+ ["atk"]=2500000,
["atk_times"]=2,
["hurt_skill"]={
20001,
@@ -1853,7 +1853,7 @@ local monster_dungeon_armor = {
[14207]={
["monster_base"]=10016,
["hp"]=194920000,
- ["atk"]=4280000,
+ ["atk"]=2770000,
["atk_times"]=3,
["hurt_skill"]={
20043,
@@ -1865,7 +1865,7 @@ local monster_dungeon_armor = {
[14307]={
["monster_base"]=10041,
["hp"]=243300000,
- ["atk"]=4410000,
+ ["atk"]=2900000,
["atk_times"]=3,
["hurt_skill"]={
20118,
@@ -1877,7 +1877,7 @@ local monster_dungeon_armor = {
[14407]={
["monster_base"]=10053,
["hp"]=255540000,
- ["atk"]=5040000,
+ ["atk"]=3450000,
["atk_times"]=3,
["hurt_skill"]={
20154,
@@ -1890,7 +1890,7 @@ local monster_dungeon_armor = {
["monster_base"]=20002,
["is_boss"]=1,
["hp"]=475340000,
- ["atk"]=4990000,
+ ["atk"]=3690000,
["atk_times"]=4,
["hurt_skill"]={
30004,
@@ -1905,7 +1905,7 @@ local monster_dungeon_armor = {
[14607]={
["monster_base"]=10054,
["hp"]=316140000,
- ["atk"]=5190000,
+ ["atk"]=3590000,
["atk_times"]=3,
["hurt_skill"]={
20157,
@@ -1917,7 +1917,7 @@ local monster_dungeon_armor = {
[14707]={
["monster_base"]=10018,
["hp"]=332120000,
- ["atk"]=4990000,
+ ["atk"]=3710000,
["atk_times"]=3,
["hurt_skill"]={
20049,
@@ -1929,7 +1929,7 @@ local monster_dungeon_armor = {
[14807]={
["monster_base"]=10050,
["hp"]=389430000,
- ["atk"]=5120000,
+ ["atk"]=3660000,
["atk_times"]=3,
["hurt_skill"]={
20145,
@@ -1941,7 +1941,7 @@ local monster_dungeon_armor = {
[14907]={
["monster_base"]=10041,
["hp"]=447180000,
- ["atk"]=5400000,
+ ["atk"]=3870000,
["atk_times"]=3,
["hurt_skill"]={
20118,
@@ -1954,7 +1954,7 @@ local monster_dungeon_armor = {
["monster_base"]=20017,
["is_boss"]=2,
["hp"]=754850000,
- ["atk"]=5120000,
+ ["atk"]=3870000,
["atk_times"]=4,
["hurt_skill"]={
30049,
@@ -1969,7 +1969,7 @@ local monster_dungeon_armor = {
[15107]={
["monster_base"]=10051,
["hp"]=132190000,
- ["atk"]=3940000,
+ ["atk"]=2500000,
["atk_times"]=3,
["hurt_skill"]={
20148,
@@ -1981,7 +1981,7 @@ local monster_dungeon_armor = {
[15207]={
["monster_base"]=10018,
["hp"]=194920000,
- ["atk"]=4280000,
+ ["atk"]=2770000,
["atk_times"]=3,
["hurt_skill"]={
20049,
@@ -1993,7 +1993,7 @@ local monster_dungeon_armor = {
[15307]={
["monster_base"]=10040,
["hp"]=243300000,
- ["atk"]=4410000,
+ ["atk"]=2900000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -2005,7 +2005,7 @@ local monster_dungeon_armor = {
[15407]={
["monster_base"]=10032,
["hp"]=255540000,
- ["atk"]=5040000,
+ ["atk"]=3450000,
["atk_times"]=3,
["hurt_skill"]={
20091,
@@ -2018,7 +2018,7 @@ local monster_dungeon_armor = {
["monster_base"]=20001,
["is_boss"]=1,
["hp"]=475340000,
- ["atk"]=4990000,
+ ["atk"]=3690000,
["atk_times"]=4,
["hurt_skill"]={
30001,
@@ -2033,7 +2033,7 @@ local monster_dungeon_armor = {
[15607]={
["monster_base"]=10041,
["hp"]=316140000,
- ["atk"]=5190000,
+ ["atk"]=3590000,
["atk_times"]=3,
["hurt_skill"]={
20118,
@@ -2045,7 +2045,7 @@ local monster_dungeon_armor = {
[15707]={
["monster_base"]=10053,
["hp"]=332120000,
- ["atk"]=4990000,
+ ["atk"]=3710000,
["atk_times"]=3,
["hurt_skill"]={
20154,
@@ -2057,7 +2057,7 @@ local monster_dungeon_armor = {
[15807]={
["monster_base"]=10024,
["hp"]=389430000,
- ["atk"]=5120000,
+ ["atk"]=3660000,
["atk_times"]=3,
["hurt_skill"]={
20067,
@@ -2069,7 +2069,7 @@ local monster_dungeon_armor = {
[15907]={
["monster_base"]=10038,
["hp"]=447180000,
- ["atk"]=5400000,
+ ["atk"]=3870000,
["atk_times"]=3,
["hurt_skill"]={
20109,
@@ -2082,7 +2082,7 @@ local monster_dungeon_armor = {
["monster_base"]=20016,
["is_boss"]=2,
["hp"]=754850000,
- ["atk"]=5120000,
+ ["atk"]=3870000,
["atk_times"]=4,
["hurt_skill"]={
30046,
@@ -2101,7 +2101,7 @@ local monster_dungeon_armor = {
[16107]={
["monster_base"]=10016,
["hp"]=132190000,
- ["atk"]=3940000,
+ ["atk"]=2500000,
["atk_times"]=3,
["hurt_skill"]={
20043,
@@ -2113,7 +2113,7 @@ local monster_dungeon_armor = {
[16207]={
["monster_base"]=10006,
["hp"]=194920000,
- ["atk"]=4280000,
+ ["atk"]=2770000,
["atk_times"]=2,
["hurt_skill"]={
20016,
@@ -2125,7 +2125,7 @@ local monster_dungeon_armor = {
[16307]={
["monster_base"]=10021,
["hp"]=243300000,
- ["atk"]=4410000,
+ ["atk"]=2900000,
["atk_times"]=3,
["hurt_skill"]={
20058,
@@ -2137,7 +2137,7 @@ local monster_dungeon_armor = {
[16407]={
["monster_base"]=10018,
["hp"]=255540000,
- ["atk"]=5040000,
+ ["atk"]=3450000,
["atk_times"]=3,
["hurt_skill"]={
20049,
@@ -2150,7 +2150,7 @@ local monster_dungeon_armor = {
["monster_base"]=20010,
["is_boss"]=1,
["hp"]=475340000,
- ["atk"]=4990000,
+ ["atk"]=3690000,
["atk_times"]=4,
["hurt_skill"]={
30028,
@@ -2171,7 +2171,7 @@ local monster_dungeon_armor = {
[16607]={
["monster_base"]=10052,
["hp"]=316140000,
- ["atk"]=5190000,
+ ["atk"]=3590000,
["atk_times"]=3,
["hurt_skill"]={
20151,
@@ -2183,7 +2183,7 @@ local monster_dungeon_armor = {
[16707]={
["monster_base"]=10039,
["hp"]=332120000,
- ["atk"]=4990000,
+ ["atk"]=3710000,
["atk_times"]=3,
["hurt_skill"]={
20112,
@@ -2195,7 +2195,7 @@ local monster_dungeon_armor = {
[16807]={
["monster_base"]=10055,
["hp"]=389430000,
- ["atk"]=5120000,
+ ["atk"]=3660000,
["atk_times"]=3,
["hurt_skill"]={
20160,
@@ -2207,7 +2207,7 @@ local monster_dungeon_armor = {
[16907]={
["monster_base"]=10031,
["hp"]=447180000,
- ["atk"]=5400000,
+ ["atk"]=3870000,
["atk_times"]=3,
["hurt_skill"]={
20088,
@@ -2220,7 +2220,7 @@ local monster_dungeon_armor = {
["monster_base"]=30015,
["is_boss"]=2,
["hp"]=754850000,
- ["atk"]=5120000,
+ ["atk"]=3870000,
["atk_times"]=4,
["hurt_skill"]={
40025,
@@ -2236,7 +2236,7 @@ local monster_dungeon_armor = {
[17107]={
["monster_base"]=10027,
["hp"]=132190000,
- ["atk"]=3940000,
+ ["atk"]=2500000,
["atk_times"]=3,
["hurt_skill"]={
20076,
@@ -2248,7 +2248,7 @@ local monster_dungeon_armor = {
[17207]={
["monster_base"]=10040,
["hp"]=194920000,
- ["atk"]=4280000,
+ ["atk"]=2770000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -2260,7 +2260,7 @@ local monster_dungeon_armor = {
[17307]={
["monster_base"]=10013,
["hp"]=243300000,
- ["atk"]=4410000,
+ ["atk"]=2900000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -2272,7 +2272,7 @@ local monster_dungeon_armor = {
[17407]={
["monster_base"]=10053,
["hp"]=255540000,
- ["atk"]=5040000,
+ ["atk"]=3450000,
["atk_times"]=3,
["hurt_skill"]={
20154,
@@ -2285,7 +2285,7 @@ local monster_dungeon_armor = {
["monster_base"]=30020,
["is_boss"]=1,
["hp"]=475340000,
- ["atk"]=4990000,
+ ["atk"]=3690000,
["atk_times"]=4,
["hurt_skill"]={
40033,
@@ -2301,7 +2301,7 @@ local monster_dungeon_armor = {
[17607]={
["monster_base"]=10019,
["hp"]=316140000,
- ["atk"]=5190000,
+ ["atk"]=3590000,
["atk_times"]=3,
["hurt_skill"]={
20052,
@@ -2313,7 +2313,7 @@ local monster_dungeon_armor = {
[17707]={
["monster_base"]=10018,
["hp"]=332120000,
- ["atk"]=4990000,
+ ["atk"]=3710000,
["atk_times"]=3,
["hurt_skill"]={
20049,
@@ -2325,7 +2325,7 @@ local monster_dungeon_armor = {
[17807]={
["monster_base"]=10013,
["hp"]=389430000,
- ["atk"]=5120000,
+ ["atk"]=3660000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -2337,7 +2337,7 @@ local monster_dungeon_armor = {
[17907]={
["monster_base"]=10023,
["hp"]=447180000,
- ["atk"]=5400000,
+ ["atk"]=3870000,
["atk_times"]=3,
["hurt_skill"]={
20064,
@@ -2350,7 +2350,7 @@ local monster_dungeon_armor = {
["monster_base"]=20009,
["is_boss"]=2,
["hp"]=754850000,
- ["atk"]=5120000,
+ ["atk"]=3870000,
["atk_times"]=4,
["hurt_skill"]={
30025,
@@ -2369,7 +2369,7 @@ local monster_dungeon_armor = {
[18107]={
["monster_base"]=10043,
["hp"]=143370000,
- ["atk"]=4360000,
+ ["atk"]=2710000,
["atk_times"]=3,
["hurt_skill"]={
20124,
@@ -2381,7 +2381,7 @@ local monster_dungeon_armor = {
[18207]={
["monster_base"]=10055,
["hp"]=210680000,
- ["atk"]=4720000,
+ ["atk"]=3000000,
["atk_times"]=3,
["hurt_skill"]={
20160,
@@ -2393,7 +2393,7 @@ local monster_dungeon_armor = {
[18307]={
["monster_base"]=10026,
["hp"]=263090000,
- ["atk"]=4880000,
+ ["atk"]=3140000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -2405,7 +2405,7 @@ local monster_dungeon_armor = {
[18407]={
["monster_base"]=10023,
["hp"]=276480000,
- ["atk"]=5570000,
+ ["atk"]=3730000,
["atk_times"]=3,
["hurt_skill"]={
20064,
@@ -2418,7 +2418,7 @@ local monster_dungeon_armor = {
["monster_base"]=30009,
["is_boss"]=1,
["hp"]=512890000,
- ["atk"]=5470000,
+ ["atk"]=3980000,
["atk_times"]=4,
["hurt_skill"]={
40021,
@@ -2434,7 +2434,7 @@ local monster_dungeon_armor = {
[18607]={
["monster_base"]=10006,
["hp"]=341420000,
- ["atk"]=5730000,
+ ["atk"]=3870000,
["atk_times"]=2,
["hurt_skill"]={
20016,
@@ -2446,7 +2446,7 @@ local monster_dungeon_armor = {
[18707]={
["monster_base"]=10057,
["hp"]=359010000,
- ["atk"]=5500000,
+ ["atk"]=4000000,
["atk_times"]=3,
["hurt_skill"]={
20166,
@@ -2458,7 +2458,7 @@ local monster_dungeon_armor = {
[18807]={
["monster_base"]=10004,
["hp"]=420800000,
- ["atk"]=5650000,
+ ["atk"]=3960000,
["atk_times"]=2,
["hurt_skill"]={
20010,
@@ -2470,7 +2470,7 @@ local monster_dungeon_armor = {
[18907]={
["monster_base"]=10048,
["hp"]=483170000,
- ["atk"]=5930000,
+ ["atk"]=4170000,
["atk_times"]=3,
["hurt_skill"]={
20139,
@@ -2483,7 +2483,7 @@ local monster_dungeon_armor = {
["monster_base"]=20010,
["is_boss"]=2,
["hp"]=814970000,
- ["atk"]=5600000,
+ ["atk"]=4170000,
["atk_times"]=4,
["hurt_skill"]={
30028,
@@ -2504,7 +2504,7 @@ local monster_dungeon_armor = {
[19107]={
["monster_base"]=10010,
["hp"]=143370000,
- ["atk"]=4360000,
+ ["atk"]=2710000,
["atk_times"]=3,
["hurt_skill"]={
20028,
@@ -2516,7 +2516,7 @@ local monster_dungeon_armor = {
[19207]={
["monster_base"]=10057,
["hp"]=210680000,
- ["atk"]=4720000,
+ ["atk"]=3000000,
["atk_times"]=3,
["hurt_skill"]={
20166,
@@ -2528,7 +2528,7 @@ local monster_dungeon_armor = {
[19307]={
["monster_base"]=10045,
["hp"]=263090000,
- ["atk"]=4880000,
+ ["atk"]=3140000,
["atk_times"]=3,
["hurt_skill"]={
20130,
@@ -2540,7 +2540,7 @@ local monster_dungeon_armor = {
[19407]={
["monster_base"]=10032,
["hp"]=276480000,
- ["atk"]=5570000,
+ ["atk"]=3730000,
["atk_times"]=3,
["hurt_skill"]={
20091,
@@ -2553,7 +2553,7 @@ local monster_dungeon_armor = {
["monster_base"]=20017,
["is_boss"]=1,
["hp"]=512890000,
- ["atk"]=5470000,
+ ["atk"]=3980000,
["atk_times"]=4,
["hurt_skill"]={
30049,
@@ -2568,7 +2568,7 @@ local monster_dungeon_armor = {
[19607]={
["monster_base"]=10010,
["hp"]=341420000,
- ["atk"]=5730000,
+ ["atk"]=3870000,
["atk_times"]=3,
["hurt_skill"]={
20028,
@@ -2580,7 +2580,7 @@ local monster_dungeon_armor = {
[19707]={
["monster_base"]=10029,
["hp"]=359010000,
- ["atk"]=5500000,
+ ["atk"]=4000000,
["atk_times"]=3,
["hurt_skill"]={
20082,
@@ -2592,7 +2592,7 @@ local monster_dungeon_armor = {
[19807]={
["monster_base"]=10042,
["hp"]=420800000,
- ["atk"]=5650000,
+ ["atk"]=3960000,
["atk_times"]=3,
["hurt_skill"]={
20121,
@@ -2604,7 +2604,7 @@ local monster_dungeon_armor = {
[19907]={
["monster_base"]=10007,
["hp"]=483170000,
- ["atk"]=5930000,
+ ["atk"]=4170000,
["atk_times"]=2,
["hurt_skill"]={
20019,
@@ -2617,7 +2617,7 @@ local monster_dungeon_armor = {
["monster_base"]=20019,
["is_boss"]=2,
["hp"]=814970000,
- ["atk"]=5600000,
+ ["atk"]=4170000,
["atk_times"]=4,
["hurt_skill"]={
30055,
@@ -2636,7 +2636,7 @@ local monster_dungeon_armor = {
[20107]={
["monster_base"]=10012,
["hp"]=143370000,
- ["atk"]=4360000,
+ ["atk"]=2710000,
["atk_times"]=3,
["hurt_skill"]={
20031,
@@ -2648,7 +2648,7 @@ local monster_dungeon_armor = {
[20207]={
["monster_base"]=10053,
["hp"]=210680000,
- ["atk"]=4720000,
+ ["atk"]=3000000,
["atk_times"]=3,
["hurt_skill"]={
20154,
@@ -2660,7 +2660,7 @@ local monster_dungeon_armor = {
[20307]={
["monster_base"]=10022,
["hp"]=263090000,
- ["atk"]=4880000,
+ ["atk"]=3140000,
["atk_times"]=3,
["hurt_skill"]={
20061,
@@ -2672,7 +2672,7 @@ local monster_dungeon_armor = {
[20407]={
["monster_base"]=10058,
["hp"]=276480000,
- ["atk"]=5570000,
+ ["atk"]=3730000,
["atk_times"]=3,
["hurt_skill"]={
20169,
@@ -2685,7 +2685,7 @@ local monster_dungeon_armor = {
["monster_base"]=30014,
["is_boss"]=1,
["hp"]=512890000,
- ["atk"]=5470000,
+ ["atk"]=3980000,
["atk_times"]=4,
["hurt_skill"]={
40009,
@@ -2701,7 +2701,7 @@ local monster_dungeon_armor = {
[20607]={
["monster_base"]=10023,
["hp"]=341420000,
- ["atk"]=5730000,
+ ["atk"]=3870000,
["atk_times"]=3,
["hurt_skill"]={
20064,
@@ -2713,7 +2713,7 @@ local monster_dungeon_armor = {
[20707]={
["monster_base"]=10046,
["hp"]=359010000,
- ["atk"]=5500000,
+ ["atk"]=4000000,
["atk_times"]=3,
["hurt_skill"]={
20133,
@@ -2725,7 +2725,7 @@ local monster_dungeon_armor = {
[20807]={
["monster_base"]=10008,
["hp"]=420800000,
- ["atk"]=5650000,
+ ["atk"]=3960000,
["atk_times"]=2,
["hurt_skill"]={
20022,
@@ -2737,7 +2737,7 @@ local monster_dungeon_armor = {
[20907]={
["monster_base"]=10056,
["hp"]=483170000,
- ["atk"]=5930000,
+ ["atk"]=4170000,
["atk_times"]=3,
["hurt_skill"]={
20163,
@@ -2750,7 +2750,7 @@ local monster_dungeon_armor = {
["monster_base"]=20020,
["is_boss"]=2,
["hp"]=814970000,
- ["atk"]=5600000,
+ ["atk"]=4170000,
["atk_times"]=4,
["hurt_skill"]={
30058,
@@ -2769,7 +2769,7 @@ local monster_dungeon_armor = {
[21107]={
["monster_base"]=10055,
["hp"]=143370000,
- ["atk"]=4360000,
+ ["atk"]=2710000,
["atk_times"]=3,
["hurt_skill"]={
20160,
@@ -2781,7 +2781,7 @@ local monster_dungeon_armor = {
[21207]={
["monster_base"]=10025,
["hp"]=210680000,
- ["atk"]=4720000,
+ ["atk"]=3000000,
["atk_times"]=3,
["hurt_skill"]={
20070,
@@ -2793,7 +2793,7 @@ local monster_dungeon_armor = {
[21307]={
["monster_base"]=10049,
["hp"]=263090000,
- ["atk"]=4880000,
+ ["atk"]=3140000,
["atk_times"]=3,
["hurt_skill"]={
20142,
@@ -2805,7 +2805,7 @@ local monster_dungeon_armor = {
[21407]={
["monster_base"]=10051,
["hp"]=276480000,
- ["atk"]=5570000,
+ ["atk"]=3730000,
["atk_times"]=3,
["hurt_skill"]={
20148,
@@ -2818,7 +2818,7 @@ local monster_dungeon_armor = {
["monster_base"]=20017,
["is_boss"]=1,
["hp"]=512890000,
- ["atk"]=5470000,
+ ["atk"]=3980000,
["atk_times"]=4,
["hurt_skill"]={
30049,
@@ -2833,7 +2833,7 @@ local monster_dungeon_armor = {
[21607]={
["monster_base"]=10026,
["hp"]=341420000,
- ["atk"]=5730000,
+ ["atk"]=3870000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -2845,7 +2845,7 @@ local monster_dungeon_armor = {
[21707]={
["monster_base"]=10006,
["hp"]=359010000,
- ["atk"]=5500000,
+ ["atk"]=4000000,
["atk_times"]=2,
["hurt_skill"]={
20016,
@@ -2857,7 +2857,7 @@ local monster_dungeon_armor = {
[21807]={
["monster_base"]=10005,
["hp"]=420800000,
- ["atk"]=5650000,
+ ["atk"]=3960000,
["atk_times"]=2,
["hurt_skill"]={
20013,
@@ -2869,7 +2869,7 @@ local monster_dungeon_armor = {
[21907]={
["monster_base"]=10009,
["hp"]=483170000,
- ["atk"]=5930000,
+ ["atk"]=4170000,
["atk_times"]=3,
["hurt_skill"]={
20025,
@@ -2882,7 +2882,7 @@ local monster_dungeon_armor = {
["monster_base"]=20018,
["is_boss"]=2,
["hp"]=814970000,
- ["atk"]=5600000,
+ ["atk"]=4170000,
["atk_times"]=4,
["hurt_skill"]={
30052,
@@ -2901,7 +2901,7 @@ local monster_dungeon_armor = {
[22107]={
["monster_base"]=10003,
["hp"]=143370000,
- ["atk"]=4360000,
+ ["atk"]=2710000,
["atk_times"]=2,
["hurt_skill"]={
20007,
@@ -2913,7 +2913,7 @@ local monster_dungeon_armor = {
[22207]={
["monster_base"]=10026,
["hp"]=210680000,
- ["atk"]=4720000,
+ ["atk"]=3000000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -2925,7 +2925,7 @@ local monster_dungeon_armor = {
[22307]={
["monster_base"]=10049,
["hp"]=263090000,
- ["atk"]=4880000,
+ ["atk"]=3140000,
["atk_times"]=3,
["hurt_skill"]={
20142,
@@ -2937,7 +2937,7 @@ local monster_dungeon_armor = {
[22407]={
["monster_base"]=10024,
["hp"]=276480000,
- ["atk"]=5570000,
+ ["atk"]=3730000,
["atk_times"]=3,
["hurt_skill"]={
20067,
@@ -2950,7 +2950,7 @@ local monster_dungeon_armor = {
["monster_base"]=30010,
["is_boss"]=1,
["hp"]=512890000,
- ["atk"]=5470000,
+ ["atk"]=3980000,
["atk_times"]=4,
["hurt_skill"]={
40013,
@@ -2966,7 +2966,7 @@ local monster_dungeon_armor = {
[22607]={
["monster_base"]=10048,
["hp"]=341420000,
- ["atk"]=5730000,
+ ["atk"]=3870000,
["atk_times"]=3,
["hurt_skill"]={
20139,
@@ -2978,7 +2978,7 @@ local monster_dungeon_armor = {
[22707]={
["monster_base"]=10004,
["hp"]=359010000,
- ["atk"]=5500000,
+ ["atk"]=4000000,
["atk_times"]=2,
["hurt_skill"]={
20010,
@@ -2990,7 +2990,7 @@ local monster_dungeon_armor = {
[22807]={
["monster_base"]=10014,
["hp"]=420800000,
- ["atk"]=5650000,
+ ["atk"]=3960000,
["atk_times"]=3,
["hurt_skill"]={
20037,
@@ -3002,7 +3002,7 @@ local monster_dungeon_armor = {
[22907]={
["monster_base"]=10055,
["hp"]=483170000,
- ["atk"]=5930000,
+ ["atk"]=4170000,
["atk_times"]=3,
["hurt_skill"]={
20160,
@@ -3015,7 +3015,7 @@ local monster_dungeon_armor = {
["monster_base"]=20013,
["is_boss"]=2,
["hp"]=814970000,
- ["atk"]=5600000,
+ ["atk"]=4170000,
["atk_times"]=4,
["hurt_skill"]={
30037,
@@ -3031,7 +3031,7 @@ local monster_dungeon_armor = {
[23107]={
["monster_base"]=10019,
["hp"]=143370000,
- ["atk"]=4360000,
+ ["atk"]=2710000,
["atk_times"]=3,
["hurt_skill"]={
20052,
@@ -3043,7 +3043,7 @@ local monster_dungeon_armor = {
[23207]={
["monster_base"]=10048,
["hp"]=210680000,
- ["atk"]=4720000,
+ ["atk"]=3000000,
["atk_times"]=3,
["hurt_skill"]={
20139,
@@ -3055,7 +3055,7 @@ local monster_dungeon_armor = {
[23307]={
["monster_base"]=10028,
["hp"]=263090000,
- ["atk"]=4880000,
+ ["atk"]=3140000,
["atk_times"]=3,
["hurt_skill"]={
20079,
@@ -3067,7 +3067,7 @@ local monster_dungeon_armor = {
[23407]={
["monster_base"]=10014,
["hp"]=276480000,
- ["atk"]=5570000,
+ ["atk"]=3730000,
["atk_times"]=3,
["hurt_skill"]={
20037,
@@ -3080,7 +3080,7 @@ local monster_dungeon_armor = {
["monster_base"]=20009,
["is_boss"]=1,
["hp"]=512890000,
- ["atk"]=5470000,
+ ["atk"]=3980000,
["atk_times"]=4,
["hurt_skill"]={
30025,
@@ -3099,7 +3099,7 @@ local monster_dungeon_armor = {
[23607]={
["monster_base"]=10012,
["hp"]=341420000,
- ["atk"]=5730000,
+ ["atk"]=3870000,
["atk_times"]=3,
["hurt_skill"]={
20031,
@@ -3111,7 +3111,7 @@ local monster_dungeon_armor = {
[23707]={
["monster_base"]=10065,
["hp"]=359010000,
- ["atk"]=5500000,
+ ["atk"]=4000000,
["atk_times"]=3,
["hurt_skill"]={
20187,
@@ -3123,7 +3123,7 @@ local monster_dungeon_armor = {
[23807]={
["monster_base"]=10018,
["hp"]=420800000,
- ["atk"]=5650000,
+ ["atk"]=3960000,
["atk_times"]=3,
["hurt_skill"]={
20049,
@@ -3135,7 +3135,7 @@ local monster_dungeon_armor = {
[23907]={
["monster_base"]=10014,
["hp"]=483170000,
- ["atk"]=5930000,
+ ["atk"]=4170000,
["atk_times"]=3,
["hurt_skill"]={
20037,
@@ -3148,7 +3148,7 @@ local monster_dungeon_armor = {
["monster_base"]=20024,
["is_boss"]=2,
["hp"]=814970000,
- ["atk"]=5600000,
+ ["atk"]=4170000,
["atk_times"]=4,
["hurt_skill"]={
30070,
@@ -3167,7 +3167,7 @@ local monster_dungeon_armor = {
[24107]={
["monster_base"]=10019,
["hp"]=153090000,
- ["atk"]=4750000,
+ ["atk"]=2870000,
["atk_times"]=3,
["hurt_skill"]={
20052,
@@ -3179,7 +3179,7 @@ local monster_dungeon_armor = {
[24207]={
["monster_base"]=10013,
["hp"]=224450000,
- ["atk"]=5130000,
+ ["atk"]=3190000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -3191,7 +3191,7 @@ local monster_dungeon_armor = {
[24307]={
["monster_base"]=10001,
["hp"]=280370000,
- ["atk"]=5310000,
+ ["atk"]=3320000,
["atk_times"]=2,
["hurt_skill"]={
20001,
@@ -3203,7 +3203,7 @@ local monster_dungeon_armor = {
[24407]={
["monster_base"]=10031,
["hp"]=294620000,
- ["atk"]=6040000,
+ ["atk"]=3960000,
["atk_times"]=3,
["hurt_skill"]={
20088,
@@ -3216,7 +3216,7 @@ local monster_dungeon_armor = {
["monster_base"]=30015,
["is_boss"]=1,
["hp"]=545940000,
- ["atk"]=5910000,
+ ["atk"]=4220000,
["atk_times"]=4,
["hurt_skill"]={
40025,
@@ -3232,7 +3232,7 @@ local monster_dungeon_armor = {
[24607]={
["monster_base"]=10019,
["hp"]=363690000,
- ["atk"]=6220000,
+ ["atk"]=4110000,
["atk_times"]=3,
["hurt_skill"]={
20052,
@@ -3244,7 +3244,7 @@ local monster_dungeon_armor = {
[24707]={
["monster_base"]=10063,
["hp"]=382500000,
- ["atk"]=5960000,
+ ["atk"]=4240000,
["atk_times"]=3,
["hurt_skill"]={
20184,
@@ -3256,7 +3256,7 @@ local monster_dungeon_armor = {
[24807]={
["monster_base"]=10016,
["hp"]=447930000,
- ["atk"]=6110000,
+ ["atk"]=4200000,
["atk_times"]=3,
["hurt_skill"]={
20043,
@@ -3268,7 +3268,7 @@ local monster_dungeon_armor = {
[24907]={
["monster_base"]=10024,
["hp"]=514350000,
- ["atk"]=6450000,
+ ["atk"]=4430000,
["atk_times"]=3,
["hurt_skill"]={
20067,
@@ -3281,7 +3281,7 @@ local monster_dungeon_armor = {
["monster_base"]=20032,
["is_boss"]=2,
["hp"]=867510000,
- ["atk"]=6040000,
+ ["atk"]=4430000,
["atk_times"]=4,
["hurt_skill"]={
30094,
@@ -3303,7 +3303,7 @@ local monster_dungeon_armor = {
[25107]={
["monster_base"]=10040,
["hp"]=153090000,
- ["atk"]=4750000,
+ ["atk"]=2870000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -3315,7 +3315,7 @@ local monster_dungeon_armor = {
[25207]={
["monster_base"]=10056,
["hp"]=224450000,
- ["atk"]=5130000,
+ ["atk"]=3190000,
["atk_times"]=3,
["hurt_skill"]={
20163,
@@ -3327,7 +3327,7 @@ local monster_dungeon_armor = {
[25307]={
["monster_base"]=10038,
["hp"]=280370000,
- ["atk"]=5310000,
+ ["atk"]=3320000,
["atk_times"]=3,
["hurt_skill"]={
20109,
@@ -3339,7 +3339,7 @@ local monster_dungeon_armor = {
[25407]={
["monster_base"]=10005,
["hp"]=294620000,
- ["atk"]=6040000,
+ ["atk"]=3960000,
["atk_times"]=2,
["hurt_skill"]={
20013,
@@ -3352,7 +3352,7 @@ local monster_dungeon_armor = {
["monster_base"]=20007,
["is_boss"]=1,
["hp"]=545940000,
- ["atk"]=5910000,
+ ["atk"]=4220000,
["atk_times"]=4,
["hurt_skill"]={
30019,
@@ -3370,7 +3370,7 @@ local monster_dungeon_armor = {
[25607]={
["monster_base"]=10035,
["hp"]=363690000,
- ["atk"]=6220000,
+ ["atk"]=4110000,
["atk_times"]=3,
["hurt_skill"]={
20100,
@@ -3382,7 +3382,7 @@ local monster_dungeon_armor = {
[25707]={
["monster_base"]=10026,
["hp"]=382500000,
- ["atk"]=5960000,
+ ["atk"]=4240000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -3394,7 +3394,7 @@ local monster_dungeon_armor = {
[25807]={
["monster_base"]=10025,
["hp"]=447930000,
- ["atk"]=6110000,
+ ["atk"]=4200000,
["atk_times"]=3,
["hurt_skill"]={
20070,
@@ -3406,7 +3406,7 @@ local monster_dungeon_armor = {
[25907]={
["monster_base"]=10034,
["hp"]=514350000,
- ["atk"]=6450000,
+ ["atk"]=4430000,
["atk_times"]=3,
["hurt_skill"]={
20097,
@@ -3419,7 +3419,7 @@ local monster_dungeon_armor = {
["monster_base"]=20003,
["is_boss"]=2,
["hp"]=867510000,
- ["atk"]=6040000,
+ ["atk"]=4430000,
["atk_times"]=4,
["hurt_skill"]={
30007,
@@ -3439,7 +3439,7 @@ local monster_dungeon_armor = {
[26107]={
["monster_base"]=10036,
["hp"]=153090000,
- ["atk"]=4750000,
+ ["atk"]=2870000,
["atk_times"]=3,
["hurt_skill"]={
20103,
@@ -3451,7 +3451,7 @@ local monster_dungeon_armor = {
[26207]={
["monster_base"]=10014,
["hp"]=224450000,
- ["atk"]=5130000,
+ ["atk"]=3190000,
["atk_times"]=3,
["hurt_skill"]={
20037,
@@ -3463,7 +3463,7 @@ local monster_dungeon_armor = {
[26307]={
["monster_base"]=10046,
["hp"]=280370000,
- ["atk"]=5310000,
+ ["atk"]=3320000,
["atk_times"]=3,
["hurt_skill"]={
20133,
@@ -3475,7 +3475,7 @@ local monster_dungeon_armor = {
[26407]={
["monster_base"]=10041,
["hp"]=294620000,
- ["atk"]=6040000,
+ ["atk"]=3960000,
["atk_times"]=3,
["hurt_skill"]={
20118,
@@ -3488,7 +3488,7 @@ local monster_dungeon_armor = {
["monster_base"]=30010,
["is_boss"]=1,
["hp"]=545940000,
- ["atk"]=5910000,
+ ["atk"]=4220000,
["atk_times"]=4,
["hurt_skill"]={
40013,
@@ -3504,7 +3504,7 @@ local monster_dungeon_armor = {
[26607]={
["monster_base"]=10006,
["hp"]=363690000,
- ["atk"]=6220000,
+ ["atk"]=4110000,
["atk_times"]=2,
["hurt_skill"]={
20016,
@@ -3516,7 +3516,7 @@ local monster_dungeon_armor = {
[26707]={
["monster_base"]=10036,
["hp"]=382500000,
- ["atk"]=5960000,
+ ["atk"]=4240000,
["atk_times"]=3,
["hurt_skill"]={
20103,
@@ -3528,7 +3528,7 @@ local monster_dungeon_armor = {
[26807]={
["monster_base"]=10004,
["hp"]=447930000,
- ["atk"]=6110000,
+ ["atk"]=4200000,
["atk_times"]=2,
["hurt_skill"]={
20010,
@@ -3540,7 +3540,7 @@ local monster_dungeon_armor = {
[26907]={
["monster_base"]=10031,
["hp"]=514350000,
- ["atk"]=6450000,
+ ["atk"]=4430000,
["atk_times"]=3,
["hurt_skill"]={
20088,
@@ -3553,7 +3553,7 @@ local monster_dungeon_armor = {
["monster_base"]=20016,
["is_boss"]=2,
["hp"]=867510000,
- ["atk"]=6040000,
+ ["atk"]=4430000,
["atk_times"]=4,
["hurt_skill"]={
30046,
@@ -3572,7 +3572,7 @@ local monster_dungeon_armor = {
[27107]={
["monster_base"]=10018,
["hp"]=153090000,
- ["atk"]=4750000,
+ ["atk"]=2870000,
["atk_times"]=3,
["hurt_skill"]={
20049,
@@ -3584,7 +3584,7 @@ local monster_dungeon_armor = {
[27207]={
["monster_base"]=10044,
["hp"]=224450000,
- ["atk"]=5130000,
+ ["atk"]=3190000,
["atk_times"]=3,
["hurt_skill"]={
20127,
@@ -3596,7 +3596,7 @@ local monster_dungeon_armor = {
[27307]={
["monster_base"]=10033,
["hp"]=280370000,
- ["atk"]=5310000,
+ ["atk"]=3320000,
["atk_times"]=3,
["hurt_skill"]={
20094,
@@ -3608,7 +3608,7 @@ local monster_dungeon_armor = {
[27407]={
["monster_base"]=10028,
["hp"]=294620000,
- ["atk"]=6040000,
+ ["atk"]=3960000,
["atk_times"]=3,
["hurt_skill"]={
20079,
@@ -3621,7 +3621,7 @@ local monster_dungeon_armor = {
["monster_base"]=20019,
["is_boss"]=1,
["hp"]=545940000,
- ["atk"]=5910000,
+ ["atk"]=4220000,
["atk_times"]=4,
["hurt_skill"]={
30055,
@@ -3640,7 +3640,7 @@ local monster_dungeon_armor = {
[27607]={
["monster_base"]=10016,
["hp"]=363690000,
- ["atk"]=6220000,
+ ["atk"]=4110000,
["atk_times"]=3,
["hurt_skill"]={
20043,
@@ -3652,7 +3652,7 @@ local monster_dungeon_armor = {
[27707]={
["monster_base"]=10044,
["hp"]=382500000,
- ["atk"]=5960000,
+ ["atk"]=4240000,
["atk_times"]=3,
["hurt_skill"]={
20127,
@@ -3664,7 +3664,7 @@ local monster_dungeon_armor = {
[27807]={
["monster_base"]=10021,
["hp"]=447930000,
- ["atk"]=6110000,
+ ["atk"]=4200000,
["atk_times"]=3,
["hurt_skill"]={
20058,
@@ -3676,7 +3676,7 @@ local monster_dungeon_armor = {
[27907]={
["monster_base"]=10030,
["hp"]=514350000,
- ["atk"]=6450000,
+ ["atk"]=4430000,
["atk_times"]=3,
["hurt_skill"]={
20085,
@@ -3689,7 +3689,7 @@ local monster_dungeon_armor = {
["monster_base"]=20020,
["is_boss"]=2,
["hp"]=867510000,
- ["atk"]=6040000,
+ ["atk"]=4430000,
["atk_times"]=4,
["hurt_skill"]={
30058,
@@ -3708,7 +3708,7 @@ local monster_dungeon_armor = {
[28107]={
["monster_base"]=10024,
["hp"]=153090000,
- ["atk"]=4750000,
+ ["atk"]=2870000,
["atk_times"]=3,
["hurt_skill"]={
20067,
@@ -3720,7 +3720,7 @@ local monster_dungeon_armor = {
[28207]={
["monster_base"]=10064,
["hp"]=224450000,
- ["atk"]=5130000,
+ ["atk"]=3190000,
["atk_times"]=3,
["hurt_skill"]={
20190,
@@ -3732,7 +3732,7 @@ local monster_dungeon_armor = {
[28307]={
["monster_base"]=10047,
["hp"]=280370000,
- ["atk"]=5310000,
+ ["atk"]=3320000,
["atk_times"]=3,
["hurt_skill"]={
20136,
@@ -3744,7 +3744,7 @@ local monster_dungeon_armor = {
[28407]={
["monster_base"]=10008,
["hp"]=294620000,
- ["atk"]=6040000,
+ ["atk"]=3960000,
["atk_times"]=2,
["hurt_skill"]={
20022,
@@ -3757,7 +3757,7 @@ local monster_dungeon_armor = {
["monster_base"]=20019,
["is_boss"]=1,
["hp"]=545940000,
- ["atk"]=5910000,
+ ["atk"]=4220000,
["atk_times"]=4,
["hurt_skill"]={
30055,
@@ -3776,7 +3776,7 @@ local monster_dungeon_armor = {
[28607]={
["monster_base"]=10056,
["hp"]=363690000,
- ["atk"]=6220000,
+ ["atk"]=4110000,
["atk_times"]=3,
["hurt_skill"]={
20163,
@@ -3788,7 +3788,7 @@ local monster_dungeon_armor = {
[28707]={
["monster_base"]=10045,
["hp"]=382500000,
- ["atk"]=5960000,
+ ["atk"]=4240000,
["atk_times"]=3,
["hurt_skill"]={
20130,
@@ -3800,7 +3800,7 @@ local monster_dungeon_armor = {
[28807]={
["monster_base"]=10016,
["hp"]=447930000,
- ["atk"]=6110000,
+ ["atk"]=4200000,
["atk_times"]=3,
["hurt_skill"]={
20043,
@@ -3812,7 +3812,7 @@ local monster_dungeon_armor = {
[28907]={
["monster_base"]=10064,
["hp"]=514350000,
- ["atk"]=6450000,
+ ["atk"]=4430000,
["atk_times"]=3,
["hurt_skill"]={
20190,
@@ -3825,7 +3825,7 @@ local monster_dungeon_armor = {
["monster_base"]=20013,
["is_boss"]=2,
["hp"]=867510000,
- ["atk"]=6040000,
+ ["atk"]=4430000,
["atk_times"]=4,
["hurt_skill"]={
30037,
@@ -3841,7 +3841,7 @@ local monster_dungeon_armor = {
[29107]={
["monster_base"]=10032,
["hp"]=153090000,
- ["atk"]=4750000,
+ ["atk"]=2870000,
["atk_times"]=3,
["hurt_skill"]={
20091,
@@ -3853,7 +3853,7 @@ local monster_dungeon_armor = {
[29207]={
["monster_base"]=10004,
["hp"]=224450000,
- ["atk"]=5130000,
+ ["atk"]=3190000,
["atk_times"]=2,
["hurt_skill"]={
20010,
@@ -3865,7 +3865,7 @@ local monster_dungeon_armor = {
[29307]={
["monster_base"]=10014,
["hp"]=280370000,
- ["atk"]=5310000,
+ ["atk"]=3320000,
["atk_times"]=3,
["hurt_skill"]={
20037,
@@ -3877,7 +3877,7 @@ local monster_dungeon_armor = {
[29407]={
["monster_base"]=10006,
["hp"]=294620000,
- ["atk"]=6040000,
+ ["atk"]=3960000,
["atk_times"]=2,
["hurt_skill"]={
20016,
@@ -3890,7 +3890,7 @@ local monster_dungeon_armor = {
["monster_base"]=20031,
["is_boss"]=1,
["hp"]=545940000,
- ["atk"]=5910000,
+ ["atk"]=4220000,
["atk_times"]=4,
["hurt_skill"]={
30091,
@@ -3911,7 +3911,7 @@ local monster_dungeon_armor = {
[29607]={
["monster_base"]=10015,
["hp"]=363690000,
- ["atk"]=6220000,
+ ["atk"]=4110000,
["atk_times"]=3,
["hurt_skill"]={
20040,
@@ -3923,7 +3923,7 @@ local monster_dungeon_armor = {
[29707]={
["monster_base"]=10026,
["hp"]=382500000,
- ["atk"]=5960000,
+ ["atk"]=4240000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -3935,7 +3935,7 @@ local monster_dungeon_armor = {
[29807]={
["monster_base"]=10007,
["hp"]=447930000,
- ["atk"]=6110000,
+ ["atk"]=4200000,
["atk_times"]=2,
["hurt_skill"]={
20019,
@@ -3947,7 +3947,7 @@ local monster_dungeon_armor = {
[29907]={
["monster_base"]=10064,
["hp"]=514350000,
- ["atk"]=6450000,
+ ["atk"]=4430000,
["atk_times"]=3,
["hurt_skill"]={
20190,
@@ -3960,7 +3960,7 @@ local monster_dungeon_armor = {
["monster_base"]=20032,
["is_boss"]=2,
["hp"]=867510000,
- ["atk"]=6040000,
+ ["atk"]=4430000,
["atk_times"]=4,
["hurt_skill"]={
30094,
@@ -3982,7 +3982,7 @@ local monster_dungeon_armor = {
[30107]={
["monster_base"]=10019,
["hp"]=164360000,
- ["atk"]=5180000,
+ ["atk"]=3050000,
["atk_times"]=3,
["hurt_skill"]={
20052,
@@ -3994,7 +3994,7 @@ local monster_dungeon_armor = {
[30207]={
["monster_base"]=10035,
["hp"]=240110000,
- ["atk"]=5580000,
+ ["atk"]=3390000,
["atk_times"]=3,
["hurt_skill"]={
20100,
@@ -4006,7 +4006,7 @@ local monster_dungeon_armor = {
[30307]={
["monster_base"]=10057,
["hp"]=299890000,
- ["atk"]=5760000,
+ ["atk"]=3520000,
["atk_times"]=3,
["hurt_skill"]={
20166,
@@ -4018,7 +4018,7 @@ local monster_dungeon_armor = {
[30407]={
["monster_base"]=10051,
["hp"]=315280000,
- ["atk"]=6550000,
+ ["atk"]=4200000,
["atk_times"]=3,
["hurt_skill"]={
20148,
@@ -4031,7 +4031,7 @@ local monster_dungeon_armor = {
["monster_base"]=20020,
["is_boss"]=1,
["hp"]=583450000,
- ["atk"]=6380000,
+ ["atk"]=4490000,
["atk_times"]=4,
["hurt_skill"]={
30058,
@@ -4050,7 +4050,7 @@ local monster_dungeon_armor = {
[30607]={
["monster_base"]=10062,
["hp"]=388890000,
- ["atk"]=6730000,
+ ["atk"]=4380000,
["atk_times"]=3,
["hurt_skill"]={
20181,
@@ -4062,7 +4062,7 @@ local monster_dungeon_armor = {
[30707]={
["monster_base"]=10056,
["hp"]=409220000,
- ["atk"]=6480000,
+ ["atk"]=4500000,
["atk_times"]=3,
["hurt_skill"]={
20163,
@@ -4074,7 +4074,7 @@ local monster_dungeon_armor = {
[30807]={
["monster_base"]=10054,
["hp"]=479000000,
- ["atk"]=6660000,
+ ["atk"]=4450000,
["atk_times"]=3,
["hurt_skill"]={
20157,
@@ -4086,7 +4086,7 @@ local monster_dungeon_armor = {
[30907]={
["monster_base"]=10060,
["hp"]=549890000,
- ["atk"]=6990000,
+ ["atk"]=4690000,
["atk_times"]=3,
["hurt_skill"]={
20175,
@@ -4099,7 +4099,7 @@ local monster_dungeon_armor = {
["monster_base"]=20013,
["is_boss"]=2,
["hp"]=927400000,
- ["atk"]=6550000,
+ ["atk"]=4690000,
["atk_times"]=4,
["hurt_skill"]={
30037,
@@ -4115,7 +4115,7 @@ local monster_dungeon_armor = {
[31107]={
["monster_base"]=10058,
["hp"]=164360000,
- ["atk"]=5180000,
+ ["atk"]=3050000,
["atk_times"]=3,
["hurt_skill"]={
20169,
@@ -4127,7 +4127,7 @@ local monster_dungeon_armor = {
[31207]={
["monster_base"]=10027,
["hp"]=240110000,
- ["atk"]=5580000,
+ ["atk"]=3390000,
["atk_times"]=3,
["hurt_skill"]={
20076,
@@ -4139,7 +4139,7 @@ local monster_dungeon_armor = {
[31307]={
["monster_base"]=10025,
["hp"]=299890000,
- ["atk"]=5760000,
+ ["atk"]=3520000,
["atk_times"]=3,
["hurt_skill"]={
20070,
@@ -4151,7 +4151,7 @@ local monster_dungeon_armor = {
[31407]={
["monster_base"]=10007,
["hp"]=315280000,
- ["atk"]=6550000,
+ ["atk"]=4200000,
["atk_times"]=2,
["hurt_skill"]={
20019,
@@ -4164,7 +4164,7 @@ local monster_dungeon_armor = {
["monster_base"]=20012,
["is_boss"]=1,
["hp"]=583450000,
- ["atk"]=6380000,
+ ["atk"]=4490000,
["atk_times"]=4,
["hurt_skill"]={
30034,
@@ -4179,7 +4179,7 @@ local monster_dungeon_armor = {
[31607]={
["monster_base"]=10024,
["hp"]=388890000,
- ["atk"]=6730000,
+ ["atk"]=4380000,
["atk_times"]=3,
["hurt_skill"]={
20067,
@@ -4191,7 +4191,7 @@ local monster_dungeon_armor = {
[31707]={
["monster_base"]=10030,
["hp"]=409220000,
- ["atk"]=6480000,
+ ["atk"]=4500000,
["atk_times"]=3,
["hurt_skill"]={
20085,
@@ -4203,7 +4203,7 @@ local monster_dungeon_armor = {
[31807]={
["monster_base"]=10048,
["hp"]=479000000,
- ["atk"]=6660000,
+ ["atk"]=4450000,
["atk_times"]=3,
["hurt_skill"]={
20139,
@@ -4215,7 +4215,7 @@ local monster_dungeon_armor = {
[31907]={
["monster_base"]=10001,
["hp"]=549890000,
- ["atk"]=6990000,
+ ["atk"]=4690000,
["atk_times"]=2,
["hurt_skill"]={
20001,
@@ -4228,7 +4228,7 @@ local monster_dungeon_armor = {
["monster_base"]=20034,
["is_boss"]=2,
["hp"]=927400000,
- ["atk"]=6550000,
+ ["atk"]=4690000,
["atk_times"]=4,
["hurt_skill"]={
30097,
@@ -4248,7 +4248,7 @@ local monster_dungeon_armor = {
[32107]={
["monster_base"]=10061,
["hp"]=164360000,
- ["atk"]=5180000,
+ ["atk"]=3050000,
["atk_times"]=3,
["hurt_skill"]={
20178,
@@ -4260,7 +4260,7 @@ local monster_dungeon_armor = {
[32207]={
["monster_base"]=10017,
["hp"]=240110000,
- ["atk"]=5580000,
+ ["atk"]=3390000,
["atk_times"]=3,
["hurt_skill"]={
20046,
@@ -4272,7 +4272,7 @@ local monster_dungeon_armor = {
[32307]={
["monster_base"]=10064,
["hp"]=299890000,
- ["atk"]=5760000,
+ ["atk"]=3520000,
["atk_times"]=3,
["hurt_skill"]={
20190,
@@ -4284,7 +4284,7 @@ local monster_dungeon_armor = {
[32407]={
["monster_base"]=10027,
["hp"]=315280000,
- ["atk"]=6550000,
+ ["atk"]=4200000,
["atk_times"]=3,
["hurt_skill"]={
20076,
@@ -4297,7 +4297,7 @@ local monster_dungeon_armor = {
["monster_base"]=20008,
["is_boss"]=1,
["hp"]=583450000,
- ["atk"]=6380000,
+ ["atk"]=4490000,
["atk_times"]=4,
["hurt_skill"]={
30022,
@@ -4315,7 +4315,7 @@ local monster_dungeon_armor = {
[32607]={
["monster_base"]=10005,
["hp"]=388890000,
- ["atk"]=6730000,
+ ["atk"]=4380000,
["atk_times"]=2,
["hurt_skill"]={
20013,
@@ -4327,7 +4327,7 @@ local monster_dungeon_armor = {
[32707]={
["monster_base"]=10032,
["hp"]=409220000,
- ["atk"]=6480000,
+ ["atk"]=4500000,
["atk_times"]=3,
["hurt_skill"]={
20091,
@@ -4339,7 +4339,7 @@ local monster_dungeon_armor = {
[32807]={
["monster_base"]=10056,
["hp"]=479000000,
- ["atk"]=6660000,
+ ["atk"]=4450000,
["atk_times"]=3,
["hurt_skill"]={
20163,
@@ -4351,7 +4351,7 @@ local monster_dungeon_armor = {
[32907]={
["monster_base"]=10053,
["hp"]=549890000,
- ["atk"]=6990000,
+ ["atk"]=4690000,
["atk_times"]=3,
["hurt_skill"]={
20154,
@@ -4364,7 +4364,7 @@ local monster_dungeon_armor = {
["monster_base"]=20035,
["is_boss"]=2,
["hp"]=927400000,
- ["atk"]=6550000,
+ ["atk"]=4690000,
["atk_times"]=4,
["hurt_skill"]={
30100,
@@ -4384,7 +4384,7 @@ local monster_dungeon_armor = {
[33107]={
["monster_base"]=10004,
["hp"]=164360000,
- ["atk"]=5180000,
+ ["atk"]=3050000,
["atk_times"]=2,
["hurt_skill"]={
20010,
@@ -4396,7 +4396,7 @@ local monster_dungeon_armor = {
[33207]={
["monster_base"]=10064,
["hp"]=240110000,
- ["atk"]=5580000,
+ ["atk"]=3390000,
["atk_times"]=3,
["hurt_skill"]={
20190,
@@ -4408,7 +4408,7 @@ local monster_dungeon_armor = {
[33307]={
["monster_base"]=10050,
["hp"]=299890000,
- ["atk"]=5760000,
+ ["atk"]=3520000,
["atk_times"]=3,
["hurt_skill"]={
20145,
@@ -4420,7 +4420,7 @@ local monster_dungeon_armor = {
[33407]={
["monster_base"]=10012,
["hp"]=315280000,
- ["atk"]=6550000,
+ ["atk"]=4200000,
["atk_times"]=3,
["hurt_skill"]={
20031,
@@ -4433,7 +4433,7 @@ local monster_dungeon_armor = {
["monster_base"]=20021,
["is_boss"]=1,
["hp"]=583450000,
- ["atk"]=6380000,
+ ["atk"]=4490000,
["atk_times"]=4,
["hurt_skill"]={
30061,
@@ -4452,7 +4452,7 @@ local monster_dungeon_armor = {
[33607]={
["monster_base"]=10024,
["hp"]=388890000,
- ["atk"]=6730000,
+ ["atk"]=4380000,
["atk_times"]=3,
["hurt_skill"]={
20067,
@@ -4464,7 +4464,7 @@ local monster_dungeon_armor = {
[33707]={
["monster_base"]=10052,
["hp"]=409220000,
- ["atk"]=6480000,
+ ["atk"]=4500000,
["atk_times"]=3,
["hurt_skill"]={
20151,
@@ -4476,7 +4476,7 @@ local monster_dungeon_armor = {
[33807]={
["monster_base"]=10012,
["hp"]=479000000,
- ["atk"]=6660000,
+ ["atk"]=4450000,
["atk_times"]=3,
["hurt_skill"]={
20031,
@@ -4488,7 +4488,7 @@ local monster_dungeon_armor = {
[33907]={
["monster_base"]=10006,
["hp"]=549890000,
- ["atk"]=6990000,
+ ["atk"]=4690000,
["atk_times"]=2,
["hurt_skill"]={
20016,
@@ -4501,7 +4501,7 @@ local monster_dungeon_armor = {
["monster_base"]=20036,
["is_boss"]=2,
["hp"]=927400000,
- ["atk"]=6550000,
+ ["atk"]=4690000,
["atk_times"]=4,
["hurt_skill"]={
30103,
@@ -4520,7 +4520,7 @@ local monster_dungeon_armor = {
[34107]={
["monster_base"]=10002,
["hp"]=164360000,
- ["atk"]=5180000,
+ ["atk"]=3050000,
["atk_times"]=2,
["hurt_skill"]={
20004,
@@ -4532,7 +4532,7 @@ local monster_dungeon_armor = {
[34207]={
["monster_base"]=10060,
["hp"]=240110000,
- ["atk"]=5580000,
+ ["atk"]=3390000,
["atk_times"]=3,
["hurt_skill"]={
20175,
@@ -4544,7 +4544,7 @@ local monster_dungeon_armor = {
[34307]={
["monster_base"]=10065,
["hp"]=299890000,
- ["atk"]=5760000,
+ ["atk"]=3520000,
["atk_times"]=3,
["hurt_skill"]={
20187,
@@ -4556,7 +4556,7 @@ local monster_dungeon_armor = {
[34407]={
["monster_base"]=10037,
["hp"]=315280000,
- ["atk"]=6550000,
+ ["atk"]=4200000,
["atk_times"]=3,
["hurt_skill"]={
20106,
@@ -4569,7 +4569,7 @@ local monster_dungeon_armor = {
["monster_base"]=20006,
["is_boss"]=1,
["hp"]=583450000,
- ["atk"]=6380000,
+ ["atk"]=4490000,
["atk_times"]=4,
["hurt_skill"]={
30016,
@@ -4587,7 +4587,7 @@ local monster_dungeon_armor = {
[34607]={
["monster_base"]=10012,
["hp"]=388890000,
- ["atk"]=6730000,
+ ["atk"]=4380000,
["atk_times"]=3,
["hurt_skill"]={
20031,
@@ -4599,7 +4599,7 @@ local monster_dungeon_armor = {
[34707]={
["monster_base"]=10049,
["hp"]=409220000,
- ["atk"]=6480000,
+ ["atk"]=4500000,
["atk_times"]=3,
["hurt_skill"]={
20142,
@@ -4611,7 +4611,7 @@ local monster_dungeon_armor = {
[34807]={
["monster_base"]=10020,
["hp"]=479000000,
- ["atk"]=6660000,
+ ["atk"]=4450000,
["atk_times"]=3,
["hurt_skill"]={
20055,
@@ -4623,7 +4623,7 @@ local monster_dungeon_armor = {
[34907]={
["monster_base"]=10043,
["hp"]=549890000,
- ["atk"]=6990000,
+ ["atk"]=4690000,
["atk_times"]=3,
["hurt_skill"]={
20124,
@@ -4636,7 +4636,7 @@ local monster_dungeon_armor = {
["monster_base"]=20037,
["is_boss"]=2,
["hp"]=927400000,
- ["atk"]=6550000,
+ ["atk"]=4690000,
["atk_times"]=4,
["hurt_skill"]={
30106,
@@ -4656,7 +4656,7 @@ local monster_dungeon_armor = {
[35107]={
["monster_base"]=10041,
["hp"]=164360000,
- ["atk"]=5180000,
+ ["atk"]=3050000,
["atk_times"]=3,
["hurt_skill"]={
20118,
@@ -4668,7 +4668,7 @@ local monster_dungeon_armor = {
[35207]={
["monster_base"]=10014,
["hp"]=240110000,
- ["atk"]=5580000,
+ ["atk"]=3390000,
["atk_times"]=3,
["hurt_skill"]={
20037,
@@ -4680,7 +4680,7 @@ local monster_dungeon_armor = {
[35307]={
["monster_base"]=10047,
["hp"]=299890000,
- ["atk"]=5760000,
+ ["atk"]=3520000,
["atk_times"]=3,
["hurt_skill"]={
20136,
@@ -4692,7 +4692,7 @@ local monster_dungeon_armor = {
[35407]={
["monster_base"]=10062,
["hp"]=315280000,
- ["atk"]=6550000,
+ ["atk"]=4200000,
["atk_times"]=3,
["hurt_skill"]={
20181,
@@ -4705,7 +4705,7 @@ local monster_dungeon_armor = {
["monster_base"]=20027,
["is_boss"]=1,
["hp"]=583450000,
- ["atk"]=6380000,
+ ["atk"]=4490000,
["atk_times"]=4,
["hurt_skill"]={
30079,
@@ -4720,7 +4720,7 @@ local monster_dungeon_armor = {
[35607]={
["monster_base"]=10005,
["hp"]=388890000,
- ["atk"]=6730000,
+ ["atk"]=4380000,
["atk_times"]=2,
["hurt_skill"]={
20013,
@@ -4732,7 +4732,7 @@ local monster_dungeon_armor = {
[35707]={
["monster_base"]=10004,
["hp"]=409220000,
- ["atk"]=6480000,
+ ["atk"]=4500000,
["atk_times"]=2,
["hurt_skill"]={
20010,
@@ -4744,7 +4744,7 @@ local monster_dungeon_armor = {
[35807]={
["monster_base"]=10039,
["hp"]=479000000,
- ["atk"]=6660000,
+ ["atk"]=4450000,
["atk_times"]=3,
["hurt_skill"]={
20112,
@@ -4756,7 +4756,7 @@ local monster_dungeon_armor = {
[35907]={
["monster_base"]=10032,
["hp"]=549890000,
- ["atk"]=6990000,
+ ["atk"]=4690000,
["atk_times"]=3,
["hurt_skill"]={
20091,
@@ -4769,7 +4769,7 @@ local monster_dungeon_armor = {
["monster_base"]=20038,
["is_boss"]=2,
["hp"]=927400000,
- ["atk"]=6550000,
+ ["atk"]=4690000,
["atk_times"]=4,
["hurt_skill"]={
30109,
@@ -4791,7 +4791,7 @@ local monster_dungeon_armor = {
[36107]={
["monster_base"]=10057,
["hp"]=169650000,
- ["atk"]=5440000,
+ ["atk"]=3230000,
["atk_times"]=3,
["hurt_skill"]={
20166,
@@ -4803,7 +4803,7 @@ local monster_dungeon_armor = {
[36207]={
["monster_base"]=10061,
["hp"]=247740000,
- ["atk"]=5870000,
+ ["atk"]=3600000,
["atk_times"]=3,
["hurt_skill"]={
20178,
@@ -4815,7 +4815,7 @@ local monster_dungeon_armor = {
[36307]={
["monster_base"]=10040,
["hp"]=309200000,
- ["atk"]=6050000,
+ ["atk"]=3730000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -4827,7 +4827,7 @@ local monster_dungeon_armor = {
[36407]={
["monster_base"]=10047,
["hp"]=324830000,
- ["atk"]=6850000,
+ ["atk"]=4460000,
["atk_times"]=3,
["hurt_skill"]={
20136,
@@ -4840,7 +4840,7 @@ local monster_dungeon_armor = {
["monster_base"]=20004,
["is_boss"]=1,
["hp"]=600970000,
- ["atk"]=6650000,
+ ["atk"]=4760000,
["atk_times"]=4,
["hurt_skill"]={
30010,
@@ -4855,7 +4855,7 @@ local monster_dungeon_armor = {
[36607]={
["monster_base"]=10028,
["hp"]=400760000,
- ["atk"]=7060000,
+ ["atk"]=4650000,
["atk_times"]=3,
["hurt_skill"]={
20079,
@@ -4867,7 +4867,7 @@ local monster_dungeon_armor = {
[36707]={
["monster_base"]=10004,
["hp"]=421850000,
- ["atk"]=6750000,
+ ["atk"]=4770000,
["atk_times"]=2,
["hurt_skill"]={
20010,
@@ -4879,7 +4879,7 @@ local monster_dungeon_armor = {
[36807]={
["monster_base"]=10002,
["hp"]=493410000,
- ["atk"]=6960000,
+ ["atk"]=4730000,
["atk_times"]=2,
["hurt_skill"]={
20004,
@@ -4891,7 +4891,7 @@ local monster_dungeon_armor = {
[36907]={
["monster_base"]=10062,
["hp"]=566670000,
- ["atk"]=7310000,
+ ["atk"]=4980000,
["atk_times"]=3,
["hurt_skill"]={
20181,
@@ -4904,7 +4904,7 @@ local monster_dungeon_armor = {
["monster_base"]=20012,
["is_boss"]=2,
["hp"]=955050000,
- ["atk"]=6800000,
+ ["atk"]=4980000,
["atk_times"]=4,
["hurt_skill"]={
30034,
@@ -4919,7 +4919,7 @@ local monster_dungeon_armor = {
[37107]={
["monster_base"]=10001,
["hp"]=169650000,
- ["atk"]=5440000,
+ ["atk"]=3230000,
["atk_times"]=2,
["hurt_skill"]={
20001,
@@ -4931,7 +4931,7 @@ local monster_dungeon_armor = {
[37207]={
["monster_base"]=10054,
["hp"]=247740000,
- ["atk"]=5870000,
+ ["atk"]=3600000,
["atk_times"]=3,
["hurt_skill"]={
20157,
@@ -4943,7 +4943,7 @@ local monster_dungeon_armor = {
[37307]={
["monster_base"]=10023,
["hp"]=309200000,
- ["atk"]=6050000,
+ ["atk"]=3730000,
["atk_times"]=3,
["hurt_skill"]={
20064,
@@ -4955,7 +4955,7 @@ local monster_dungeon_armor = {
[37407]={
["monster_base"]=10008,
["hp"]=324830000,
- ["atk"]=6850000,
+ ["atk"]=4460000,
["atk_times"]=2,
["hurt_skill"]={
20022,
@@ -4968,7 +4968,7 @@ local monster_dungeon_armor = {
["monster_base"]=20022,
["is_boss"]=1,
["hp"]=600970000,
- ["atk"]=6650000,
+ ["atk"]=4760000,
["atk_times"]=4,
["hurt_skill"]={
30064,
@@ -4986,7 +4986,7 @@ local monster_dungeon_armor = {
[37607]={
["monster_base"]=10034,
["hp"]=400760000,
- ["atk"]=7060000,
+ ["atk"]=4650000,
["atk_times"]=3,
["hurt_skill"]={
20097,
@@ -4998,7 +4998,7 @@ local monster_dungeon_armor = {
[37707]={
["monster_base"]=10035,
["hp"]=421850000,
- ["atk"]=6750000,
+ ["atk"]=4770000,
["atk_times"]=3,
["hurt_skill"]={
20100,
@@ -5010,7 +5010,7 @@ local monster_dungeon_armor = {
[37807]={
["monster_base"]=10004,
["hp"]=493410000,
- ["atk"]=6960000,
+ ["atk"]=4730000,
["atk_times"]=2,
["hurt_skill"]={
20010,
@@ -5022,7 +5022,7 @@ local monster_dungeon_armor = {
[37907]={
["monster_base"]=10029,
["hp"]=566670000,
- ["atk"]=7310000,
+ ["atk"]=4980000,
["atk_times"]=3,
["hurt_skill"]={
20082,
@@ -5035,7 +5035,7 @@ local monster_dungeon_armor = {
["monster_base"]=20003,
["is_boss"]=2,
["hp"]=955050000,
- ["atk"]=6800000,
+ ["atk"]=4980000,
["atk_times"]=4,
["hurt_skill"]={
30007,
@@ -5055,7 +5055,7 @@ local monster_dungeon_armor = {
[38107]={
["monster_base"]=10004,
["hp"]=169650000,
- ["atk"]=5440000,
+ ["atk"]=3230000,
["atk_times"]=2,
["hurt_skill"]={
20010,
@@ -5067,7 +5067,7 @@ local monster_dungeon_armor = {
[38207]={
["monster_base"]=10056,
["hp"]=247740000,
- ["atk"]=5870000,
+ ["atk"]=3600000,
["atk_times"]=3,
["hurt_skill"]={
20163,
@@ -5079,7 +5079,7 @@ local monster_dungeon_armor = {
[38307]={
["monster_base"]=10057,
["hp"]=309200000,
- ["atk"]=6050000,
+ ["atk"]=3730000,
["atk_times"]=3,
["hurt_skill"]={
20166,
@@ -5091,7 +5091,7 @@ local monster_dungeon_armor = {
[38407]={
["monster_base"]=10043,
["hp"]=324830000,
- ["atk"]=6850000,
+ ["atk"]=4460000,
["atk_times"]=3,
["hurt_skill"]={
20124,
@@ -5104,7 +5104,7 @@ local monster_dungeon_armor = {
["monster_base"]=20014,
["is_boss"]=1,
["hp"]=600970000,
- ["atk"]=6650000,
+ ["atk"]=4760000,
["atk_times"]=4,
["hurt_skill"]={
30040,
@@ -5119,7 +5119,7 @@ local monster_dungeon_armor = {
[38607]={
["monster_base"]=10009,
["hp"]=400760000,
- ["atk"]=7060000,
+ ["atk"]=4650000,
["atk_times"]=3,
["hurt_skill"]={
20025,
@@ -5131,7 +5131,7 @@ local monster_dungeon_armor = {
[38707]={
["monster_base"]=10030,
["hp"]=421850000,
- ["atk"]=6750000,
+ ["atk"]=4770000,
["atk_times"]=3,
["hurt_skill"]={
20085,
@@ -5143,7 +5143,7 @@ local monster_dungeon_armor = {
[38807]={
["monster_base"]=10048,
["hp"]=493410000,
- ["atk"]=6960000,
+ ["atk"]=4730000,
["atk_times"]=3,
["hurt_skill"]={
20139,
@@ -5155,7 +5155,7 @@ local monster_dungeon_armor = {
[38907]={
["monster_base"]=10041,
["hp"]=566670000,
- ["atk"]=7310000,
+ ["atk"]=4980000,
["atk_times"]=3,
["hurt_skill"]={
20118,
@@ -5168,7 +5168,7 @@ local monster_dungeon_armor = {
["monster_base"]=20005,
["is_boss"]=2,
["hp"]=955050000,
- ["atk"]=6800000,
+ ["atk"]=4980000,
["atk_times"]=4,
["hurt_skill"]={
30013,
@@ -5186,7 +5186,7 @@ local monster_dungeon_armor = {
[39107]={
["monster_base"]=10003,
["hp"]=169650000,
- ["atk"]=5440000,
+ ["atk"]=3230000,
["atk_times"]=2,
["hurt_skill"]={
20007,
@@ -5198,7 +5198,7 @@ local monster_dungeon_armor = {
[39207]={
["monster_base"]=10056,
["hp"]=247740000,
- ["atk"]=5870000,
+ ["atk"]=3600000,
["atk_times"]=3,
["hurt_skill"]={
20163,
@@ -5210,7 +5210,7 @@ local monster_dungeon_armor = {
[39307]={
["monster_base"]=10062,
["hp"]=309200000,
- ["atk"]=6050000,
+ ["atk"]=3730000,
["atk_times"]=3,
["hurt_skill"]={
20181,
@@ -5222,7 +5222,7 @@ local monster_dungeon_armor = {
[39407]={
["monster_base"]=10057,
["hp"]=324830000,
- ["atk"]=6850000,
+ ["atk"]=4460000,
["atk_times"]=3,
["hurt_skill"]={
20166,
@@ -5235,7 +5235,7 @@ local monster_dungeon_armor = {
["monster_base"]=30009,
["is_boss"]=1,
["hp"]=600970000,
- ["atk"]=6650000,
+ ["atk"]=4760000,
["atk_times"]=4,
["hurt_skill"]={
40021,
@@ -5251,7 +5251,7 @@ local monster_dungeon_armor = {
[39607]={
["monster_base"]=10048,
["hp"]=400760000,
- ["atk"]=7060000,
+ ["atk"]=4650000,
["atk_times"]=3,
["hurt_skill"]={
20139,
@@ -5263,7 +5263,7 @@ local monster_dungeon_armor = {
[39707]={
["monster_base"]=10004,
["hp"]=421850000,
- ["atk"]=6750000,
+ ["atk"]=4770000,
["atk_times"]=2,
["hurt_skill"]={
20010,
@@ -5275,7 +5275,7 @@ local monster_dungeon_armor = {
[39807]={
["monster_base"]=10031,
["hp"]=493410000,
- ["atk"]=6960000,
+ ["atk"]=4730000,
["atk_times"]=3,
["hurt_skill"]={
20088,
@@ -5287,7 +5287,7 @@ local monster_dungeon_armor = {
[39907]={
["monster_base"]=10040,
["hp"]=566670000,
- ["atk"]=7310000,
+ ["atk"]=4980000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -5300,7 +5300,7 @@ local monster_dungeon_armor = {
["monster_base"]=20025,
["is_boss"]=2,
["hp"]=955050000,
- ["atk"]=6800000,
+ ["atk"]=4980000,
["atk_times"]=4,
["hurt_skill"]={
30073,
@@ -5318,7 +5318,7 @@ local monster_dungeon_armor = {
[40107]={
["monster_base"]=10056,
["hp"]=169650000,
- ["atk"]=5440000,
+ ["atk"]=3230000,
["atk_times"]=3,
["hurt_skill"]={
20163,
@@ -5330,7 +5330,7 @@ local monster_dungeon_armor = {
[40207]={
["monster_base"]=10021,
["hp"]=247740000,
- ["atk"]=5870000,
+ ["atk"]=3600000,
["atk_times"]=3,
["hurt_skill"]={
20058,
@@ -5342,7 +5342,7 @@ local monster_dungeon_armor = {
[40307]={
["monster_base"]=10015,
["hp"]=309200000,
- ["atk"]=6050000,
+ ["atk"]=3730000,
["atk_times"]=3,
["hurt_skill"]={
20040,
@@ -5354,7 +5354,7 @@ local monster_dungeon_armor = {
[40407]={
["monster_base"]=10044,
["hp"]=324830000,
- ["atk"]=6850000,
+ ["atk"]=4460000,
["atk_times"]=3,
["hurt_skill"]={
20127,
@@ -5367,7 +5367,7 @@ local monster_dungeon_armor = {
["monster_base"]=30015,
["is_boss"]=1,
["hp"]=600970000,
- ["atk"]=6650000,
+ ["atk"]=4760000,
["atk_times"]=4,
["hurt_skill"]={
40025,
@@ -5383,7 +5383,7 @@ local monster_dungeon_armor = {
[40607]={
["monster_base"]=10055,
["hp"]=400760000,
- ["atk"]=7060000,
+ ["atk"]=4650000,
["atk_times"]=3,
["hurt_skill"]={
20160,
@@ -5395,7 +5395,7 @@ local monster_dungeon_armor = {
[40707]={
["monster_base"]=10003,
["hp"]=421850000,
- ["atk"]=6750000,
+ ["atk"]=4770000,
["atk_times"]=2,
["hurt_skill"]={
20007,
@@ -5407,7 +5407,7 @@ local monster_dungeon_armor = {
[40807]={
["monster_base"]=10031,
["hp"]=493410000,
- ["atk"]=6960000,
+ ["atk"]=4730000,
["atk_times"]=3,
["hurt_skill"]={
20088,
@@ -5419,7 +5419,7 @@ local monster_dungeon_armor = {
[40907]={
["monster_base"]=10004,
["hp"]=566670000,
- ["atk"]=7310000,
+ ["atk"]=4980000,
["atk_times"]=2,
["hurt_skill"]={
20010,
@@ -5432,7 +5432,7 @@ local monster_dungeon_armor = {
["monster_base"]=20037,
["is_boss"]=2,
["hp"]=955050000,
- ["atk"]=6800000,
+ ["atk"]=4980000,
["atk_times"]=4,
["hurt_skill"]={
30106,
@@ -5452,7 +5452,7 @@ local monster_dungeon_armor = {
[41107]={
["monster_base"]=10019,
["hp"]=169650000,
- ["atk"]=5440000,
+ ["atk"]=3230000,
["atk_times"]=3,
["hurt_skill"]={
20052,
@@ -5464,7 +5464,7 @@ local monster_dungeon_armor = {
[41207]={
["monster_base"]=10017,
["hp"]=247740000,
- ["atk"]=5870000,
+ ["atk"]=3600000,
["atk_times"]=3,
["hurt_skill"]={
20046,
@@ -5476,7 +5476,7 @@ local monster_dungeon_armor = {
[41307]={
["monster_base"]=10055,
["hp"]=309200000,
- ["atk"]=6050000,
+ ["atk"]=3730000,
["atk_times"]=3,
["hurt_skill"]={
20160,
@@ -5488,7 +5488,7 @@ local monster_dungeon_armor = {
[41407]={
["monster_base"]=10013,
["hp"]=324830000,
- ["atk"]=6850000,
+ ["atk"]=4460000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -5501,7 +5501,7 @@ local monster_dungeon_armor = {
["monster_base"]=20030,
["is_boss"]=1,
["hp"]=600970000,
- ["atk"]=6650000,
+ ["atk"]=4760000,
["atk_times"]=4,
["hurt_skill"]={
30088,
@@ -5520,7 +5520,7 @@ local monster_dungeon_armor = {
[41607]={
["monster_base"]=10042,
["hp"]=400760000,
- ["atk"]=7060000,
+ ["atk"]=4650000,
["atk_times"]=3,
["hurt_skill"]={
20121,
@@ -5532,7 +5532,7 @@ local monster_dungeon_armor = {
[41707]={
["monster_base"]=10025,
["hp"]=421850000,
- ["atk"]=6750000,
+ ["atk"]=4770000,
["atk_times"]=3,
["hurt_skill"]={
20070,
@@ -5544,7 +5544,7 @@ local monster_dungeon_armor = {
[41807]={
["monster_base"]=10002,
["hp"]=493410000,
- ["atk"]=6960000,
+ ["atk"]=4730000,
["atk_times"]=2,
["hurt_skill"]={
20004,
@@ -5556,7 +5556,7 @@ local monster_dungeon_armor = {
[41907]={
["monster_base"]=10034,
["hp"]=566670000,
- ["atk"]=7310000,
+ ["atk"]=4980000,
["atk_times"]=3,
["hurt_skill"]={
20097,
@@ -5569,7 +5569,7 @@ local monster_dungeon_armor = {
["monster_base"]=20032,
["is_boss"]=2,
["hp"]=955050000,
- ["atk"]=6800000,
+ ["atk"]=4980000,
["atk_times"]=4,
["hurt_skill"]={
30094,
@@ -5591,7 +5591,7 @@ local monster_dungeon_armor = {
[42107]={
["monster_base"]=10022,
["hp"]=180880000,
- ["atk"]=5900000,
+ ["atk"]=3430000,
["atk_times"]=3,
["hurt_skill"]={
20061,
@@ -5603,7 +5603,7 @@ local monster_dungeon_armor = {
[42207]={
["monster_base"]=10020,
["hp"]=263550000,
- ["atk"]=6350000,
+ ["atk"]=3820000,
["atk_times"]=3,
["hurt_skill"]={
20055,
@@ -5615,7 +5615,7 @@ local monster_dungeon_armor = {
[42307]={
["monster_base"]=10024,
["hp"]=329070000,
- ["atk"]=6550000,
+ ["atk"]=3950000,
["atk_times"]=3,
["hurt_skill"]={
20067,
@@ -5627,7 +5627,7 @@ local monster_dungeon_armor = {
[42407]={
["monster_base"]=10045,
["hp"]=345780000,
- ["atk"]=7400000,
+ ["atk"]=4720000,
["atk_times"]=3,
["hurt_skill"]={
20130,
@@ -5640,7 +5640,7 @@ local monster_dungeon_armor = {
["monster_base"]=20027,
["is_boss"]=1,
["hp"]=639240000,
- ["atk"]=7150000,
+ ["atk"]=5050000,
["atk_times"]=4,
["hurt_skill"]={
30079,
@@ -5655,7 +5655,7 @@ local monster_dungeon_armor = {
[42607]={
["monster_base"]=10002,
["hp"]=426740000,
- ["atk"]=7590000,
+ ["atk"]=4940000,
["atk_times"]=2,
["hurt_skill"]={
20004,
@@ -5667,7 +5667,7 @@ local monster_dungeon_armor = {
[42707]={
["monster_base"]=10008,
["hp"]=448850000,
- ["atk"]=7300000,
+ ["atk"]=5060000,
["atk_times"]=2,
["hurt_skill"]={
20022,
@@ -5679,7 +5679,7 @@ local monster_dungeon_armor = {
[42807]={
["monster_base"]=10019,
["hp"]=525000000,
- ["atk"]=7490000,
+ ["atk"]=5020000,
["atk_times"]=3,
["hurt_skill"]={
20052,
@@ -5691,7 +5691,7 @@ local monster_dungeon_armor = {
[42907]={
["monster_base"]=10048,
["hp"]=602910000,
- ["atk"]=7870000,
+ ["atk"]=5280000,
["atk_times"]=3,
["hurt_skill"]={
20139,
@@ -5704,7 +5704,7 @@ local monster_dungeon_armor = {
["monster_base"]=20034,
["is_boss"]=2,
["hp"]=1015810000,
- ["atk"]=7320000,
+ ["atk"]=5280000,
["atk_times"]=4,
["hurt_skill"]={
30097,
@@ -5724,7 +5724,7 @@ local monster_dungeon_armor = {
[43107]={
["monster_base"]=10003,
["hp"]=180880000,
- ["atk"]=5900000,
+ ["atk"]=3430000,
["atk_times"]=2,
["hurt_skill"]={
20007,
@@ -5736,7 +5736,7 @@ local monster_dungeon_armor = {
[43207]={
["monster_base"]=10016,
["hp"]=263550000,
- ["atk"]=6350000,
+ ["atk"]=3820000,
["atk_times"]=3,
["hurt_skill"]={
20043,
@@ -5748,7 +5748,7 @@ local monster_dungeon_armor = {
[43307]={
["monster_base"]=10057,
["hp"]=329070000,
- ["atk"]=6550000,
+ ["atk"]=3950000,
["atk_times"]=3,
["hurt_skill"]={
20166,
@@ -5760,7 +5760,7 @@ local monster_dungeon_armor = {
[43407]={
["monster_base"]=10023,
["hp"]=345780000,
- ["atk"]=7400000,
+ ["atk"]=4720000,
["atk_times"]=3,
["hurt_skill"]={
20064,
@@ -5773,7 +5773,7 @@ local monster_dungeon_armor = {
["monster_base"]=30012,
["is_boss"]=1,
["hp"]=639240000,
- ["atk"]=7150000,
+ ["atk"]=5050000,
["atk_times"]=4,
["hurt_skill"]={
40005,
@@ -5790,7 +5790,7 @@ local monster_dungeon_armor = {
[43607]={
["monster_base"]=10040,
["hp"]=426740000,
- ["atk"]=7590000,
+ ["atk"]=4940000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -5802,7 +5802,7 @@ local monster_dungeon_armor = {
[43707]={
["monster_base"]=10041,
["hp"]=448850000,
- ["atk"]=7300000,
+ ["atk"]=5060000,
["atk_times"]=3,
["hurt_skill"]={
20118,
@@ -5814,7 +5814,7 @@ local monster_dungeon_armor = {
[43807]={
["monster_base"]=10032,
["hp"]=525000000,
- ["atk"]=7490000,
+ ["atk"]=5020000,
["atk_times"]=3,
["hurt_skill"]={
20091,
@@ -5826,7 +5826,7 @@ local monster_dungeon_armor = {
[43907]={
["monster_base"]=10020,
["hp"]=602910000,
- ["atk"]=7870000,
+ ["atk"]=5280000,
["atk_times"]=3,
["hurt_skill"]={
20055,
@@ -5839,7 +5839,7 @@ local monster_dungeon_armor = {
["monster_base"]=20009,
["is_boss"]=2,
["hp"]=1015810000,
- ["atk"]=7320000,
+ ["atk"]=5280000,
["atk_times"]=4,
["hurt_skill"]={
30025,
@@ -5858,7 +5858,7 @@ local monster_dungeon_armor = {
[44107]={
["monster_base"]=10027,
["hp"]=180880000,
- ["atk"]=5900000,
+ ["atk"]=3430000,
["atk_times"]=3,
["hurt_skill"]={
20076,
@@ -5870,7 +5870,7 @@ local monster_dungeon_armor = {
[44207]={
["monster_base"]=10014,
["hp"]=263550000,
- ["atk"]=6350000,
+ ["atk"]=3820000,
["atk_times"]=3,
["hurt_skill"]={
20037,
@@ -5882,7 +5882,7 @@ local monster_dungeon_armor = {
[44307]={
["monster_base"]=10042,
["hp"]=329070000,
- ["atk"]=6550000,
+ ["atk"]=3950000,
["atk_times"]=3,
["hurt_skill"]={
20121,
@@ -5894,7 +5894,7 @@ local monster_dungeon_armor = {
[44407]={
["monster_base"]=10054,
["hp"]=345780000,
- ["atk"]=7400000,
+ ["atk"]=4720000,
["atk_times"]=3,
["hurt_skill"]={
20157,
@@ -5907,7 +5907,7 @@ local monster_dungeon_armor = {
["monster_base"]=30010,
["is_boss"]=1,
["hp"]=639240000,
- ["atk"]=7150000,
+ ["atk"]=5050000,
["atk_times"]=4,
["hurt_skill"]={
40013,
@@ -5923,7 +5923,7 @@ local monster_dungeon_armor = {
[44607]={
["monster_base"]=10024,
["hp"]=426740000,
- ["atk"]=7590000,
+ ["atk"]=4940000,
["atk_times"]=3,
["hurt_skill"]={
20067,
@@ -5935,7 +5935,7 @@ local monster_dungeon_armor = {
[44707]={
["monster_base"]=10022,
["hp"]=448850000,
- ["atk"]=7300000,
+ ["atk"]=5060000,
["atk_times"]=3,
["hurt_skill"]={
20061,
@@ -5947,7 +5947,7 @@ local monster_dungeon_armor = {
[44807]={
["monster_base"]=10034,
["hp"]=525000000,
- ["atk"]=7490000,
+ ["atk"]=5020000,
["atk_times"]=3,
["hurt_skill"]={
20097,
@@ -5959,7 +5959,7 @@ local monster_dungeon_armor = {
[44907]={
["monster_base"]=10017,
["hp"]=602910000,
- ["atk"]=7870000,
+ ["atk"]=5280000,
["atk_times"]=3,
["hurt_skill"]={
20046,
@@ -5972,7 +5972,7 @@ local monster_dungeon_armor = {
["monster_base"]=20036,
["is_boss"]=2,
["hp"]=1015810000,
- ["atk"]=7320000,
+ ["atk"]=5280000,
["atk_times"]=4,
["hurt_skill"]={
30103,
@@ -5991,7 +5991,7 @@ local monster_dungeon_armor = {
[45107]={
["monster_base"]=10009,
["hp"]=180880000,
- ["atk"]=5900000,
+ ["atk"]=3430000,
["atk_times"]=3,
["hurt_skill"]={
20025,
@@ -6003,7 +6003,7 @@ local monster_dungeon_armor = {
[45207]={
["monster_base"]=10036,
["hp"]=263550000,
- ["atk"]=6350000,
+ ["atk"]=3820000,
["atk_times"]=3,
["hurt_skill"]={
20103,
@@ -6015,7 +6015,7 @@ local monster_dungeon_armor = {
[45307]={
["monster_base"]=10029,
["hp"]=329070000,
- ["atk"]=6550000,
+ ["atk"]=3950000,
["atk_times"]=3,
["hurt_skill"]={
20082,
@@ -6027,7 +6027,7 @@ local monster_dungeon_armor = {
[45407]={
["monster_base"]=10031,
["hp"]=345780000,
- ["atk"]=7400000,
+ ["atk"]=4720000,
["atk_times"]=3,
["hurt_skill"]={
20088,
@@ -6040,7 +6040,7 @@ local monster_dungeon_armor = {
["monster_base"]=20014,
["is_boss"]=1,
["hp"]=639240000,
- ["atk"]=7150000,
+ ["atk"]=5050000,
["atk_times"]=4,
["hurt_skill"]={
30040,
@@ -6055,7 +6055,7 @@ local monster_dungeon_armor = {
[45607]={
["monster_base"]=10022,
["hp"]=426740000,
- ["atk"]=7590000,
+ ["atk"]=4940000,
["atk_times"]=3,
["hurt_skill"]={
20061,
@@ -6067,7 +6067,7 @@ local monster_dungeon_armor = {
[45707]={
["monster_base"]=10017,
["hp"]=448850000,
- ["atk"]=7300000,
+ ["atk"]=5060000,
["atk_times"]=3,
["hurt_skill"]={
20046,
@@ -6079,7 +6079,7 @@ local monster_dungeon_armor = {
[45807]={
["monster_base"]=10041,
["hp"]=525000000,
- ["atk"]=7490000,
+ ["atk"]=5020000,
["atk_times"]=3,
["hurt_skill"]={
20118,
@@ -6091,7 +6091,7 @@ local monster_dungeon_armor = {
[45907]={
["monster_base"]=10004,
["hp"]=602910000,
- ["atk"]=7870000,
+ ["atk"]=5280000,
["atk_times"]=2,
["hurt_skill"]={
20010,
@@ -6104,7 +6104,7 @@ local monster_dungeon_armor = {
["monster_base"]=20026,
["is_boss"]=2,
["hp"]=1015810000,
- ["atk"]=7320000,
+ ["atk"]=5280000,
["atk_times"]=4,
["hurt_skill"]={
30076,
@@ -6122,7 +6122,7 @@ local monster_dungeon_armor = {
[46107]={
["monster_base"]=10040,
["hp"]=180880000,
- ["atk"]=5900000,
+ ["atk"]=3430000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -6134,7 +6134,7 @@ local monster_dungeon_armor = {
[46207]={
["monster_base"]=10013,
["hp"]=263550000,
- ["atk"]=6350000,
+ ["atk"]=3820000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -6146,7 +6146,7 @@ local monster_dungeon_armor = {
[46307]={
["monster_base"]=10014,
["hp"]=329070000,
- ["atk"]=6550000,
+ ["atk"]=3950000,
["atk_times"]=3,
["hurt_skill"]={
20037,
@@ -6158,7 +6158,7 @@ local monster_dungeon_armor = {
[46407]={
["monster_base"]=10021,
["hp"]=345780000,
- ["atk"]=7400000,
+ ["atk"]=4720000,
["atk_times"]=3,
["hurt_skill"]={
20058,
@@ -6171,7 +6171,7 @@ local monster_dungeon_armor = {
["monster_base"]=20012,
["is_boss"]=1,
["hp"]=639240000,
- ["atk"]=7150000,
+ ["atk"]=5050000,
["atk_times"]=4,
["hurt_skill"]={
30034,
@@ -6186,7 +6186,7 @@ local monster_dungeon_armor = {
[46607]={
["monster_base"]=10017,
["hp"]=426740000,
- ["atk"]=7590000,
+ ["atk"]=4940000,
["atk_times"]=3,
["hurt_skill"]={
20046,
@@ -6198,7 +6198,7 @@ local monster_dungeon_armor = {
[46707]={
["monster_base"]=10012,
["hp"]=448850000,
- ["atk"]=7300000,
+ ["atk"]=5060000,
["atk_times"]=3,
["hurt_skill"]={
20031,
@@ -6210,7 +6210,7 @@ local monster_dungeon_armor = {
[46807]={
["monster_base"]=10065,
["hp"]=525000000,
- ["atk"]=7490000,
+ ["atk"]=5020000,
["atk_times"]=3,
["hurt_skill"]={
20187,
@@ -6222,7 +6222,7 @@ local monster_dungeon_armor = {
[46907]={
["monster_base"]=10044,
["hp"]=602910000,
- ["atk"]=7870000,
+ ["atk"]=5280000,
["atk_times"]=3,
["hurt_skill"]={
20127,
@@ -6235,7 +6235,7 @@ local monster_dungeon_armor = {
["monster_base"]=20021,
["is_boss"]=2,
["hp"]=1015810000,
- ["atk"]=7320000,
+ ["atk"]=5280000,
["atk_times"]=4,
["hurt_skill"]={
30061,
@@ -6254,7 +6254,7 @@ local monster_dungeon_armor = {
[47107]={
["monster_base"]=10026,
["hp"]=180880000,
- ["atk"]=5900000,
+ ["atk"]=3430000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -6266,7 +6266,7 @@ local monster_dungeon_armor = {
[47207]={
["monster_base"]=10021,
["hp"]=263550000,
- ["atk"]=6350000,
+ ["atk"]=3820000,
["atk_times"]=3,
["hurt_skill"]={
20058,
@@ -6278,7 +6278,7 @@ local monster_dungeon_armor = {
[47307]={
["monster_base"]=10036,
["hp"]=329070000,
- ["atk"]=6550000,
+ ["atk"]=3950000,
["atk_times"]=3,
["hurt_skill"]={
20103,
@@ -6290,7 +6290,7 @@ local monster_dungeon_armor = {
[47407]={
["monster_base"]=10009,
["hp"]=345780000,
- ["atk"]=7400000,
+ ["atk"]=4720000,
["atk_times"]=3,
["hurt_skill"]={
20025,
@@ -6303,7 +6303,7 @@ local monster_dungeon_armor = {
["monster_base"]=20017,
["is_boss"]=1,
["hp"]=639240000,
- ["atk"]=7150000,
+ ["atk"]=5050000,
["atk_times"]=4,
["hurt_skill"]={
30049,
@@ -6318,7 +6318,7 @@ local monster_dungeon_armor = {
[47607]={
["monster_base"]=10035,
["hp"]=426740000,
- ["atk"]=7590000,
+ ["atk"]=4940000,
["atk_times"]=3,
["hurt_skill"]={
20100,
@@ -6330,7 +6330,7 @@ local monster_dungeon_armor = {
[47707]={
["monster_base"]=10027,
["hp"]=448850000,
- ["atk"]=7300000,
+ ["atk"]=5060000,
["atk_times"]=3,
["hurt_skill"]={
20076,
@@ -6342,7 +6342,7 @@ local monster_dungeon_armor = {
[47807]={
["monster_base"]=10005,
["hp"]=525000000,
- ["atk"]=7490000,
+ ["atk"]=5020000,
["atk_times"]=2,
["hurt_skill"]={
20013,
@@ -6354,7 +6354,7 @@ local monster_dungeon_armor = {
[47907]={
["monster_base"]=10037,
["hp"]=602910000,
- ["atk"]=7870000,
+ ["atk"]=5280000,
["atk_times"]=3,
["hurt_skill"]={
20106,
@@ -6367,7 +6367,7 @@ local monster_dungeon_armor = {
["monster_base"]=20034,
["is_boss"]=2,
["hp"]=1015810000,
- ["atk"]=7320000,
+ ["atk"]=5280000,
["atk_times"]=4,
["hurt_skill"]={
30097,
@@ -6387,7 +6387,7 @@ local monster_dungeon_armor = {
[48107]={
["monster_base"]=10044,
["hp"]=191410000,
- ["atk"]=6420000,
+ ["atk"]=3630000,
["atk_times"]=3,
["hurt_skill"]={
20127,
@@ -6399,7 +6399,7 @@ local monster_dungeon_armor = {
[48207]={
["monster_base"]=10027,
["hp"]=278310000,
- ["atk"]=6890000,
+ ["atk"]=4040000,
["atk_times"]=3,
["hurt_skill"]={
20076,
@@ -6411,7 +6411,7 @@ local monster_dungeon_armor = {
[48307]={
["monster_base"]=10064,
["hp"]=347620000,
- ["atk"]=7080000,
+ ["atk"]=4170000,
["atk_times"]=3,
["hurt_skill"]={
20190,
@@ -6423,7 +6423,7 @@ local monster_dungeon_armor = {
[48407]={
["monster_base"]=10042,
["hp"]=365170000,
- ["atk"]=8000000,
+ ["atk"]=4980000,
["atk_times"]=3,
["hurt_skill"]={
20121,
@@ -6436,7 +6436,7 @@ local monster_dungeon_armor = {
["monster_base"]=30012,
["is_boss"]=1,
["hp"]=674740000,
- ["atk"]=7720000,
+ ["atk"]=5330000,
["atk_times"]=4,
["hurt_skill"]={
40005,
@@ -6453,7 +6453,7 @@ local monster_dungeon_armor = {
[48607]={
["monster_base"]=10001,
["hp"]=450590000,
- ["atk"]=8220000,
+ ["atk"]=5230000,
["atk_times"]=2,
["hurt_skill"]={
20001,
@@ -6465,7 +6465,7 @@ local monster_dungeon_armor = {
[48707]={
["monster_base"]=10050,
["hp"]=474020000,
- ["atk"]=7900000,
+ ["atk"]=5340000,
["atk_times"]=3,
["hurt_skill"]={
20145,
@@ -6477,7 +6477,7 @@ local monster_dungeon_armor = {
[48807]={
["monster_base"]=10003,
["hp"]=554250000,
- ["atk"]=8120000,
+ ["atk"]=5310000,
["atk_times"]=2,
["hurt_skill"]={
20007,
@@ -6489,7 +6489,7 @@ local monster_dungeon_armor = {
[48907]={
["monster_base"]=10057,
["hp"]=636480000,
- ["atk"]=8510000,
+ ["atk"]=5590000,
["atk_times"]=3,
["hurt_skill"]={
20166,
@@ -6502,7 +6502,7 @@ local monster_dungeon_armor = {
["monster_base"]=20035,
["is_boss"]=2,
["hp"]=1072430000,
- ["atk"]=7900000,
+ ["atk"]=5590000,
["atk_times"]=4,
["hurt_skill"]={
30100,
@@ -6522,7 +6522,7 @@ local monster_dungeon_armor = {
[49107]={
["monster_base"]=10056,
["hp"]=191410000,
- ["atk"]=6420000,
+ ["atk"]=3630000,
["atk_times"]=3,
["hurt_skill"]={
20163,
@@ -6534,7 +6534,7 @@ local monster_dungeon_armor = {
[49207]={
["monster_base"]=10054,
["hp"]=278310000,
- ["atk"]=6890000,
+ ["atk"]=4040000,
["atk_times"]=3,
["hurt_skill"]={
20157,
@@ -6546,7 +6546,7 @@ local monster_dungeon_armor = {
[49307]={
["monster_base"]=10024,
["hp"]=347620000,
- ["atk"]=7080000,
+ ["atk"]=4170000,
["atk_times"]=3,
["hurt_skill"]={
20067,
@@ -6558,7 +6558,7 @@ local monster_dungeon_armor = {
[49407]={
["monster_base"]=10013,
["hp"]=365170000,
- ["atk"]=8000000,
+ ["atk"]=4980000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -6571,7 +6571,7 @@ local monster_dungeon_armor = {
["monster_base"]=30019,
["is_boss"]=1,
["hp"]=674740000,
- ["atk"]=7720000,
+ ["atk"]=5330000,
["atk_times"]=4,
["hurt_skill"]={
40029,
@@ -6591,7 +6591,7 @@ local monster_dungeon_armor = {
[49607]={
["monster_base"]=10017,
["hp"]=450590000,
- ["atk"]=8220000,
+ ["atk"]=5230000,
["atk_times"]=3,
["hurt_skill"]={
20046,
@@ -6603,7 +6603,7 @@ local monster_dungeon_armor = {
[49707]={
["monster_base"]=10006,
["hp"]=474020000,
- ["atk"]=7900000,
+ ["atk"]=5340000,
["atk_times"]=2,
["hurt_skill"]={
20016,
@@ -6615,7 +6615,7 @@ local monster_dungeon_armor = {
[49807]={
["monster_base"]=10028,
["hp"]=554250000,
- ["atk"]=8120000,
+ ["atk"]=5310000,
["atk_times"]=3,
["hurt_skill"]={
20079,
@@ -6627,7 +6627,7 @@ local monster_dungeon_armor = {
[49907]={
["monster_base"]=10057,
["hp"]=636480000,
- ["atk"]=8510000,
+ ["atk"]=5590000,
["atk_times"]=3,
["hurt_skill"]={
20166,
@@ -6640,7 +6640,7 @@ local monster_dungeon_armor = {
["monster_base"]=20023,
["is_boss"]=2,
["hp"]=1072430000,
- ["atk"]=7900000,
+ ["atk"]=5590000,
["atk_times"]=4,
["hurt_skill"]={
30067,
@@ -6658,7 +6658,7 @@ local monster_dungeon_armor = {
[50107]={
["monster_base"]=10054,
["hp"]=191410000,
- ["atk"]=6420000,
+ ["atk"]=3630000,
["atk_times"]=3,
["hurt_skill"]={
20157,
@@ -6670,7 +6670,7 @@ local monster_dungeon_armor = {
[50207]={
["monster_base"]=10025,
["hp"]=278310000,
- ["atk"]=6890000,
+ ["atk"]=4040000,
["atk_times"]=3,
["hurt_skill"]={
20070,
@@ -6682,7 +6682,7 @@ local monster_dungeon_armor = {
[50307]={
["monster_base"]=10010,
["hp"]=347620000,
- ["atk"]=7080000,
+ ["atk"]=4170000,
["atk_times"]=3,
["hurt_skill"]={
20028,
@@ -6694,7 +6694,7 @@ local monster_dungeon_armor = {
[50407]={
["monster_base"]=10064,
["hp"]=365170000,
- ["atk"]=8000000,
+ ["atk"]=4980000,
["atk_times"]=3,
["hurt_skill"]={
20190,
@@ -6707,7 +6707,7 @@ local monster_dungeon_armor = {
["monster_base"]=20015,
["is_boss"]=1,
["hp"]=674740000,
- ["atk"]=7720000,
+ ["atk"]=5330000,
["atk_times"]=4,
["hurt_skill"]={
30043,
@@ -6725,7 +6725,7 @@ local monster_dungeon_armor = {
[50607]={
["monster_base"]=10007,
["hp"]=450590000,
- ["atk"]=8220000,
+ ["atk"]=5230000,
["atk_times"]=2,
["hurt_skill"]={
20019,
@@ -6737,7 +6737,7 @@ local monster_dungeon_armor = {
[50707]={
["monster_base"]=10040,
["hp"]=474020000,
- ["atk"]=7900000,
+ ["atk"]=5340000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -6749,7 +6749,7 @@ local monster_dungeon_armor = {
[50807]={
["monster_base"]=10018,
["hp"]=554250000,
- ["atk"]=8120000,
+ ["atk"]=5310000,
["atk_times"]=3,
["hurt_skill"]={
20049,
@@ -6761,7 +6761,7 @@ local monster_dungeon_armor = {
[50907]={
["monster_base"]=10043,
["hp"]=636480000,
- ["atk"]=8510000,
+ ["atk"]=5590000,
["atk_times"]=3,
["hurt_skill"]={
20124,
@@ -6774,7 +6774,7 @@ local monster_dungeon_armor = {
["monster_base"]=20020,
["is_boss"]=2,
["hp"]=1072430000,
- ["atk"]=7900000,
+ ["atk"]=5590000,
["atk_times"]=4,
["hurt_skill"]={
30058,
@@ -6793,7 +6793,7 @@ local monster_dungeon_armor = {
[51107]={
["monster_base"]=10004,
["hp"]=191410000,
- ["atk"]=6420000,
+ ["atk"]=3630000,
["atk_times"]=2,
["hurt_skill"]={
20010,
@@ -6805,7 +6805,7 @@ local monster_dungeon_armor = {
[51207]={
["monster_base"]=10033,
["hp"]=278310000,
- ["atk"]=6890000,
+ ["atk"]=4040000,
["atk_times"]=3,
["hurt_skill"]={
20094,
@@ -6817,7 +6817,7 @@ local monster_dungeon_armor = {
[51307]={
["monster_base"]=10064,
["hp"]=347620000,
- ["atk"]=7080000,
+ ["atk"]=4170000,
["atk_times"]=3,
["hurt_skill"]={
20190,
@@ -6829,7 +6829,7 @@ local monster_dungeon_armor = {
[51407]={
["monster_base"]=10062,
["hp"]=365170000,
- ["atk"]=8000000,
+ ["atk"]=4980000,
["atk_times"]=3,
["hurt_skill"]={
20181,
@@ -6842,7 +6842,7 @@ local monster_dungeon_armor = {
["monster_base"]=20012,
["is_boss"]=1,
["hp"]=674740000,
- ["atk"]=7720000,
+ ["atk"]=5330000,
["atk_times"]=4,
["hurt_skill"]={
30034,
@@ -6857,7 +6857,7 @@ local monster_dungeon_armor = {
[51607]={
["monster_base"]=10014,
["hp"]=450590000,
- ["atk"]=8220000,
+ ["atk"]=5230000,
["atk_times"]=3,
["hurt_skill"]={
20037,
@@ -6869,7 +6869,7 @@ local monster_dungeon_armor = {
[51707]={
["monster_base"]=10064,
["hp"]=474020000,
- ["atk"]=7900000,
+ ["atk"]=5340000,
["atk_times"]=3,
["hurt_skill"]={
20190,
@@ -6881,7 +6881,7 @@ local monster_dungeon_armor = {
[51807]={
["monster_base"]=10036,
["hp"]=554250000,
- ["atk"]=8120000,
+ ["atk"]=5310000,
["atk_times"]=3,
["hurt_skill"]={
20103,
@@ -6893,7 +6893,7 @@ local monster_dungeon_armor = {
[51907]={
["monster_base"]=10013,
["hp"]=636480000,
- ["atk"]=8510000,
+ ["atk"]=5590000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -6906,7 +6906,7 @@ local monster_dungeon_armor = {
["monster_base"]=20024,
["is_boss"]=2,
["hp"]=1072430000,
- ["atk"]=7900000,
+ ["atk"]=5590000,
["atk_times"]=4,
["hurt_skill"]={
30070,
@@ -6925,7 +6925,7 @@ local monster_dungeon_armor = {
[52107]={
["monster_base"]=10006,
["hp"]=191410000,
- ["atk"]=6420000,
+ ["atk"]=3630000,
["atk_times"]=2,
["hurt_skill"]={
20016,
@@ -6937,7 +6937,7 @@ local monster_dungeon_armor = {
[52207]={
["monster_base"]=10026,
["hp"]=278310000,
- ["atk"]=6890000,
+ ["atk"]=4040000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -6949,7 +6949,7 @@ local monster_dungeon_armor = {
[52307]={
["monster_base"]=10029,
["hp"]=347620000,
- ["atk"]=7080000,
+ ["atk"]=4170000,
["atk_times"]=3,
["hurt_skill"]={
20082,
@@ -6961,7 +6961,7 @@ local monster_dungeon_armor = {
[52407]={
["monster_base"]=10009,
["hp"]=365170000,
- ["atk"]=8000000,
+ ["atk"]=4980000,
["atk_times"]=3,
["hurt_skill"]={
20025,
@@ -6974,7 +6974,7 @@ local monster_dungeon_armor = {
["monster_base"]=20027,
["is_boss"]=1,
["hp"]=674740000,
- ["atk"]=7720000,
+ ["atk"]=5330000,
["atk_times"]=4,
["hurt_skill"]={
30079,
@@ -6989,7 +6989,7 @@ local monster_dungeon_armor = {
[52607]={
["monster_base"]=10035,
["hp"]=450590000,
- ["atk"]=8220000,
+ ["atk"]=5230000,
["atk_times"]=3,
["hurt_skill"]={
20100,
@@ -7001,7 +7001,7 @@ local monster_dungeon_armor = {
[52707]={
["monster_base"]=10043,
["hp"]=474020000,
- ["atk"]=7900000,
+ ["atk"]=5340000,
["atk_times"]=3,
["hurt_skill"]={
20124,
@@ -7013,7 +7013,7 @@ local monster_dungeon_armor = {
[52807]={
["monster_base"]=10030,
["hp"]=554250000,
- ["atk"]=8120000,
+ ["atk"]=5310000,
["atk_times"]=3,
["hurt_skill"]={
20085,
@@ -7025,7 +7025,7 @@ local monster_dungeon_armor = {
[52907]={
["monster_base"]=10009,
["hp"]=636480000,
- ["atk"]=8510000,
+ ["atk"]=5590000,
["atk_times"]=3,
["hurt_skill"]={
20025,
@@ -7038,7 +7038,7 @@ local monster_dungeon_armor = {
["monster_base"]=20021,
["is_boss"]=2,
["hp"]=1072430000,
- ["atk"]=7900000,
+ ["atk"]=5590000,
["atk_times"]=4,
["hurt_skill"]={
30061,
@@ -7057,7 +7057,7 @@ local monster_dungeon_armor = {
[53107]={
["monster_base"]=10057,
["hp"]=191410000,
- ["atk"]=6420000,
+ ["atk"]=3630000,
["atk_times"]=3,
["hurt_skill"]={
20166,
@@ -7069,7 +7069,7 @@ local monster_dungeon_armor = {
[53207]={
["monster_base"]=10006,
["hp"]=278310000,
- ["atk"]=6890000,
+ ["atk"]=4040000,
["atk_times"]=2,
["hurt_skill"]={
20016,
@@ -7081,7 +7081,7 @@ local monster_dungeon_armor = {
[53307]={
["monster_base"]=10051,
["hp"]=347620000,
- ["atk"]=7080000,
+ ["atk"]=4170000,
["atk_times"]=3,
["hurt_skill"]={
20148,
@@ -7093,7 +7093,7 @@ local monster_dungeon_armor = {
[53407]={
["monster_base"]=10019,
["hp"]=365170000,
- ["atk"]=8000000,
+ ["atk"]=4980000,
["atk_times"]=3,
["hurt_skill"]={
20052,
@@ -7106,7 +7106,7 @@ local monster_dungeon_armor = {
["monster_base"]=30009,
["is_boss"]=1,
["hp"]=674740000,
- ["atk"]=7720000,
+ ["atk"]=5330000,
["atk_times"]=4,
["hurt_skill"]={
40021,
@@ -7122,7 +7122,7 @@ local monster_dungeon_armor = {
[53607]={
["monster_base"]=10024,
["hp"]=450590000,
- ["atk"]=8220000,
+ ["atk"]=5230000,
["atk_times"]=3,
["hurt_skill"]={
20067,
@@ -7134,7 +7134,7 @@ local monster_dungeon_armor = {
[53707]={
["monster_base"]=10001,
["hp"]=474020000,
- ["atk"]=7900000,
+ ["atk"]=5340000,
["atk_times"]=2,
["hurt_skill"]={
20001,
@@ -7146,7 +7146,7 @@ local monster_dungeon_armor = {
[53807]={
["monster_base"]=10015,
["hp"]=554250000,
- ["atk"]=8120000,
+ ["atk"]=5310000,
["atk_times"]=3,
["hurt_skill"]={
20040,
@@ -7158,7 +7158,7 @@ local monster_dungeon_armor = {
[53907]={
["monster_base"]=10035,
["hp"]=636480000,
- ["atk"]=8510000,
+ ["atk"]=5590000,
["atk_times"]=3,
["hurt_skill"]={
20100,
@@ -7171,7 +7171,7 @@ local monster_dungeon_armor = {
["monster_base"]=20038,
["is_boss"]=2,
["hp"]=1072430000,
- ["atk"]=7900000,
+ ["atk"]=5590000,
["atk_times"]=4,
["hurt_skill"]={
30109,
@@ -7193,7 +7193,7 @@ local monster_dungeon_armor = {
[54107]={
["monster_base"]=10045,
["hp"]=205490000,
- ["atk"]=6970000,
+ ["atk"]=3950000,
["atk_times"]=3,
["hurt_skill"]={
20130,
@@ -7205,7 +7205,7 @@ local monster_dungeon_armor = {
[54207]={
["monster_base"]=10012,
["hp"]=298160000,
- ["atk"]=7480000,
+ ["atk"]=4390000,
["atk_times"]=3,
["hurt_skill"]={
20031,
@@ -7217,7 +7217,7 @@ local monster_dungeon_armor = {
[54307]={
["monster_base"]=10035,
["hp"]=372560000,
- ["atk"]=7700000,
+ ["atk"]=4530000,
["atk_times"]=3,
["hurt_skill"]={
20100,
@@ -7229,7 +7229,7 @@ local monster_dungeon_armor = {
[54407]={
["monster_base"]=10004,
["hp"]=391500000,
- ["atk"]=8680000,
+ ["atk"]=5410000,
["atk_times"]=2,
["hurt_skill"]={
20010,
@@ -7242,7 +7242,7 @@ local monster_dungeon_armor = {
["monster_base"]=20025,
["is_boss"]=1,
["hp"]=722740000,
- ["atk"]=8330000,
+ ["atk"]=5790000,
["atk_times"]=4,
["hurt_skill"]={
30073,
@@ -7260,7 +7260,7 @@ local monster_dungeon_armor = {
[54607]={
["monster_base"]=10012,
["hp"]=482700000,
- ["atk"]=8890000,
+ ["atk"]=5690000,
["atk_times"]=3,
["hurt_skill"]={
20031,
@@ -7272,7 +7272,7 @@ local monster_dungeon_armor = {
[54707]={
["monster_base"]=10009,
["hp"]=507910000,
- ["atk"]=8550000,
+ ["atk"]=5800000,
["atk_times"]=3,
["hurt_skill"]={
20025,
@@ -7284,7 +7284,7 @@ local monster_dungeon_armor = {
[54807]={
["monster_base"]=10021,
["hp"]=593840000,
- ["atk"]=8800000,
+ ["atk"]=5780000,
["atk_times"]=3,
["hurt_skill"]={
20058,
@@ -7296,7 +7296,7 @@ local monster_dungeon_armor = {
[54907]={
["monster_base"]=10029,
["hp"]=681920000,
- ["atk"]=9230000,
+ ["atk"]=6080000,
["atk_times"]=3,
["hurt_skill"]={
20082,
@@ -7309,7 +7309,7 @@ local monster_dungeon_armor = {
["monster_base"]=20036,
["is_boss"]=2,
["hp"]=1148710000,
- ["atk"]=8530000,
+ ["atk"]=6080000,
["atk_times"]=4,
["hurt_skill"]={
30103,
@@ -7328,7 +7328,7 @@ local monster_dungeon_armor = {
[55107]={
["monster_base"]=10065,
["hp"]=205490000,
- ["atk"]=6970000,
+ ["atk"]=3950000,
["atk_times"]=3,
["hurt_skill"]={
20187,
@@ -7340,7 +7340,7 @@ local monster_dungeon_armor = {
[55207]={
["monster_base"]=10008,
["hp"]=298160000,
- ["atk"]=7480000,
+ ["atk"]=4390000,
["atk_times"]=2,
["hurt_skill"]={
20022,
@@ -7352,7 +7352,7 @@ local monster_dungeon_armor = {
[55307]={
["monster_base"]=10024,
["hp"]=372560000,
- ["atk"]=7700000,
+ ["atk"]=4530000,
["atk_times"]=3,
["hurt_skill"]={
20067,
@@ -7364,7 +7364,7 @@ local monster_dungeon_armor = {
[55407]={
["monster_base"]=10038,
["hp"]=391500000,
- ["atk"]=8680000,
+ ["atk"]=5410000,
["atk_times"]=3,
["hurt_skill"]={
20109,
@@ -7377,7 +7377,7 @@ local monster_dungeon_armor = {
["monster_base"]=30020,
["is_boss"]=1,
["hp"]=722740000,
- ["atk"]=8330000,
+ ["atk"]=5790000,
["atk_times"]=4,
["hurt_skill"]={
40033,
@@ -7393,7 +7393,7 @@ local monster_dungeon_armor = {
[55607]={
["monster_base"]=10048,
["hp"]=482700000,
- ["atk"]=8890000,
+ ["atk"]=5690000,
["atk_times"]=3,
["hurt_skill"]={
20139,
@@ -7405,7 +7405,7 @@ local monster_dungeon_armor = {
[55707]={
["monster_base"]=10023,
["hp"]=507910000,
- ["atk"]=8550000,
+ ["atk"]=5800000,
["atk_times"]=3,
["hurt_skill"]={
20064,
@@ -7417,7 +7417,7 @@ local monster_dungeon_armor = {
[55807]={
["monster_base"]=10017,
["hp"]=593840000,
- ["atk"]=8800000,
+ ["atk"]=5780000,
["atk_times"]=3,
["hurt_skill"]={
20046,
@@ -7429,7 +7429,7 @@ local monster_dungeon_armor = {
[55907]={
["monster_base"]=10041,
["hp"]=681920000,
- ["atk"]=9230000,
+ ["atk"]=6080000,
["atk_times"]=3,
["hurt_skill"]={
20118,
@@ -7442,7 +7442,7 @@ local monster_dungeon_armor = {
["monster_base"]=20018,
["is_boss"]=2,
["hp"]=1148710000,
- ["atk"]=8530000,
+ ["atk"]=6080000,
["atk_times"]=4,
["hurt_skill"]={
30052,
@@ -7461,7 +7461,7 @@ local monster_dungeon_armor = {
[56107]={
["monster_base"]=10024,
["hp"]=205490000,
- ["atk"]=6970000,
+ ["atk"]=3950000,
["atk_times"]=3,
["hurt_skill"]={
20067,
@@ -7473,7 +7473,7 @@ local monster_dungeon_armor = {
[56207]={
["monster_base"]=10006,
["hp"]=298160000,
- ["atk"]=7480000,
+ ["atk"]=4390000,
["atk_times"]=2,
["hurt_skill"]={
20016,
@@ -7485,7 +7485,7 @@ local monster_dungeon_armor = {
[56307]={
["monster_base"]=10040,
["hp"]=372560000,
- ["atk"]=7700000,
+ ["atk"]=4530000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -7497,7 +7497,7 @@ local monster_dungeon_armor = {
[56407]={
["monster_base"]=10061,
["hp"]=391500000,
- ["atk"]=8680000,
+ ["atk"]=5410000,
["atk_times"]=3,
["hurt_skill"]={
20178,
@@ -7510,7 +7510,7 @@ local monster_dungeon_armor = {
["monster_base"]=20005,
["is_boss"]=1,
["hp"]=722740000,
- ["atk"]=8330000,
+ ["atk"]=5790000,
["atk_times"]=4,
["hurt_skill"]={
30013,
@@ -7528,7 +7528,7 @@ local monster_dungeon_armor = {
[56607]={
["monster_base"]=10009,
["hp"]=482700000,
- ["atk"]=8890000,
+ ["atk"]=5690000,
["atk_times"]=3,
["hurt_skill"]={
20025,
@@ -7540,7 +7540,7 @@ local monster_dungeon_armor = {
[56707]={
["monster_base"]=10015,
["hp"]=507910000,
- ["atk"]=8550000,
+ ["atk"]=5800000,
["atk_times"]=3,
["hurt_skill"]={
20040,
@@ -7552,7 +7552,7 @@ local monster_dungeon_armor = {
[56807]={
["monster_base"]=10018,
["hp"]=593840000,
- ["atk"]=8800000,
+ ["atk"]=5780000,
["atk_times"]=3,
["hurt_skill"]={
20049,
@@ -7564,7 +7564,7 @@ local monster_dungeon_armor = {
[56907]={
["monster_base"]=10040,
["hp"]=681920000,
- ["atk"]=9230000,
+ ["atk"]=6080000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -7577,7 +7577,7 @@ local monster_dungeon_armor = {
["monster_base"]=20025,
["is_boss"]=2,
["hp"]=1148710000,
- ["atk"]=8530000,
+ ["atk"]=6080000,
["atk_times"]=4,
["hurt_skill"]={
30073,
@@ -7595,7 +7595,7 @@ local monster_dungeon_armor = {
[57107]={
["monster_base"]=10013,
["hp"]=205490000,
- ["atk"]=6970000,
+ ["atk"]=3950000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -7607,7 +7607,7 @@ local monster_dungeon_armor = {
[57207]={
["monster_base"]=10060,
["hp"]=298160000,
- ["atk"]=7480000,
+ ["atk"]=4390000,
["atk_times"]=3,
["hurt_skill"]={
20175,
@@ -7619,7 +7619,7 @@ local monster_dungeon_armor = {
[57307]={
["monster_base"]=10019,
["hp"]=372560000,
- ["atk"]=7700000,
+ ["atk"]=4530000,
["atk_times"]=3,
["hurt_skill"]={
20052,
@@ -7631,7 +7631,7 @@ local monster_dungeon_armor = {
[57407]={
["monster_base"]=10004,
["hp"]=391500000,
- ["atk"]=8680000,
+ ["atk"]=5410000,
["atk_times"]=2,
["hurt_skill"]={
20010,
@@ -7644,7 +7644,7 @@ local monster_dungeon_armor = {
["monster_base"]=20012,
["is_boss"]=1,
["hp"]=722740000,
- ["atk"]=8330000,
+ ["atk"]=5790000,
["atk_times"]=4,
["hurt_skill"]={
30034,
@@ -7659,7 +7659,7 @@ local monster_dungeon_armor = {
[57607]={
["monster_base"]=10061,
["hp"]=482700000,
- ["atk"]=8890000,
+ ["atk"]=5690000,
["atk_times"]=3,
["hurt_skill"]={
20178,
@@ -7671,7 +7671,7 @@ local monster_dungeon_armor = {
[57707]={
["monster_base"]=10046,
["hp"]=507910000,
- ["atk"]=8550000,
+ ["atk"]=5800000,
["atk_times"]=3,
["hurt_skill"]={
20133,
@@ -7683,7 +7683,7 @@ local monster_dungeon_armor = {
[57807]={
["monster_base"]=10039,
["hp"]=593840000,
- ["atk"]=8800000,
+ ["atk"]=5780000,
["atk_times"]=3,
["hurt_skill"]={
20112,
@@ -7695,7 +7695,7 @@ local monster_dungeon_armor = {
[57907]={
["monster_base"]=10027,
["hp"]=681920000,
- ["atk"]=9230000,
+ ["atk"]=6080000,
["atk_times"]=3,
["hurt_skill"]={
20076,
@@ -7708,7 +7708,7 @@ local monster_dungeon_armor = {
["monster_base"]=20019,
["is_boss"]=2,
["hp"]=1148710000,
- ["atk"]=8530000,
+ ["atk"]=6080000,
["atk_times"]=4,
["hurt_skill"]={
30055,
@@ -7727,7 +7727,7 @@ local monster_dungeon_armor = {
[58107]={
["monster_base"]=10037,
["hp"]=205490000,
- ["atk"]=6970000,
+ ["atk"]=3950000,
["atk_times"]=3,
["hurt_skill"]={
20106,
@@ -7739,7 +7739,7 @@ local monster_dungeon_armor = {
[58207]={
["monster_base"]=10034,
["hp"]=298160000,
- ["atk"]=7480000,
+ ["atk"]=4390000,
["atk_times"]=3,
["hurt_skill"]={
20097,
@@ -7751,7 +7751,7 @@ local monster_dungeon_armor = {
[58307]={
["monster_base"]=10022,
["hp"]=372560000,
- ["atk"]=7700000,
+ ["atk"]=4530000,
["atk_times"]=3,
["hurt_skill"]={
20061,
@@ -7763,7 +7763,7 @@ local monster_dungeon_armor = {
[58407]={
["monster_base"]=10029,
["hp"]=391500000,
- ["atk"]=8680000,
+ ["atk"]=5410000,
["atk_times"]=3,
["hurt_skill"]={
20082,
@@ -7776,7 +7776,7 @@ local monster_dungeon_armor = {
["monster_base"]=20015,
["is_boss"]=1,
["hp"]=722740000,
- ["atk"]=8330000,
+ ["atk"]=5790000,
["atk_times"]=4,
["hurt_skill"]={
30043,
@@ -7794,7 +7794,7 @@ local monster_dungeon_armor = {
[58607]={
["monster_base"]=10017,
["hp"]=482700000,
- ["atk"]=8890000,
+ ["atk"]=5690000,
["atk_times"]=3,
["hurt_skill"]={
20046,
@@ -7806,7 +7806,7 @@ local monster_dungeon_armor = {
[58707]={
["monster_base"]=10065,
["hp"]=507910000,
- ["atk"]=8550000,
+ ["atk"]=5800000,
["atk_times"]=3,
["hurt_skill"]={
20187,
@@ -7818,7 +7818,7 @@ local monster_dungeon_armor = {
[58807]={
["monster_base"]=10016,
["hp"]=593840000,
- ["atk"]=8800000,
+ ["atk"]=5780000,
["atk_times"]=3,
["hurt_skill"]={
20043,
@@ -7830,7 +7830,7 @@ local monster_dungeon_armor = {
[58907]={
["monster_base"]=10064,
["hp"]=681920000,
- ["atk"]=9230000,
+ ["atk"]=6080000,
["atk_times"]=3,
["hurt_skill"]={
20190,
@@ -7843,7 +7843,7 @@ local monster_dungeon_armor = {
["monster_base"]=20024,
["is_boss"]=2,
["hp"]=1148710000,
- ["atk"]=8530000,
+ ["atk"]=6080000,
["atk_times"]=4,
["hurt_skill"]={
30070,
@@ -7862,7 +7862,7 @@ local monster_dungeon_armor = {
[59107]={
["monster_base"]=10022,
["hp"]=205490000,
- ["atk"]=6970000,
+ ["atk"]=3950000,
["atk_times"]=3,
["hurt_skill"]={
20061,
@@ -7874,7 +7874,7 @@ local monster_dungeon_armor = {
[59207]={
["monster_base"]=10028,
["hp"]=298160000,
- ["atk"]=7480000,
+ ["atk"]=4390000,
["atk_times"]=3,
["hurt_skill"]={
20079,
@@ -7886,7 +7886,7 @@ local monster_dungeon_armor = {
[59307]={
["monster_base"]=10006,
["hp"]=372560000,
- ["atk"]=7700000,
+ ["atk"]=4530000,
["atk_times"]=2,
["hurt_skill"]={
20016,
@@ -7898,7 +7898,7 @@ local monster_dungeon_armor = {
[59407]={
["monster_base"]=10041,
["hp"]=391500000,
- ["atk"]=8680000,
+ ["atk"]=5410000,
["atk_times"]=3,
["hurt_skill"]={
20118,
@@ -7911,7 +7911,7 @@ local monster_dungeon_armor = {
["monster_base"]=20002,
["is_boss"]=1,
["hp"]=722740000,
- ["atk"]=8330000,
+ ["atk"]=5790000,
["atk_times"]=4,
["hurt_skill"]={
30004,
@@ -7926,7 +7926,7 @@ local monster_dungeon_armor = {
[59607]={
["monster_base"]=10040,
["hp"]=482700000,
- ["atk"]=8890000,
+ ["atk"]=5690000,
["atk_times"]=3,
["hurt_skill"]={
20115,
@@ -7938,7 +7938,7 @@ local monster_dungeon_armor = {
[59707]={
["monster_base"]=10052,
["hp"]=507910000,
- ["atk"]=8550000,
+ ["atk"]=5800000,
["atk_times"]=3,
["hurt_skill"]={
20151,
@@ -7950,7 +7950,7 @@ local monster_dungeon_armor = {
[59807]={
["monster_base"]=10017,
["hp"]=593840000,
- ["atk"]=8800000,
+ ["atk"]=5780000,
["atk_times"]=3,
["hurt_skill"]={
20046,
@@ -7962,7 +7962,7 @@ local monster_dungeon_armor = {
[59907]={
["monster_base"]=10064,
["hp"]=681920000,
- ["atk"]=9230000,
+ ["atk"]=6080000,
["atk_times"]=3,
["hurt_skill"]={
20190,
@@ -7975,7 +7975,7 @@ local monster_dungeon_armor = {
["monster_base"]=20031,
["is_boss"]=2,
["hp"]=1148710000,
- ["atk"]=8530000,
+ ["atk"]=6080000,
["atk_times"]=4,
["hurt_skill"]={
30091,
diff --git a/lua/app/config/monster_dungeon_equip.lua b/lua/app/config/monster_dungeon_equip.lua
index c3123cce..ec959e5b 100644
--- a/lua/app/config/monster_dungeon_equip.lua
+++ b/lua/app/config/monster_dungeon_equip.lua
@@ -2,7 +2,7 @@ local monster_dungeon_equip = {
[106]={
["monster_base"]=10056,
["hp"]=76930000,
- ["atk"]=1600000,
+ ["atk"]=1390000,
["atk_times"]=3,
["hurt_skill"]={
20163,
@@ -17,7 +17,7 @@ local monster_dungeon_equip = {
[206]={
["monster_base"]=10045,
["hp"]=93400000,
- ["atk"]=2150000,
+ ["atk"]=1930000,
["atk_times"]=3,
["hurt_skill"]={
20130,
@@ -32,7 +32,7 @@ local monster_dungeon_equip = {
[306]={
["monster_base"]=10028,
["hp"]=153020000,
- ["atk"]=2260000,
+ ["atk"]=2140000,
["atk_times"]=3,
["hurt_skill"]={
20079,
@@ -47,7 +47,7 @@ local monster_dungeon_equip = {
[406]={
["monster_base"]=10003,
["hp"]=203320000,
- ["atk"]=2320000,
+ ["atk"]=2220000,
["atk_times"]=2,
["hurt_skill"]={
20007,
@@ -63,7 +63,7 @@ local monster_dungeon_equip = {
["monster_base"]=20041,
["is_boss"]=2,
["hp"]=386900000,
- ["atk"]=2400000,
+ ["atk"]=2260000,
["atk_times"]=4,
["hurt_skill"]={
30126,
@@ -83,7 +83,7 @@ local monster_dungeon_equip = {
[606]={
["monster_base"]=10060,
["hp"]=85320000,
- ["atk"]=1810000,
+ ["atk"]=1540000,
["atk_times"]=3,
["hurt_skill"]={
20175,
@@ -98,7 +98,7 @@ local monster_dungeon_equip = {
[706]={
["monster_base"]=10055,
["hp"]=103120000,
- ["atk"]=2400000,
+ ["atk"]=2150000,
["atk_times"]=3,
["hurt_skill"]={
20160,
@@ -113,7 +113,7 @@ local monster_dungeon_equip = {
[806]={
["monster_base"]=10027,
["hp"]=168890000,
- ["atk"]=2540000,
+ ["atk"]=2380000,
["atk_times"]=3,
["hurt_skill"]={
20076,
@@ -128,7 +128,7 @@ local monster_dungeon_equip = {
[906]={
["monster_base"]=10064,
["hp"]=224600000,
- ["atk"]=2590000,
+ ["atk"]=2470000,
["atk_times"]=3,
["hurt_skill"]={
20190,
@@ -144,7 +144,7 @@ local monster_dungeon_equip = {
["monster_base"]=20040,
["is_boss"]=2,
["hp"]=426150000,
- ["atk"]=2650000,
+ ["atk"]=2520000,
["atk_times"]=4,
["hurt_skill"]={
30114,
@@ -163,7 +163,7 @@ local monster_dungeon_equip = {
[1106]={
["monster_base"]=10015,
["hp"]=93300000,
- ["atk"]=2000000,
+ ["atk"]=1680000,
["atk_times"]=3,
["hurt_skill"]={
20040,
@@ -178,7 +178,7 @@ local monster_dungeon_equip = {
[1206]={
["monster_base"]=10025,
["hp"]=112820000,
- ["atk"]=2670000,
+ ["atk"]=2340000,
["atk_times"]=3,
["hurt_skill"]={
20070,
@@ -193,7 +193,7 @@ local monster_dungeon_equip = {
[1306]={
["monster_base"]=10030,
["hp"]=191790000,
- ["atk"]=2910000,
+ ["atk"]=2590000,
["atk_times"]=3,
["hurt_skill"]={
20085,
@@ -208,7 +208,7 @@ local monster_dungeon_equip = {
[1406]={
["monster_base"]=10018,
["hp"]=255070000,
- ["atk"]=2990000,
+ ["atk"]=2690000,
["atk_times"]=3,
["hurt_skill"]={
20049,
@@ -224,7 +224,7 @@ local monster_dungeon_equip = {
["monster_base"]=20039,
["is_boss"]=2,
["hp"]=494490000,
- ["atk"]=3100000,
+ ["atk"]=2740000,
["atk_times"]=4,
["hurt_skill"]={
30117,
@@ -243,7 +243,7 @@ local monster_dungeon_equip = {
[1606]={
["monster_base"]=10004,
["hp"]=119700000,
- ["atk"]=2670000,
+ ["atk"]=1830000,
["atk_times"]=2,
["hurt_skill"]={
20010,
@@ -258,7 +258,7 @@ local monster_dungeon_equip = {
[1706]={
["monster_base"]=10049,
["hp"]=143630000,
- ["atk"]=3500000,
+ ["atk"]=2540000,
["atk_times"]=3,
["hurt_skill"]={
20142,
@@ -273,7 +273,7 @@ local monster_dungeon_equip = {
[1806]={
["monster_base"]=10037,
["hp"]=235050000,
- ["atk"]=3660000,
+ ["atk"]=2810000,
["atk_times"]=3,
["hurt_skill"]={
20106,
@@ -288,7 +288,7 @@ local monster_dungeon_equip = {
[1906]={
["monster_base"]=10016,
["hp"]=312870000,
- ["atk"]=3760000,
+ ["atk"]=2920000,
["atk_times"]=3,
["hurt_skill"]={
20043,
@@ -304,7 +304,7 @@ local monster_dungeon_equip = {
["monster_base"]=20043,
["is_boss"]=2,
["hp"]=566760000,
- ["atk"]=3630000,
+ ["atk"]=2980000,
["atk_times"]=4,
["hurt_skill"]={
30120,
@@ -324,7 +324,7 @@ local monster_dungeon_equip = {
[2106]={
["monster_base"]=10022,
["hp"]=136880000,
- ["atk"]=3150000,
+ ["atk"]=2010000,
["atk_times"]=3,
["hurt_skill"]={
20061,
@@ -339,7 +339,7 @@ local monster_dungeon_equip = {
[2206]={
["monster_base"]=10032,
["hp"]=163040000,
- ["atk"]=4110000,
+ ["atk"]=2780000,
["atk_times"]=3,
["hurt_skill"]={
20091,
@@ -354,7 +354,7 @@ local monster_dungeon_equip = {
[2306]={
["monster_base"]=10013,
["hp"]=267170000,
- ["atk"]=4270000,
+ ["atk"]=3070000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -369,7 +369,7 @@ local monster_dungeon_equip = {
[2406]={
["monster_base"]=10001,
["hp"]=355450000,
- ["atk"]=4410000,
+ ["atk"]=3200000,
["atk_times"]=2,
["hurt_skill"]={
20001,
@@ -385,7 +385,7 @@ local monster_dungeon_equip = {
["monster_base"]=20042,
["is_boss"]=2,
["hp"]=643710000,
- ["atk"]=4220000,
+ ["atk"]=3260000,
["atk_times"]=4,
["hurt_skill"]={
30123,
@@ -404,7 +404,7 @@ local monster_dungeon_equip = {
[2606]={
["monster_base"]=10045,
["hp"]=147550000,
- ["atk"]=3510000,
+ ["atk"]=2190000,
["atk_times"]=3,
["hurt_skill"]={
20130,
@@ -419,7 +419,7 @@ local monster_dungeon_equip = {
[2706]={
["monster_base"]=10056,
["hp"]=175200000,
- ["atk"]=4510000,
+ ["atk"]=3030000,
["atk_times"]=3,
["hurt_skill"]={
20163,
@@ -434,7 +434,7 @@ local monster_dungeon_equip = {
[2806]={
["monster_base"]=10003,
["hp"]=287270000,
- ["atk"]=4700000,
+ ["atk"]=3340000,
["atk_times"]=2,
["hurt_skill"]={
20007,
@@ -449,7 +449,7 @@ local monster_dungeon_equip = {
[2906]={
["monster_base"]=10028,
["hp"]=382140000,
- ["atk"]=4860000,
+ ["atk"]=3490000,
["atk_times"]=3,
["hurt_skill"]={
20079,
@@ -465,7 +465,7 @@ local monster_dungeon_equip = {
["monster_base"]=20041,
["is_boss"]=2,
["hp"]=691660000,
- ["atk"]=4620000,
+ ["atk"]=3560000,
["atk_times"]=4,
["hurt_skill"]={
30126,
@@ -485,7 +485,7 @@ local monster_dungeon_equip = {
[3106]={
["monster_base"]=10052,
["hp"]=161570000,
- ["atk"]=3940000,
+ ["atk"]=2380000,
["atk_times"]=3,
["hurt_skill"]={
20151,
@@ -500,7 +500,7 @@ local monster_dungeon_equip = {
[3206]={
["monster_base"]=10062,
["hp"]=191650000,
- ["atk"]=5040000,
+ ["atk"]=3300000,
["atk_times"]=3,
["hurt_skill"]={
20181,
@@ -515,7 +515,7 @@ local monster_dungeon_equip = {
[3306]={
["monster_base"]=10036,
["hp"]=313710000,
- ["atk"]=5250000,
+ ["atk"]=3620000,
["atk_times"]=3,
["hurt_skill"]={
20103,
@@ -530,7 +530,7 @@ local monster_dungeon_equip = {
[3406]={
["monster_base"]=10061,
["hp"]=417370000,
- ["atk"]=5400000,
+ ["atk"]=3790000,
["atk_times"]=3,
["hurt_skill"]={
20178,
@@ -546,7 +546,7 @@ local monster_dungeon_equip = {
["monster_base"]=20040,
["is_boss"]=2,
["hp"]=754850000,
- ["atk"]=5120000,
+ ["atk"]=3870000,
["atk_times"]=4,
["hurt_skill"]={
30129,
@@ -565,7 +565,7 @@ local monster_dungeon_equip = {
[3606]={
["monster_base"]=10030,
["hp"]=175230000,
- ["atk"]=4360000,
+ ["atk"]=2580000,
["atk_times"]=3,
["hurt_skill"]={
20085,
@@ -580,7 +580,7 @@ local monster_dungeon_equip = {
[3706]={
["monster_base"]=10015,
["hp"]=207360000,
- ["atk"]=5570000,
+ ["atk"]=3560000,
["atk_times"]=3,
["hurt_skill"]={
20040,
@@ -595,7 +595,7 @@ local monster_dungeon_equip = {
[3806]={
["monster_base"]=10025,
["hp"]=338580000,
- ["atk"]=5780000,
+ ["atk"]=3900000,
["atk_times"]=3,
["hurt_skill"]={
20070,
@@ -610,7 +610,7 @@ local monster_dungeon_equip = {
[3906]={
["monster_base"]=10034,
["hp"]=450950000,
- ["atk"]=5930000,
+ ["atk"]=4090000,
["atk_times"]=3,
["hurt_skill"]={
20097,
@@ -626,7 +626,7 @@ local monster_dungeon_equip = {
["monster_base"]=20039,
["is_boss"]=2,
["hp"]=814970000,
- ["atk"]=5600000,
+ ["atk"]=4170000,
["atk_times"]=4,
["hurt_skill"]={
30117,
@@ -645,7 +645,7 @@ local monster_dungeon_equip = {
[4106]={
["monster_base"]=10054,
["hp"]=182360000,
- ["atk"]=4590000,
+ ["atk"]=2660000,
["atk_times"]=3,
["hurt_skill"]={
20157,
@@ -660,7 +660,7 @@ local monster_dungeon_equip = {
[4206]={
["monster_base"]=10037,
["hp"]=215460000,
- ["atk"]=5830000,
+ ["atk"]=3660000,
["atk_times"]=3,
["hurt_skill"]={
20106,
@@ -675,7 +675,7 @@ local monster_dungeon_equip = {
[4306]={
["monster_base"]=10012,
["hp"]=351510000,
- ["atk"]=6040000,
+ ["atk"]=4010000,
["atk_times"]=3,
["hurt_skill"]={
20031,
@@ -690,7 +690,7 @@ local monster_dungeon_equip = {
[4406]={
["monster_base"]=10049,
["hp"]=468340000,
- ["atk"]=6220000,
+ ["atk"]=4210000,
["atk_times"]=3,
["hurt_skill"]={
20142,
@@ -706,7 +706,7 @@ local monster_dungeon_equip = {
["monster_base"]=20043,
["is_boss"]=2,
["hp"]=846340000,
- ["atk"]=5860000,
+ ["atk"]=4290000,
["atk_times"]=4,
["hurt_skill"]={
30120,
@@ -726,7 +726,7 @@ local monster_dungeon_equip = {
[4606]={
["monster_base"]=10042,
["hp"]=187110000,
- ["atk"]=4750000,
+ ["atk"]=2740000,
["atk_times"]=3,
["hurt_skill"]={
20121,
@@ -741,7 +741,7 @@ local monster_dungeon_equip = {
[4706]={
["monster_base"]=10026,
["hp"]=220970000,
- ["atk"]=6040000,
+ ["atk"]=3780000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -756,7 +756,7 @@ local monster_dungeon_equip = {
[4806]={
["monster_base"]=10019,
["hp"]=360430000,
- ["atk"]=6240000,
+ ["atk"]=4140000,
["atk_times"]=3,
["hurt_skill"]={
20052,
@@ -771,7 +771,7 @@ local monster_dungeon_equip = {
[4906]={
["monster_base"]=10001,
["hp"]=480060000,
- ["atk"]=6450000,
+ ["atk"]=4340000,
["atk_times"]=2,
["hurt_skill"]={
20001,
@@ -787,7 +787,7 @@ local monster_dungeon_equip = {
["monster_base"]=20042,
["is_boss"]=2,
["hp"]=867510000,
- ["atk"]=6040000,
+ ["atk"]=4430000,
["atk_times"]=4,
["hurt_skill"]={
30132,
@@ -806,7 +806,7 @@ local monster_dungeon_equip = {
[5106]={
["monster_base"]=10045,
["hp"]=200880000,
- ["atk"]=5180000,
+ ["atk"]=2910000,
["atk_times"]=3,
["hurt_skill"]={
20130,
@@ -821,7 +821,7 @@ local monster_dungeon_equip = {
[5206]={
["monster_base"]=10056,
["hp"]=236460000,
- ["atk"]=6550000,
+ ["atk"]=4010000,
["atk_times"]=3,
["hurt_skill"]={
20163,
@@ -836,7 +836,7 @@ local monster_dungeon_equip = {
[5306]={
["monster_base"]=10003,
["hp"]=385650000,
- ["atk"]=6780000,
+ ["atk"]=4400000,
["atk_times"]=2,
["hurt_skill"]={
20007,
@@ -851,7 +851,7 @@ local monster_dungeon_equip = {
[5406]={
["monster_base"]=10028,
["hp"]=513230000,
- ["atk"]=6990000,
+ ["atk"]=4600000,
["atk_times"]=3,
["hurt_skill"]={
20079,
@@ -867,7 +867,7 @@ local monster_dungeon_equip = {
["monster_base"]=20041,
["is_boss"]=2,
["hp"]=927400000,
- ["atk"]=6550000,
+ ["atk"]=4690000,
["atk_times"]=4,
["hurt_skill"]={
30126,
@@ -887,7 +887,7 @@ local monster_dungeon_equip = {
[5606]={
["monster_base"]=10029,
["hp"]=202710000,
- ["atk"]=5270000,
+ ["atk"]=2990000,
["atk_times"]=3,
["hurt_skill"]={
20082,
@@ -902,7 +902,7 @@ local monster_dungeon_equip = {
[5706]={
["monster_base"]=10055,
["hp"]=238240000,
- ["atk"]=6650000,
+ ["atk"]=4130000,
["atk_times"]=3,
["hurt_skill"]={
20160,
@@ -917,7 +917,7 @@ local monster_dungeon_equip = {
[5806]={
["monster_base"]=10051,
["hp"]=388530000,
- ["atk"]=6880000,
+ ["atk"]=4530000,
["atk_times"]=3,
["hurt_skill"]={
20148,
@@ -932,7 +932,7 @@ local monster_dungeon_equip = {
[5906]={
["monster_base"]=10064,
["hp"]=517080000,
- ["atk"]=7080000,
+ ["atk"]=4730000,
["atk_times"]=3,
["hurt_skill"]={
20190,
@@ -948,7 +948,7 @@ local monster_dungeon_equip = {
["monster_base"]=20040,
["is_boss"]=2,
["hp"]=933980000,
- ["atk"]=6630000,
+ ["atk"]=4820000,
["atk_times"]=4,
["hurt_skill"]={
30135,
@@ -967,7 +967,7 @@ local monster_dungeon_equip = {
[6106]={
["monster_base"]=10015,
["hp"]=216480000,
- ["atk"]=5750000,
+ ["atk"]=3180000,
["atk_times"]=3,
["hurt_skill"]={
20040,
@@ -982,7 +982,7 @@ local monster_dungeon_equip = {
[6206]={
["monster_base"]=10025,
["hp"]=254320000,
- ["atk"]=7200000,
+ ["atk"]=4380000,
["atk_times"]=3,
["hurt_skill"]={
20070,
@@ -997,7 +997,7 @@ local monster_dungeon_equip = {
[6306]={
["monster_base"]=10021,
["hp"]=415070000,
- ["atk"]=7450000,
+ ["atk"]=4810000,
["atk_times"]=3,
["hurt_skill"]={
20058,
@@ -1012,7 +1012,7 @@ local monster_dungeon_equip = {
[6406]={
["monster_base"]=10034,
["hp"]=552120000,
- ["atk"]=7670000,
+ ["atk"]=5030000,
["atk_times"]=3,
["hurt_skill"]={
20097,
@@ -1028,7 +1028,7 @@ local monster_dungeon_equip = {
["monster_base"]=20039,
["is_boss"]=2,
["hp"]=996810000,
- ["atk"]=7150000,
+ ["atk"]=5130000,
["atk_times"]=4,
["hurt_skill"]={
30117,
@@ -1047,7 +1047,7 @@ local monster_dungeon_equip = {
[6606]={
["monster_base"]=10049,
["hp"]=221080000,
- ["atk"]=5900000,
+ ["atk"]=3280000,
["atk_times"]=3,
["hurt_skill"]={
20142,
@@ -1062,7 +1062,7 @@ local monster_dungeon_equip = {
[6706]={
["monster_base"]=10006,
["hp"]=259330000,
- ["atk"]=7400000,
+ ["atk"]=4500000,
["atk_times"]=2,
["hurt_skill"]={
20016,
@@ -1077,7 +1077,7 @@ local monster_dungeon_equip = {
[6806]={
["monster_base"]=10054,
["hp"]=423100000,
- ["atk"]=7640000,
+ ["atk"]=4950000,
["atk_times"]=3,
["hurt_skill"]={
20157,
@@ -1092,7 +1092,7 @@ local monster_dungeon_equip = {
[6906]={
["monster_base"]=10024,
["hp"]=562720000,
- ["atk"]=7870000,
+ ["atk"]=5180000,
["atk_times"]=3,
["hurt_skill"]={
20067,
@@ -1108,7 +1108,7 @@ local monster_dungeon_equip = {
["monster_base"]=20043,
["is_boss"]=2,
["hp"]=1015810000,
- ["atk"]=7320000,
+ ["atk"]=5280000,
["atk_times"]=4,
["hurt_skill"]={
30120,
@@ -1128,7 +1128,7 @@ local monster_dungeon_equip = {
[7106]={
["monster_base"]=10019,
["hp"]=225650000,
- ["atk"]=6080000,
+ ["atk"]=3370000,
["atk_times"]=3,
["hurt_skill"]={
20052,
@@ -1143,7 +1143,7 @@ local monster_dungeon_equip = {
[7206]={
["monster_base"]=10035,
["hp"]=264660000,
- ["atk"]=7590000,
+ ["atk"]=4630000,
["atk_times"]=3,
["hurt_skill"]={
20100,
@@ -1158,7 +1158,7 @@ local monster_dungeon_equip = {
[7306]={
["monster_base"]=10026,
["hp"]=431730000,
- ["atk"]=7840000,
+ ["atk"]=5090000,
["atk_times"]=3,
["hurt_skill"]={
20073,
@@ -1173,7 +1173,7 @@ local monster_dungeon_equip = {
[7406]={
["monster_base"]=10041,
["hp"]=574040000,
- ["atk"]=8090000,
+ ["atk"]=5330000,
["atk_times"]=3,
["hurt_skill"]={
20118,
@@ -1189,7 +1189,7 @@ local monster_dungeon_equip = {
["monster_base"]=20042,
["is_boss"]=2,
["hp"]=1036280000,
- ["atk"]=7520000,
+ ["atk"]=5440000,
["atk_times"]=4,
["hurt_skill"]={
30138,
@@ -1208,7 +1208,7 @@ local monster_dungeon_equip = {
[7606]={
["monster_base"]=10053,
["hp"]=233950000,
- ["atk"]=6420000,
+ ["atk"]=3470000,
["atk_times"]=3,
["hurt_skill"]={
20154,
@@ -1223,7 +1223,7 @@ local monster_dungeon_equip = {
[7706]={
["monster_base"]=10043,
["hp"]=273880000,
- ["atk"]=8000000,
+ ["atk"]=4760000,
["atk_times"]=3,
["hurt_skill"]={
20124,
@@ -1238,7 +1238,7 @@ local monster_dungeon_equip = {
[7806]={
["monster_base"]=10033,
["hp"]=446810000,
- ["atk"]=8270000,
+ ["atk"]=5230000,
["atk_times"]=3,
["hurt_skill"]={
20094,
@@ -1253,7 +1253,7 @@ local monster_dungeon_equip = {
[7906]={
["monster_base"]=10028,
["hp"]=594050000,
- ["atk"]=8510000,
+ ["atk"]=5480000,
["atk_times"]=3,
["hurt_skill"]={
20079,
@@ -1269,7 +1269,7 @@ local monster_dungeon_equip = {
["monster_base"]=20041,
["is_boss"]=2,
["hp"]=1072430000,
- ["atk"]=7900000,
+ ["atk"]=5590000,
["atk_times"]=4,
["hurt_skill"]={
30126,
@@ -1289,7 +1289,7 @@ local monster_dungeon_equip = {
[8106]={
["monster_base"]=10036,
["hp"]=132000000,
- ["atk"]=990000,
+ ["atk"]=870000,
["atk_times"]=3,
["hurt_skill"]={
20103,
@@ -1304,7 +1304,7 @@ local monster_dungeon_equip = {
[8206]={
["monster_base"]=10017,
["hp"]=284280000,
- ["atk"]=8360000,
+ ["atk"]=4890000,
["atk_times"]=3,
["hurt_skill"]={
20046,
@@ -1319,7 +1319,7 @@ local monster_dungeon_equip = {
[8306]={
["monster_base"]=10023,
["hp"]=463670000,
- ["atk"]=8610000,
+ ["atk"]=5380000,
["atk_times"]=3,
["hurt_skill"]={
20064,
@@ -1334,7 +1334,7 @@ local monster_dungeon_equip = {
[8406]={
["monster_base"]=10051,
["hp"]=616180000,
- ["atk"]=8880000,
+ ["atk"]=5640000,
["atk_times"]=3,
["hurt_skill"]={
20148,
@@ -1350,7 +1350,7 @@ local monster_dungeon_equip = {
["monster_base"]=20040,
["is_boss"]=2,
["hp"]=1112410000,
- ["atk"]=8240000,
+ ["atk"]=5750000,
["atk_times"]=4,
["hurt_skill"]={
30141,
@@ -1369,7 +1369,7 @@ local monster_dungeon_equip = {
[8606]={
["monster_base"]=10021,
["hp"]=251150000,
- ["atk"]=6970000,
+ ["atk"]=3770000,
["atk_times"]=3,
["hurt_skill"]={
20058,
@@ -1384,7 +1384,7 @@ local monster_dungeon_equip = {
[8706]={
["monster_base"]=10034,
["hp"]=293630000,
- ["atk"]=8680000,
+ ["atk"]=5170000,
["atk_times"]=3,
["hurt_skill"]={
20097,
@@ -1399,7 +1399,7 @@ local monster_dungeon_equip = {
[8806]={
["monster_base"]=10030,
["hp"]=478890000,
- ["atk"]=8940000,
+ ["atk"]=5680000,
["atk_times"]=3,
["hurt_skill"]={
20085,
@@ -1414,7 +1414,7 @@ local monster_dungeon_equip = {
[8906]={
["monster_base"]=10018,
["hp"]=636450000,
- ["atk"]=9230000,
+ ["atk"]=5960000,
["atk_times"]=3,
["hurt_skill"]={
20049,
@@ -1430,7 +1430,7 @@ local monster_dungeon_equip = {
["monster_base"]=20039,
["is_boss"]=2,
["hp"]=1148710000,
- ["atk"]=8530000,
+ ["atk"]=6080000,
["atk_times"]=4,
["hurt_skill"]={
30117,
@@ -1449,7 +1449,7 @@ local monster_dungeon_equip = {
[9106]={
["monster_base"]=10016,
["hp"]=261840000,
- ["atk"]=7320000,
+ ["atk"]=3970000,
["atk_times"]=3,
["hurt_skill"]={
20043,
@@ -1464,7 +1464,7 @@ local monster_dungeon_equip = {
[9206]={
["monster_base"]=10054,
["hp"]=305680000,
- ["atk"]=9070000,
+ ["atk"]=5440000,
["atk_times"]=3,
["hurt_skill"]={
20157,
@@ -1479,7 +1479,7 @@ local monster_dungeon_equip = {
[9306]={
["monster_base"]=10006,
["hp"]=498740000,
- ["atk"]=9360000,
+ ["atk"]=5980000,
["atk_times"]=2,
["hurt_skill"]={
20016,
@@ -1494,7 +1494,7 @@ local monster_dungeon_equip = {
[9406]={
["monster_base"]=10020,
["hp"]=662690000,
- ["atk"]=9650000,
+ ["atk"]=6280000,
["atk_times"]=3,
["hurt_skill"]={
20055,
@@ -1510,7 +1510,7 @@ local monster_dungeon_equip = {
["monster_base"]=20043,
["is_boss"]=2,
["hp"]=1196050000,
- ["atk"]=8930000,
+ ["atk"]=6410000,
["atk_times"]=4,
["hurt_skill"]={
30120,
@@ -1530,7 +1530,7 @@ local monster_dungeon_equip = {
[9606]={
["monster_base"]=10031,
["hp"]=270070000,
- ["atk"]=7580000,
+ ["atk"]=4190000,
["atk_times"]=3,
["hurt_skill"]={
20088,
@@ -1545,7 +1545,7 @@ local monster_dungeon_equip = {
[9706]={
["monster_base"]=10035,
["hp"]=315240000,
- ["atk"]=9410000,
+ ["atk"]=5740000,
["atk_times"]=3,
["hurt_skill"]={
20100,
@@ -1560,7 +1560,7 @@ local monster_dungeon_equip = {
[9806]={
["monster_base"]=10019,
["hp"]=514070000,
- ["atk"]=9700000,
+ ["atk"]=6320000,
["atk_times"]=3,
["hurt_skill"]={
20052,
@@ -1575,7 +1575,7 @@ local monster_dungeon_equip = {
[9906]={
["monster_base"]=10013,
["hp"]=682910000,
- ["atk"]=10010000,
+ ["atk"]=6630000,
["atk_times"]=3,
["hurt_skill"]={
20034,
@@ -1591,7 +1591,7 @@ local monster_dungeon_equip = {
["monster_base"]=20042,
["is_boss"]=2,
["hp"]=1232640000,
- ["atk"]=9240000,
+ ["atk"]=6760000,
["atk_times"]=4,
["hurt_skill"]={
30144,
diff --git a/lua/app/config/skill.lua b/lua/app/config/skill.lua
index f5dca686..ba0745f8 100644
--- a/lua/app/config/skill.lua
+++ b/lua/app/config/skill.lua
@@ -1252,7 +1252,7 @@ local skill = {
{
["type"]="stun",
["num"]=0,
- ["ratio"]=10000,
+ ["ratio"]=5000,
["round"]=2
}
},
@@ -3096,8 +3096,8 @@ local skill = {
},
["pvp_effect"]={
{
- ["type"]="shield_rebound_200",
- ["num"]=750,
+ ["type"]="shield_rebound_100",
+ ["num"]=450,
["ratio"]=10000,
["round"]=2
}
@@ -3132,8 +3132,8 @@ local skill = {
},
["pvp_effect"]={
{
- ["type"]="shield_rebound_400",
- ["num"]=750,
+ ["type"]="shield_rebound_200",
+ ["num"]=450,
["ratio"]=10000,
["round"]=2
}
@@ -5417,7 +5417,7 @@ local skill = {
["pvp_effect"]={
{
["type"]="shield_ice",
- ["num"]=750,
+ ["num"]=375,
["ratio"]=10000,
["round"]=2
}
@@ -5442,8 +5442,8 @@ local skill = {
},
["pvp_effect"]={
{
- ["type"]="shield_ice_rebound_400",
- ["num"]=750,
+ ["type"]="shield_ice_rebound_200",
+ ["num"]=375,
["ratio"]=10000,
["round"]=2
}
@@ -6616,7 +6616,7 @@ local skill = {
},
["pvp_effect"]={
{
- ["type"]="shield_rebound_200",
+ ["type"]="shield_rebound_100",
["num"]=333,
["ratio"]=10000,
["round"]=1
@@ -6656,7 +6656,7 @@ local skill = {
},
["pvp_effect"]={
{
- ["type"]="shield_rebound_400",
+ ["type"]="shield_rebound_200",
["num"]=333,
["ratio"]=10000,
["round"]=1
@@ -6877,7 +6877,7 @@ local skill = {
{
["type"]="lethargy",
["num"]=0,
- ["ratio"]=10000,
+ ["ratio"]=5000,
["round"]=2
}
},
diff --git a/lua/app/config/strings/cn/global.lua b/lua/app/config/strings/cn/global.lua
index e5df88e9..c57bdb2e 100644
--- a/lua/app/config/strings/cn/global.lua
+++ b/lua/app/config/strings/cn/global.lua
@@ -362,7 +362,7 @@ local localization_global =
["DUNGEON_WEAPON_DESC_7"] = "攻略",
["DUNGEON_WEAPON_DESC_8"] = "首领攻略",
["DUNGEON_WEAPON_DESC_9"] = "近期通关",
- ["DUNGEON_WEAPON_DESC_10"] = "队伍等级{0}开启",
+ ["DUNGEON_WEAPON_DESC_10"] = "玩家等级{0}开启",
["DUNGEON_WEAPON_DESC_11"] = "通关前一章开启",
["EQUIP_DESC_1"] = "武器",
["EQUIP_DESC_2"] = "防具",
@@ -419,7 +419,7 @@ local localization_global =
["DUNGEON_ARMOR_FUND_2"] = "时空裂隙基金Ⅱ",
["DUNGEON_ARMOR_DESC_15"] = "请先购买本基金",
["DUNGEON_ARMOR_DESC_16"] = "超值",
- ["MOP_UP_DESC_3"] = "足够",
+ ["MOP_UP_DESC_3"] = "不足",
["DUNGEON_ARMOR_DESC_17"] = "本关今日剩余次数:{0}",
["NAVER_SETTING_DESC"] = "Naver",
["EQUIP_DESC_26"] = "4件防具 +{0}:",
diff --git a/lua/app/config/strings/cn/skill_rogue.lua b/lua/app/config/strings/cn/skill_rogue.lua
index 3fbf4ddd..d1454103 100644
--- a/lua/app/config/strings/cn/skill_rogue.lua
+++ b/lua/app/config/strings/cn/skill_rogue.lua
@@ -216,7 +216,7 @@ local skill_rogue = {
["desc"]="Combo:钢铁重击对流血敌人额外造成1次伤害。"
},
[1400104]={
- ["desc"]="钢铁重击附加的眩晕,回合数+1。"
+ ["desc"]="钢铁重击有50%概率附加眩晕效果,2回合。"
},
[1400105]={
["desc"]="钢铁重击附加的灼烧效果,伤害提升,回合数+1。"
@@ -357,7 +357,7 @@ local skill_rogue = {
["desc"]="雷神之锤使用后随机增加一种技能的能量2点。"
},
[2400203]={
- ["desc"]="雷神之锤可随机消除2个元素。"
+ ["desc"]="雷神之锤随机消除元素+2。"
},
[2400204]={
["desc"]="索尔普攻时有10%概率附加虚弱效果,1回合。"
@@ -480,7 +480,7 @@ local skill_rogue = {
["desc"]="美丽梦魇沿X方向可额外消除4格。"
},
[3400204]={
- ["desc"]="美丽梦魇附加的昏睡效果,概率提升到100%。"
+ ["desc"]="美丽梦魇附加的昏睡效果,概率提升到80%。"
},
[3400205]={
["desc"]="Combo:梦魔普攻昏睡敌人将附加禁锢效果,2回合。"
@@ -537,7 +537,7 @@ local skill_rogue = {
["desc"]="霜冻冰晶后为团队附加冰盾效果,2回合。"
},
[4300107]={
- ["desc"]="霜冻冰晶附加的冰盾,可反伤400%。"
+ ["desc"]="霜冻冰晶附加的冰盾,可反伤大量伤害。"
},
[4300200]={
["desc"]="解锁腐败利刃:额外造成一次技能伤害,附加腐败效果,1回合。"
@@ -627,7 +627,7 @@ local skill_rogue = {
["desc"]="护盾术沿+方向可额外消除4格。"
},
[5200105]={
- ["desc"]="护盾术附加的护盾,可反伤200%。"
+ ["desc"]="护盾术附加的护盾,可反伤伤害。"
},
[5200106]={
["desc"]="忍者伦攻击提升15%。"
@@ -645,7 +645,7 @@ local skill_rogue = {
["desc"]="魔法扫帚使用时本次普攻伤害提升15%。"
},
[5300103]={
- ["desc"]="魔法扫帚可附加昏睡效果,2回合。"
+ ["desc"]="魔法扫帚有50%概率附加昏睡效果,2回合。"
},
[5300104]={
["desc"]="魔法扫帚附加的中毒效果,伤害提升。"
diff --git a/lua/app/config/strings/en/global.lua b/lua/app/config/strings/en/global.lua
index 6430b4d5..f8f1ec45 100644
--- a/lua/app/config/strings/en/global.lua
+++ b/lua/app/config/strings/en/global.lua
@@ -362,7 +362,7 @@ local localization_global =
["DUNGEON_WEAPON_DESC_7"] = "Guide",
["DUNGEON_WEAPON_DESC_8"] = "Boss Guide",
["DUNGEON_WEAPON_DESC_9"] = "Recent Clearance",
- ["DUNGEON_WEAPON_DESC_10"] = "Team level required: {0}",
+ ["DUNGEON_WEAPON_DESC_10"] = "Player level required: {0}",
["DUNGEON_WEAPON_DESC_11"] = "Unlocked after clearing the previous chapter.",
["EQUIP_DESC_1"] = "Weapon",
["EQUIP_DESC_2"] = "Armor",
@@ -419,10 +419,11 @@ local localization_global =
["DUNGEON_ARMOR_FUND_2"] = "Time Rift Fund Ⅱ",
["DUNGEON_ARMOR_DESC_15"] = "Please purchase the fund first",
["DUNGEON_ARMOR_DESC_16"] = "Super Value",
- ["MOP_UP_DESC_3"] = "Enough",
+ ["MOP_UP_DESC_3"] = "Insufficient",
["DUNGEON_ARMOR_DESC_17"] = "Stage attempts left today: {0}",
["NAVER_SETTING_DESC"] = "Naver",
["EQUIP_DESC_26"] = "4-pc Armor +{0}:",
+ ["BATTLE_DESC_14"] = "There is an unfinished battle. Do you want to continue?",
}
return localization_global
\ No newline at end of file
diff --git a/lua/app/config/strings/en/skill.lua b/lua/app/config/strings/en/skill.lua
index 379d82b3..c94494a8 100644
--- a/lua/app/config/strings/en/skill.lua
+++ b/lua/app/config/strings/en/skill.lua
@@ -6,7 +6,7 @@ local skill = {
["desc"]="Claymore Cyclone: Deal skill damage multiple times."
},
[1300220]={
- ["desc"]="Flame Punch: Clear 5 grids vertically and deal skill damage once, with a 50% chance to inflict Burn for 2 turns."
+ ["desc"]="Flame Punch: Clear 5 grids vertically and deal skill damage once, with a 50% chance to inflict Burn for 2 turns."
},
[1400120]={
["desc"]="Steel Strike: Change the color of 4 adjacent elements and deal massive skill damage multiple times."
@@ -42,22 +42,22 @@ local skill = {
["desc"]="Moon Chaser: Increase damage and deal significantly skill damage once."
},
[3400220]={
- ["desc"]="Alluring Nightmare: Deal one additional hit of massive skill damage and has a 50% chance to inflict Drowsy that lasts 2 turns."
+ ["desc"]="Alluring Nightmare: Deal one additional hit of massive skill damage and has a 50% chance to inflict Drowsy that lasts 2 turns."
},
[4200120]={
["desc"]="Elemental Link: Clear 3 random elements and deal skill damage once."
},
[4300120]={
- ["desc"]="Frostbite Crystal: Deal one additional hit of skill damage and inflict Cold for 1 turn."
+ ["desc"]="Frostbite Crystal: Deal one additional hit of skill damage and inflict Cold for 1 turn."
},
[4300220]={
- ["desc"]="Corrupt Blade: Deal one additional hit of skill damage and inflict Corrupt for 1 turn."
+ ["desc"]="Corrupt Blade: Deal one additional hit of skill damage and inflict Corrupt for 1 turn."
},
[4400120]={
- ["desc"]="Frost Sword Dance: Clear 3 random elements and deal skill damage once. Inflict Cold for 1 turn."
+ ["desc"]="Frost Sword Dance: Clear 3 random elements and deal skill damage once. Inflict Cold for 1 turn."
},
[4400220]={
- ["desc"]="Pharaoh's Curse: Deal one additional hit of skill damage and inflict Curse that lasts 1 turn."
+ ["desc"]="Pharaoh's Curse: Deal one additional hit of skill damage and inflict Curse that lasts 1 turn."
},
[5200120]={
["desc"]="Shield Art: Apply a shield to the team for 1 turn."
diff --git a/lua/app/config/strings/en/skill_rogue.lua b/lua/app/config/strings/en/skill_rogue.lua
index 2cf6bcd0..13fcd849 100644
--- a/lua/app/config/strings/en/skill_rogue.lua
+++ b/lua/app/config/strings/en/skill_rogue.lua
@@ -357,7 +357,7 @@ local skill_rogue = {
["desc"]="When Mjolnir is used, a random skill energy increases by 2."
},
[2400203]={
- ["desc"]="Mjolnir can clear 2 random elements."
+ ["desc"]="Mjolnir clears 2 more random elements."
},
[2400204]={
["desc"]="Thor's normal attack has a 10% chance of inflicting Weak for 1 turn."
@@ -480,7 +480,7 @@ local skill_rogue = {
["desc"]="Alluring Nightmare can clear additional 4 grids in the X direction."
},
[3400204]={
- ["desc"]="The chance of Drowsy inflicted by Alluring Nightmare increases to 100%."
+ ["desc"]="The chance of Drowsy inflicted by Alluring Nightmare increases to 80%."
},
[3400205]={
["desc"]="Combo: Nightmare's normal attack to Drowsy enemy will inflict Imprison for 2 turns."
diff --git a/lua/app/config/strings/es/global.lua b/lua/app/config/strings/es/global.lua
index d10865c5..7036ca53 100644
--- a/lua/app/config/strings/es/global.lua
+++ b/lua/app/config/strings/es/global.lua
@@ -11,7 +11,7 @@ local localization_global =
["BTN_TEXT_CANCEL"] = "Cancelar",
["BTN_TEXT_OK"] = "Confirmar",
["BATTLE_DESC_1"] = "Quieres salir del combate?",
- ["ITEM_NOT_ENOUGH"] = "Insuficiente {0} ",
+ ["ITEM_NOT_ENOUGH"] = "Insuficiente {0}",
["START_DESC"] = "Iniciar",
["ELEMENT_NAME_1"] = "elemento rojo",
["ELEMENT_NAME_2"] = "elemento dorado",
@@ -362,7 +362,7 @@ local localization_global =
["DUNGEON_WEAPON_DESC_7"] = "Consejo",
["DUNGEON_WEAPON_DESC_8"] = "Guía de Jefe",
["DUNGEON_WEAPON_DESC_9"] = "Fase recién completada",
- ["DUNGEON_WEAPON_DESC_10"] = "Desbloqueado en Nv.{0} del equipo",
+ ["DUNGEON_WEAPON_DESC_10"] = "Desbloqueado en Nv.{0} del jugador",
["DUNGEON_WEAPON_DESC_11"] = "Desbloqueado tras completar el capítulo anterior",
["EQUIP_DESC_1"] = "Arma",
["EQUIP_DESC_2"] = "Armadura",
@@ -419,10 +419,11 @@ local localization_global =
["DUNGEON_ARMOR_FUND_2"] = "Fondo de Grieta de Tiempo Ⅱ",
["DUNGEON_ARMOR_DESC_15"] = "Compra primero el fondo actual",
["DUNGEON_ARMOR_DESC_16"] = "De valor",
- ["MOP_UP_DESC_3"] = "Suficiente",
+ ["MOP_UP_DESC_3"] = "Insuficiente",
["DUNGEON_ARMOR_DESC_17"] = "Quedan {0} chances hoy",
["NAVER_SETTING_DESC"] = "Naver",
["EQUIP_DESC_26"] = "4 armaduras +{0}:",
+ ["BATTLE_DESC_14"] = "Existe una batalla inconclusa. ¿Quieres continuar?",
}
return localization_global
\ No newline at end of file
diff --git a/lua/app/config/strings/es/skill.lua b/lua/app/config/strings/es/skill.lua
index 26a5b398..e0fb2f1a 100644
--- a/lua/app/config/strings/es/skill.lua
+++ b/lua/app/config/strings/es/skill.lua
@@ -6,7 +6,7 @@ local skill = {
["desc"]="Torbellino de Espada: causa varios daños de habilidad extras."
},
[1300220]={
- ["desc"]="Puño Ardoroso: elimina 5 bloques verticalmente, y causa un daño de habilidad, con 50% de chance de agregar efecto de quemadura durante 2 rondas."
+ ["desc"]="Puño Ardoroso: elimina 5 bloques verticalmente, y causa un daño de habilidad, con 50% de chance de aplicar Quemadura durante 2 rondas."
},
[1400120]={
["desc"]="Golpe de Acero: cambia el color de 4 elementos circundantes y causa varios daños de habilidad masivo."
@@ -42,22 +42,22 @@ local skill = {
["desc"]="Danza de Meteoro: aumenta el daño y causa un golpe adicional de enorme daño de habilidad."
},
[3400220]={
- ["desc"]="Pesadilla Hermosa: causa un masivo daño de habilidad adicional, con un 50% de chance de aplicar Dormido durante 2 rondas."
+ ["desc"]="Pesadilla Hermosa: causa un masivo daño de habilidad adicional, con un 50% de chance de aplicar Dormido durante 2 rondas."
},
[4200120]={
["desc"]="Enlace de Elementos: elimina 3 elementos aleatorios y causa un daño de habilidad."
},
[4300120]={
- ["desc"]="Cristal Escarchado: causa un daño de habilidad adicional con efecto de Escarcha durante 1 ronda."
+ ["desc"]="Cristal Escarchado: causa un daño de habilidad adicional con efecto de Escarcha durante 1 ronda."
},
[4300220]={
- ["desc"]="Filo Corrupto: causa un daño de habilidad adicional con efecto de Corrupto durante 1 ronda."
+ ["desc"]="Filo Corrupto: causa un daño de habilidad adicional con efecto de Corrupto durante 1 ronda."
},
[4400120]={
- ["desc"]="Espada de Escarcha: elimina 3 elementos aleatorios, y causa un daño de habilidad con efecto de Escarcha durante 1 ronda."
+ ["desc"]="Espada de Escarcha: elimina 3 elementos aleatorios, y causa un daño de habilidad con efecto de Escarcha durante 1 ronda."
},
[4400220]={
- ["desc"]="Maldición de Faraón: causa un daño de habilidad adicional, con efecto de Maldecido durante 1 ronda."
+ ["desc"]="Maldición de Faraón: causa un daño de habilidad adicional, con efecto de Maldecido durante 1 ronda."
},
[5200120]={
["desc"]="Hechizo Escudo: agrega un escudo al equipo durante 1 ronda."
diff --git a/lua/app/config/strings/es/skill_rogue.lua b/lua/app/config/strings/es/skill_rogue.lua
index 121dc940..cfc9fa33 100644
--- a/lua/app/config/strings/es/skill_rogue.lua
+++ b/lua/app/config/strings/es/skill_rogue.lua
@@ -357,7 +357,7 @@ local skill_rogue = {
["desc"]="Al usar Martillo de Thor, la energía de una habilidad aleatoria aumenta en 2 puntos."
},
[2400203]={
- ["desc"]="Martillo de Thor puede eliminar 2 elementos aleatorios."
+ ["desc"]="Martillo de Thor elimina aleatoriamente +2 elementos extras."
},
[2400204]={
["desc"]="El ataque común de Sol tiene un 10% de chance de aplicar Debilidad durante 1 ronda."
@@ -480,7 +480,7 @@ local skill_rogue = {
["desc"]="Pesadilla Hermosa elimina 4 bloques extras en direcciones de X."
},
[3400204]={
- ["desc"]="Aumenta el chance de Dormido aplicado por Pesadilla Hermosa a 100%."
+ ["desc"]="Aumenta el chance de Dormido aplicado por Pesadilla Hermosa a 80%."
},
[3400205]={
["desc"]="Combo: el ataque común de Íncubo a enemigos Dormidos aplicará Encarcelamiento durante 2 rondas."
diff --git a/lua/app/config/strings/id/global.lua b/lua/app/config/strings/id/global.lua
index fa326f10..47512563 100644
--- a/lua/app/config/strings/id/global.lua
+++ b/lua/app/config/strings/id/global.lua
@@ -362,7 +362,7 @@ local localization_global =
["DUNGEON_WEAPON_DESC_7"] = "Panduan",
["DUNGEON_WEAPON_DESC_8"] = "Panduan Boss",
["DUNGEON_WEAPON_DESC_9"] = "Riwayat Lolos",
- ["DUNGEON_WEAPON_DESC_10"] = "Syarat Level Tim: {0}",
+ ["DUNGEON_WEAPON_DESC_10"] = "Dibuka saat level pemain Lv.{0}",
["DUNGEON_WEAPON_DESC_11"] = "Terbuka setelah menyelesaikan bab sebelumnya.",
["EQUIP_DESC_1"] = "Senjata",
["EQUIP_DESC_2"] = "Armor",
@@ -419,10 +419,11 @@ local localization_global =
["DUNGEON_ARMOR_FUND_2"] = "Dana Celah Waktu Ⅱ",
["DUNGEON_ARMOR_DESC_15"] = "Silakan beli Dana dahulu",
["DUNGEON_ARMOR_DESC_16"] = "Bernilai",
- ["MOP_UP_DESC_3"] = "Mencukupi",
+ ["MOP_UP_DESC_3"] = "Tidak mencukupi",
["DUNGEON_ARMOR_DESC_17"] = "Sisa level hari ini: {0}",
["NAVER_SETTING_DESC"] = "Naver",
["EQUIP_DESC_26"] = "4 buah Armor +{0}:",
+ ["BATTLE_DESC_14"] = "Ada battle yang belum selesai. Lanjutkan?",
}
return localization_global
\ No newline at end of file
diff --git a/lua/app/config/strings/id/skill.lua b/lua/app/config/strings/id/skill.lua
index d836818d..38c1cb39 100644
--- a/lua/app/config/strings/id/skill.lua
+++ b/lua/app/config/strings/id/skill.lua
@@ -6,7 +6,7 @@ local skill = {
["desc"]="Topan Claymore: Memberikan DMG skill beberapa kali."
},
[1300220]={
- ["desc"]="Pukulan Api: Menghapus 5 grid secara vertikal, memberikan DMG skill sekali, dan 50% peluang memberikan Scorch selama 2 giliran."
+ ["desc"]="Pukulan Api: Menghapus 5 grid secara vertikal dan memberikan DMG skill satu kali. Memiliki 50% peluang memberikan efek Scorch selama 2 giliran."
},
[1400120]={
["desc"]="Strike Baja: Ubah warna 4 elemen yang berdekatan dan berikan DMG skill yang besar beberapa kali."
@@ -42,22 +42,22 @@ local skill = {
["desc"]="Pemburu Bulan: Meningkatkan DMG dan memberikan DMG skill yang besar sekali."
},
[3400220]={
- ["desc"]="Nightmare Z: Menyebabkan DMG skill tambahan dalam jumlah besar dengan 50% peluang efek Kantuk selama 2 giliran."
+ ["desc"]="Nightmare Z: Menyebabkan DMG skill tambahan dalam jumlah besar dengan 50% peluang efek Kantuk selama 2 giliran."
},
[4200120]={
["desc"]="Link Elemen: Menghilangkan 3 elemen secara acak dan memberikan DMG skill."
},
[4300120]={
- ["desc"]="Kristal Es: Menyebabkan DMG skill tambahan dengan efek embun beku selama 1 giliran."
+ ["desc"]="Kristal Es: Menyebabkan DMG skill tambahan dengan efek Freeze selama 1 giliran."
},
[4300220]={
- ["desc"]="Tombak Tajam: Menyebabkan satu kali DMG skill tambahan dengan efek DMG selama 1 giliran."
+ ["desc"]="Tombak Tajam: Menyebabkan satu kali DMG skill tambahan dengan efek Korosi selama 1 giliran."
},
[4400120]={
- ["desc"]="Tarian Pedang Frost: Menghapus 3 elemen acak dan memberikan damage skill sekali. Menimbulkan Freeze selama 1 giliran."
+ ["desc"]="Tarian Pedang Frost: Menghapus 3 elemen acak dan memberikan damage skill sekali. Menimbulkan efek Freeze selama 1 giliran."
},
[4400220]={
- ["desc"]="Kutukan Firaun: Menyebakan satu kali DMG skill tambahan dengan efek Kutuk selama 1 giliran."
+ ["desc"]="Kutukan Firaun: Menyebakan satu kali DMG skill tambahan dengan efek Kutuk selama 1 giliran."
},
[5200120]={
["desc"]="Seni Perisai: Terapkan perisai ke tim untuk 1 giliran."
diff --git a/lua/app/config/strings/id/skill_rogue.lua b/lua/app/config/strings/id/skill_rogue.lua
index 94de94e4..efc916ac 100644
--- a/lua/app/config/strings/id/skill_rogue.lua
+++ b/lua/app/config/strings/id/skill_rogue.lua
@@ -357,7 +357,7 @@ local skill_rogue = {
["desc"]="Palu Thor meningkatkan energi satu skill sebesar 2 poin secara acak saat digunakan."
},
[2400203]={
- ["desc"]="Palu Thor dapat menghilangkan 2 elemen secara acak."
+ ["desc"]="Palu Thor menghapus 2 lebih banyak elemen acak."
},
[2400204]={
["desc"]="Ada 10% peluang menambahkan efek Lemah pada serangan Thor selama 1 giliran."
@@ -480,7 +480,7 @@ local skill_rogue = {
["desc"]="Nightmare Z dapat menghapus 4 grid tambahan pada arah X."
},
[3400204]={
- ["desc"]="Efek Kantuk Nightmare Z meningkatkan peluang hingga 100%。"
+ ["desc"]="Efek Kantuk Nightmare Z meningkatkan peluang hingga 80%。"
},
[3400205]={
["desc"]="Combo: ATK Nightmare Z Kantuk musuh akan memiliki efek Larangan yang melekat selama 2 giliran."
diff --git a/lua/app/config/strings/ja/global.lua b/lua/app/config/strings/ja/global.lua
index f451b5a5..d0a880e0 100644
--- a/lua/app/config/strings/ja/global.lua
+++ b/lua/app/config/strings/ja/global.lua
@@ -362,7 +362,7 @@ local localization_global =
["DUNGEON_WEAPON_DESC_7"] = "攻略",
["DUNGEON_WEAPON_DESC_8"] = "ボス攻略",
["DUNGEON_WEAPON_DESC_9"] = "最近のクリア情報",
- ["DUNGEON_WEAPON_DESC_10"] = "チームレベル{0}に達すると解放",
+ ["DUNGEON_WEAPON_DESC_10"] = "プレイヤーレベル{0}に達すると解放",
["DUNGEON_WEAPON_DESC_11"] = "前章をグリア後に解放",
["EQUIP_DESC_1"] = "武器",
["EQUIP_DESC_2"] = "防具",
@@ -419,10 +419,11 @@ local localization_global =
["DUNGEON_ARMOR_FUND_2"] = "時空の裂け目ファンドⅡ",
["DUNGEON_ARMOR_DESC_15"] = "先にファンドを購入してください",
["DUNGEON_ARMOR_DESC_16"] = "超お得",
- ["MOP_UP_DESC_3"] = "充足",
+ ["MOP_UP_DESC_3"] = "不足",
["DUNGEON_ARMOR_DESC_17"] = "本日残り回数:{0}",
["NAVER_SETTING_DESC"] = "Naver",
["EQUIP_DESC_26"] = "防具4つ+{0}:",
+ ["BATTLE_DESC_14"] = "まだ終わっていないバトルがありますが、続行しますか?",
}
return localization_global
\ 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 735c2f48..9ff7c959 100644
--- a/lua/app/config/strings/ja/skill_rogue.lua
+++ b/lua/app/config/strings/ja/skill_rogue.lua
@@ -357,7 +357,7 @@ local skill_rogue = {
["desc"]="「ソーのハンマー」はいずれの元素のエネルギーを2カウント増加する。"
},
[2400203]={
- ["desc"]="「ソーのハンマー」はランダムで2つの元素を消す。"
+ ["desc"]="「ソーのハンマー」はランダムで+2の元素を消す。"
},
[2400204]={
["desc"]="ソーの通常攻撃は10%の確率で敵に1ターン弱体効果を付与する。"
@@ -480,7 +480,7 @@ local skill_rogue = {
["desc"]="「アリュールナイトメア」は追加でX方向4マスを消す。"
},
[3400204]={
- ["desc"]="「アリュールナイトメア」の昏睡効果の確率は100%に増加する。"
+ ["desc"]="「アリュールナイトメア」の昏睡効果の確率は80%に増加する。"
},
[3400205]={
["desc"]="ヒット:夢魔の通常攻撃が昏睡状態の敵に2ターン拘束効果を付与する。"
diff --git a/lua/app/config/strings/ko/global.lua b/lua/app/config/strings/ko/global.lua
index 6d7ad51d..b3641b98 100644
--- a/lua/app/config/strings/ko/global.lua
+++ b/lua/app/config/strings/ko/global.lua
@@ -362,7 +362,7 @@ local localization_global =
["DUNGEON_WEAPON_DESC_7"] = "공략",
["DUNGEON_WEAPON_DESC_8"] = "보스 공략",
["DUNGEON_WEAPON_DESC_9"] = "최근 클리어",
- ["DUNGEON_WEAPON_DESC_10"] = "팀 레벨 {0} 달성 시 오픈",
+ ["DUNGEON_WEAPON_DESC_10"] = "플레이어 레벨{0} 달성 시 오픈",
["DUNGEON_WEAPON_DESC_11"] = "이전 챕터 클리어 시 오픈",
["EQUIP_DESC_1"] = "무기",
["EQUIP_DESC_2"] = "방어구",
@@ -419,10 +419,11 @@ local localization_global =
["DUNGEON_ARMOR_FUND_2"] = "시공간의 균열 펀드 Ⅱ",
["DUNGEON_ARMOR_DESC_15"] = "먼저 이 펀드를 구매해 주세요",
["DUNGEON_ARMOR_DESC_16"] = "최고 가성비",
- ["MOP_UP_DESC_3"] = "충분합니다",
+ ["MOP_UP_DESC_3"] = "부족",
["DUNGEON_ARMOR_DESC_17"] = "이번 챕터 오늘 남은 횟수: {0}",
["NAVER_SETTING_DESC"] = "Naver",
["EQUIP_DESC_26"] = "방어구 4개 +{0}:",
+ ["BATTLE_DESC_14"] = "끝나지 않은 전투가 있습니다. 계속하시겠습니까?",
}
return localization_global
\ No newline at end of file
diff --git a/lua/app/config/strings/ko/skill.lua b/lua/app/config/strings/ko/skill.lua
index 0a6410b2..3abb0c12 100644
--- a/lua/app/config/strings/ko/skill.lua
+++ b/lua/app/config/strings/ko/skill.lua
@@ -6,7 +6,7 @@ local skill = {
["desc"]="대검 회오리바람: 여러 번의 스킬 피해를 추가로 입힙니다."
},
[1300220]={
- ["desc"]="불타는 펀치: 세로 방향으로 5개의 그리드를 소멸하고 스킬 피해를 한 번 입힙니다. 50% 확률로 2턴 동안 버닝 효과를 부여합니다."
+ ["desc"]="불타는 펀치: 세로 방향으로 5개의 그리드를 소멸하고 스킬 피해를 한 번 입힙니다. 50% 확률로 2턴 동안 버닝 효과를 부여합니다."
},
[1400120]={
["desc"]="강철 스트라이크: 주위4개 원소의 색상을 변경하며 대량의 스킬 피해를 여러 차례 입힙니다."
@@ -42,22 +42,22 @@ local skill = {
["desc"]="유성과 달의 숨바꼭질: 사용 후, 이번 공격 대미지가 상승하며 엄청난 양의 스킬 피해를 한 번 입힙니다."
},
[3400220]={
- ["desc"]="아름다운 악몽: 추가로 대량의 스킬 피해를 한 번 입히며 50% 확률로 2턴 동안 수면 효과를 부여합니다."
+ ["desc"]="아름다운 악몽: 추가로 대량의 스킬 피해를 한 번 입히며 50% 확률로 2턴 동안 수면 효과를 부여합니다."
},
[4200120]={
["desc"]="원소 연결: 무작위로 3개의 원소를 소멸하고 스킬 피해를 한 번 입힙니다."
},
[4300120]={
- ["desc"]="얼음 크리스탈: 추가로 한 번의 스킬 피해를 입히며 1턴 동안 서리 상태를 부여합니다."
+ ["desc"]="얼음 크리스탈: 추가로 한 번의 스킬 피해를 입히며 1턴 동안 서리 효과를 부여합니다."
},
[4300220]={
- ["desc"]="부패의 칼날: 추가로 한 번의 스킬 피해를 입히며 1턴 동안 부패 효과를 부여합니다."
+ ["desc"]="부패의 칼날: 추가로 한 번의 스킬 피해를 입히며 1턴 동안 부패 효과를 부여합니다."
},
[4400120]={
- ["desc"]="눈과 서리의 검무: 무작위로 3개의 원소를 소멸하고 한 번의 스킬 피해를 입히는 동시에 1턴 동안 서리 효과를 부여합니다."
+ ["desc"]="눈과 서리의 검무: 무작위로 3개의 원소를 소멸하고 한 번의 스킬 피해를 입히는 동시에 1턴 동안 서리 효과를 부여합니다."
},
[4400220]={
- ["desc"]="파라오의 저주: 추가로 한 번의 스킬 피해를 입히며 1턴 동안 저주 효과를 부여합니다."
+ ["desc"]="파라오의 저주: 추가로 한 번의 스킬 피해를 입히며 1턴 동안 저주 효과를 부여합니다."
},
[5200120]={
["desc"]="보호막 기술: 팀에게 1턴 동안 보호막을 부여합니다."
diff --git a/lua/app/config/strings/ko/skill_rogue.lua b/lua/app/config/strings/ko/skill_rogue.lua
index 82d1adfd..0034ad4a 100644
--- a/lua/app/config/strings/ko/skill_rogue.lua
+++ b/lua/app/config/strings/ko/skill_rogue.lua
@@ -357,7 +357,7 @@ local skill_rogue = {
["desc"]="토르의 망치를 사용하면 랜덤으로 하나의 스킬 에너지가 2 포인트 증가합니다."
},
[2400203]={
- ["desc"]="토르의 망치는 랜덤으로 2개의 원소를 소멸할 수 있습니다."
+ ["desc"]="토르의 무작위로 소멸하는 원소 +2"
},
[2400204]={
["desc"]="토르의 일반 공격은 10% 확률로 1턴 동안 탈진 효과를 부여합니다."
@@ -480,7 +480,7 @@ local skill_rogue = {
["desc"]="아름다운 악몽이 X 방향을 따라 추가로 4개의 그리드를 소멸할 수 있습니다."
},
[3400204]={
- ["desc"]="아름다운 악몽이 수면 효과를 부여할 확률이 100%로 증가합니다."
+ ["desc"]="아름다운 악몽이 수면 효과를 부여할 확률이 80%로 증가합니다."
},
[3400205]={
["desc"]="Combo:인큐버스의 일반 공격이 2턴 동안 수면 상태의 적에게 속박 효과를 부여합니다."
diff --git a/lua/app/config/strings/pt/global.lua b/lua/app/config/strings/pt/global.lua
index 13f1f45a..fa7f7bb0 100644
--- a/lua/app/config/strings/pt/global.lua
+++ b/lua/app/config/strings/pt/global.lua
@@ -362,7 +362,7 @@ local localization_global =
["DUNGEON_WEAPON_DESC_7"] = "Guia",
["DUNGEON_WEAPON_DESC_8"] = "Guia do Chefão",
["DUNGEON_WEAPON_DESC_9"] = "Conclusões recentes",
- ["DUNGEON_WEAPON_DESC_10"] = "Desbloqueado quando a equipe atingir Nv.{0}",
+ ["DUNGEON_WEAPON_DESC_10"] = "Desbloqueado quando o jogador atingir Nv.{0}",
["DUNGEON_WEAPON_DESC_11"] = "Desbloqueado após concluir o capítulo anterior",
["EQUIP_DESC_1"] = "Arma",
["EQUIP_DESC_2"] = "Armadura",
@@ -419,10 +419,11 @@ local localization_global =
["DUNGEON_ARMOR_FUND_2"] = "Fundo da Fenda Espaço-temporal Ⅱ",
["DUNGEON_ARMOR_DESC_15"] = "Compre o fundo primeiro.",
["DUNGEON_ARMOR_DESC_16"] = "Oferta",
- ["MOP_UP_DESC_3"] = "Suficiente",
+ ["MOP_UP_DESC_3"] = "Insuficiente",
["DUNGEON_ARMOR_DESC_17"] = "Tentativas para essa fase por hoje: {0}",
["NAVER_SETTING_DESC"] = "Naver",
["EQUIP_DESC_26"] = "4 armaduras + {0}:",
+ ["BATTLE_DESC_14"] = "Existem batalhas inacabadas, você quer continuá-las?",
}
return localization_global
\ No newline at end of file
diff --git a/lua/app/config/strings/pt/skill.lua b/lua/app/config/strings/pt/skill.lua
index c979a13b..53a18797 100644
--- a/lua/app/config/strings/pt/skill.lua
+++ b/lua/app/config/strings/pt/skill.lua
@@ -6,7 +6,7 @@ local skill = {
["desc"]="Turbilhão de Espadão: causa vários golpes adicionais de dano de habilidade."
},
[1300220]={
- ["desc"]="Punho Flamejante: elimina 5 blocos verticalmente e causa um dano de habilidade, com 50% de chance de acionar Conflagração por 2 turnos."
+ ["desc"]="Punho Flamejante: elimina 5 blocos verticalmente e causa um dano de habilidade, com 50% de chance de acionar Conflagração por 2 turnos."
},
[1400120]={
["desc"]="Golpe Metálico: muda a cor dos 4 elementos ao redor e causa vários golpes de dano de habilidade massivo."
@@ -42,22 +42,22 @@ local skill = {
["desc"]="Disparada do Meteoro: aumenta o dano causado no turno atual e causa um golpe de enorme dano de habilidade."
},
[3400220]={
- ["desc"]="Pesadelo Belo: Causa grande dano de habilidade adicional com 50% de chance de adicionar efeito de sono por 2 turnos."
+ ["desc"]="Pesadelo da Beleza: causa adicionalmente um golpe de habilidade massivo com 50% de chance de acionar o efeito de Sonolento que dura 2 turnos."
},
[4200120]={
["desc"]="Elo Elemental: elimina 3 elementos aleatórios e causa um golpe de dano de habilidade."
},
[4300120]={
- ["desc"]="Cristal Congelante: Causa dano adicional de habilidade e adiciona efeito de congelamento por 1 turno."
+ ["desc"]="Cristal Congelante: causa adicionalmente um golpe de habilidade, acionando Gelidez por 1 turno."
},
[4300220]={
- ["desc"]="Lâmina da Corrupção: Causa dano adicional de habilidade e adiciona efeito de corrupção por 1 turno."
+ ["desc"]="Lâmina Corruptora: causa adicionalmente um golpe de habilidade, acionando Corrupção por 1 turno."
},
[4400120]={
- ["desc"]="Esgrima Enregelante: elimina 3 elementos aleatórios e causa um golpe de dano de habilidade, acionando Gelidez por 1 turno."
+ ["desc"]="Esgrima Enregelante: elimina 3 elementos aleatórios e causa um golpe de dano de habilidade, acionando Gelidez por 1 turno."
},
[4400220]={
- ["desc"]="Maldição do Faraó: Causa dano adicional de habilidade e adiciona efeito de maldição por 1 turno."
+ ["desc"]="Maldição do Faraó: causa adicionalmente um golpe de habilidade, acionando Maldição por 1 turno."
},
[5200120]={
["desc"]="Feitiço de Amparo: adiciona um escudo à equipe por 1 turno."
diff --git a/lua/app/config/strings/pt/skill_rogue.lua b/lua/app/config/strings/pt/skill_rogue.lua
index e4f38abd..9de56021 100644
--- a/lua/app/config/strings/pt/skill_rogue.lua
+++ b/lua/app/config/strings/pt/skill_rogue.lua
@@ -357,7 +357,7 @@ local skill_rogue = {
["desc"]="Após usar o Martelo de Thor, aumenta aleatoriamente a energia de uma habilidade em 2 pontos."
},
[2400203]={
- ["desc"]="O Martelo de Thor pode eliminar aleatoriamente 2 elementos."
+ ["desc"]="Elementos eliminados aleatoriamente pelo Martelo de Thor +2."
},
[2400204]={
["desc"]="Durante o ataque de Solpu, há uma probabilidade de 10% de adicionar o efeito fraqueza por 1 turno."
@@ -480,7 +480,7 @@ local skill_rogue = {
["desc"]="Belo Pesadelo pode eliminar 4 quadrados adicionais na direção X."
},
[3400204]={
- ["desc"]="A probabilidade do efeito sono adicionado por Belo Pesadelo aumenta para 100%."
+ ["desc"]="A probabilidade do efeito sono adicionado por Belo Pesadelo aumenta para 80%."
},
[3400205]={
["desc"]="Combo: Ataque normal de Succubus a inimigos adormecidos adiciona o efeito aprisionamento por 2 turnos."
diff --git a/lua/app/config/strings/th/global.lua b/lua/app/config/strings/th/global.lua
index a75691b8..8e5499ce 100644
--- a/lua/app/config/strings/th/global.lua
+++ b/lua/app/config/strings/th/global.lua
@@ -362,7 +362,7 @@ local localization_global =
["DUNGEON_WEAPON_DESC_7"] = "กลยุทธ์",
["DUNGEON_WEAPON_DESC_8"] = "กลยุทธ์บอส",
["DUNGEON_WEAPON_DESC_9"] = "ผ่านด่านล่าสุด",
- ["DUNGEON_WEAPON_DESC_10"] = "ทีม Lv.{0} จะเปิด",
+ ["DUNGEON_WEAPON_DESC_10"] = "ผู้เล่น Lv.{0} จะเปิด",
["DUNGEON_WEAPON_DESC_11"] = "ผ่านด่านบทก่อนหน้าจะเปิด",
["EQUIP_DESC_1"] = "อาวุธ",
["EQUIP_DESC_2"] = "เกราะ",
@@ -419,10 +419,11 @@ local localization_global =
["DUNGEON_ARMOR_FUND_2"] = "กองทุนรอยแยกกาลอวกาศⅡ",
["DUNGEON_ARMOR_DESC_15"] = "โปรดซื้อกองทุนก่อน",
["DUNGEON_ARMOR_DESC_16"] = "สุดคุ้ม",
- ["MOP_UP_DESC_3"] = "เพียงพอ",
+ ["MOP_UP_DESC_3"] = "ไม่พอ",
["DUNGEON_ARMOR_DESC_17"] = "จำนวนที่เหลือของด่านนี้ในวันนี้: {0}",
["NAVER_SETTING_DESC"] = "Naver",
["EQUIP_DESC_26"] = "เกราะ 4 ชิ้น +{0}:",
+ ["BATTLE_DESC_14"] = "มีการต่อสู้ที่ยังไม่จบ ดำเนินการต่อหรือไม่?",
}
return localization_global
\ No newline at end of file
diff --git a/lua/app/config/strings/th/skill.lua b/lua/app/config/strings/th/skill.lua
index b9203aff..62a190ce 100644
--- a/lua/app/config/strings/th/skill.lua
+++ b/lua/app/config/strings/th/skill.lua
@@ -6,7 +6,7 @@ local skill = {
["desc"]="ลมกรดดาบ: สร้างดาเมจสกิลเพิ่มเติมหลายครั้ง"
},
[1300220]={
- ["desc"]="หมัดเพลิง: กำจัด 5ช่องตามแนวตั้ง และสร้างดาเมจสกิล 1 ครั้ง มีโอกาส50%เพิ่มเอฟเฟกต์การเผาไหม้ 2 รอบ"
+ ["desc"]="หมัดเพลิง: กำจัด 5ช่องตามแนวตั้ง และสร้างดาเมจสกิล 1 ครั้ง มีโอกาส50%เพิ่มเอฟเฟกต์เผาไหม้ 2 รอบ"
},
[1400120]={
["desc"]="เหล็กตีหนัก: เปลี่ยนสีของธาตุ4อันที่อยู่รอบ ๆ และสร้างดาเมจสกิลมหาศาลหลายครั้ง"
@@ -42,22 +42,22 @@ local skill = {
["desc"]="ดาวตกไล่ดวงจันทร์: ดาเมจครั้งนี้จะเพิ่มขึ้นหลังจากการใช้ และสร้างดาเมจสกิลมหาศาล 1 ครั้ง"
},
[3400220]={
- ["desc"]="ฝันร้ายที่สวยงาม: สร้างดาเมจสกิลมากมายเพิ่มเติม 1 ครั้ง มีโอกาส 50% เพิ่มเอฟเฟกต์หลับ 2รอบ"
+ ["desc"]="ฝันร้ายที่สวยงาม: สร้างดาเมจสกิลมากมายเพิ่มเติม 1 ครั้ง มีโอกาส 50% เพิ่มเอฟเฟกต์หลับ 2รอบ"
},
[4200120]={
["desc"]="การเชื่อมโยงธาตุ: สุ่มกำจัดธาตุ3อัน และสร้างดาเมจสกิล 1 ครั้ง"
},
[4300120]={
- ["desc"]="ผลึกฟรอสต์: สร้างดาเมจสกิลเพิ่มเติม 1 ครั้ง เพิ่มเอฟเฟกต์ฟรอสต์ 1รอบ"
+ ["desc"]="ผลึกฟรอสต์: สร้างดาเมจสกิลเพิ่มเติม 1 ครั้ง เพิ่มเอฟเฟกต์ฟรอสต์ 1 รอบ"
},
[4300220]={
- ["desc"]="ดาบทุจริต: สร้างดาเมจสกิลเพิ่มเติม 1 ครั้ง เพิ่มเอฟเฟกต์ทุจริต 1รอบ"
+ ["desc"]="ดาบทุจริต: สร้างดาเมจสกิลเพิ่มเติม 1 ครั้ง เพิ่มเอฟเฟกต์ทุจริต 1รอบ"
},
[4400120]={
- ["desc"]="ระบำดาบฟรอสต์: สุ่มกำจัดธาตุ3อัน และสร้างดาเมจสกิล 1 ครั้ง เพิ่มเอฟเฟกต์ฟรอสต์ 1รอบ"
+ ["desc"]="ระบำดาบฟรอสต์: สุ่มกำจัดธาตุ3อัน และสร้างดาเมจสกิล 1 ครั้ง เพิ่มเอฟเฟกต์ฟรอสต์ 1รอบ"
},
[4400220]={
- ["desc"]="คำสาปฟาโรห์: สร้างดาเมจสกิลเพิ่มเติม 1 ครั้ง เพิ่มเอฟเฟกต์คำสาป 1รอบ"
+ ["desc"]="คำสาปฟาโรห์: สร้างดาเมจสกิลเพิ่มเติม 1 ครั้ง เพิ่มเอฟเฟกต์คำสาป 1รอบ"
},
[5200120]={
["desc"]="มนต์โล่: เพิ่มโล่ 1 อันให้ทีม 1รอบ"
diff --git a/lua/app/config/strings/th/skill_rogue.lua b/lua/app/config/strings/th/skill_rogue.lua
index 8592b04d..e9e2f455 100644
--- a/lua/app/config/strings/th/skill_rogue.lua
+++ b/lua/app/config/strings/th/skill_rogue.lua
@@ -354,7 +354,7 @@ local skill_rogue = {
["desc"]="ค้อนของเทพสายฟ้าสามารถสุ่มกำจัด 4 ธาตุ"
},
[2400202]={
- ["desc"]="หลังจากใช้ค้อนของเทพสายฟ้าจะสุ่มเพิ่มพลังงาน2แต้มของสกิลอย่างใดอย่างหนึ่ง"
+ ["desc"]="ค้อนของเทพสายฟ้าสะสุ่มกำจัดธาตุ+2"
},
[2400203]={
["desc"]="ค้อนของเทพสายฟ้าสามารถสุ่มกำจัด 2 ธาตุ"
@@ -480,7 +480,7 @@ local skill_rogue = {
["desc"]="ฝันร้ายที่สวยงามสามารถกำจัดเพิ่มเติม4ช่องตามทิศทาง X"
},
[3400204]={
- ["desc"]="เอฟเฟกต์หลับที่เพิ่มโดยฝันร้ายที่สวยงามสาม โอกาสเพิ่มขึ้นถึง100%"
+ ["desc"]="เอฟเฟกต์หลับที่เพิ่มโดยฝันร้ายที่สวยงามสาม โอกาสเพิ่มขึ้นถึง80%"
},
[3400205]={
["desc"]="คอมโบ: เมื่อฝันร้ายโจมตีทั่วไปศัตรูหลับจะเพิ่มเอฟเฟกต์กักขัง 2รอบ"
diff --git a/lua/app/config/strings/vi/global.lua b/lua/app/config/strings/vi/global.lua
index acae3fc6..216bb0bd 100644
--- a/lua/app/config/strings/vi/global.lua
+++ b/lua/app/config/strings/vi/global.lua
@@ -362,7 +362,7 @@ local localization_global =
["DUNGEON_WEAPON_DESC_7"] = "Chiến Lược",
["DUNGEON_WEAPON_DESC_8"] = "Chiến lược Thủ Lĩnh",
["DUNGEON_WEAPON_DESC_9"] = "Vượt ải gần đây",
- ["DUNGEON_WEAPON_DESC_10"] = "Đội Lv{0} mở",
+ ["DUNGEON_WEAPON_DESC_10"] = "Người chơi Lv{0} mở",
["DUNGEON_WEAPON_DESC_11"] = "Vượt ải chương trước mở",
["EQUIP_DESC_1"] = "Vũ Khí",
["EQUIP_DESC_2"] = "Phòng Cụ",
@@ -419,10 +419,11 @@ local localization_global =
["DUNGEON_ARMOR_FUND_2"] = "Quỹ Khe Nứt Không Gian Ⅱ",
["DUNGEON_ARMOR_DESC_15"] = "Hãy mua quỹ trước",
["DUNGEON_ARMOR_DESC_16"] = "Siêu hời",
- ["MOP_UP_DESC_3"] = "Đủ",
+ ["MOP_UP_DESC_3"] = "Không đủ",
["DUNGEON_ARMOR_DESC_17"] = "Lượt ải còn: {0}",
["NAVER_SETTING_DESC"] = "Naver",
["EQUIP_DESC_26"] = "4 món phòng cụ +{0}:",
+ ["BATTLE_DESC_14"] = "Có chiến đấu còn dang dở, tiếp tục chứ?",
}
return localization_global
\ No newline at end of file
diff --git a/lua/app/config/strings/vi/skill.lua b/lua/app/config/strings/vi/skill.lua
index bb7dc307..68a6993c 100644
--- a/lua/app/config/strings/vi/skill.lua
+++ b/lua/app/config/strings/vi/skill.lua
@@ -6,7 +6,7 @@ local skill = {
["desc"]="Lốc Xoáy Cự Kiếm: Gây thêm nhiều lần sát thương kỹ năng."
},
[1300220]={
- ["desc"]="Viêm Quyền: Xua tan 5 ô theo hàng dọc, và gây 1 lần sát thương kỹ năng, có 50% kèm Thiêu Đốt, 2 hiệp."
+ ["desc"]="Viêm Quyền: Xua tan 5 ô theo hàng dọc, và gây 1 lần ST kỹ năng, có 50% kèm Thiêu Đốt, 2 hiệp."
},
[1400120]={
["desc"]="Trọng Kích Sắt Thép: 4 Nguyên Tố xung quanh đổi màu, gây nhiều lần sát thương kỹ năng."
@@ -42,22 +42,22 @@ local skill = {
["desc"]="Sao Băng Siêu Tốc: Dùng xong tăng sát thương lần này, 1 lần sát thương kỹ năng cực lớn."
},
[3400220]={
- ["desc"]="Ác Mộng Tươi Đẹp: Gây thêm 1 lần nhiều sát thương kỹ năng, 50% kèm hiệu quả Ngủ Say, 2 hiệp."
+ ["desc"]="Ác Mộng Tươi Đẹp: Gây thêm 1 lần nhiều ST kỹ năng, cos 50% kèm Ngủ Say, 2 hiệp."
},
[4200120]={
["desc"]="Liên Kết Nguyên Tố: Ngẫu nhiên xua tan 3 Nguyên Tố, gây 1 lần sát thương kỹ năng."
},
[4300120]={
- ["desc"]="Sương Băng Tinh: Gây thêm 1 lần sát thương kỹ năng, kèm hiệu quả Băng Sương, 1 hiệp."
+ ["desc"]="Sương Băng Tinh: Gây thêm 1 lần ST kỹ năng, kèm Băng Sương, 1 hiệp."
},
[4300220]={
- ["desc"]="Đao Sa Đọa: Gây thêm 1 lần sát thương kỹ năng, kèm hiệu quả Sa Đọa, 1 hiệp."
+ ["desc"]="Đao Sa Đọa: Gây thêm 1 lần ST kỹ năng, kèm Sa Đọa, 1 hiệp."
},
[4400120]={
- ["desc"]="Băng Sương Kiếm Vũ: Ngẫu nhiên xua tan 3 Nguyên Tố, gây 1 lần sát thương kỹ năng, kèm Băng Sương, 1 hiệp."
+ ["desc"]="Băng Sương Kiếm Vũ: Ngẫu nhiên xua tan 3 Nguyên Tố, gây 1 lần ST kỹ năng, kèm Băng Sương, 1 hiệp."
},
[4400220]={
- ["desc"]="Lời Nguyền Pharaoh: Gây thêm 1 lần sát thương kỹ năng, kèm hiệu quả Lời Nguyền, 1 hiệp."
+ ["desc"]="Lời Nguyền Pharaoh: Gây thêm 1 lần sát thương kỹ năng, kèm Lời Nguyền, 1 hiệp."
},
[5200120]={
["desc"]="Thuật Khiên: Giúp đồng đội nhận 1 Khiên, 1 hiệp."
diff --git a/lua/app/config/strings/vi/skill_rogue.lua b/lua/app/config/strings/vi/skill_rogue.lua
index e174dda2..3e964265 100644
--- a/lua/app/config/strings/vi/skill_rogue.lua
+++ b/lua/app/config/strings/vi/skill_rogue.lua
@@ -357,7 +357,7 @@ local skill_rogue = {
["desc"]="Sau khi dùng Búa Thor tăng ngẫu nhiên 1 loại kỹ năng 2 Năng Lượng."
},
[2400203]={
- ["desc"]="Búa Thor có thể xua tan ngẫu nhiên 2 nguyên tố."
+ ["desc"]="Búa Thor Tố ngẫu nhiên xua tan Nguyên Tố +2."
},
[2400204]={
["desc"]="Khi Thor đánh thường có 10% kèm hiệu quảSuy Yếu, 1 hiệp."
@@ -480,7 +480,7 @@ local skill_rogue = {
["desc"]="Ác Mộng Tươi Đẹp theo hướng X được xua tan thêm 4 ô."
},
[3400204]={
- ["desc"]="Ác Mộng Tươi Đẹp kèm hiệu quả Ngủ Say, TL tăng đến 100%."
+ ["desc"]="Ác Mộng Tươi Đẹp kèm hiệu quả Ngủ Say, TL tăng đến 80%."
},
[3400205]={
["desc"]="Combo: Khi Incubus đánh thường kẻ địch Ngủ Say sẽ kèm hiệu quả Giam Cầm, 2 hiệp."
diff --git a/lua/app/config/strings/zh/global.lua b/lua/app/config/strings/zh/global.lua
index 43b40f31..c74ae974 100644
--- a/lua/app/config/strings/zh/global.lua
+++ b/lua/app/config/strings/zh/global.lua
@@ -362,7 +362,7 @@ local localization_global =
["DUNGEON_WEAPON_DESC_7"] = "攻略",
["DUNGEON_WEAPON_DESC_8"] = "首領攻略",
["DUNGEON_WEAPON_DESC_9"] = "近期通關",
- ["DUNGEON_WEAPON_DESC_10"] = "隊伍等級{0}開啟",
+ ["DUNGEON_WEAPON_DESC_10"] = "玩家等級{0}開啟",
["DUNGEON_WEAPON_DESC_11"] = "通關前一章開啟",
["EQUIP_DESC_1"] = "武器",
["EQUIP_DESC_2"] = "防具",
@@ -419,10 +419,11 @@ local localization_global =
["DUNGEON_ARMOR_FUND_2"] = "時空裂隙基金Ⅱ",
["DUNGEON_ARMOR_DESC_15"] = "請先購買本基金",
["DUNGEON_ARMOR_DESC_16"] = "超值",
- ["MOP_UP_DESC_3"] = "足夠",
+ ["MOP_UP_DESC_3"] = "不足",
["DUNGEON_ARMOR_DESC_17"] = "本關今日剩餘次數:{0}",
["NAVER_SETTING_DESC"] = "Naver",
["EQUIP_DESC_26"] = "4件防具+{0}:",
+ ["BATTLE_DESC_14"] = "有尚未完成的戰鬥,是否繼續?",
}
return localization_global
\ 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 003f0ac4..986f0f3f 100644
--- a/lua/app/config/strings/zh/skill_rogue.lua
+++ b/lua/app/config/strings/zh/skill_rogue.lua
@@ -357,7 +357,7 @@ local skill_rogue = {
["desc"]="雷神之鎚使用後隨機增加一種技能的能量2點。"
},
[2400203]={
- ["desc"]="雷神之鎚可隨機消除2個元素。"
+ ["desc"]="雷神之鎚隨機消除元素+2。"
},
[2400204]={
["desc"]="索爾普攻時有10%機率附帶虛弱效果,1回合。"
@@ -480,7 +480,7 @@ local skill_rogue = {
["desc"]="美麗夢魘沿X方向可額外消除4格。"
},
[3400204]={
- ["desc"]="美麗夢魘附帶的昏睡效果,機率提高到100%。"
+ ["desc"]="美麗夢魘附帶的昏睡效果,機率提高到80%。"
},
[3400205]={
["desc"]="Combo:夢魔普攻昏睡敵人將附帶禁錮效果,2回合。"
diff --git a/lua/app/config/summon.lua b/lua/app/config/summon.lua
index f3328c99..67e310a6 100644
--- a/lua/app/config/summon.lua
+++ b/lua/app/config/summon.lua
@@ -33,8 +33,8 @@ local summon = {
["type_for_nothing"]="Vw==",
["id"]=4,
["id_for_nothing"]="Ug==",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
+ ["num"]=16,
+ ["num_for_nothing"]="Vw4="
}
},
["box_lv_3"]={
@@ -51,8 +51,8 @@ local summon = {
["type_for_nothing"]="Vw==",
["id"]=4,
["id_for_nothing"]="Ug==",
- ["num"]=8,
- ["num_for_nothing"]="Xg=="
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
}
},
["box_lv_4"]={
@@ -69,8 +69,8 @@ local summon = {
["type_for_nothing"]="Vw==",
["id"]=4,
["id_for_nothing"]="Ug==",
- ["num"]=12,
- ["num_for_nothing"]="Vwo="
+ ["num"]=24,
+ ["num_for_nothing"]="VAw="
}
},
["box_lv_5"]={
@@ -87,8 +87,8 @@ local summon = {
["type_for_nothing"]="Vw==",
["id"]=4,
["id_for_nothing"]="Ug==",
- ["num"]=16,
- ["num_for_nothing"]="Vw4="
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
}
},
["box_lv_6"]={
@@ -105,8 +105,8 @@ local summon = {
["type_for_nothing"]="Vw==",
["id"]=4,
["id_for_nothing"]="Ug==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
}
},
["box_lv_7"]={
@@ -123,8 +123,8 @@ local summon = {
["type_for_nothing"]="Vw==",
["id"]=4,
["id_for_nothing"]="Ug==",
- ["num"]=24,
- ["num_for_nothing"]="VAw="
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
}
},
["box_lv_8"]={
@@ -141,8 +141,8 @@ local summon = {
["type_for_nothing"]="Vw==",
["id"]=4,
["id_for_nothing"]="Ug==",
- ["num"]=28,
- ["num_for_nothing"]="VAA="
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
}
},
["box_lv_9"]={
@@ -159,8 +159,8 @@ local summon = {
["type_for_nothing"]="Vw==",
["id"]=4,
["id_for_nothing"]="Ug==",
- ["num"]=32,
- ["num_for_nothing"]="VQo="
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
}
},
["box_lv_10"]={
@@ -177,8 +177,8 @@ local summon = {
["type_for_nothing"]="Vw==",
["id"]=4,
["id_for_nothing"]="Ug==",
- ["num"]=36,
- ["num_for_nothing"]="VQ4="
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
}
}
},
@@ -227,51 +227,123 @@ local summon = {
}
},
["box_lv_2"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=1000,
+ ["num_for_nothing"]="VwhcAw=="
+ },
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
}
},
["box_lv_3"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=1000,
+ ["num_for_nothing"]="VwhcAw=="
+ },
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
+ ["num"]=25,
+ ["num_for_nothing"]="VA0="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
}
},
["box_lv_4"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=1000,
+ ["num_for_nothing"]="VwhcAw=="
+ },
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
- ["num"]=35,
- ["num_for_nothing"]="VQ0="
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
}
},
["box_lv_5"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=1000,
+ ["num_for_nothing"]="VwhcAw=="
+ },
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
+ ["num"]=55,
+ ["num_for_nothing"]="Uw0="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
}
},
["box_lv_6"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=1000,
+ ["num_for_nothing"]="VwhcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
@@ -280,16 +352,32 @@ local summon = {
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
- ["num"]=65,
- ["num_for_nothing"]="UA0="
+ ["num"]=70,
+ ["num_for_nothing"]="UQg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
}
},
["box_lv_7"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=1000,
+ ["num_for_nothing"]="VwhcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=2,
["num_for_nothing"]="VA=="
},
@@ -298,16 +386,32 @@ local summon = {
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
- ["num"]=80,
- ["num_for_nothing"]="Xgg="
+ ["num"]=85,
+ ["num_for_nothing"]="Xg0="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
}
},
["box_lv_8"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=1000,
+ ["num_for_nothing"]="VwhcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=3,
["num_for_nothing"]="VQ=="
},
@@ -316,16 +420,32 @@ local summon = {
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
- ["num"]=95,
- ["num_for_nothing"]="Xw0="
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
}
},
["box_lv_9"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=1000,
+ ["num_for_nothing"]="VwhcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=4,
["num_for_nothing"]="Ug=="
},
@@ -334,16 +454,32 @@ local summon = {
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
- ["num"]=110,
- ["num_for_nothing"]="Vwlc"
+ ["num"]=115,
+ ["num_for_nothing"]="VwlZ"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
}
},
["box_lv_10"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=1000,
+ ["num_for_nothing"]="VwhcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=5,
["num_for_nothing"]="Uw=="
},
@@ -352,8 +488,16 @@ local summon = {
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
- ["num"]=125,
- ["num_for_nothing"]="VwpZ"
+ ["num"]=130,
+ ["num_for_nothing"]="Vwtc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
}
}
},
@@ -387,8 +531,8 @@ local summon = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
@@ -413,26 +557,16 @@ local summon = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2000,
+ ["num_for_nothing"]="VAhcAw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=5,
- ["id_for_nothing"]="Uw==",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- }
- },
- ["box_lv_3"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=2,
["num_for_nothing"]="VA=="
},
@@ -441,16 +575,32 @@ local summon = {
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
- ["num"]=35,
- ["num_for_nothing"]="VQ0="
- }
- },
- ["box_lv_4"]={
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=480,
+ ["num_for_nothing"]="UgBc"
+ }
+ },
+ ["box_lv_3"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2000,
+ ["num_for_nothing"]="VAhcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=3,
["num_for_nothing"]="VQ=="
},
@@ -459,16 +609,32 @@ local summon = {
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
- ["num"]=75,
- ["num_for_nothing"]="UQ0="
- }
- },
- ["box_lv_5"]={
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=480,
+ ["num_for_nothing"]="UgBc"
+ }
+ },
+ ["box_lv_4"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2000,
+ ["num_for_nothing"]="VAhcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=4,
["num_for_nothing"]="Ug=="
},
@@ -477,16 +643,32 @@ local summon = {
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
- ["num"]=115,
- ["num_for_nothing"]="VwlZ"
- }
- },
- ["box_lv_6"]={
+ ["num"]=80,
+ ["num_for_nothing"]="Xgg="
+ },
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=480,
+ ["num_for_nothing"]="UgBc"
+ }
+ },
+ ["box_lv_5"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2000,
+ ["num_for_nothing"]="VAhcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
["num"]=5,
["num_for_nothing"]="Uw=="
},
@@ -495,80 +677,186 @@ local summon = {
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
- ["num"]=155,
- ["num_for_nothing"]="Vw1Z"
+ ["num"]=120,
+ ["num_for_nothing"]="Vwpc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=480,
+ ["num_for_nothing"]="UgBc"
+ }
+ },
+ ["box_lv_6"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2000,
+ ["num_for_nothing"]="VAhcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=160,
+ ["num_for_nothing"]="Vw5c"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=480,
+ ["num_for_nothing"]="UgBc"
}
},
["box_lv_7"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=7,
- ["num_for_nothing"]="UQ=="
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2000,
+ ["num_for_nothing"]="VAhcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
- ["num"]=195,
- ["num_for_nothing"]="VwFZ"
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=480,
+ ["num_for_nothing"]="UgBc"
}
},
["box_lv_8"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=9,
- ["num_for_nothing"]="Xw=="
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2000,
+ ["num_for_nothing"]="VAhcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
- ["num"]=235,
- ["num_for_nothing"]="VAtZ"
+ ["num"]=240,
+ ["num_for_nothing"]="VAxc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=480,
+ ["num_for_nothing"]="UgBc"
}
},
["box_lv_9"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=11,
- ["num_for_nothing"]="Vwk="
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2000,
+ ["num_for_nothing"]="VAhcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
- ["num"]=275,
- ["num_for_nothing"]="VA9Z"
+ ["num"]=280,
+ ["num_for_nothing"]="VABc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=480,
+ ["num_for_nothing"]="UgBc"
}
},
["box_lv_10"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=13,
- ["num_for_nothing"]="Vws="
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2000,
+ ["num_for_nothing"]="VAhcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
+ ["num"]=14,
+ ["num_for_nothing"]="Vww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=5,
["id_for_nothing"]="Uw==",
- ["num"]=315,
- ["num_for_nothing"]="VQlZ"
+ ["num"]=320,
+ ["num_for_nothing"]="VQpc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=480,
+ ["num_for_nothing"]="UgBc"
}
}
}
diff --git a/lua/app/config/task_daily_challenge.lua b/lua/app/config/task_daily_challenge.lua
index 95c974b2..b644d0ad 100644
--- a/lua/app/config/task_daily_challenge.lua
+++ b/lua/app/config/task_daily_challenge.lua
@@ -204,7 +204,7 @@ local task_daily_challenge = {
},
[8]={
["rand_type"]=2,
- ["param"]=3000,
+ ["param"]=2500,
["reward"]={
{
["type"]=1,
diff --git a/lua/app/global/global_func.lua b/lua/app/global/global_func.lua
index a10bf56e..f1ffab26 100644
--- a/lua/app/global/global_func.lua
+++ b/lua/app/global/global_func.lua
@@ -800,6 +800,23 @@ function GFunc.getRewardsStr(rewards)
return itemStr
end
+function GFunc.getItemRewardsStr(rewards)
+ if rewards == nil then
+ return
+ end
+
+ local itemStr = ""
+ for k, v in ipairs(rewards) do
+ if v.type == GConst.REWARD_TYPE.ITEM then
+ itemStr = itemStr .. v.item.id .. ":" .. v.item.count
+ end
+ if k ~= #rewards then
+ itemStr = itemStr.. "|"
+ end
+ end
+ return itemStr
+end
+
function GFunc.copyStr(str)
CS.UnityEngine.GUIUtility.systemCopyBuffer = str
end
diff --git a/lua/app/module/activity/activity_manager.lua b/lua/app/module/activity/activity_manager.lua
index 6ff79b79..9e85fbdd 100644
--- a/lua/app/module/activity/activity_manager.lua
+++ b/lua/app/module/activity/activity_manager.lua
@@ -1,7 +1,7 @@
local ActivityManager = class("ActivityManager", BaseModule)
-function ActivityManager:showGoldPigUI()
- UIManager:showUI("app/ui/activity/gold_pig/gold_pig_ui")
+function ActivityManager:showGoldPigUI(showType)
+ UIManager:showUI("app/ui/activity/gold_pig/gold_pig_ui", {showType = showType})
end
function ActivityManager:buyGoldPig(id)
diff --git a/lua/app/module/arena/arena_bounty_manager.lua b/lua/app/module/arena/arena_bounty_manager.lua
index a68c2da0..1d461760 100644
--- a/lua/app/module/arena/arena_bounty_manager.lua
+++ b/lua/app/module/arena/arena_bounty_manager.lua
@@ -40,6 +40,8 @@ function ArenaBountyManager:onClaimReward(result)
end
if isSpecialBox then
ModuleManager.ShopManager:showBoxOpenUI({type = GConst.ShopConst.BOX_REWARD_TYPE.ARENA_BOUNTY, params = rewardId, rewards = result.rewards})
+ local openType = BIReport.BOX_OPEN_OPEN_TYPE.ARENA_BOUNTY
+ BIReport:postBoxOpen(rewardId, BIReport.BOX_OPEN_BOX_TYPE.ACTIVITY, openType, 0, result.rewards)
else
GFunc.showRewardBox(result.rewards)
end
diff --git a/lua/app/module/arena/arena_manager.lua b/lua/app/module/arena/arena_manager.lua
index b24f8a50..852bf676 100644
--- a/lua/app/module/arena/arena_manager.lua
+++ b/lua/app/module/arena/arena_manager.lua
@@ -225,8 +225,8 @@ function ArenaManager:rspAdBoxReward(result)
end
end
-function ArenaManager:showGiftPopUI()
- UIManager:showUI("app/ui/arena/arena_pop_gift_ui")
+function ArenaManager:showGiftPopUI(showType)
+ UIManager:showUI("app/ui/arena/arena_pop_gift_ui", {showType = showType})
end
return ArenaManager
\ No newline at end of file
diff --git a/lua/app/module/battle/battle_const.lua b/lua/app/module/battle/battle_const.lua
index ad4b75ce..79947010 100644
--- a/lua/app/module/battle/battle_const.lua
+++ b/lua/app/module/battle/battle_const.lua
@@ -341,6 +341,8 @@ local BUFF_NAME = {
INVINCIBLE_SHIELD = "invincible_shield",
SHIELD_ICE_02 = "shield_ice_02",
SKILL_HURT_ADD_SHOW = "skill_hurt_add_show",
+ SHIELD_ICE_REBOUND_200 = "shield_ice_rebound_200",
+ SHIELD_REBOUND_100 = "shield_rebound_100",
REBIRTH = "rebirth",
OCEAN_SHIELD = "ocean_shield",
SELF_HEAL = "self_heal",
diff --git a/lua/app/module/battle/component/battle_unit_comp.lua b/lua/app/module/battle/component/battle_unit_comp.lua
index a2aaa97d..74af9101 100644
--- a/lua/app/module/battle/component/battle_unit_comp.lua
+++ b/lua/app/module/battle/component/battle_unit_comp.lua
@@ -124,6 +124,10 @@ function BattleUnitComp:initWithEntity(modelId, entity, battleController, target
self:initHitAniInfo()
end
+function BattleUnitComp:getSide()
+ return self.side
+end
+
function BattleUnitComp:initHitAniInfo()
self.hurtAniNameList = {}
self.hurtAniNameCount = 0
diff --git a/lua/app/module/battle/controller/battle_base_controller.lua b/lua/app/module/battle/controller/battle_base_controller.lua
index 1e121b3d..b3d73fad 100644
--- a/lua/app/module/battle/controller/battle_base_controller.lua
+++ b/lua/app/module/battle/controller/battle_base_controller.lua
@@ -11,6 +11,7 @@ local BATTLE_INSTRUCTIONS_HELPER = require "app/module/battle/helper/battle_inst
local BattleBoardTouchHelper = require "app/module/battle/helper/battle_board_touch_helper"
local BattleBuffHandle = require "app/module/battle/helper/battle_buff_handle"
local BATTLE_SNAPSHOT_HELPER = require "app/module/battle/helper/battle_snapshot_helper"
+local BattleFormula = require "app/module/battle/helper/battle_formula"
local BattleBaseController = class("BattleBaseController")
local BattleConst = GConst.BattleConst
local BUFF_NAME_TO_ATTR = BattleConst.BUFF_NAME_TO_ATTR
@@ -245,13 +246,18 @@ function BattleBaseController:onLinkChange()
local sequence = self.battleData:getGridSequence()
local mainElementType
-
+ local dmgSkillId
for index, info in ipairs(sequence) do
local entity = self.battleData:getGridEntity(info.posId)
- if not mainElementType then
+ if not mainElementType or not dmgSkillId then
local skillId = entity:getSkillId()
- if not skillId then
+ if not skillId and not mainElementType then
mainElementType = entity:getElementType()
+ end
+ if skillId and not dmgSkillId then
+ dmgSkillId = skillId
+ end
+ if mainElementType and dmgSkillId then
break
end
end
@@ -298,8 +304,10 @@ function BattleBaseController:onLinkChange()
end
end
+ local dmgElementTypeMap
if not self:getCurActionUnitComp():getActiveSkillLimit() then
local aniSequence, influenceElementType, lineCount, elementTypeMap, linkElementType, effectGridMap, randomPosList = self:calculateCurElimination(true)
+ dmgElementTypeMap = elementTypeMap
if randomPosList then
for _, posId in ipairs(randomPosList) do
local gridEntity = self.battleData:getGridEntity(posId)
@@ -317,6 +325,22 @@ function BattleBaseController:onLinkChange()
if mainElementType then
self:getSideTeam(self.curActionSide):changeMainUnit(mainElementType)
end
+
+ local elementTypeCount = 0
+ for element, count in pairs(dmgElementTypeMap) do
+ elementTypeCount = elementTypeCount + count
+ end
+ local dmg = self:calExpectedInjury(mainElementType, elementTypeCount, dmgSkillId)
+ local defMainUnitcomp = self:getCurOtherActionUnitComp()
+ if defMainUnitcomp then
+ local hp = defMainUnitcomp.unitEntity:getHp()
+ local hpPercent = (hp - dmg) / defMainUnitcomp.unitEntity:getMaxHp()
+ if self.curActionSide == SIDE_ATK then
+ self.battleUI:setDefHp(hp, hpPercent)
+ else
+ self.battleUI:setAtkHp(hp, hpPercent)
+ end
+ end
end
function BattleBaseController:getInitBoard()
@@ -724,8 +748,21 @@ function BattleBaseController:getCurActionUnitComp()
return self:getCurActionTeam():getMainUnit()
end
-function BattleBaseController:getCurActionBoardRowRange()
- local isAtkAction = self.curActionSide == SIDE_ATK
+function BattleBaseController:getCurOtherActionUnitComp()
+ local side = self:getCurActionOtherSide()
+ if not side then
+ return
+ end
+ local team = self:getCurActionTeam(side)
+ if not team then
+ return
+ end
+ return team:getMainUnit()
+end
+
+function BattleBaseController:getCurActionBoardRowRange(side)
+ side = side or self.curActionSide
+ local isAtkAction = side == SIDE_ATK
if isAtkAction then
return self:getAtkMinRow() + 1, self:getRowCount()
else
@@ -743,6 +780,16 @@ function BattleBaseController:getPosIdInCurActionBoardRowRange(posId)
return true
end
+function BattleBaseController:getPosIdInActionBoardRowRange(side, posId)
+ local min, max = self:getCurActionBoardRowRange(side)
+ local r = ModuleManager.BattleManager:getPosRC(posId).r
+ if r < min or r > max then
+ return false
+ end
+
+ return true
+end
+
function BattleBaseController:onLoadComplete()
UIManager:closeLoading()
self:handleBuffs()
@@ -1171,6 +1218,14 @@ function BattleBaseController:clearGridSequence()
end
function BattleBaseController:onLinkOver()
+ local hp = self.atkTeam:getMainUnit().unitEntity:getHp()
+ local hpPercent = self.atkTeam:getMainUnit().unitEntity:getHpPercent()
+ self.battleUI:setAtkHp(hp, hpPercent)
+
+ local hp = self.defTeam:getMainUnit().unitEntity:getHp()
+ local hpPercent = self.defTeam:getMainUnit().unitEntity:getHpPercent()
+ self.battleUI:setDefHp(hp, hpPercent)
+
self.battleUI:hideAllSfxLine()
local sequence = self.battleData:getGridSequence()
local count = #sequence
@@ -2276,14 +2331,21 @@ function BattleBaseController:selectSKillNextToStep()
end
-function BattleBaseController:changeElementType(count, elementType)
+function BattleBaseController:changeElementType(count, elementType, side)
self.changeElementTypeMap = table.clearOrCreate(self.changeElementTypeMap)
self.changeElementTypeList = table.clearOrCreate(self.changeElementTypeList)
local listCount = 0
for _, entity in pairs(self.battleData:getGridEnties()) do
if entity:canChangeInfo() and entity:getElementType() ~= elementType then
- table.insert(self.changeElementTypeList, entity)
- listCount = listCount + 1
+ if side then
+ if self:getPosIdInActionBoardRowRange(side, entity:getPosId()) then
+ table.insert(self.changeElementTypeList, entity)
+ listCount = listCount + 1
+ end
+ else
+ table.insert(self.changeElementTypeList, entity)
+ listCount = listCount + 1
+ end
end
end
@@ -2413,7 +2475,7 @@ function BattleBaseController:shuffleBoard(callback)
else
self.resetList = table.clearOrCreate(self.resetList)
for posId, entity in pairs(self.battleData:getGridEnties()) do
- if self:getPosIdInCurActionBoardRowRange(posId) and entity:isCanFallStatus() then
+ if self:getPosIdInCurActionBoardRowRange(posId) and entity:isCanFallStatus() and not entity:getCantUpset() then
table.insert(self.resetList, entity)
end
end
@@ -2462,7 +2524,7 @@ function BattleBaseController:getShuffleBoardInfo()
end
local anySkillCount = 0
for posId, entity in pairs(self.battleData:getGridEnties()) do
- if self:getPosIdInCurActionBoardRowRange(posId) and entity:isCanFallStatus() then
+ if self:getPosIdInCurActionBoardRowRange(posId) and entity:isCanFallStatus() and not entity:getCantUpset() then
if entity:getSkillId() then
local skillEntity = self:getSkillEntityBySkillId(entity:getSkillId())
local elementType = skillEntity:getPosition()
@@ -3144,4 +3206,21 @@ BattleBaseController._doInstruction = {
[BattleConst.INSTRUCTION_NAME.PLAY_SKILL] = _playSkill,
}
+function BattleBaseController:calExpectedInjury(mainElementType, count, skillId)
+ local atkCompMap = self:getCurActionTeam():getUnitComp()
+ if not atkCompMap then
+ return 0
+ end
+ local atkUnitComp = atkCompMap[mainElementType]
+ if mainElementType and not atkUnitComp then
+ return 0
+ end
+ if not mainElementType or not atkUnitComp then
+ count = 0
+ atkUnitComp = self:getCurActionTeam():getMainUnit()
+ end
+ local dmg = BattleFormula:getExpectedDamageResult(atkUnitComp, count, self:getCurOtherActionUnitComp(), skillId, atkCompMap)
+ return dmg
+end
+
return BattleBaseController
\ No newline at end of file
diff --git a/lua/app/module/battle/helper/battle_buff_handle.lua b/lua/app/module/battle/helper/battle_buff_handle.lua
index 2609e332..a191d2bf 100644
--- a/lua/app/module/battle/helper/battle_buff_handle.lua
+++ b/lua/app/module/battle/helper/battle_buff_handle.lua
@@ -159,6 +159,20 @@ BattleBuffHandle.addShield = {
target.unitEntity:addAttr(ATTR_NAME.SHIELD_REBOUND, 40000, false)
return shieldNum
end,
+ -- 反弹目标伤害的200%,直接写死
+ [BUFF_NAME.SHIELD_ICE_REBOUND_200] = function(unitComp, buff, target, buffEffect)
+ local shieldNum = target.unitEntity:getMaxHp() * buff:getEffectNum() // DEFAULT_FACTOR
+ target:addShield(shieldNum, buffEffect)
+ target.unitEntity:addAttr(ATTR_NAME.SHIELD_REBOUND, 20000, false)
+ return shieldNum
+ end,
+ -- 反弹目标伤害的100%,直接写死
+ [BUFF_NAME.SHIELD_REBOUND_100] = function(unitComp, buff, target, buffEffect)
+ local shieldNum = target.unitEntity:getMaxHp() * buff:getEffectNum() // DEFAULT_FACTOR
+ target:addShield(shieldNum, buffEffect)
+ target.unitEntity:addAttr(ATTR_NAME.SHIELD_REBOUND, 10000, false)
+ return shieldNum
+ end,
-- 海洋护盾
[BUFF_NAME.OCEAN_SHIELD] = function(unitComp, buff, target, buffEffect)
local shieldNum = target.unitEntity:getMaxHp() * buff:getEffectNum() // DEFAULT_FACTOR
@@ -181,6 +195,14 @@ BattleBuffHandle.removeShield = {
target.unitEntity:addAttr(ATTR_NAME.SHIELD_REBOUND, -40000, false)
target:removeShield(buffEffect)
end,
+ [BUFF_NAME.SHIELD_ICE_REBOUND_200] = function(buffSender, target, buff, buffEffect)
+ target.unitEntity:addAttr(ATTR_NAME.SHIELD_REBOUND, -20000, false)
+ target:removeShield(buffEffect)
+ end,
+ [BUFF_NAME.SHIELD_REBOUND_100] = function(buffSender, target, buff, buffEffect)
+ target.unitEntity:addAttr(ATTR_NAME.SHIELD_REBOUND, -10000, false)
+ target:removeShield(buffEffect)
+ end,
-- 海洋护盾
[BUFF_NAME.OCEAN_SHIELD] = function(buffSender, target, buff, buffEffect)
target:removeShield(buffEffect)
diff --git a/lua/app/module/battle/helper/battle_formula.lua b/lua/app/module/battle/helper/battle_formula.lua
index 815be78c..6d12373b 100644
--- a/lua/app/module/battle/helper/battle_formula.lua
+++ b/lua/app/module/battle/helper/battle_formula.lua
@@ -14,6 +14,37 @@ function BattleFormula:getDamageOrCureResult(unitComp, buff, targetUnitComp)
return 0
end
+function BattleFormula:getExpectedDamageResult(unitComp, count, targetUnitComp, skillId, atkCompMap)
+ -- (元素个数*攻击者攻击力+链接技能的伤害) * 受击者伤害减免
+ -- 普攻
+ local result = unitComp.unitEntity:getAtk() * count
+ local atkMatchType = unitComp.unitEntity:getMatchType()
+ local coefficient = math.max(DEFAULT_FACTOR - targetUnitComp.unitEntity:getDecDmg(atkMatchType), 0)
+ result = result * coefficient // DEFAULT_FACTOR
+ -- 技能
+ if skillId and atkCompMap then
+ local skillConfig = ConfigManager:getConfig("skill")[skillId]
+ if skillConfig and skillConfig.effect and skillConfig.position then
+ local matchType = skillConfig.position
+ if atkCompMap[matchType] then
+ local atk = atkCompMap[matchType].unitEntity:getAtk()
+ local dmg = 0
+ for _, effect in ipairs(skillConfig.effect) do
+ local buffConfig = ConfigManager:getConfigWithOtherKey("buff", "name")[effect.type]
+ if buffConfig and buffConfig.formula == 1 then -- 伤害公式
+ dmg = dmg + effect.num * atk
+ end
+ end
+ local coefficient = math.max(DEFAULT_FACTOR - targetUnitComp.unitEntity:getDecDmg(atkMatchType), 0)
+ result = result + (dmg * coefficient // DEFAULT_FACTOR) // DEFAULT_FACTOR
+ end
+ end
+ end
+ -- 最终伤害
+ result = result * (DEFAULT_FACTOR - unitComp.unitEntity:getEndDmgDecAll() + unitComp.unitEntity:getEndDmgAddtionAll()) // DEFAULT_FACTOR
+ return result
+end
+
BattleFormula.calculateFormula = {
-- ((攻击)*技能倍率*(1+(攻击者元素伤害增加+所有伤害增加)(攻击者)- (攻击者元素伤害降低+所有伤害降低) +(受到元素伤害增加+受到所有伤害增加(受击)-受到元素伤害降低-受到所有伤害降低(受击) + 主动技能增伤) + 固定值) *暴击伤害*(1-最终造成伤害降低%+最终造成伤害增加%)
[1] = function(unitComp, buff, targetUnit)
diff --git a/lua/app/module/battle/helper/battle_snapshot_helper.lua b/lua/app/module/battle/helper/battle_snapshot_helper.lua
index 3ee8bfb1..f848adb4 100644
--- a/lua/app/module/battle/helper/battle_snapshot_helper.lua
+++ b/lua/app/module/battle/helper/battle_snapshot_helper.lua
@@ -77,6 +77,11 @@ function BattleSnapshotHelper:snapshotBattleInfo(battleBaseController)
battleBaseController.snapShotInfo.atkSkillMap[tostring(skillId)] = info
end
+ battleBaseController.snapShotInfo.atkSkillEnergy = table.clearOrCreate(battleBaseController.snapShotInfo.atkSkillEnergy)
+ for elementType, skillEntity in pairs(battleBaseController.battleData:getSkillEntities(SIDE_ATK)) do
+ battleBaseController.snapShotInfo.atkSkillEnergy[tostring(elementType)] = skillEntity:getEnergy()
+ end
+
-- BattleBaseData
battleBaseController.snapShotInfo.battledataShopInfo = battleBaseController.battleData:getSnapshoptInfo()
@@ -216,12 +221,23 @@ function BattleSnapshotHelper:dealSnapshotBattleExtraInfo(battleBaseController,
end
end
end
+ end
- if battleBaseController.battleUI then
- battleBaseController.battleUI:refreshSkill(nil, nil, SIDE_ATK)
+ local atkSkillEnergy = snapshot.atkSkillEnergy
+ if atkSkillEnergy then
+ local skillMap = battleBaseController.battleData:getSkillEntities(SIDE_ATK)
+ for matchTypeStr, count in pairs(atkSkillEnergy) do
+ local matchType = tonumber(matchTypeStr)
+ if matchType and skillMap[matchType] then
+ skillMap[matchType]:addEnergy(count)
+ end
end
end
+ if battleBaseController.battleUI then
+ battleBaseController.battleUI:refreshSkill(nil, nil, SIDE_ATK)
+ end
+
-- buff
local atkBuff = snapshot.atkBuff
if atkBuff then
diff --git a/lua/app/module/battle/skill/battle_board_skill_handle.lua b/lua/app/module/battle/skill/battle_board_skill_handle.lua
index e35908db..40c6171c 100644
--- a/lua/app/module/battle/skill/battle_board_skill_handle.lua
+++ b/lua/app/module/battle/skill/battle_board_skill_handle.lua
@@ -449,7 +449,7 @@ local function _takeChangeElementType(atkUnitComp, skillEntity, battleController
local elementType = params[1]
local changeCount = params[2]
- battleController:changeElementType(changeCount, elementType)
+ battleController:changeElementType(changeCount, elementType, atkUnitComp and atkUnitComp:getSide())
end
diff --git a/lua/app/module/battle/team/battle_team.lua b/lua/app/module/battle/team/battle_team.lua
index dd7e5fed..ea5f513a 100644
--- a/lua/app/module/battle/team/battle_team.lua
+++ b/lua/app/module/battle/team/battle_team.lua
@@ -663,6 +663,7 @@ function BattleTeam:onActionOver()
skillMatch = self:getMainUnit().unitEntity:getMatchType()
else
self.battleController.roundStep = BattleConst.BATTLE_ROUND_STEP.ON_DEF_STEP
+ skillMatch = self:getMainUnit().unitEntity:getMatchType()
end
self:useNormalSkill(skillMatch, counterAttackCount, true, BattleConst.EFFECT_TYPE.DIRECT, BattleConst.ATTACK_ACTION_STATE.COUNTERATTACK, function()
diff --git a/lua/app/module/bounty/bounty_manager.lua b/lua/app/module/bounty/bounty_manager.lua
index 8e49aa06..3e633da8 100644
--- a/lua/app/module/bounty/bounty_manager.lua
+++ b/lua/app/module/bounty/bounty_manager.lua
@@ -40,6 +40,8 @@ function BountyManager:onClaimReward(result)
end
if isSpecialBox then
ModuleManager.ShopManager:showBoxOpenUI({type = GConst.ShopConst.BOX_REWARD_TYPE.BOUNTY, params = rewardId, rewards = result.rewards})
+ local openType = BIReport.BOX_OPEN_OPEN_TYPE.BOUNTY
+ BIReport:postBoxOpen(rewardId, BIReport.BOX_OPEN_BOX_TYPE.ACTIVITY, openType, 0, result.rewards)
else
GFunc.showRewardBox(result.rewards)
end
diff --git a/lua/app/module/common/common_manager.lua b/lua/app/module/common/common_manager.lua
index 81a19d06..674bcbb9 100644
--- a/lua/app/module/common/common_manager.lua
+++ b/lua/app/module/common/common_manager.lua
@@ -10,6 +10,7 @@ function CommonManager:showMopUpUI(rewards, remainCount, callback, customtitleTx
---- 有目标的扫荡 可为nil
target = target,
}
+ AudioManager:playEffect(AudioManager.EFFECT_ID.DUNGEON_SMASH)
UIManager:showUI("app/ui/common/mop_up_ui", params)
end
diff --git a/lua/app/module/dungeon/dungeon_manager.lua b/lua/app/module/dungeon/dungeon_manager.lua
index bcd2f206..b04c91d7 100644
--- a/lua/app/module/dungeon/dungeon_manager.lua
+++ b/lua/app/module/dungeon/dungeon_manager.lua
@@ -93,8 +93,15 @@ end
-- 响应结算金币副本
function DungeonManager:respEndChallengeGold(result)
if result.err_code == GConst.ERROR_STR.SUCCESS then
+ local passId = DataManager.DungeonData:getPassedMaxId(ModuleManager.MODULE_KEY.DUNGEON_GOLD)
DataManager.DungeonData:initDungeonGold(result.gold_challenge)
ModuleManager.BattleManager:showBattleResultUI(GConst.BattleConst.BATTLE_TYPE.DUNGEON_GOLD, result.rewards, result.reqData.combatReport)
+
+ if passId ~= DataManager.DungeonData:getPassedMaxId(ModuleManager.MODULE_KEY.DUNGEON_GOLD) then
+ local data = {}
+ data.dungeon_progress = DataManager.DungeonData:getDungeonBIStr()
+ CS.ThinkingAnalytics.ThinkingAnalyticsAPI.UserSet(data)
+ end
end
end
@@ -182,8 +189,15 @@ end
-- 响应结算碎片副本
function DungeonManager:respEndChallengeShards(result)
if result.err_code == GConst.ERROR_STR.SUCCESS then
+ local passId = DataManager.DungeonData:getPassedMaxId(ModuleManager.MODULE_KEY.DUNGEON_SHARDS)
DataManager.DungeonData:initDungeonShards(result.shards_challenge)
ModuleManager.BattleManager:showBattleResultUI(GConst.BattleConst.BATTLE_TYPE.DUNGEON_SHARDS, result.rewards, result.reqData and result.reqData.combatReport or {})
+
+ if passId ~= DataManager.DungeonData:getPassedMaxId(ModuleManager.MODULE_KEY.DUNGEON_SHARDS) then
+ local data = {}
+ data.dungeon_progress = DataManager.DungeonData:getDungeonBIStr()
+ CS.ThinkingAnalytics.ThinkingAnalyticsAPI.UserSet(data)
+ end
end
end
diff --git a/lua/app/module/dungeon_armor/dungeon_armor_manager.lua b/lua/app/module/dungeon_armor/dungeon_armor_manager.lua
index f7c6f133..5fb31485 100644
--- a/lua/app/module/dungeon_armor/dungeon_armor_manager.lua
+++ b/lua/app/module/dungeon_armor/dungeon_armor_manager.lua
@@ -94,11 +94,18 @@ end
function DungeonArmorManager:rspEndChallenge(result)
if result.err_code == GConst.ERROR_STR.SUCCESS then
local armorData = DataManager.DungeonData:getDungeonDataByType(ModuleManager.MODULE_KEY.DUNGEON_ARMOR)
+ local passId = armorData:getPassedMaxId()
if result.reqData then
armorData:refreshInfoOnSettlement(result.reqData.chapter_armor_id, result)
end
ModuleManager.BattleManager:showBattleArmorResultUI(GConst.BattleConst.BATTLE_TYPE.DUNGEON_ARMOR, result.rewards, result.reqData.combatReport)
DataManager.DungeonData:setDirty()
+
+ if passId ~= armorData:getPassedMaxId() then
+ local data = {}
+ data.dungeon_progress = DataManager.DungeonData:getDungeonBIStr()
+ CS.ThinkingAnalytics.ThinkingAnalyticsAPI.UserSet(data)
+ end
end
end
diff --git a/lua/app/module/dungeon_weapon/dungeon_weapon_manager.lua b/lua/app/module/dungeon_weapon/dungeon_weapon_manager.lua
index 924215fd..a75c9e49 100644
--- a/lua/app/module/dungeon_weapon/dungeon_weapon_manager.lua
+++ b/lua/app/module/dungeon_weapon/dungeon_weapon_manager.lua
@@ -20,6 +20,14 @@ function DungeonWeaponManager:reqFight(chapterId)
end
local weaponData = DataManager.DungeonData:getDungeonDataByType(ModuleManager.MODULE_KEY.DUNGEON_WEAPON)
+ if weaponData:canFarmChapter(chapterId) then
+ if not DataManager.DungeonData:isEnoughHp(ModuleManager.MODULE_KEY.DUNGEON_WEAPON) then
+ GFunc.showItemNotEnough(GConst.ItemConst.ITEM_ID_VIT)
+ ModuleManager.CommerceManager:showBuyVitUI()
+ return
+ end
+ end
+
if not weaponData:canFightChapter(chapterId) then
return
end
@@ -72,6 +80,7 @@ end
function DungeonWeaponManager:rspEndChallenge(result)
if result.err_code == GConst.ERROR_STR.SUCCESS then
local weaponData = DataManager.DungeonData:getDungeonDataByType(ModuleManager.MODULE_KEY.DUNGEON_WEAPON)
+ local passId = weaponData:getPassedMaxId()
weaponData:refreshInfoOnSettlement(result.reqData.chapter_weapon_id, result)
local firstRewardsIdx = #result.first_rewards
@@ -94,6 +103,12 @@ function DungeonWeaponManager:rspEndChallenge(result)
end
ModuleManager.BattleManager:showBattleResultUI(GConst.BattleConst.BATTLE_TYPE.DUNGEON_WEAPON, resultRewards, result.reqData.combatReport, nil, firstRewardsIdx, true)
DataManager.DungeonData:setDirty()
+
+ if passId ~= weaponData:getPassedMaxId() then
+ local data = {}
+ data.dungeon_progress = DataManager.DungeonData:getDungeonBIStr()
+ CS.ThinkingAnalytics.ThinkingAnalyticsAPI.UserSet(data)
+ end
end
end
@@ -101,6 +116,13 @@ end
function DungeonWeaponManager:reqSweep(chapterId, target)
local weaponData = DataManager.DungeonData:getDungeonDataByType(ModuleManager.MODULE_KEY.DUNGEON_WEAPON)
+ -- 体力
+ if not DataManager.DungeonData:isEnoughHp(ModuleManager.MODULE_KEY.DUNGEON_WEAPON) then
+ GFunc.showItemNotEnough(GConst.ItemConst.ITEM_ID_VIT)
+ ModuleManager.CommerceManager:showBuyVitUI()
+ return
+ end
+
-- 判断次数
if weaponData:getRemianFarmCount() <= 0 then
GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.DUNGEON_WEAPON_DESC_13))
diff --git a/lua/app/module/equip/equip_manager.lua b/lua/app/module/equip/equip_manager.lua
index 6645057f..80664db3 100644
--- a/lua/app/module/equip/equip_manager.lua
+++ b/lua/app/module/equip/equip_manager.lua
@@ -36,7 +36,11 @@ function EquipManager:reqUpgrade(id, part)
return
end
- self:sendMessage(ProtoMsgType.FromMsgEnum.EquipUpgradeReq, {hero_id = id, position = part}, {}, self.rspUpgrade, BIReport.ITEM_GET_TYPE.EQUIP_UPGRADE)
+ local itemGetType = BIReport.ITEM_GET_TYPE.EQUIP_UPGRADE
+ if part ~= GConst.EquipConst.PART_TYPE.WEAPON then
+ itemGetType = BIReport.ITEM_GET_TYPE.ARMOR_UPGRADE
+ end
+ self:sendMessage(ProtoMsgType.FromMsgEnum.EquipUpgradeReq, {hero_id = id, position = part}, {}, self.rspUpgrade, itemGetType)
end
function EquipManager:rspUpgrade(result)
diff --git a/lua/app/module/hero/hero_const.lua b/lua/app/module/hero/hero_const.lua
index a56e096a..5005327c 100644
--- a/lua/app/module/hero/hero_const.lua
+++ b/lua/app/module/hero/hero_const.lua
@@ -67,6 +67,6 @@ HeroConst.SHOW_NODE =
HeroConst.TRIAL_HERO_ID = 34001 -- 花木兰
HeroConst.TRIAL_HERO_MIN_CHAPTER = 2
-HeroConst.TRIAL_HERO_MAX_CHAPTER = 4
+HeroConst.TRIAL_HERO_MAX_CHAPTER = 5
return HeroConst
\ No newline at end of file
diff --git a/lua/app/module/item/item_const.lua b/lua/app/module/item/item_const.lua
index 52244e97..200a9db8 100644
--- a/lua/app/module/item/item_const.lua
+++ b/lua/app/module/item/item_const.lua
@@ -26,6 +26,7 @@ ItemConst.ITEM_TYPE = {
WEIGHT_FRAGMENT = 6,
RANDOM_BOX_ITEM = 7,
FIXED_BOX_ITEM = 8,
+ EPIC_HERO_FRAMENT = 11,
}
return ItemConst
\ No newline at end of file
diff --git a/lua/app/module/item/item_manager.lua b/lua/app/module/item/item_manager.lua
index 025370ec..c1bfb3bf 100644
--- a/lua/app/module/item/item_manager.lua
+++ b/lua/app/module/item/item_manager.lua
@@ -16,4 +16,12 @@ function ItemManager:getItemType(id)
return I18N:getConfig("item")[id].desc
end
+function ItemManager:rspRecoveryNtf(result)
+ if result and result.id == GConst.ItemConst.ITEM_ID_VIT then
+ if result.count and result.count > 0 then
+ BIReport:postVitGet(result.count, BIReport.ITEM_GET_TYPE.OFFLINE_RECOVERY)
+ end
+ end
+end
+
return ItemManager
\ No newline at end of file
diff --git a/lua/app/module/login/login_manager.lua b/lua/app/module/login/login_manager.lua
index 739c48f8..bc2336bb 100644
--- a/lua/app/module/login/login_manager.lua
+++ b/lua/app/module/login/login_manager.lua
@@ -164,6 +164,9 @@ function LoginManager:loginFinish(data)
data.formation, data.formation_lv, data.formation_atk, data.formation_hp = DataManager.FormationData:getStageFormationBIStr()
data.formation_lv = nil
data.all_heroes = DataManager.HeroData:getAllHeroesBIStr()
+ data.dungeon_progress = DataManager.DungeonData:getDungeonBIStr()
+ data.game_version = DataManager.PlayerData:getGameVersion()
+ data.is_internal = DataManager.PlayerData:getIsInternal()
CS.ThinkingAnalytics.ThinkingAnalyticsAPI.UserSet(data)
EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.LOGIN_REQ_SUCCESS)
diff --git a/lua/app/module/shop/shop_manager.lua b/lua/app/module/shop/shop_manager.lua
index bbdfd7e9..2a196230 100644
--- a/lua/app/module/shop/shop_manager.lua
+++ b/lua/app/module/shop/shop_manager.lua
@@ -32,40 +32,44 @@ function ShopManager:showBoxLevelUpUI(params)
end
-- 触发弹窗礼包
-function ShopManager:triggerGiftPopUI(actType, actId)
+function ShopManager:triggerGiftPopUI(actType, actId, showType)
-- 入门礼包不在通用触发条件内
if (actType == PayManager.PURCHARSE_TYPE.ACT_GIFT and actId == GConst.ShopConst.INTRODUCT_GIFT_ID) then
- self:showGiftPopUI(actType, actId, false)
+ self:showGiftPopUI(actType, actId, false, showType)
DataManager.ShopData:removePopUpGift(actType, actId)
else
if ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.ACT_GIFT_SHOW_OPEN, true) then
- self:showGiftPopUI(actType, actId, false)
+ self:showGiftPopUI(actType, actId, false, showType)
DataManager.ShopData:removePopUpGift(actType, actId)
end
end
end
-function ShopManager:showGiftPopUI(actType, actId, onlySelf)
+function ShopManager:showGiftPopUI(actType, actId, onlySelf, showType)
if GFunc.isShenhe() then
return
end
if actType == PayManager.PURCHARSE_TYPE.ACT_GIFT and actId == GConst.ShopConst.FIRST_RECHARGE_ID then
- UIManager:showUI("app/ui/shop/first_recharge_pop_ui")
+ UIManager:showUI("app/ui/shop/first_recharge_pop_ui", {showType = showType})
elseif actType == PayManager.PURCHARSE_TYPE.ACT_GIFT and actId == GConst.ShopConst.INTRODUCT_GIFT_ID then
- UIManager:showUI("app/ui/shop/introduct_pop_ui")
+ UIManager:showUI("app/ui/shop/introduct_pop_ui", {showType = showType})
+ elseif actType == PayManager.PURCHARSE_TYPE.CHAPTER_GIFT then
+ UIManager:showUI("app/ui/shop/gift_pop_chapter_ui", {type = actType, id = actId, onlySelf = onlySelf})
+ elseif actType == PayManager.PURCHARSE_TYPE.GROW_UP_GIFT_NEW then
+ UIManager:showUI("app/ui/shop/gift_pop_grow_up_ui", {type = actType, id = actId, onlySelf = onlySelf})
else
- UIManager:showUI("app/ui/shop/gift_pop_ui", {type = actType, id = actId, onlySelf = onlySelf})
+ UIManager:showUI("app/ui/shop/gift_pop_ui", {type = actType, id = actId, onlySelf = onlySelf, showType = showType})
end
end
-- 触发金币弹窗礼包
function ShopManager:triggerCoinGiftPopUI(actId)
- self:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, actId)
+ self:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, actId, BIReport.PAY_UI_SHOW_TYPE.TRIGGER_POP)
end
-- 触发成长礼包
function ShopManager:triggerGrowUpGiftPopUI(actId)
- self:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.GROW_UP_GIFT_NEW, actId)
+ self:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.GROW_UP_GIFT_NEW, actId, BIReport.PAY_UI_SHOW_TYPE.TRIGGER_POP)
end
-- 购买每日特惠商品
diff --git a/lua/app/module/summon/summon_manager.lua b/lua/app/module/summon/summon_manager.lua
index 73fde500..8f2da97b 100644
--- a/lua/app/module/summon/summon_manager.lua
+++ b/lua/app/module/summon/summon_manager.lua
@@ -40,6 +40,13 @@ function SummonManager:summonFinish(result)
elseif summonType == GConst.SummonConst.SUMMON_TYPE.LV_3 then
ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_OPEN_SHOP_BOX_LEVEL_3, 1)
end
+ if result.rewards then
+ local openType = BIReport.BOX_OPEN_OPEN_TYPE.USE_KEY
+ if result.reqData.consume_type ~= 1 then -- 钻石
+ openType = BIReport.BOX_OPEN_OPEN_TYPE.USE_GEM
+ end
+ BIReport:postBoxOpen(summonType, BIReport.BOX_OPEN_BOX_TYPE.SHOP, openType, DataManager.SummonData:getSummonLevel(), result.rewards)
+ end
end
if result.summon_info.count then
local totalCount = 0
diff --git a/lua/app/module/tips/tips_manager.lua b/lua/app/module/tips/tips_manager.lua
index 3bcf4a81..4bf06d67 100644
--- a/lua/app/module/tips/tips_manager.lua
+++ b/lua/app/module/tips/tips_manager.lua
@@ -32,8 +32,10 @@ function TipsManager:showRewardTips(rewardId, rewardType, tarPrefabObj, alignTyp
if rewardType == GConst.REWARD_TYPE.ITEM then
local info = ConfigManager:getConfig("item")[rewardId]
if info then
- if info.type == GConst.ItemConst.ITEM_TYPE.RANDOM_FRAGMENT or info.type == GConst.ItemConst.ITEM_TYPE.WEIGHT_FRAGMENT then
- -- 随机碎片 or 权重随机碎片
+ if info.type == GConst.ItemConst.ITEM_TYPE.RANDOM_FRAGMENT
+ or info.type == GConst.ItemConst.ITEM_TYPE.WEIGHT_FRAGMENT
+ or info.type == GConst.ItemConst.ITEM_TYPE.EPIC_HERO_FRAMENT then
+ -- 随机碎片 or 权重随机碎片 or 史诗英雄碎片
self:showHeroFragmentTips(rewardId)
return
elseif info.type == GConst.ItemConst.ITEM_TYPE.BOX then
diff --git a/lua/app/proto/proto_msg_type.lua b/lua/app/proto/proto_msg_type.lua
index 942b5346..6d31f073 100644
--- a/lua/app/proto/proto_msg_type.lua
+++ b/lua/app/proto/proto_msg_type.lua
@@ -63,6 +63,7 @@ local ProtoMsgType = {
[1571186308] = "ChapterShardsChallengeFarmRsp",
[1584689751] = "ActPaidResultReq",
[1584691584] = "ActPaidResultRsp",
+ [1635643251] = "RecoveryNtf",
[1646412046] = "ChapterDailyChallengeSettlementReq",
[1646413879] = "ChapterDailyChallengeSettlementRsp",
[1651833678] = "ChapterWeaponChallengeStartReq",
@@ -264,6 +265,7 @@ local ProtoMsgType = {
ChapterShardsChallengeFarmRsp = 1571186308,
ActPaidResultReq = 1584689751,
ActPaidResultRsp = 1584691584,
+ RecoveryNtf = 1635643251,
ChapterDailyChallengeSettlementReq = 1646412046,
ChapterDailyChallengeSettlementRsp = 1646413879,
ChapterWeaponChallengeStartReq = 1651833678,
@@ -465,6 +467,7 @@ local ProtoMsgType = {
ChapterShardsChallengeFarmRsp = "ChapterShardsChallengeFarmRsp",
ActPaidResultReq = "ActPaidResultReq",
ActPaidResultRsp = "ActPaidResultRsp",
+ RecoveryNtf = "RecoveryNtf",
ChapterDailyChallengeSettlementReq = "ChapterDailyChallengeSettlementReq",
ChapterDailyChallengeSettlementRsp = "ChapterDailyChallengeSettlementRsp",
ChapterWeaponChallengeStartReq = "ChapterWeaponChallengeStartReq",
diff --git a/lua/app/ui/activity/gold_pig/gold_pig_ui.lua b/lua/app/ui/activity/gold_pig/gold_pig_ui.lua
index c2b5221a..d221115d 100644
--- a/lua/app/ui/activity/gold_pig/gold_pig_ui.lua
+++ b/lua/app/ui/activity/gold_pig/gold_pig_ui.lua
@@ -8,8 +8,9 @@ function GoldPigUI:getPrefabPath()
return "assets/prefabs/ui/activity/gold_pig/gold_pig_ui.prefab"
end
-function GoldPigUI:ctor()
+function GoldPigUI:ctor(params)
self.goldPigId = DataManager.GoldPigData:getId()
+ self.showType = params.showType
end
function GoldPigUI:onLoadRootComplete()
@@ -55,7 +56,7 @@ function GoldPigUI:onLoadRootComplete()
end
end)
- BIReport:postPayUIShow(BIReport.GIFT_TYPE.GOLD_PIG)
+ BIReport:postPayUIShow(BIReport.GIFT_TYPE.GOLD_PIG, self.goldPigId, self.showType)
self.timeTx = uiMap["gold_pig_ui.bg.time_bg.time_tx"]
local isFull = DataManager.GoldPigData:getIsFull()
diff --git a/lua/app/ui/arena/arena_pop_gift_ui.lua b/lua/app/ui/arena/arena_pop_gift_ui.lua
index 49269e54..5b1468ee 100644
--- a/lua/app/ui/arena/arena_pop_gift_ui.lua
+++ b/lua/app/ui/arena/arena_pop_gift_ui.lua
@@ -14,6 +14,7 @@ function GiftPopUI:ctor(params)
self.actType = PayManager.PURCHARSE_TYPE.ACT_GIFT
self.actId = DataManager.ArenaData:getGiftId()
+ self.showType = params.showType
DataManager.ArenaData:cleaShowPopGift()
end
@@ -103,7 +104,7 @@ function GiftPopUI:refresh()
-- 上报
local giftType = PayManager:getGiftType(self.actType, self.actId)
- BIReport:postPayUIShow(giftType, self.actId)
+ BIReport:postPayUIShow(giftType, self.actId, self.showType)
self:updateTime()
end
diff --git a/lua/app/ui/arena/bounty_main_ui.lua b/lua/app/ui/arena/bounty_main_ui.lua
index e2a43b79..bd21990a 100644
--- a/lua/app/ui/arena/bounty_main_ui.lua
+++ b/lua/app/ui/arena/bounty_main_ui.lua
@@ -63,7 +63,7 @@ function BountyMainUI:onLoadRootComplete()
end, 1)
self:updateTime()
- BIReport:postPayUIShow(BIReport.GIFT_TYPE.ARENA_BOUNTY)
+ BIReport:postPayUIShow(BIReport.GIFT_TYPE.ARENA_BOUNTY, nil, BIReport.PAY_UI_SHOW_TYPE.CLICK_SHOW)
end
function BountyMainUI:initTitle()
diff --git a/lua/app/ui/battle/battle_base_ui.lua b/lua/app/ui/battle/battle_base_ui.lua
index 43f89dd3..e17562b9 100644
--- a/lua/app/ui/battle/battle_base_ui.lua
+++ b/lua/app/ui/battle/battle_base_ui.lua
@@ -1096,6 +1096,16 @@ function BattleBaseUI:refreshDefHp(num, percent)
end
end
+function BattleBaseUI:setAtkHp(num, percent)
+ self.hpTextLeft:setText(GFunc.num2Str(num))
+ self.hpProgressLeft.value = percent
+end
+
+function BattleBaseUI:setDefHp(num, percent)
+ self.hpTextRight:setText(GFunc.num2Str(num))
+ self.hpProgressRight.value = percent
+end
+
function BattleBaseUI:refreshSkill(elementMap, showSfx, side)
side = side or SIDE_ATK
if not self.skillNodeCells or not self.skillNodeCells[side] then
diff --git a/lua/app/ui/battle/cell/tiny_buff_cell.lua b/lua/app/ui/battle/cell/tiny_buff_cell.lua
index 93ec90a8..d5202b10 100644
--- a/lua/app/ui/battle/cell/tiny_buff_cell.lua
+++ b/lua/app/ui/battle/cell/tiny_buff_cell.lua
@@ -1,7 +1,7 @@
local TinyBuffCell = class("TinyBuffCell", BaseCell)
function TinyBuffCell:refresh(buffName, round, num, result)
- if round <= 1 or round > 9 then
+ if round <= 0 or round > 9 then
round = GConst.EMPTY_STRING
else
round = tostring(round)
diff --git a/lua/app/ui/bounty/bounty_main_ui.lua b/lua/app/ui/bounty/bounty_main_ui.lua
index ed271ad4..5cddd491 100644
--- a/lua/app/ui/bounty/bounty_main_ui.lua
+++ b/lua/app/ui/bounty/bounty_main_ui.lua
@@ -63,7 +63,7 @@ function BountyMainUI:onLoadRootComplete()
end, 1)
self:updateTime()
- BIReport:postPayUIShow(BIReport.GIFT_TYPE.BOUNTY)
+ BIReport:postPayUIShow(BIReport.GIFT_TYPE.BOUNTY, nil, BIReport.PAY_UI_SHOW_TYPE.CLICK_SHOW)
end
function BountyMainUI:initTitle()
diff --git a/lua/app/ui/collection/cell/collection_hero_cell.lua b/lua/app/ui/collection/cell/collection_hero_cell.lua
index 77654a3f..b4c2871b 100644
--- a/lua/app/ui/collection/cell/collection_hero_cell.lua
+++ b/lua/app/ui/collection/cell/collection_hero_cell.lua
@@ -14,6 +14,7 @@ function CollectionHeroCell:init()
self.btnCollect:addClickListener(function()
if DataManager.CollectionData:getCanCollectPoint(GConst.CollectionConst.TYPE.HERO, self.heroData.id) > 0 then
+ AudioManager:playEffect(AudioManager.EFFECT_ID.STAR_GET)
ModuleManager.CollectionManager:reqHeroPoint(self.heroData.id)
EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.COLLECTION_CLICK_GET_POINT, self.imgIcon:getPosition())
else
diff --git a/lua/app/ui/common/cell/player_head_cell.lua b/lua/app/ui/common/cell/player_head_cell.lua
index 19f3648b..557088dd 100644
--- a/lua/app/ui/common/cell/player_head_cell.lua
+++ b/lua/app/ui/common/cell/player_head_cell.lua
@@ -16,12 +16,9 @@ function PlayerHeadCell:refresh(avatarId, frameId, showRp)
end
-- 背景颜色
- local heroId = DataManager.PlayerData:getAvatarHeroId(avatarId)
- if heroId then
- local smallFrame = ModuleManager.HeroManager:getHeroSmallFrame(heroId)
- if smallFrame then
- self.baseObject:setSprite(GConst.ATLAS_PATH.ICON_HERO, smallFrame)
- end
+ local smallFrame = DataManager.PlayerData:getAvatarBg(avatarId)
+ if smallFrame then
+ self.baseObject:setSprite(GConst.ATLAS_PATH.ICON_HERO, smallFrame)
end
-- 头像
diff --git a/lua/app/ui/dungeon/cell/dungeon_target_cell.lua b/lua/app/ui/dungeon/cell/dungeon_target_cell.lua
index 7f47a1e7..c05c95e6 100644
--- a/lua/app/ui/dungeon/cell/dungeon_target_cell.lua
+++ b/lua/app/ui/dungeon/cell/dungeon_target_cell.lua
@@ -12,13 +12,6 @@ function DungeonTargetCell:init()
self.powerObj = uiMap["dungeon_target_cell.right.power"]
self.imgPowerIcon = uiMap["dungeon_target_cell.right.power.img_icon"]
self.txPowerNum = uiMap["dungeon_target_cell.right.power.tx_num"]
-
- self:bind(DataManager.DungeonData:getDungeonDataByType(ModuleManager.MODULE_KEY.DUNGEON_WEAPON), "isDirty", function()
- self:refresh()
- end)
- self:bind(DataManager.DungeonData:getDungeonDataByType(ModuleManager.MODULE_KEY.DUNGEON_ARMOR), "isDirty", function()
- self:refresh()
- end)
end
function DungeonTargetCell:refresh(target, getWay, id)
diff --git a/lua/app/ui/dungeon/dungeon_difficulty_ui.lua b/lua/app/ui/dungeon/dungeon_difficulty_ui.lua
index e574fdc3..8e7f7b39 100644
--- a/lua/app/ui/dungeon/dungeon_difficulty_ui.lua
+++ b/lua/app/ui/dungeon/dungeon_difficulty_ui.lua
@@ -115,9 +115,6 @@ function DungeonDifficultyUI:onLoadRootComplete()
self:addEventListener(EventManager.CUSTOM_EVENT.DUNGEON_CHALLENGE, function()
self:closeUI()
end)
- self:addEventListener(EventManager.CUSTOM_EVENT.DUNGEON_SWEEP, function()
- self:closeUI()
- end)
end
function DungeonDifficultyUI:refreshDifficulty()
diff --git a/lua/app/ui/dungeon/item_get_ui.lua b/lua/app/ui/dungeon/item_get_ui.lua
index ddffc570..81de430b 100644
--- a/lua/app/ui/dungeon/item_get_ui.lua
+++ b/lua/app/ui/dungeon/item_get_ui.lua
@@ -29,50 +29,6 @@ function ItemGetUI:onLoadRootComplete()
self.txGet = uiMap["item_get_ui.content.tx_get"]
self.scrollRectComp = uiMap["item_get_ui.content.scroll_view"]:addLuaComponent(GConst.TYPEOF_LUA_CLASS.SCROLL_RECT_BASE)
- self.txTitle:setText(I18N:getText("item", self.target.id, "name"))
- self.txDesc:setText(I18N:getText("item", self.target.id, "desc"))
- self.txGet:setText(I18N:getGlobalText(I18N.GlobalConst.EQUIP_DESC_23))
- self.rewardCell:refreshItemById(self.target.id)
-
- local itemCfg = ConfigManager:getConfig("item")[self.target.id]
- if itemCfg == nil or itemCfg.get_way_type == nil or itemCfg.get_way == nil or #itemCfg.get_way == 0 then
- self:closeUI()
- return
- end
-
- self.wayType = itemCfg.get_way_type
- self.wayList = {}
-
- if self.wayType == GConst.DungeonConst.TYPE.WEAPON then
- local weaponData = DataManager.DungeonData:getDungeonDataByType(ModuleManager.MODULE_KEY.DUNGEON_WEAPON)
- local unlock = {}
- local lock = {}
- for index, id in ipairs(itemCfg.get_way) do
- if weaponData:canFightChapter(id) then
- table.insert(unlock, id)
- else
- table.insert(lock, id)
- end
- end
- table.sort(unlock, function(a, b) return a > b end)
- table.sort(lock, function(a, b) return a > b end)
- self.wayList = table.addArray(unlock, lock)
- elseif self.wayType == GConst.DungeonConst.TYPE.ARMOR then
- local weaponData = DataManager.DungeonData:getDungeonDataByType(ModuleManager.MODULE_KEY.DUNGEON_ARMOR)
- local unlock = {}
- local lock = {}
- for index, id in ipairs(itemCfg.get_way) do
- if weaponData:canFightChapter(id) then
- table.insert(unlock, id)
- else
- table.insert(lock, id)
- end
- end
- table.sort(unlock, function(a, b) return a > b end)
- table.sort(lock, function(a, b) return a > b end)
- self.wayList = table.addArray(unlock, lock)
- end
-
self.scrollRectComp:addInitCallback(function()
return "app/ui/dungeon/cell/dungeon_target_cell"
end)
@@ -86,9 +42,49 @@ function ItemGetUI:onLoadRootComplete()
self:addEventListener(EventManager.CUSTOM_EVENT.GO_DUNGEON_UI, function()
self:closeUI()
end)
+ self:bind(DataManager.DungeonData:getDungeonDataByType(ModuleManager.MODULE_KEY.DUNGEON_WEAPON), "isDirty", function()
+ self:onRefresh()
+ end)
+ self:bind(DataManager.DungeonData:getDungeonDataByType(ModuleManager.MODULE_KEY.DUNGEON_ARMOR), "isDirty", function()
+ self:onRefresh()
+ end)
end
function ItemGetUI:onRefresh()
+ self.txTitle:setText(I18N:getText("item", self.target.id, "name"))
+ self.txDesc:setText(I18N:getText("item", self.target.id, "desc"))
+ self.txGet:setText(I18N:getGlobalText(I18N.GlobalConst.EQUIP_DESC_23))
+ self.rewardCell:refreshItemById(self.target.id)
+
+ local itemCfg = ConfigManager:getConfig("item")[self.target.id]
+ if itemCfg == nil or itemCfg.get_way_type == nil or itemCfg.get_way == nil or #itemCfg.get_way == 0 then
+ self:closeUI()
+ return
+ end
+
+ self.wayType = itemCfg.get_way_type
+
+ local weaponData
+ if self.wayType == GConst.DungeonConst.TYPE.WEAPON then
+ weaponData = DataManager.DungeonData:getDungeonDataByType(ModuleManager.MODULE_KEY.DUNGEON_WEAPON)
+ elseif self.wayType == GConst.DungeonConst.TYPE.ARMOR then
+ weaponData = DataManager.DungeonData:getDungeonDataByType(ModuleManager.MODULE_KEY.DUNGEON_ARMOR)
+ end
+ local farm = {}
+ local unlock = {}
+ local lock = {}
+ for index, id in ipairs(itemCfg.get_way) do
+ if weaponData:canFarmChapter(id) and weaponData:getRemianFarmCount(id) > 0 then
+ table.insert(farm, id)
+ elseif weaponData:canFightChapter(id) then
+ table.insert(unlock, id)
+ else
+ table.insert(lock, id)
+ end
+ end
+ unlock = table.addArray(farm, unlock)
+ self.wayList = table.addArray(unlock, lock)
+
self.scrollRectComp:clearCells()
self.scrollRectComp:refillCells(#self.wayList)
end
diff --git a/lua/app/ui/dungeon_weapon/cell/chapter_layer_cell.lua b/lua/app/ui/dungeon_weapon/cell/chapter_layer_cell.lua
index 32be31fb..494a9510 100644
--- a/lua/app/ui/dungeon_weapon/cell/chapter_layer_cell.lua
+++ b/lua/app/ui/dungeon_weapon/cell/chapter_layer_cell.lua
@@ -15,6 +15,10 @@ function ChapterLayerCell:refresh(id)
local fightDesc = uiMap["chapter_layer_cell.bg.fight_btn.desc"]
local introdutionBtn = uiMap["chapter_layer_cell.bg.introduction_btn"]
local introdutionBtnTx = uiMap["chapter_layer_cell.bg.introduction_btn.desc"]
+ local iconBg = uiMap["chapter_layer_cell.bg.fight_btn.icon_bg"]
+ local iconBgDesc = uiMap["chapter_layer_cell.bg.fight_btn.icon_bg.desc"]
+ local iconBgIcon = uiMap["chapter_layer_cell.bg.fight_btn.icon_bg.icon"]
+ local iconBgNum = uiMap["chapter_layer_cell.bg.fight_btn.icon_bg.num"]
if not self.rewardCells then
self.rewardCells = {}
@@ -23,6 +27,7 @@ function ChapterLayerCell:refresh(id)
end
end
local weaponData = DataManager.DungeonData:getDungeonDataByType(ModuleManager.MODULE_KEY.DUNGEON_WEAPON)
+ fightDesc:setText(I18N:getGlobalText(I18N.GlobalConst.TASK_CHALLENGE))
unlockDesc:setText(GConst.EMPTY_STRING)
introdutionBtnTx:setText(I18N:getGlobalText(I18N.GlobalConst.DUNGEON_WEAPON_DESC_7))
title:setText(I18N:getGlobalText(I18N.GlobalConst.DUNGEON_WEAPON_DESC_6, id))
@@ -31,7 +36,9 @@ function ChapterLayerCell:refresh(id)
bossBanner:setVisible(true)
end)
bossMask:setTexture("assets/arts/textures/background/dungeon_equip/" .. config.icon .. ".png")
- if weaponData:canFarmChapter(id) then -- 可扫荡
+ if weaponData:canFarmChapter(id) and weaponData:getRemianFarmCount() > 0 then -- 可扫荡 切有扫荡次数
+ iconBg:setVisible(true)
+ fightDesc:setVisible(false)
mask:setVisible(false)
bossMask:setVisible(false)
rewardsNode:setActive(true)
@@ -40,7 +47,9 @@ function ChapterLayerCell:refresh(id)
fightBtn:setActive(true)
fightBtn:setSprite(GConst.ATLAS_PATH.COMMON, FIGHT_BTN[2])
- fightDesc:setText(I18N:getGlobalText(I18N.GlobalConst.SMASH))
+ iconBgDesc:setText(I18N:getGlobalText(I18N.GlobalConst.SMASH))
+ iconBgNum:setText(GFunc.getRewardNum(weaponData:getChallengeHpCost()))
+ GFunc.centerImgAndTx(iconBgIcon, iconBgNum, 10)
for i = 1, 3 do
if config.item_show[i] then
self.rewardCells[i]:refreshByConfig(config.item_show[i])
@@ -55,30 +64,59 @@ function ChapterLayerCell:refresh(id)
end)
rewardsNode:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_HORIZONTAL_OR_VERTICAL_LAYOUT):RefreshLayout()
elseif weaponData:canFightChapter(id) then -- 可挑战
- mask:setVisible(false)
- bossMask:setVisible(false)
- rewardsNode:setActive(true)
- self.rewardCells[4]:getBaseObject():setActive(true)
- introdutionBtn:setActive(true)
- fightBtn:setActive(true)
-
- fightBtn:setSprite(GConst.ATLAS_PATH.COMMON, FIGHT_BTN[1])
- fightDesc:setText(I18N:getGlobalText(I18N.GlobalConst.TASK_CHALLENGE))
- for i = 1, 3 do
- if config.item_show[i] then
- self.rewardCells[i]:refreshByConfig(config.item_show[i])
- self.rewardCells[i]:hideCountTx()
- self.rewardCells[i]:getBaseObject():setActive(true)
- else
- self.rewardCells[i]:getBaseObject():setActive(false)
+ if weaponData:canFarmChapter(id) then -- 没扫荡次数
+ iconBg:setVisible(true)
+ fightDesc:setVisible(false)
+ mask:setVisible(false)
+ bossMask:setVisible(false)
+ rewardsNode:setActive(true)
+ self.rewardCells[4]:getBaseObject():setActive(false)
+ introdutionBtn:setActive(false)
+ fightBtn:setActive(true)
+
+ fightBtn:setSprite(GConst.ATLAS_PATH.COMMON, FIGHT_BTN[1])
+ iconBgDesc:setText(I18N:getGlobalText(I18N.GlobalConst.TASK_CHALLENGE))
+ iconBgNum:setText(GFunc.getRewardNum(weaponData:getChallengeHpCost()))
+ GFunc.centerImgAndTx(iconBgIcon, iconBgNum, 10)
+ for i = 1, 3 do
+ if config.item_show[i] then
+ self.rewardCells[i]:refreshByConfig(config.item_show[i])
+ self.rewardCells[i]:hideCountTx()
+ self.rewardCells[i]:getBaseObject():setActive(true)
+ else
+ self.rewardCells[i]:getBaseObject():setActive(false)
+ end
end
+ fightBtn:addClickListener(function()
+ ModuleManager.DungeonWeaponManager:reqFight(id)
+ end)
+ rewardsNode:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_HORIZONTAL_OR_VERTICAL_LAYOUT):RefreshLayout()
+ else
+ iconBg:setVisible(false)
+ fightDesc:setVisible(true)
+ mask:setVisible(false)
+ bossMask:setVisible(false)
+ rewardsNode:setActive(true)
+ self.rewardCells[4]:getBaseObject():setActive(true)
+ introdutionBtn:setActive(true)
+ fightBtn:setActive(true)
+ fightBtn:setSprite(GConst.ATLAS_PATH.COMMON, FIGHT_BTN[1])
+ for i = 1, 3 do
+ if config.item_show[i] then
+ self.rewardCells[i]:refreshByConfig(config.item_show[i])
+ self.rewardCells[i]:hideCountTx()
+ self.rewardCells[i]:getBaseObject():setActive(true)
+ else
+ self.rewardCells[i]:getBaseObject():setActive(false)
+ end
+ end
+ self.rewardCells[4]:refreshByConfig(config.first_reward)
+ self.rewardCells[4]:showFirstPass(true)
+ fightBtn:addClickListener(function()
+ ModuleManager.DungeonWeaponManager:reqFight(id)
+ end)
+ rewardsNode:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_HORIZONTAL_OR_VERTICAL_LAYOUT):RefreshLayout()
end
- self.rewardCells[4]:refreshByConfig(config.first_reward)
- self.rewardCells[4]:showFirstPass(true)
- fightBtn:addClickListener(function()
- ModuleManager.DungeonWeaponManager:reqFight(id)
- end)
- rewardsNode:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_HORIZONTAL_OR_VERTICAL_LAYOUT):RefreshLayout()
else -- 不可挑战
mask:setVisible(true)
bossMask:setVisible(true)
diff --git a/lua/app/ui/dungeon_weapon/dungeon_weapon_main_ui.lua b/lua/app/ui/dungeon_weapon/dungeon_weapon_main_ui.lua
index 5a434834..0c8fd1ed 100644
--- a/lua/app/ui/dungeon_weapon/dungeon_weapon_main_ui.lua
+++ b/lua/app/ui/dungeon_weapon/dungeon_weapon_main_ui.lua
@@ -6,8 +6,10 @@ function DungeonWeaponMainUI:getCurrencyParams()
if self.currencyParams == nil then
self.currencyParams = {
itemIds = {
- GConst.ItemConst.ITEM_ID_GOLD
- }
+ GConst.ItemConst.ITEM_ID_GOLD,
+ GConst.ItemConst.ITEM_ID_VIT
+ },
+ showType = GConst.CURRENCY_TYPE.HORIZONTAL
}
end
return self.currencyParams
@@ -68,6 +70,7 @@ function DungeonWeaponMainUI:_bind()
self:bind(self.weaponData, "isDirty", function()
self:refreshFormation()
self:refreshRemianNode()
+ self:refreshScrollrect()
end)
self:bind(DataManager.FormationData, "dirty", function()
@@ -89,8 +92,10 @@ function DungeonWeaponMainUI:refreshScrollrect()
self.scrollRect:addRefreshCallback(function(index, cell)
cell:refresh(self.chapterList[index])
end)
+ self.scrollRect:refillCells(#self.chapterList, nil, self.targetId)
+ else
+ self.scrollRect:refreshAll()
end
- self.scrollRect:refillCells(#self.chapterList, nil, self.targetId)
end
function DungeonWeaponMainUI:refreshFormation()
@@ -104,6 +109,7 @@ end
function DungeonWeaponMainUI:refreshRemianNode()
local uiMap = self.root:genAllChildren()
local node = uiMap["dungeon_weapon_mian_ui.remian_node"]
+ node:setAnchoredPositionX(-330)
local txt = uiMap["dungeon_weapon_mian_ui.remian_node.desc"]
txt:setText(I18N:getGlobalText(I18N.GlobalConst.DUNGEON_WEAPON_DESC_5, self.weaponData:getRemianFarmCount() .. "/" .. self.weaponData:getDialyFarmLimit()))
GFunc.expandImgToFitTx(node, txt, 16.5)
diff --git a/lua/app/ui/fund/growth_fund_ui.lua b/lua/app/ui/fund/growth_fund_ui.lua
index c2104ca9..901d4fd5 100644
--- a/lua/app/ui/fund/growth_fund_ui.lua
+++ b/lua/app/ui/fund/growth_fund_ui.lua
@@ -69,7 +69,7 @@ function GrowthFundUI:onLoadRootComplete()
self:initPayBtns()
self:initRewards()
self:bindData()
- BIReport:postPayUIShow(BIReport.GIFT_TYPE.GROWTH_FUND)
+ BIReport:postPayUIShow(BIReport.GIFT_TYPE.GROWTH_FUND, nil, BIReport.PAY_UI_SHOW_TYPE.CLICK_SHOW)
end
function GrowthFundUI:initTitle()
diff --git a/lua/app/ui/hero/armor_info_comp.lua b/lua/app/ui/hero/armor_info_comp.lua
index 18d46be3..56afb3c9 100644
--- a/lua/app/ui/hero/armor_info_comp.lua
+++ b/lua/app/ui/hero/armor_info_comp.lua
@@ -68,9 +68,6 @@ end
function ArmorInfoComp:setHeroData(heroEntity)
self.heroEntity = heroEntity
self.selectPart = self.selectPart or GConst.EquipConst.PART_TYPE.HAT
- self:bind(DataManager.EquipData:getEquip(self.heroEntity:getCfgId(), self.selectPart), "isDirty", function()
- self:refresh()
- end)
end
function ArmorInfoComp:refresh()
@@ -79,6 +76,10 @@ end
function ArmorInfoComp:onSelectIdx(index)
self.selectPart = ARMOR_PART_INDEX[index]
+ self:bind(DataManager.EquipData:getEquip(self.heroEntity:getCfgId(), self.selectPart), "isDirty", function()
+ self:refresh()
+ end)
+
self:refreshSelectArmor()
for index, value in ipairs(self.armor) do
@@ -272,6 +273,7 @@ end
-- 播放升级动效
function ArmorInfoComp:playUpgradeEffect(part)
+ AudioManager:playEffect(AudioManager.EFFECT_ID.EQUIP_ARMOR_UP)
self:playPartUpgradeEffect(part)
self.rootCurEffect:removeAllChildren()
local stage = DataManager.EquipData:getEquip(self.heroEntity:getCfgId(), part):getStage() + 1
diff --git a/lua/app/ui/hero/weapon_info_comp.lua b/lua/app/ui/hero/weapon_info_comp.lua
index da352930..a4840a3e 100644
--- a/lua/app/ui/hero/weapon_info_comp.lua
+++ b/lua/app/ui/hero/weapon_info_comp.lua
@@ -179,6 +179,10 @@ end
-- 播放动效
function WeaponInfoComp:playEffect(isUpgrade, isUpSection)
self.rootEffect:removeAllChildren()
+
+ if isUpgrade or isUpSection then
+ AudioManager:playEffect(AudioManager.EFFECT_ID.EQUIP_WEAPON_UP)
+ end
-- 升级
if isUpgrade then
EffectManager:loadUIEffectAsync(EFFECT_UP_GRADE, self.uiRoot, self.rootEffect, GConst.UI_EFFECT_ORDER.LEVEL5, function(obj)
diff --git a/lua/app/ui/main_city/cell/side_bar_arena_gift_cell.lua b/lua/app/ui/main_city/cell/side_bar_arena_gift_cell.lua
index ee860b82..809877a3 100644
--- a/lua/app/ui/main_city/cell/side_bar_arena_gift_cell.lua
+++ b/lua/app/ui/main_city/cell/side_bar_arena_gift_cell.lua
@@ -18,7 +18,7 @@ function SideBarArenaGiftCell:getSpineName()
end
function SideBarArenaGiftCell:onClick()
- ModuleManager.ArenaManager:showGiftPopUI()
+ ModuleManager.ArenaManager:showGiftPopUI(BIReport.PAY_UI_SHOW_TYPE.CLICK_SHOW)
end
function SideBarArenaGiftCell:getIsShowRedPoint()
diff --git a/lua/app/ui/main_city/cell/side_bar_armor_gift_cell.lua b/lua/app/ui/main_city/cell/side_bar_armor_gift_cell.lua
index e19f4155..8e19d62e 100644
--- a/lua/app/ui/main_city/cell/side_bar_armor_gift_cell.lua
+++ b/lua/app/ui/main_city/cell/side_bar_armor_gift_cell.lua
@@ -13,7 +13,7 @@ end
function SideBarArmorGiftCell:onClick()
local gift = DataManager.ShopData:getGift(GIFT_TYPE)
if gift then
- ModuleManager.ShopManager:showGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, gift.id, true)
+ ModuleManager.ShopManager:showGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, gift.id, true, BIReport.PAY_UI_SHOW_TYPE.CLICK_SHOW)
end
end
diff --git a/lua/app/ui/main_city/cell/side_bar_beginner_gift_cell.lua b/lua/app/ui/main_city/cell/side_bar_beginner_gift_cell.lua
index ab8fcf0d..7388fb47 100644
--- a/lua/app/ui/main_city/cell/side_bar_beginner_gift_cell.lua
+++ b/lua/app/ui/main_city/cell/side_bar_beginner_gift_cell.lua
@@ -14,7 +14,7 @@ function SideBarBeginnerGiftCell:getSpineName()
end
function SideBarBeginnerGiftCell:onClick()
- ModuleManager.ShopManager:showGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, GConst.ShopConst.BEGINNER_GIFT_ID, true)
+ ModuleManager.ShopManager:showGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, GConst.ShopConst.BEGINNER_GIFT_ID, true, BIReport.PAY_UI_SHOW_TYPE.CLICK_SHOW)
end
function SideBarBeginnerGiftCell:getIsShowRedPoint()
diff --git a/lua/app/ui/main_city/cell/side_bar_discount_cell.lua b/lua/app/ui/main_city/cell/side_bar_discount_cell.lua
index e3c086d9..a0ea6393 100644
--- a/lua/app/ui/main_city/cell/side_bar_discount_cell.lua
+++ b/lua/app/ui/main_city/cell/side_bar_discount_cell.lua
@@ -53,11 +53,12 @@ function SideBarDiscountCell:getSpineName()
end
function SideBarDiscountCell:onClick()
+ DataManager.ShopData:markEntranceDiscountRedPoint()
EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.GO_SHOP, {page = GConst.ShopConst.PAGE_TYPE.DISCOUNT})
end
function SideBarDiscountCell:getIsShowRedPoint()
- return false
+ return DataManager.ShopData:getEntranceDiscountRedPoint()
end
return SideBarDiscountCell
\ No newline at end of file
diff --git a/lua/app/ui/main_city/cell/side_bar_first_recharge_cell.lua b/lua/app/ui/main_city/cell/side_bar_first_recharge_cell.lua
index 38ffd9ed..f56e887e 100644
--- a/lua/app/ui/main_city/cell/side_bar_first_recharge_cell.lua
+++ b/lua/app/ui/main_city/cell/side_bar_first_recharge_cell.lua
@@ -18,7 +18,7 @@ function SideBarFirstRechargeCell:getIsShowRedPoint()
end
function SideBarFirstRechargeCell:onClick()
- ModuleManager.ShopManager:showGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, GConst.ShopConst.FIRST_RECHARGE_ID, true)
+ ModuleManager.ShopManager:showGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, GConst.ShopConst.FIRST_RECHARGE_ID, true, BIReport.PAY_UI_SHOW_TYPE.CLICK_SHOW)
end
return SideBarFirstRechargeCell
\ No newline at end of file
diff --git a/lua/app/ui/main_city/cell/side_bar_gold_pig_cell.lua b/lua/app/ui/main_city/cell/side_bar_gold_pig_cell.lua
index 11e4782c..00c26405 100644
--- a/lua/app/ui/main_city/cell/side_bar_gold_pig_cell.lua
+++ b/lua/app/ui/main_city/cell/side_bar_gold_pig_cell.lua
@@ -14,7 +14,7 @@ function SideBarGoldPigCell:getSpineName()
end
function SideBarGoldPigCell:onClick()
- ModuleManager.ActivityManager:showGoldPigUI()
+ ModuleManager.ActivityManager:showGoldPigUI(BIReport.PAY_UI_SHOW_TYPE.CLICK_SHOW)
end
function SideBarGoldPigCell:onRefresh()
diff --git a/lua/app/ui/main_city/cell/side_bar_grow_up_gift_cell.lua b/lua/app/ui/main_city/cell/side_bar_grow_up_gift_cell.lua
index 09eabbb1..c3beb0f0 100644
--- a/lua/app/ui/main_city/cell/side_bar_grow_up_gift_cell.lua
+++ b/lua/app/ui/main_city/cell/side_bar_grow_up_gift_cell.lua
@@ -12,7 +12,7 @@ end
function SideBarGrowUpGiftCell:onClick()
local gift = DataManager.ShopData:getGrowUpGift()
if gift then
- ModuleManager.ShopManager:showGiftPopUI(PayManager.PURCHARSE_TYPE.GROW_UP_GIFT_NEW, gift.current_grow_up_id, true)
+ ModuleManager.ShopManager:showGiftPopUI(PayManager.PURCHARSE_TYPE.GROW_UP_GIFT_NEW, gift.current_grow_up_id, true, BIReport.PAY_UI_SHOW_TYPE.CLICK_SHOW)
end
end
diff --git a/lua/app/ui/main_city/cell/side_bar_introduct_gift_cell.lua b/lua/app/ui/main_city/cell/side_bar_introduct_gift_cell.lua
index 5907dfa7..0784f4d4 100644
--- a/lua/app/ui/main_city/cell/side_bar_introduct_gift_cell.lua
+++ b/lua/app/ui/main_city/cell/side_bar_introduct_gift_cell.lua
@@ -14,7 +14,7 @@ function SideBarIntroductGiftCell:getSpineName()
end
function SideBarIntroductGiftCell:onClick()
- ModuleManager.ShopManager:showGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, GConst.ShopConst.INTRODUCT_GIFT_ID, true)
+ ModuleManager.ShopManager:showGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, GConst.ShopConst.INTRODUCT_GIFT_ID, true, BIReport.PAY_UI_SHOW_TYPE.CLICK_SHOW)
end
function SideBarIntroductGiftCell:getIsShowRedPoint()
diff --git a/lua/app/ui/main_city/cell/side_bar_weapon_gift_cell.lua b/lua/app/ui/main_city/cell/side_bar_weapon_gift_cell.lua
index 6c7191a4..4759a55f 100644
--- a/lua/app/ui/main_city/cell/side_bar_weapon_gift_cell.lua
+++ b/lua/app/ui/main_city/cell/side_bar_weapon_gift_cell.lua
@@ -13,7 +13,7 @@ end
function SideBarWeaponGiftCell:onClick()
local gift = DataManager.ShopData:getGift(GIFT_TYPE)
if gift then
- ModuleManager.ShopManager:showGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, gift.id, true)
+ ModuleManager.ShopManager:showGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, gift.id, true, BIReport.PAY_UI_SHOW_TYPE.CLICK_SHOW)
end
end
diff --git a/lua/app/ui/main_city/component/main_comp.lua b/lua/app/ui/main_city/component/main_comp.lua
index 690eee51..6fc06ade 100644
--- a/lua/app/ui/main_city/component/main_comp.lua
+++ b/lua/app/ui/main_city/component/main_comp.lua
@@ -85,7 +85,12 @@ function MainComp:refreshModule(selectModule)
if self.curModuleType == GConst.MainCityConst.MAIN_MODULE.ARENA then
if DataManager.ArenaData:needShowPopGift() and DataManager.ArenaData:getGiftId() then
- ModuleManager.ArenaManager:showGiftPopUI()
+ local showType = BIReport.PAY_UI_SHOW_TYPE.TRIGGER_POP
+ local mainUI = UIManager:getUIByIndex(UIManager.UI_PATH.MAINCITY_UI)
+ if mainUI and mainUI.isFirstEnter then
+ showType = BIReport.PAY_UI_SHOW_TYPE.LOGIN_POP
+ end
+ ModuleManager.ArenaManager:showGiftPopUI(showType)
end
-- 是否是否有英雄解锁弹窗
if DataManager.HeroData:getIfCanShowHeroUnlock() then
diff --git a/lua/app/ui/main_city/main_city_ui.lua b/lua/app/ui/main_city/main_city_ui.lua
index 1c9e8000..d378a556 100644
--- a/lua/app/ui/main_city/main_city_ui.lua
+++ b/lua/app/ui/main_city/main_city_ui.lua
@@ -957,13 +957,6 @@ end
-- 弹窗优先级: 升级>功能弹窗>英雄解锁弹窗>礼包弹窗>引导
function MainCityUI:checkMainPop()
- if self.selectedIndex ~= GConst.MainCityConst.BOTTOM_PAGE.MAIN then
- return
- end
- if ModuleManager.MaincityManager:getCurModule() ~= GConst.MainCityConst.MAIN_MODULE.CHAPTER then -- 当前不是关卡界面不触发
- return
- end
-
-- 续关
if self.isFirstEnter then
local battleSnapshot = LocalData:getBattleSnapshot()
@@ -986,6 +979,14 @@ function MainCityUI:checkMainPop()
end
end
+ if self.selectedIndex ~= GConst.MainCityConst.BOTTOM_PAGE.MAIN then
+ return
+ end
+
+ if ModuleManager.MaincityManager:getCurModule() ~= GConst.MainCityConst.MAIN_MODULE.CHAPTER then -- 当前不是关卡界面不触发
+ return
+ end
+
-- 检查是否升级
if DataManager.PlayerData:getIfCanLevelUp() then
ModuleManager.PlayerManager:levelUp()
@@ -1019,7 +1020,11 @@ function MainCityUI:checkMainPop()
-- 金猪满了后下次进主城要弹出来
if DataManager.GoldPigData:getPopFlag() then
DataManager.GoldPigData:markPop()
- ModuleManager.ActivityManager:showGoldPigUI()
+ local showType = BIReport.PAY_UI_SHOW_TYPE.TRIGGER_POP
+ if self.isFirstEnter then
+ showType = BIReport.PAY_UI_SHOW_TYPE.LOGIN_POP
+ end
+ ModuleManager.ActivityManager:showGoldPigUI(showType)
end
end
@@ -1076,6 +1081,10 @@ end
-- 检查礼包(首充(作废)/入门/章节/新手/助力/成长/金币顺序)
function MainCityUI:checkGift()
+ local showType = BIReport.PAY_UI_SHOW_TYPE.TRIGGER_POP
+ if self.isFirstEnter then
+ showType = BIReport.PAY_UI_SHOW_TYPE.LOGIN_POP
+ end
-- 审核模式不弹礼包
if GFunc.isShenhe() then
return
@@ -1142,7 +1151,7 @@ function MainCityUI:checkGift()
-- end
-- 入门礼包
if introductGiftIds and #introductGiftIds > 0 then
- ModuleManager.ShopManager:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, introductGiftIds[1])
+ ModuleManager.ShopManager:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, introductGiftIds[1], showType)
return true
end
---- 试玩弹窗在章节礼包前
@@ -1153,22 +1162,22 @@ function MainCityUI:checkGift()
end
-- 章节礼包
if chapterPopUpGifts and #chapterPopUpGifts > 0 then
- ModuleManager.ShopManager:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.CHAPTER_GIFT, chapterPopUpGifts[1])
+ ModuleManager.ShopManager:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.CHAPTER_GIFT, chapterPopUpGifts[1], showType)
return true
end
-- 新手礼包
if beginnerGiftIds and #beginnerGiftIds > 0 then
- ModuleManager.ShopManager:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, beginnerGiftIds[1])
+ ModuleManager.ShopManager:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, beginnerGiftIds[1], showType)
return true
end
-- 助力礼包
if levelUpGiftIds and #levelUpGiftIds then
- ModuleManager.ShopManager:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, levelUpGiftIds[1])
+ ModuleManager.ShopManager:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, levelUpGiftIds[1], showType)
return true
end
-- 成长礼包
if growUpPopUpGifts and #growUpPopUpGifts > 0 then
- ModuleManager.ShopManager:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.GROW_UP_GIFT_NEW, growUpPopUpGifts[1])
+ ModuleManager.ShopManager:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.GROW_UP_GIFT_NEW, growUpPopUpGifts[1], showType)
return true
end
end
diff --git a/lua/app/ui/player_info/avatar_cell.lua b/lua/app/ui/player_info/avatar_cell.lua
index 2333e65d..0ea61ce0 100644
--- a/lua/app/ui/player_info/avatar_cell.lua
+++ b/lua/app/ui/player_info/avatar_cell.lua
@@ -27,12 +27,9 @@ function AvatarCell:refresh(id, isSelect)
end
-- 背景
- local heroId = DataManager.PlayerData:getAvatarHeroId(self.id)
- if heroId then
- local smallFrame = ModuleManager.HeroManager:getHeroSmallFrame(heroId)
- if smallFrame then
- self.baseObject:setSprite(GConst.ATLAS_PATH.ICON_HERO, smallFrame)
- end
+ local smallFrame = DataManager.PlayerData:getAvatarBg(self.id)
+ if smallFrame then
+ self.baseObject:setSprite(GConst.ATLAS_PATH.ICON_HERO, smallFrame)
end
self.select:setActive(isSelect)
diff --git a/lua/app/ui/player_info/player_info_ui.lua b/lua/app/ui/player_info/player_info_ui.lua
index 3500c313..c68b8757 100644
--- a/lua/app/ui/player_info/player_info_ui.lua
+++ b/lua/app/ui/player_info/player_info_ui.lua
@@ -202,12 +202,9 @@ end
-- 刷新头像和头像框
function PlayerInfoUI:refreshAvatarAndFrame()
- local heroId = DataManager.PlayerData:getAvatarHeroId(self.selectAvatarId)
- if heroId then
- local smallFrame = ModuleManager.HeroManager:getHeroSmallFrame(heroId)
- if smallFrame then
- self.bgAvatar:setSprite(GConst.ATLAS_PATH.ICON_HERO, smallFrame)
- end
+ local smallFrame = DataManager.PlayerData:getAvatarBg(self.selectAvatarId)
+ if smallFrame then
+ self.bgAvatar:setSprite(GConst.ATLAS_PATH.ICON_HERO, smallFrame)
end
local avatarName = DataManager.PlayerData:getAvatarIconId(self.selectAvatarId)
if avatarName then
diff --git a/lua/app/ui/shop/cell/arena_gift_sell_cell.lua b/lua/app/ui/shop/cell/arena_gift_sell_cell.lua
index e42274fa..a6a5d683 100644
--- a/lua/app/ui/shop/cell/arena_gift_sell_cell.lua
+++ b/lua/app/ui/shop/cell/arena_gift_sell_cell.lua
@@ -98,7 +98,7 @@ end
function ArenaGiftSellCell:onClickGift(id)
-- PayManager:purchasePackage(id, PayManager.PURCHARSE_TYPE.ACT_GIFT)
- ModuleManager.ArenaManager:showGiftPopUI()
+ ModuleManager.ArenaManager:showGiftPopUI(BIReport.PAY_UI_SHOW_TYPE.CLICK_SHOW)
end
return ArenaGiftSellCell
\ No newline at end of file
diff --git a/lua/app/ui/shop/first_recharge_pop_ui.lua b/lua/app/ui/shop/first_recharge_pop_ui.lua
index 53452ebe..a1d05882 100644
--- a/lua/app/ui/shop/first_recharge_pop_ui.lua
+++ b/lua/app/ui/shop/first_recharge_pop_ui.lua
@@ -1,7 +1,8 @@
local FirstRechargePopUI = class("FirstRechargePopUI", BaseUI)
local MAX_ITEM_NUM = 3
-function FirstRechargePopUI:ctor()
+function FirstRechargePopUI:ctor(params)
+ self.showType = params.showType
end
function FirstRechargePopUI:isFullScreen()
@@ -49,7 +50,7 @@ function FirstRechargePopUI:onLoadRootComplete()
self:refresh()
-- 上报
- BIReport:postPayUIShow(BIReport.GIFT_TYPE.FIRST_RECHARGE, GConst.ShopConst.FIRST_RECHARGE_ID)
+ BIReport:postPayUIShow(BIReport.GIFT_TYPE.FIRST_RECHARGE, GConst.ShopConst.FIRST_RECHARGE_ID, self.showType)
end
function FirstRechargePopUI:_bind()
diff --git a/lua/app/ui/shop/gift_pop_chapter_ui.lua b/lua/app/ui/shop/gift_pop_chapter_ui.lua
new file mode 100644
index 00000000..aa2245e0
--- /dev/null
+++ b/lua/app/ui/shop/gift_pop_chapter_ui.lua
@@ -0,0 +1,6 @@
+local GifePopUI = require "app/ui/shop/gift_pop_ui"
+local GiftPopChapterUI = class("GiftPopChapterUI", GifePopUI)
+
+-- 章节礼包,为了避免界面和gift_pop_ui冲突
+
+return GiftPopChapterUI
\ No newline at end of file
diff --git a/lua/app/ui/shop/gift_pop_chapter_ui.lua.meta b/lua/app/ui/shop/gift_pop_chapter_ui.lua.meta
new file mode 100644
index 00000000..4bbbbb89
--- /dev/null
+++ b/lua/app/ui/shop/gift_pop_chapter_ui.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 96614378ea4a4f344b54836febd08ecf
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/ui/shop/gift_pop_grow_up_ui.lua b/lua/app/ui/shop/gift_pop_grow_up_ui.lua
new file mode 100644
index 00000000..9ff56857
--- /dev/null
+++ b/lua/app/ui/shop/gift_pop_grow_up_ui.lua
@@ -0,0 +1,6 @@
+local GifePopUI = require "app/ui/shop/gift_pop_ui"
+local GiftPopGrowUpUI = class("GiftPopGrowUpUI", GifePopUI)
+
+-- 成长礼包,为了避免界面和gift_pop_ui冲突
+
+return GiftPopGrowUpUI
\ No newline at end of file
diff --git a/lua/app/ui/shop/gift_pop_grow_up_ui.lua.meta b/lua/app/ui/shop/gift_pop_grow_up_ui.lua.meta
new file mode 100644
index 00000000..aa14ed1d
--- /dev/null
+++ b/lua/app/ui/shop/gift_pop_grow_up_ui.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: dd25c271000965944a8a4c2c14311ee0
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/ui/shop/gift_pop_ui.lua b/lua/app/ui/shop/gift_pop_ui.lua
index 38b9b365..ffe14e45 100644
--- a/lua/app/ui/shop/gift_pop_ui.lua
+++ b/lua/app/ui/shop/gift_pop_ui.lua
@@ -47,6 +47,7 @@ function GiftPopUI:ctor(params)
self.actType = params.type
self.actId = params.id
self.onlySelf = params.onlySelf -- 有此标记时 关闭直接关闭界面
+ self.showType = params.showType
self.buyCount = DataManager.ShopData:getGiftBoughtNum(self.actType, self.actId) -- 触发时该礼包的购买数量
end
@@ -178,7 +179,7 @@ function GiftPopUI:refresh(needCheck)
-- 上报
local giftType = PayManager:getGiftType(self.actType, self.actId)
- BIReport:postPayUIShow(giftType, self.actId)
+ BIReport:postPayUIShow(giftType, self.actId, self.showType)
self:updateTime()
end
diff --git a/lua/app/ui/shop/introduct_pop_ui.lua b/lua/app/ui/shop/introduct_pop_ui.lua
index fbe5623e..73c63875 100644
--- a/lua/app/ui/shop/introduct_pop_ui.lua
+++ b/lua/app/ui/shop/introduct_pop_ui.lua
@@ -1,7 +1,8 @@
local IntroductPopUI = class("IntroductPopUI", BaseUI)
local MAX_ITEM_NUM = 3
-function IntroductPopUI:ctor()
+function IntroductPopUI:ctor(params)
+ self.showType = params.showType
end
function IntroductPopUI:isFullScreen()
@@ -52,7 +53,7 @@ function IntroductPopUI:onLoadRootComplete()
self:refresh()
-- 上报
- BIReport:postPayUIShow(BIReport.GIFT_TYPE.INTRODUCTORY_GIFT, GConst.ShopConst.INTRODUCT_GIFT_ID)
+ BIReport:postPayUIShow(BIReport.GIFT_TYPE.INTRODUCTORY_GIFT, GConst.ShopConst.INTRODUCT_GIFT_ID, self.showType)
end
function IntroductPopUI:_bind()
diff --git a/lua/app/ui/shop/shop_comp.lua b/lua/app/ui/shop/shop_comp.lua
index f15219ef..2da48776 100644
--- a/lua/app/ui/shop/shop_comp.lua
+++ b/lua/app/ui/shop/shop_comp.lua
@@ -214,32 +214,53 @@ function ShopComp:postEnterPage()
-- 章节
local actIdList = DataManager.ShopData:getActChapterStoreCanBuyActIds()
if actIdList and #actIdList > 0 then
- BIReport:postPayUIShow(BIReport.GIFT_TYPE.ACT_CHAPTER_STORE, actIdList[1]) -- 约定上报第一个付费项
+ BIReport:postPayUIShow(BIReport.GIFT_TYPE.ACT_CHAPTER_STORE, actIdList[1], BIReport.PAY_UI_SHOW_TYPE.SHOP_SHOW) -- 约定上报第一个付费项
end
-- 新手
if not DataManager.ShopData:getBeginnerGiftHasBuy() then
- BIReport:postPayUIShow(BIReport.GIFT_TYPE.BEGINNER_GIFT, GConst.ShopConst.BEGINNER_GIFT_ID)
+ BIReport:postPayUIShow(BIReport.GIFT_TYPE.BEGINNER_GIFT, GConst.ShopConst.BEGINNER_GIFT_ID, BIReport.PAY_UI_SHOW_TYPE.SHOP_SHOW)
end
-- 助力
local actIdList = DataManager.ShopData:getLevelUpGiftActIds()
if actIdList and #actIdList > 0 then
for _, id in ipairs(actIdList) do
- BIReport:postPayUIShow(BIReport.GIFT_TYPE.LEVEL_UP_GIFT, id)
+ BIReport:postPayUIShow(BIReport.GIFT_TYPE.LEVEL_UP_GIFT, id, BIReport.PAY_UI_SHOW_TYPE.SHOP_SHOW)
end
end
-- 成长
local act = DataManager.ShopData:getGrowUpGift()
if act then
- BIReport:postPayUIShow(BIReport.GIFT_TYPE.GROW_UP_GIFT_NEW, act.current_grow_up_id)
+ BIReport:postPayUIShow(BIReport.GIFT_TYPE.GROW_UP_GIFT_NEW, act.current_grow_up_id, BIReport.PAY_UI_SHOW_TYPE.SHOP_SHOW)
end
-- 金币
local actId = DataManager.ShopData:getValidCoinGiftId()
if actId and actId > 0 then
- BIReport:postPayUIShow(BIReport.GIFT_TYPE.COIN_GIFT, actId)
+ BIReport:postPayUIShow(BIReport.GIFT_TYPE.COIN_GIFT, actId, BIReport.PAY_UI_SHOW_TYPE.SHOP_SHOW)
+ end
+ -- 竞技场
+ local actId = DataManager.ArenaData:getGiftId()
+ if actId and actId > 0 then
+ BIReport:postPayUIShow(BIReport.GIFT_TYPE.ARENA_GIFT, actId, BIReport.PAY_UI_SHOW_TYPE.SHOP_SHOW)
+ end
+ -- 武器副本
+ local actIdInfo = DataManager.ShopData:getGift(PayManager.PURCHARSE_ACT_TYPE.WEAPON_GIFT)
+ if actIdInfo then
+ local actGiftId = actIdInfo.id
+ if actGiftId and actGiftId > 0 then
+ BIReport:postPayUIShow(BIReport.GIFT_TYPE.WEAPON_GIFT, actGiftId, BIReport.PAY_UI_SHOW_TYPE.SHOP_SHOW)
+ end
+ end
+ -- 防具副本
+ local actIdInfo = DataManager.ShopData:getGift(PayManager.PURCHARSE_ACT_TYPE.ARMOR_GIFT)
+ if actIdInfo then
+ local actGiftId = actIdInfo.id
+ if actGiftId and actGiftId > 0 then
+ BIReport:postPayUIShow(BIReport.GIFT_TYPE.ARMOR_GIFT, actGiftId, BIReport.PAY_UI_SHOW_TYPE.SHOP_SHOW)
+ end
end
else
-- 找到所有的钻石项目
- BIReport:postPayUIShow(BIReport.GIFT_TYPE.MALL_TREASURE, 2) -- 约定上报第一个付费项
+ BIReport:postPayUIShow(BIReport.GIFT_TYPE.MALL_TREASURE, 2, BIReport.PAY_UI_SHOW_TYPE.SHOP_SHOW) -- 约定上报第一个付费项
end
end
diff --git a/lua/app/ui/tips/battle_board_skill_tips.lua b/lua/app/ui/tips/battle_board_skill_tips.lua
index 520f7ff0..ee27bdf2 100644
--- a/lua/app/ui/tips/battle_board_skill_tips.lua
+++ b/lua/app/ui/tips/battle_board_skill_tips.lua
@@ -46,6 +46,13 @@ function BattleBoardSkillTips:onLoadRootComplete()
self.originPivot = tipsBgTransform.pivot
self.originAnchoredPosition = tipsBgTransform.anchoredPosition
self.originLocalPosition = tipsBgTransform.localPosition
+
+ self.bg:addClickListener(function()
+ local cfg = ConfigManager:getConfig("skill")[self.boardSkillEntity:getOriginId()]
+ if cfg.buff_id and #cfg.buff_id > 0 then
+ ModuleManager.TipsManager:showSkillTips(self.bg, cfg.buff_id)
+ end
+ end)
end
function BattleBoardSkillTips:onRefresh()
@@ -79,7 +86,8 @@ function BattleBoardSkillTips:onRefresh()
local value = self.battleData:getSelectSkillMap(self.side)[skillId].value or 0
cell:refresh(skillId, count)
cell:addClickListener(function()
- ModuleManager.TipsManager:showDescTips(ModuleManager.HeroManager:getSkillRogueDesc(skillId, value), cell:getBaseObject())
+ local cfg = ConfigManager:getConfig("skill_rogue")[skillId]
+ ModuleManager.TipsManager:showSkillTips(cell:getBaseObject(), cfg.buff_id, skillId)
end)
else
cell:getBaseObject():setActive(false)
diff --git a/lua/app/ui/tips/hero_fragment_tips.lua b/lua/app/ui/tips/hero_fragment_tips.lua
index 29103355..49e5d054 100644
--- a/lua/app/ui/tips/hero_fragment_tips.lua
+++ b/lua/app/ui/tips/hero_fragment_tips.lua
@@ -74,6 +74,10 @@ function HeroFragmentTips:onLoadRootComplete()
self:closeUI()
end)
+ if cfg.type == GConst.ItemConst.ITEM_TYPE.EPIC_HERO_FRAMENT then
+ uiMap["hero_fragment_tips.title_bg_img.desc"]:setText(I18N:getText("item", self.itemId, "desc"))
+ end
+
self:initScrollRect()
end
diff --git a/lua/app/ui/ui_manager.lua b/lua/app/ui/ui_manager.lua
index 9c8ef7e0..ea026392 100644
--- a/lua/app/ui/ui_manager.lua
+++ b/lua/app/ui/ui_manager.lua
@@ -984,6 +984,7 @@ function UIManager:backToLogin()
end
function UIManager:backToLoginWithoutLogout()
+ self:hideMessageBox()
self:stopCurrentBGM()
ModuleManager.TutorialManager:stopTutorial()
diff --git a/lua/app/userdata/bag/item_data.lua b/lua/app/userdata/bag/item_data.lua
index e2423d54..241bc7dc 100644
--- a/lua/app/userdata/bag/item_data.lua
+++ b/lua/app/userdata/bag/item_data.lua
@@ -160,7 +160,7 @@ function ItemData:addItem(data, itemGetType)
elseif data.id == GConst.ItemConst.ITEM_ID_VIT then
if data.count < 0 then
ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_VIT_COST, -data.count)
- BIReport:postVitUse(data.count)
+ BIReport:postVitUse(data.count, itemGetType)
else
BIReport:postVitGet(data.count, itemGetType)
end
diff --git a/lua/app/userdata/battle/battle_grid_entity.lua b/lua/app/userdata/battle/battle_grid_entity.lua
index ee0cefb8..8a61cb49 100644
--- a/lua/app/userdata/battle/battle_grid_entity.lua
+++ b/lua/app/userdata/battle/battle_grid_entity.lua
@@ -446,6 +446,10 @@ function BattleGridEntity:getBftcTime()
return self:getGridTypeConfig().bftc_time or 0
end
+function BattleGridEntity:getCantUpset()
+ return self:getGridTypeConfig().cant_upset == 1
+end
+
function BattleGridEntity:getEffectSfx()
local sfxName = self:getGridTypeConfig().effect_sfx
if not sfxName then
diff --git a/lua/app/userdata/battle/skill/battle_board_skill_entity.lua b/lua/app/userdata/battle/skill/battle_board_skill_entity.lua
index 95043a06..ed2865eb 100644
--- a/lua/app/userdata/battle/skill/battle_board_skill_entity.lua
+++ b/lua/app/userdata/battle/skill/battle_board_skill_entity.lua
@@ -15,6 +15,7 @@ function BattleBoardSkillEntity:ctor(skillId, side)
self.skillEffectNumAdd = {} -- 技能效果参数增加 type = 7 用于技能替换时生效
self.skillRoundAdd = {} -- 技能效果回合增加 type = 8 用于技能替换时生效
self.skillRatioAdd = {} -- 技能效果概率增加 type = 16 用于技能替换时生效
+ self.originSkillId = skillId
self.upSkillIdMap = {}
self.getUpSkillKind = 0
@@ -51,6 +52,10 @@ function BattleBoardSkillEntity:getUnlockId()
return self.unlockId
end
+function BattleBoardSkillEntity:getOriginId()
+ return self.originSkillId or self:getSkillId()
+end
+
function BattleBoardSkillEntity:getNeedEnergy()
if not self.config then
return 1
diff --git a/lua/app/userdata/dungeon/dungeon_armor_entity.lua b/lua/app/userdata/dungeon/dungeon_armor_entity.lua
index 0697e22e..73e9dd95 100644
--- a/lua/app/userdata/dungeon/dungeon_armor_entity.lua
+++ b/lua/app/userdata/dungeon/dungeon_armor_entity.lua
@@ -331,14 +331,21 @@ function DungeonArmorEntity:formatTaskByController(battleBaseController, chapter
totalRound = totalRound + round
end
+ local config = ConfigManager:getConfig("task_dungeon_armor")
taskProgress = {
- [0] = pass,
- [1] = hpp,
- [2] = bossRoundCount,
- [3] = totalRound,
- [4] = hpp,
- [5] = hpp,
+ [0] = pass
}
+ if config then
+ for id, info in pairs(config) do
+ if info.type == 1 then
+ taskProgress[id] = hpp
+ elseif info.type == 2 then
+ taskProgress[id] = bossRoundCount
+ elseif info.type == 3 then
+ taskProgress[id] = totalRound
+ end
+ end
+ end
return taskProgress
end
diff --git a/lua/app/userdata/dungeon/dungeon_data.lua b/lua/app/userdata/dungeon/dungeon_data.lua
index d68467f3..7d78169b 100644
--- a/lua/app/userdata/dungeon/dungeon_data.lua
+++ b/lua/app/userdata/dungeon/dungeon_data.lua
@@ -473,4 +473,21 @@ function DungeonData:getDungeonDataByType(moduleKey)
return self.dataDungeons[moduleKey]
end
+function DungeonData:getDungeonBIStr()
+ local str
+ if not self.dataDungeons then
+ return GConst.EMPTY_STRING
+ end
+ for moduleKey, entity in pairs(self.dataDungeons) do
+ if str then
+ str = str .. "|"
+ else
+ str = GConst.EMPTY_STRING
+ end
+ str = str .. string.gsub(moduleKey, "_open", "") .. ":" .. entity:getPassedMaxId()
+ end
+ Logger.logHighlight(str)
+ return str
+end
+
return DungeonData
\ No newline at end of file
diff --git a/lua/app/userdata/dungeon/dungeon_weapon_entity.lua b/lua/app/userdata/dungeon/dungeon_weapon_entity.lua
index 4f6c42d7..c407e845 100644
--- a/lua/app/userdata/dungeon/dungeon_weapon_entity.lua
+++ b/lua/app/userdata/dungeon/dungeon_weapon_entity.lua
@@ -207,4 +207,8 @@ function DungeonWeaponEntity:getChapterFightCount(chapterId)
return self.totalChallengeCount[chapterId] or 0
end
+function DungeonWeaponEntity:getChallengeHpCost()
+ return GFunc.getConstReward("dungeon_equip_cost")
+end
+
return DungeonWeaponEntity
\ No newline at end of file
diff --git a/lua/app/userdata/player/player_data.lua b/lua/app/userdata/player/player_data.lua
index b6bc9827..37450f1a 100644
--- a/lua/app/userdata/player/player_data.lua
+++ b/lua/app/userdata/player/player_data.lua
@@ -23,11 +23,17 @@ function PlayerData:init(data)
if stat.pay_counts then
for id, count in pairs(stat.pay_counts) do
if RECHARGE_CFG[id] then
- self.data.payAmount = self.data.payAmount + (RECHARGE_CFG[id].price or 0)
+ self.data.payAmount = self.data.payAmount + (RECHARGE_CFG[id].price or 0) * count
self.data.payCount = self.data.payCount + count
end
end
end
+ if stat.internal ~= nil then
+ self.internal = stat.internal
+ end
+ if data.game_version then
+ self.game_version = data.game_version
+ end
if self.data.playInfo == nil then
self.data.playInfo = {}
@@ -403,12 +409,19 @@ function PlayerData:getCanUnlockAvatarIds(checkData)
return ids
end
--- 获取头像对应的英雄id
-function PlayerData:getAvatarHeroId(id)
+-- 获取头像背景
+function PlayerData:getAvatarBg(id)
local cfg = ConfigManager:getConfig("avatar")[id]
- if cfg then
- return cfg.hero
+ if cfg.hero then
+ -- hero来源
+ local hero = ConfigManager:getConfig("hero")[cfg.hero]
+ return hero and GConst.HERO_SMALL_FRAME_QLT[hero.qlt]
+ elseif cfg.item then
+ -- item来源
+ local item = ConfigManager:getConfig("item")[cfg.item]
+ return item and GConst.HERO_SMALL_FRAME_QLT[item.qlt]
end
+ return nil
end
-- 头像框-----------------------------------------------------------------------------------
@@ -576,4 +589,13 @@ function PlayerData:getRegisterTs()
return self.register_ts or Time:getServerTime()
end
+function PlayerData:getIsInternal()
+ return self.internal
+end
+
+-- 服务器下发的版本号,跟客户端版本号不一致
+function PlayerData:getGameVersion()
+ return self.game_version
+end
+
return PlayerData
\ No newline at end of file
diff --git a/lua/app/userdata/shop/shop_data.lua b/lua/app/userdata/shop/shop_data.lua
index f58bc69e..ade52d52 100644
--- a/lua/app/userdata/shop/shop_data.lua
+++ b/lua/app/userdata/shop/shop_data.lua
@@ -889,7 +889,7 @@ function ShopData:checkPopGift(actGiftType)
for _, actId in ipairs(gifts) do
local cfgInfo = self:getActGiftConfig()[actId]
if cfgInfo and cfgInfo.type == actGiftType then
- ModuleManager.ShopManager:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, actId)
+ ModuleManager.ShopManager:triggerGiftPopUI(PayManager.PURCHARSE_TYPE.ACT_GIFT, actId, BIReport.PAY_UI_SHOW_TYPE.TRIGGER_POP)
end
end
end
@@ -980,6 +980,14 @@ function ShopData:markShopDiscountRedPoint()
LocalData:setShopDiscountRedPointTime(today)
end
+function ShopData:getEntranceDiscountRedPoint()
+ return not self.isClickedDiscount
+end
+
+function ShopData:markEntranceDiscountRedPoint()
+ self.isClickedDiscount = true
+end
+
function ShopData:checkLoginPopInfo()
-- 初始化礼包弹出逻辑
local actPopUpGifts = self:getPopUpGiftByType(PayManager.PURCHARSE_TYPE.ACT_GIFT)
diff --git a/lua/app/userdata/summon/summon_data.lua b/lua/app/userdata/summon/summon_data.lua
index ec8a02ef..0be73e4c 100644
--- a/lua/app/userdata/summon/summon_data.lua
+++ b/lua/app/userdata/summon/summon_data.lua
@@ -74,7 +74,36 @@ function SummonData:getSummonRewardByLv(summonType, level)
if level == 1 then
return cfgInfo.box_lv_base
else
- return cfgInfo["box_lv_" .. tostring(level)]
+ if not self.cacheSummonRewardByLv then
+ self.cacheSummonRewardByLv = {}
+ end
+ self.cacheSummonRewardByLv[level] = {}
+ local rewards = cfgInfo["box_lv_" .. tostring(level)]
+ for _, reward in ipairs(rewards) do
+ local find = false
+ for index, rewardBase in ipairs(cfgInfo.box_lv_base) do
+ if reward.type == rewardBase.type and reward.id == rewardBase.id and reward.num >= rewardBase.num then
+ local num = reward.num - rewardBase.num
+ if num ~= 0 then
+ table.insert(self.cacheSummonRewardByLv[level], {
+ id = reward.id,
+ type = reward.type,
+ num = num
+ })
+ end
+ find = true
+ break
+ end
+ end
+ if not find then
+ table.insert(self.cacheSummonRewardByLv[level], {
+ id = reward.id,
+ type = reward.type,
+ num = reward.num
+ })
+ end
+ end
+ return self.cacheSummonRewardByLv[level]
end
end