diff --git a/lua/app/bf/common/functions.lua b/lua/app/bf/common/functions.lua index 3f65870d..f5c586bc 100644 --- a/lua/app/bf/common/functions.lua +++ b/lua/app/bf/common/functions.lua @@ -362,6 +362,23 @@ function table.shuffle(t) return tab end +function table.shuffleBySeed(t, seed) + if type(t)~="table" then + return + end + local tab = {} + local index = 1 + while #t ~= 0 do + local n = GFunc.getRandomIndexBySeed(seed, 1, #t) + if t[n] ~= nil then + tab[index] = t[n] + table.remove(t,n) + index = index + 1 + end + end + return tab +end + function table.clear(t) if not t then return diff --git a/lua/app/common/bi_report.lua b/lua/app/common/bi_report.lua index ab791a66..49a953eb 100644 --- a/lua/app/common/bi_report.lua +++ b/lua/app/common/bi_report.lua @@ -140,6 +140,9 @@ BIReport.ITEM_GET_TYPE = { OFFLINE_RECOVERY = "OfflineRecovery", ACT_SUMMER = "ActSummer", ACT_HERO_FUND = "ActHeroFund", + ACT_BOSS_RUSH_FIGHT_START = "ActBossRushFightStart", + ACT_BOSS_RUSH_FIGHT = "ActBossRushFight", + ACT_BOSS_RUSH_FUND = "ActBossRushFund", } BIReport.ADS_CLICK_TYPE = { @@ -188,6 +191,7 @@ BIReport.BATTLE_TYPE = { ["5"] = "Arena", ["6"] = "DungeonWeapon", ["7"] = "DungeonArmor", + ["8"] = "ActBossRush", } BIReport.GIFT_TYPE = { @@ -950,6 +954,11 @@ function BIReport:postFightBegin(battleType, wave, chapterId, maxChapter, startT fight_max_chapter = maxChapter, start_times = startTimes, } + if EDITOR_MODE then + if not args.battle_type then + Logger.logFatal("============report postFightBegin 没有battle_type 请检查===========") + end + end args.formation, args.famation_level = DataManager.FormationData:getStageFormationBIStr() self:report(EVENT_NAME_FIGHT, args) end @@ -988,6 +997,11 @@ function BIReport:postFightEnd(battleType, battleData, chapterId, wave, duration is_first_win = isFirstWin, isFianlStep = isFianlStep, } + if EDITOR_MODE then + if not args.battle_type then + Logger.logFatal("============report postFightEnd 没有battle_type 请检查===========") + end + end args.formation, args.famation_level = DataManager.FormationData:getStageFormationBIStr() args.max_link_count = maxLinkCount @@ -1020,6 +1034,11 @@ function BIReport:postShowFightSkillSelect(battleType, battleData, skillList, ch skill = skillStr, skill_num = skillNum, } + if EDITOR_MODE then + if not args.battle_type then + Logger.logFatal("============report postShowFightSkillSelect 没有battle_type 请检查===========") + end + end self:report(EVENT_NAME_FIGHT, args) end @@ -1048,6 +1067,11 @@ function BIReport:postFightSkillSelect(battleType, battleData, skillList, chapte skill = skillStr, skill_num = skillNum, } + if EDITOR_MODE then + if not args.battle_type then + Logger.logFatal("============report postFightSkillSelect 没有battle_type 请检查===========") + end + end self:report(EVENT_NAME_FIGHT, args) end diff --git a/lua/app/common/data_manager.lua b/lua/app/common/data_manager.lua index 98dc9fef..4ababb13 100644 --- a/lua/app/common/data_manager.lua +++ b/lua/app/common/data_manager.lua @@ -34,6 +34,7 @@ function DataManager:init() self:initManager("SummonData", "app/userdata/summon/summon_data") self:initManager("AIHelperData", "app/userdata/game_setting/ai_helper_data") self:initManager("HeroFundData", "app/userdata/activity/hero_fund/hero_fund_data") + self:initManager("ActBossRushData", "app/userdata/activity/act_boss_rush/act_boss_rush_data") end function DataManager:initManager(name, path) @@ -120,8 +121,10 @@ function DataManager:clear() self.TaskData:clear() self.AIHelperData:clear() self.HeroFundData:clear() + self.ActBossRushData:clear() ModuleManager.TaskManager:clear() self:clearTryOpenFunc() + self.activityBountyLevelMap = nil end function DataManager:initWithServerData(data) @@ -181,6 +184,7 @@ function DataManager:initWithServerData(data) self.GrowthFundData:init(data.fund.funds) end self.HeroFundData:init(data.hero_fund) + self.ActBossRushData:init(data.boss_rush) -- 任务数据最后初始化,依赖其他模块的数据 self.TaskData:init() @@ -409,4 +413,21 @@ function DataManager:getManager(name, path) return self[name] end +---- 缓存一下活动战令 +function DataManager:getActivityBountyLevelByActId(actId) + if not self.activityBountyLevelMap then + self.activityBountyLevelMap = {} + local cfg = ConfigManager:getConfig("activity_bounty_level") + for id, info in pairs(cfg) do + if info.act_id then + if not self.activityBountyLevelMap[info.act_id] then + self.activityBountyLevelMap[info.act_id] = {} + end + table.insert(self.activityBountyLevelMap[info.act_id], id) + end + end + end + return self.activityBountyLevelMap[actId] +end + return DataManager \ No newline at end of file diff --git a/lua/app/common/module_manager.lua b/lua/app/common/module_manager.lua index a9a3b3cf..579a98a1 100644 --- a/lua/app/common/module_manager.lua +++ b/lua/app/common/module_manager.lua @@ -71,6 +71,8 @@ local MODULE_PATHS = { SkinManager = "app/module/skin/skin_manager", -- 英雄基金 HeroFundManager = "app/module/activity/hero_fund/hero_fund_manager", + -- 世界首领活动 + ActBossRushManager = "app/module/activity/act_boss_rush/act_boss_rush_manager", } -- 这里的key对应func_open里的id diff --git a/lua/app/config/act_fourteen_bounty.lua b/lua/app/config/act_fourteen_bounty.lua new file mode 100644 index 00000000..75f79032 --- /dev/null +++ b/lua/app/config/act_fourteen_bounty.lua @@ -0,0 +1,132 @@ +local act_fourteen_bounty = { + [1]={ + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=1100, + ["num_for_nothing"]="VwlcAw==" + }, + ["reward_pro"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=3, + ["id_for_nothing"]="VQ==", + ["num"]=1100, + ["num_for_nothing"]="VwlcAw==" + } + }, + [2]={ + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=1101, + ["num_for_nothing"]="VwlcAg==" + }, + ["reward_pro"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=3, + ["id_for_nothing"]="VQ==", + ["num"]=1101, + ["num_for_nothing"]="VwlcAg==" + } + }, + [3]={ + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=1102, + ["num_for_nothing"]="VwlcAQ==" + }, + ["reward_pro"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=3, + ["id_for_nothing"]="VQ==", + ["num"]=1102, + ["num_for_nothing"]="VwlcAQ==" + } + }, + [4]={ + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=1103, + ["num_for_nothing"]="VwlcAA==" + }, + ["reward_pro"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=3, + ["id_for_nothing"]="VQ==", + ["num"]=1103, + ["num_for_nothing"]="VwlcAA==" + } + }, + [5]={ + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=1104, + ["num_for_nothing"]="VwlcBw==" + }, + ["reward_pro"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=3, + ["id_for_nothing"]="VQ==", + ["num"]=1104, + ["num_for_nothing"]="VwlcBw==" + } + }, + [6]={ + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=1105, + ["num_for_nothing"]="VwlcBg==" + }, + ["reward_pro"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=3, + ["id_for_nothing"]="VQ==", + ["num"]=1105, + ["num_for_nothing"]="VwlcBg==" + } + }, + [7]={ + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=1106, + ["num_for_nothing"]="VwlcBQ==" + }, + ["reward_pro"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=3, + ["id_for_nothing"]="VQ==", + ["num"]=1106, + ["num_for_nothing"]="VwlcBQ==" + } + } +} +local config = { +data=act_fourteen_bounty,count=7 +} +return config \ No newline at end of file diff --git a/lua/app/config/act_fourteen_bounty.lua.meta b/lua/app/config/act_fourteen_bounty.lua.meta new file mode 100644 index 00000000..e32fffba --- /dev/null +++ b/lua/app/config/act_fourteen_bounty.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 98e6ac4cce3094f4ca2032007239b1f9 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/act_fourteen_exchange.lua b/lua/app/config/act_fourteen_exchange.lua new file mode 100644 index 00000000..3c278f74 --- /dev/null +++ b/lua/app/config/act_fourteen_exchange.lua @@ -0,0 +1,166 @@ +local act_fourteen_exchange = { + [1]={ + ["stage"]=1, + ["cost"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=51, + ["id_for_nothing"]="Uwk=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + }, + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + }, + ["limit"]=1 + }, + [2]={ + ["stage"]=2, + ["cost"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=51, + ["id_for_nothing"]="Uwk=", + ["num"]=101, + ["num_for_nothing"]="Vwhd" + }, + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=101, + ["num_for_nothing"]="Vwhd" + }, + ["limit"]=1 + }, + [3]={ + ["stage"]=3, + ["cost"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=51, + ["id_for_nothing"]="Uwk=", + ["num"]=102, + ["num_for_nothing"]="Vwhe" + }, + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=102, + ["num_for_nothing"]="Vwhe" + }, + ["limit"]=1 + }, + [4]={ + ["stage"]=4, + ["cost"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=51, + ["id_for_nothing"]="Uwk=", + ["num"]=103, + ["num_for_nothing"]="Vwhf" + }, + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=103, + ["num_for_nothing"]="Vwhf" + }, + ["limit"]=1 + }, + [5]={ + ["stage"]=5, + ["cost"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=51, + ["id_for_nothing"]="Uwk=", + ["num"]=104, + ["num_for_nothing"]="VwhY" + }, + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=104, + ["num_for_nothing"]="VwhY" + }, + ["limit"]=1 + }, + [6]={ + ["stage"]=6, + ["cost"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=51, + ["id_for_nothing"]="Uwk=", + ["num"]=105, + ["num_for_nothing"]="VwhZ" + }, + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=105, + ["num_for_nothing"]="VwhZ" + }, + ["limit"]=1 + }, + [7]={ + ["stage"]=7, + ["cost"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=51, + ["id_for_nothing"]="Uwk=", + ["num"]=106, + ["num_for_nothing"]="Vwha" + }, + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=106, + ["num_for_nothing"]="Vwha" + }, + ["limit"]=1 + }, + [8]={ + ["stage"]=8, + ["cost"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=51, + ["id_for_nothing"]="Uwk=", + ["num"]=107, + ["num_for_nothing"]="Vwhb" + }, + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=107, + ["num_for_nothing"]="Vwhb" + }, + ["limit"]=1 + } +} +local config = { +data=act_fourteen_exchange,count=8 +} +return config \ No newline at end of file diff --git a/lua/app/config/act_fourteen_exchange.lua.meta b/lua/app/config/act_fourteen_exchange.lua.meta new file mode 100644 index 00000000..0d0ddd2b --- /dev/null +++ b/lua/app/config/act_fourteen_exchange.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 057f6606cfb30ab43a95c25d2f0639a9 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/act_fourteen_quest.lua b/lua/app/config/act_fourteen_quest.lua new file mode 100644 index 00000000..f4f35ab8 --- /dev/null +++ b/lua/app/config/act_fourteen_quest.lua @@ -0,0 +1,798 @@ +local act_fourteen_quest = { + [1]={ + ["stage"]=1, + ["quest"]=23, + ["none"]="深渊挑战 8", + ["num"]=1, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + } + } + }, + [2]={ + ["stage"]=1, + ["quest"]=23, + ["none"]="角色升到40级", + ["num"]=2, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=200, + ["num_for_nothing"]="VAhc" + } + } + }, + [3]={ + ["stage"]=1, + ["quest"]=23, + ["none"]="竞技场达到白银I", + ["num"]=3, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=300, + ["num_for_nothing"]="VQhc" + } + } + }, + [4]={ + ["stage"]=1, + ["quest"]=23, + ["none"]="广告次数累计达3", + ["num"]=4, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=400, + ["num_for_nothing"]="Ughc" + } + } + }, + [5]={ + ["stage"]=1, + ["quest"]=23, + ["none"]="完成所有任务", + ["num"]=5, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=1000, + ["num_for_nothing"]="VwhcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=3, + ["id_for_nothing"]="VQ==", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + } + } + }, + [6]={ + ["stage"]=2, + ["quest"]=23, + ["none"]="武器升级 x次", + ["num"]=6, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=500, + ["num_for_nothing"]="Uwhc" + } + } + }, + [7]={ + ["stage"]=2, + ["quest"]=23, + ["none"]="时空裂隙3-6", + ["num"]=7, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=600, + ["num_for_nothing"]="UAhc" + } + } + }, + [8]={ + ["stage"]=2, + ["quest"]=23, + ["none"]="开启主线宝箱 x个", + ["num"]=8, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=700, + ["num_for_nothing"]="UQhc" + } + } + }, + [9]={ + ["stage"]=2, + ["quest"]=23, + ["none"]="矿车拦截 7", + ["num"]=9, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=800, + ["num_for_nothing"]="Xghc" + } + } + }, + [10]={ + ["stage"]=2, + ["quest"]=23, + ["none"]="完成所有任务", + ["num"]=10, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=200, + ["num_for_nothing"]="VAhc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=3, + ["id_for_nothing"]="VQ==", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + } + } + }, + [11]={ + ["stage"]=3, + ["quest"]=23, + ["none"]="灯神之塔 9", + ["num"]=11, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=1100, + ["num_for_nothing"]="VwlcAw==" + } + } + }, + [12]={ + ["stage"]=3, + ["quest"]=23, + ["none"]="角色升级x次", + ["num"]=12, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=1200, + ["num_for_nothing"]="VwpcAw==" + } + } + }, + [13]={ + ["stage"]=3, + ["quest"]=23, + ["none"]="深渊挑战 10", + ["num"]=13, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=1300, + ["num_for_nothing"]="VwtcAw==" + } + } + }, + [14]={ + ["stage"]=3, + ["quest"]=23, + ["none"]="广告次数累计达8", + ["num"]=14, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=1400, + ["num_for_nothing"]="VwxcAw==" + } + } + }, + [15]={ + ["stage"]=3, + ["quest"]=23, + ["none"]="完成所有任务", + ["num"]=15, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=3000, + ["num_for_nothing"]="VQhcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=3, + ["id_for_nothing"]="VQ==", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + } + } + }, + [16]={ + ["stage"]=4, + ["quest"]=23, + ["none"]="每日挑战 胜利x次", + ["num"]=16, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=1500, + ["num_for_nothing"]="Vw1cAw==" + } + } + }, + [17]={ + ["stage"]=4, + ["quest"]=23, + ["none"]="矿车拦截 10", + ["num"]=17, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=1600, + ["num_for_nothing"]="Vw5cAw==" + } + } + }, + [18]={ + ["stage"]=4, + ["quest"]=23, + ["none"]="时空裂隙4-3", + ["num"]=18, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=1700, + ["num_for_nothing"]="Vw9cAw==" + } + } + }, + [19]={ + ["stage"]=4, + ["quest"]=23, + ["none"]="开宝箱 x次", + ["num"]=19, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=1800, + ["num_for_nothing"]="VwBcAw==" + } + } + }, + [20]={ + ["stage"]=4, + ["quest"]=23, + ["none"]="完成所有任务", + ["num"]=20, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=4000, + ["num_for_nothing"]="UghcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=3, + ["id_for_nothing"]="VQ==", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + } + } + }, + [21]={ + ["stage"]=5, + ["quest"]=23, + ["none"]="广告次数累计达15", + ["num"]=21, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=2100, + ["num_for_nothing"]="VAlcAw==" + } + } + }, + [22]={ + ["stage"]=5, + ["quest"]=23, + ["none"]="通关波次 x次", + ["num"]=22, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=2200, + ["num_for_nothing"]="VApcAw==" + } + } + }, + [23]={ + ["stage"]=5, + ["quest"]=23, + ["none"]="灯神之塔 10", + ["num"]=23, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=2300, + ["num_for_nothing"]="VAtcAw==" + } + } + }, + [24]={ + ["stage"]=5, + ["quest"]=23, + ["none"]="竞技场达到白银III", + ["num"]=24, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=2400, + ["num_for_nothing"]="VAxcAw==" + } + } + }, + [25]={ + ["stage"]=5, + ["quest"]=23, + ["none"]="完成所有任务", + ["num"]=25, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=5000, + ["num_for_nothing"]="UwhcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=3, + ["id_for_nothing"]="VQ==", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + } + } + }, + [26]={ + ["stage"]=6, + ["quest"]=23, + ["none"]="击杀BOSS x次", + ["num"]=26, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=2500, + ["num_for_nothing"]="VA1cAw==" + } + } + }, + [27]={ + ["stage"]=6, + ["quest"]=23, + ["none"]="深渊挑战 13", + ["num"]=27, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=2600, + ["num_for_nothing"]="VA5cAw==" + } + } + }, + [28]={ + ["stage"]=6, + ["quest"]=23, + ["none"]="开启主线宝箱 x个", + ["num"]=28, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=2700, + ["num_for_nothing"]="VA9cAw==" + } + } + }, + [29]={ + ["stage"]=6, + ["quest"]=23, + ["none"]="矿车拦截 13", + ["num"]=29, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=2800, + ["num_for_nothing"]="VABcAw==" + } + } + }, + [30]={ + ["stage"]=6, + ["quest"]=23, + ["none"]="完成所有任务", + ["num"]=30, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=6000, + ["num_for_nothing"]="UAhcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=3, + ["id_for_nothing"]="VQ==", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + } + } + }, + [31]={ + ["stage"]=7, + ["quest"]=23, + ["none"]="时空裂隙5-2", + ["num"]=31, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=3100, + ["num_for_nothing"]="VQlcAw==" + } + } + }, + [32]={ + ["stage"]=7, + ["quest"]=23, + ["none"]="每日挑战 胜利x次", + ["num"]=32, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=3200, + ["num_for_nothing"]="VQpcAw==" + } + } + }, + [33]={ + ["stage"]=7, + ["quest"]=23, + ["none"]="开宝箱x次", + ["num"]=33, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=3300, + ["num_for_nothing"]="VQtcAw==" + } + } + }, + [34]={ + ["stage"]=7, + ["quest"]=23, + ["none"]="广告次数累计达20", + ["num"]=34, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=3400, + ["num_for_nothing"]="VQxcAw==" + } + } + }, + [35]={ + ["stage"]=7, + ["quest"]=23, + ["none"]="完成所有任务", + ["num"]=35, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=7000, + ["num_for_nothing"]="UQhcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=3, + ["id_for_nothing"]="VQ==", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + } + } + }, + [36]={ + ["stage"]=8, + ["quest"]=23, + ["none"]="装备升级 x次", + ["num"]=36, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=3500, + ["num_for_nothing"]="VQ1cAw==" + } + } + }, + [37]={ + ["stage"]=8, + ["quest"]=23, + ["none"]="灯神之塔 12", + ["num"]=37, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=3600, + ["num_for_nothing"]="VQ5cAw==" + } + } + }, + [38]={ + ["stage"]=8, + ["quest"]=23, + ["none"]="通关波次 x次", + ["num"]=38, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=3700, + ["num_for_nothing"]="VQ9cAw==" + } + } + }, + [39]={ + ["stage"]=8, + ["quest"]=23, + ["none"]="矿车拦截 15", + ["num"]=39, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=3800, + ["num_for_nothing"]="VQBcAw==" + } + } + }, + [40]={ + ["stage"]=8, + ["quest"]=23, + ["none"]="完成所有任务", + ["num"]=40, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=8000, + ["num_for_nothing"]="XghcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=3, + ["id_for_nothing"]="VQ==", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + } + } + }, + [41]={ + ["stage"]=9, + ["quest"]=23, + ["none"]="竞技场达到黄金段位", + ["num"]=41, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=4100, + ["num_for_nothing"]="UglcAw==" + } + } + }, + [42]={ + ["stage"]=9, + ["quest"]=23, + ["none"]="广告次数累计达30", + ["num"]=42, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=4200, + ["num_for_nothing"]="UgpcAw==" + } + } + }, + [43]={ + ["stage"]=9, + ["quest"]=23, + ["none"]="角色升到50级", + ["num"]=43, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=4300, + ["num_for_nothing"]="UgtcAw==" + } + } + }, + [44]={ + ["stage"]=9, + ["quest"]=23, + ["none"]="深渊挑战 15", + ["num"]=44, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=4400, + ["num_for_nothing"]="UgxcAw==" + } + } + }, + [45]={ + ["stage"]=9, + ["quest"]=23, + ["none"]="完成所有任务", + ["num"]=45, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=9000, + ["num_for_nothing"]="XwhcAw==" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=3, + ["id_for_nothing"]="VQ==", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + } + } + } +} +local config = { +data=act_fourteen_quest,count=45 +} +return config \ No newline at end of file diff --git a/lua/app/config/act_fourteen_quest.lua.meta b/lua/app/config/act_fourteen_quest.lua.meta new file mode 100644 index 00000000..67ae117f --- /dev/null +++ b/lua/app/config/act_fourteen_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: ae4732ca8e76a1243ad3c6e8d72d01b3 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/act_gift.lua b/lua/app/config/act_gift.lua index a8c55b6c..4d0831f6 100644 --- a/lua/app/config/act_gift.lua +++ b/lua/app/config/act_gift.lua @@ -429,8 +429,8 @@ local act_gift = { { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=53001, - ["id_for_nothing"]="UwtcA2Q=", + ["id"]=5, + ["id_for_nothing"]="Uw==", ["num"]=20, ["num_for_nothing"]="VAg=" }, @@ -1568,6 +1568,16 @@ local act_gift = { ["cd"]=1, ["value"]=1000 }, + [140403]={ + ["type"]=14, + ["recharge_id"]=11, + ["limit"]=1 + }, + [140404]={ + ["type"]=14, + ["recharge_id"]=12, + ["limit"]=1 + }, [130002]={ ["type"]=13, ["recharge_id"]=11, @@ -1676,874 +1686,13 @@ local act_gift = { ["limit"]=1, ["value"]=1100 }, - [140403]={ + [150403]={ ["type"]=14, - ["recharge_id"]=10, + ["recharge_id"]=11, ["limit"]=1 - }, - [140404]={ - ["type"]=14, - ["recharge_id"]=12, - ["limit"]=1 - }, - [150102]={ - ["type"]=15, - ["parameter_pro"]={ - 0, - 10 - }, - ["recharge_id"]=5, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=6000, - ["num_for_nothing"]="UAhcAw==" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1001, - ["id_for_nothing"]="VwhcAg==", - ["num"]=60, - ["num_for_nothing"]="UAg=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1002, - ["id_for_nothing"]="VwhcAQ==", - ["num"]=5, - ["num_for_nothing"]="Uw==" - } - }, - ["time_type"]=1, - ["limit_time"]=6, - ["cd"]=1, - ["value"]=800 - }, - [150202]={ - ["type"]=15, - ["parameter_pro"]={ - 20, - 30 - }, - ["recharge_id"]=7, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=6000, - ["num_for_nothing"]="UAhcAw==" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1001, - ["id_for_nothing"]="VwhcAg==", - ["num"]=60, - ["num_for_nothing"]="UAg=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1002, - ["id_for_nothing"]="VwhcAQ==", - ["num"]=40, - ["num_for_nothing"]="Ugg=" - } - }, - ["time_type"]=1, - ["limit_time"]=6, - ["cd"]=1, - ["value"]=800 - }, - [150302]={ - ["type"]=15, - ["parameter_pro"]={ - 40, - 50 - }, - ["recharge_id"]=8, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=10000, - ["num_for_nothing"]="VwhcA2U=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1002, - ["id_for_nothing"]="VwhcAQ==", - ["num"]=60, - ["num_for_nothing"]="UAg=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1003, - ["id_for_nothing"]="VwhcAA==", - ["num"]=40, - ["num_for_nothing"]="Ugg=" - } - }, - ["time_type"]=1, - ["limit_time"]=6, - ["cd"]=1, - ["value"]=800 - }, - [150402]={ - ["type"]=15, - ["parameter_pro"]={ - 60, - 70 - }, - ["recharge_id"]=8, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=10000, - ["num_for_nothing"]="VwhcA2U=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1002, - ["id_for_nothing"]="VwhcAQ==", - ["num"]=60, - ["num_for_nothing"]="UAg=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1003, - ["id_for_nothing"]="VwhcAA==", - ["num"]=40, - ["num_for_nothing"]="Ugg=" - } - }, - ["time_type"]=1, - ["limit_time"]=6, - ["cd"]=1, - ["value"]=800 - }, - [150502]={ - ["type"]=15, - ["parameter_pro"]={ - 80, - 90 - }, - ["recharge_id"]=12, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=16000, - ["num_for_nothing"]="Vw5cA2U=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1002, - ["id_for_nothing"]="VwhcAQ==", - ["num"]=40, - ["num_for_nothing"]="Ugg=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1003, - ["id_for_nothing"]="VwhcAA==", - ["num"]=60, - ["num_for_nothing"]="UAg=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1004, - ["id_for_nothing"]="VwhcBw==", - ["num"]=60, - ["num_for_nothing"]="UAg=" - } - }, - ["time_type"]=1, - ["limit_time"]=6, - ["cd"]=1, - ["value"]=800 - }, - [150602]={ - ["type"]=15, - ["parameter_pro"]={ - 100, - 110 - }, - ["recharge_id"]=12, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=16000, - ["num_for_nothing"]="Vw5cA2U=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1002, - ["id_for_nothing"]="VwhcAQ==", - ["num"]=40, - ["num_for_nothing"]="Ugg=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1003, - ["id_for_nothing"]="VwhcAA==", - ["num"]=60, - ["num_for_nothing"]="UAg=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1004, - ["id_for_nothing"]="VwhcBw==", - ["num"]=60, - ["num_for_nothing"]="UAg=" - } - }, - ["time_type"]=1, - ["limit_time"]=6, - ["cd"]=1, - ["value"]=800 - }, - [150702]={ - ["type"]=15, - ["parameter_pro"]={ - 120, - 130 - }, - ["recharge_id"]=13, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=24000, - ["num_for_nothing"]="VAxcA2U=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1003, - ["id_for_nothing"]="VwhcAA==", - ["num"]=40, - ["num_for_nothing"]="Ugg=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1004, - ["id_for_nothing"]="VwhcBw==", - ["num"]=60, - ["num_for_nothing"]="UAg=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1005, - ["id_for_nothing"]="VwhcBg==", - ["num"]=60, - ["num_for_nothing"]="UAg=" - } - }, - ["time_type"]=1, - ["limit_time"]=6, - ["cd"]=1, - ["value"]=800 - }, - [150802]={ - ["type"]=15, - ["parameter_pro"]={ - 140, - 150 - }, - ["recharge_id"]=13, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=24000, - ["num_for_nothing"]="VAxcA2U=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1003, - ["id_for_nothing"]="VwhcAA==", - ["num"]=40, - ["num_for_nothing"]="Ugg=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1004, - ["id_for_nothing"]="VwhcBw==", - ["num"]=60, - ["num_for_nothing"]="UAg=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1005, - ["id_for_nothing"]="VwhcBg==", - ["num"]=60, - ["num_for_nothing"]="UAg=" - } - }, - ["time_type"]=1, - ["limit_time"]=6, - ["cd"]=1, - ["value"]=800 - }, - [150902]={ - ["type"]=15, - ["parameter_pro"]={ - 160, - 170 - }, - ["recharge_id"]=15, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=40000, - ["num_for_nothing"]="UghcA2U=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1004, - ["id_for_nothing"]="VwhcBw==", - ["num"]=40, - ["num_for_nothing"]="Ugg=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1005, - ["id_for_nothing"]="VwhcBg==", - ["num"]=100, - ["num_for_nothing"]="Vwhc" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1006, - ["id_for_nothing"]="VwhcBQ==", - ["num"]=80, - ["num_for_nothing"]="Xgg=" - } - }, - ["time_type"]=1, - ["limit_time"]=6, - ["cd"]=1, - ["value"]=800 - }, - [151002]={ - ["type"]=15, - ["parameter_pro"]={ - 180, - 190 - }, - ["recharge_id"]=15, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=40000, - ["num_for_nothing"]="UghcA2U=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1004, - ["id_for_nothing"]="VwhcBw==", - ["num"]=40, - ["num_for_nothing"]="Ugg=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1005, - ["id_for_nothing"]="VwhcBg==", - ["num"]=100, - ["num_for_nothing"]="Vwhc" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1006, - ["id_for_nothing"]="VwhcBQ==", - ["num"]=80, - ["num_for_nothing"]="Xgg=" - } - }, - ["time_type"]=1, - ["limit_time"]=6, - ["cd"]=1, - ["value"]=800 - }, - [160102]={ - ["type"]=16, - ["parameter_pro"]={ - 0, - 10 - }, - ["recharge_id"]=7, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=12000, - ["num_for_nothing"]="VwpcA2U=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=38, - ["id_for_nothing"]="VQA=", - ["num"]=60, - ["num_for_nothing"]="UAg=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=39, - ["id_for_nothing"]="VQE=", - ["num"]=5, - ["num_for_nothing"]="Uw==" - } - }, - ["time_type"]=1, - ["limit_time"]=6, - ["cd"]=1, - ["value"]=800 - }, - [160202]={ - ["type"]=16, - ["parameter_pro"]={ - 20, - 30 - }, - ["recharge_id"]=10, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=12000, - ["num_for_nothing"]="VwpcA2U=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=38, - ["id_for_nothing"]="VQA=", - ["num"]=60, - ["num_for_nothing"]="UAg=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=39, - ["id_for_nothing"]="VQE=", - ["num"]=40, - ["num_for_nothing"]="Ugg=" - } - }, - ["time_type"]=1, - ["limit_time"]=6, - ["cd"]=1, - ["value"]=800 - }, - [160302]={ - ["type"]=16, - ["parameter_pro"]={ - 40, - 50 - }, - ["recharge_id"]=12, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=20000, - ["num_for_nothing"]="VAhcA2U=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=39, - ["id_for_nothing"]="VQE=", - ["num"]=60, - ["num_for_nothing"]="UAg=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=40, - ["id_for_nothing"]="Ugg=", - ["num"]=40, - ["num_for_nothing"]="Ugg=" - } - }, - ["time_type"]=1, - ["limit_time"]=6, - ["cd"]=1, - ["value"]=800 - }, - [160402]={ - ["type"]=16, - ["parameter_pro"]={ - 60, - 70 - }, - ["recharge_id"]=12, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=20000, - ["num_for_nothing"]="VAhcA2U=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=39, - ["id_for_nothing"]="VQE=", - ["num"]=60, - ["num_for_nothing"]="UAg=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=40, - ["id_for_nothing"]="Ugg=", - ["num"]=40, - ["num_for_nothing"]="Ugg=" - } - }, - ["time_type"]=1, - ["limit_time"]=6, - ["cd"]=1, - ["value"]=800 - }, - [160502]={ - ["type"]=16, - ["parameter_pro"]={ - 80, - 90 - }, - ["recharge_id"]=14, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=32000, - ["num_for_nothing"]="VQpcA2U=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=39, - ["id_for_nothing"]="VQE=", - ["num"]=40, - ["num_for_nothing"]="Ugg=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=40, - ["id_for_nothing"]="Ugg=", - ["num"]=60, - ["num_for_nothing"]="UAg=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=41, - ["id_for_nothing"]="Ugk=", - ["num"]=60, - ["num_for_nothing"]="UAg=" - } - }, - ["time_type"]=1, - ["limit_time"]=6, - ["cd"]=1, - ["value"]=800 - }, - [160602]={ - ["type"]=16, - ["parameter_pro"]={ - 100, - 110 - }, - ["recharge_id"]=14, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=32000, - ["num_for_nothing"]="VQpcA2U=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=39, - ["id_for_nothing"]="VQE=", - ["num"]=40, - ["num_for_nothing"]="Ugg=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=40, - ["id_for_nothing"]="Ugg=", - ["num"]=60, - ["num_for_nothing"]="UAg=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=41, - ["id_for_nothing"]="Ugk=", - ["num"]=60, - ["num_for_nothing"]="UAg=" - } - }, - ["time_type"]=1, - ["limit_time"]=6, - ["cd"]=1, - ["value"]=800 - }, - [160702]={ - ["type"]=16, - ["parameter_pro"]={ - 120, - 130 - }, - ["recharge_id"]=15, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=48000, - ["num_for_nothing"]="UgBcA2U=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=40, - ["id_for_nothing"]="Ugg=", - ["num"]=40, - ["num_for_nothing"]="Ugg=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=41, - ["id_for_nothing"]="Ugk=", - ["num"]=60, - ["num_for_nothing"]="UAg=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=42, - ["id_for_nothing"]="Ugo=", - ["num"]=60, - ["num_for_nothing"]="UAg=" - } - }, - ["time_type"]=1, - ["limit_time"]=6, - ["cd"]=1, - ["value"]=800 - }, - [160802]={ - ["type"]=16, - ["parameter_pro"]={ - 140, - 150 - }, - ["recharge_id"]=15, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=48000, - ["num_for_nothing"]="UgBcA2U=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=40, - ["id_for_nothing"]="Ugg=", - ["num"]=40, - ["num_for_nothing"]="Ugg=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=41, - ["id_for_nothing"]="Ugk=", - ["num"]=60, - ["num_for_nothing"]="UAg=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=42, - ["id_for_nothing"]="Ugo=", - ["num"]=60, - ["num_for_nothing"]="UAg=" - } - }, - ["time_type"]=1, - ["limit_time"]=6, - ["cd"]=1, - ["value"]=800 - }, - [160902]={ - ["type"]=16, - ["parameter_pro"]={ - 160, - 170 - }, - ["recharge_id"]=17, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=80000, - ["num_for_nothing"]="XghcA2U=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=41, - ["id_for_nothing"]="Ugk=", - ["num"]=40, - ["num_for_nothing"]="Ugg=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=42, - ["id_for_nothing"]="Ugo=", - ["num"]=100, - ["num_for_nothing"]="Vwhc" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=43, - ["id_for_nothing"]="Ugs=", - ["num"]=80, - ["num_for_nothing"]="Xgg=" - } - }, - ["time_type"]=1, - ["limit_time"]=6, - ["cd"]=1, - ["value"]=800 - }, - [161002]={ - ["type"]=16, - ["parameter_pro"]={ - 180, - 190 - }, - ["recharge_id"]=17, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=80000, - ["num_for_nothing"]="XghcA2U=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=41, - ["id_for_nothing"]="Ugk=", - ["num"]=40, - ["num_for_nothing"]="Ugg=" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=42, - ["id_for_nothing"]="Ugo=", - ["num"]=100, - ["num_for_nothing"]="Vwhc" - }, - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=43, - ["id_for_nothing"]="Ugs=", - ["num"]=80, - ["num_for_nothing"]="Xgg=" - } - }, - ["time_type"]=1, - ["limit_time"]=6, - ["cd"]=1, - ["value"]=800 } } local config = { -data=act_gift,count=76 +data=act_gift,count=57 } return config \ No newline at end of file diff --git a/lua/app/config/activity.lua b/lua/app/config/activity.lua index 68e7d1e1..a300ef7e 100644 --- a/lua/app/config/activity.lua +++ b/lua/app/config/activity.lua @@ -3,9 +3,14 @@ local activity = { ["act_type"]=1, ["start_time"]="2023-08-22 00:00:00", ["end_time"]="2023-08-29 00:00:00" + }, + [206]={ + ["act_type"]=2, + ["start_time"]="2023-09-08 00:00:00", + ["end_time"]="2023-09-16 00:00:00" } } local config = { -data=activity,count=1 +data=activity,count=2 } return config \ No newline at end of file diff --git a/lua/app/config/activity_boss_rush_chapter.lua b/lua/app/config/activity_boss_rush_chapter.lua new file mode 100644 index 00000000..bd74e6ba --- /dev/null +++ b/lua/app/config/activity_boss_rush_chapter.lua @@ -0,0 +1,1546 @@ +local activity_boss_rush_chapter = { + [1]={ + ["board"]=1, + ["monster"]={ + 604, + 1604, + 2004, + 3404, + 4104 + } + }, + [2]={ + ["board"]=2, + ["monster"]={ + 604, + 1104, + 2204, + 2804, + 4204 + } + }, + [3]={ + ["board"]=3, + ["monster"]={ + 1004, + 1204, + 2404, + 3104, + 4104 + } + }, + [4]={ + ["board"]=4, + ["monster"]={ + 204, + 1204, + 2404, + 3504, + 4004 + } + }, + [5]={ + ["board"]=5, + ["monster"]={ + 104, + 1604, + 2704, + 3404, + 3704 + } + }, + [6]={ + ["board"]=6, + ["monster"]={ + 104, + 1704, + 2604, + 3504, + 4204 + } + }, + [7]={ + ["board"]=7, + ["monster"]={ + 104, + 1404, + 2304, + 2804, + 3804 + } + }, + [8]={ + ["board"]=8, + ["monster"]={ + 104, + 1204, + 2104, + 3404, + 3704 + } + }, + [9]={ + ["board"]=9, + ["monster"]={ + 604, + 1604, + 2104, + 2804, + 4004 + } + }, + [10]={ + ["board"]=10, + ["monster"]={ + 704, + 1104, + 2104, + 3404, + 4104 + } + }, + [11]={ + ["board"]=11, + ["monster"]={ + 304, + 1104, + 2404, + 3104, + 4204 + } + }, + [12]={ + ["board"]=12, + ["monster"]={ + 304, + 1204, + 2204, + 3504, + 3804 + } + }, + [13]={ + ["board"]=13, + ["monster"]={ + 104, + 1404, + 2004, + 3304, + 3904 + } + }, + [14]={ + ["board"]=14, + ["monster"]={ + 1004, + 1404, + 2204, + 3504, + 3904 + } + }, + [15]={ + ["board"]=15, + ["monster"]={ + 204, + 1504, + 2204, + 3104, + 4104 + } + }, + [16]={ + ["board"]=16, + ["monster"]={ + 504, + 1504, + 2304, + 2904, + 4004 + } + }, + [17]={ + ["board"]=17, + ["monster"]={ + 604, + 1204, + 2504, + 3404, + 4104 + } + }, + [18]={ + ["board"]=18, + ["monster"]={ + 1004, + 1704, + 2104, + 3504, + 3904 + } + }, + [19]={ + ["board"]=19, + ["monster"]={ + 504, + 1304, + 2004, + 2804, + 3904 + } + }, + [20]={ + ["board"]=20, + ["monster"]={ + 904, + 1604, + 2104, + 2904, + 3804 + } + }, + [21]={ + ["board"]=21, + ["monster"]={ + 204, + 1704, + 2704, + 3404, + 4004 + } + }, + [22]={ + ["board"]=22, + ["monster"]={ + 804, + 1304, + 2204, + 2904, + 3704 + } + }, + [23]={ + ["board"]=23, + ["monster"]={ + 1004, + 1404, + 2404, + 3404, + 4204 + } + }, + [24]={ + ["board"]=24, + ["monster"]={ + 404, + 1404, + 2604, + 2804, + 3804 + } + }, + [25]={ + ["board"]=25, + ["monster"]={ + 304, + 1404, + 2604, + 3304, + 3804 + } + }, + [26]={ + ["board"]=26, + ["monster"]={ + 604, + 1604, + 2104, + 3504, + 4004 + } + }, + [27]={ + ["board"]=27, + ["monster"]={ + 504, + 1604, + 2204, + 3504, + 4004 + } + }, + [28]={ + ["board"]=28, + ["monster"]={ + 404, + 1404, + 1904, + 3404, + 4104 + } + }, + [29]={ + ["board"]=29, + ["monster"]={ + 504, + 1804, + 2604, + 3204, + 3704 + } + }, + [30]={ + ["board"]=30, + ["monster"]={ + 704, + 1604, + 2304, + 2804, + 3904 + } + }, + [31]={ + ["board"]=31, + ["monster"]={ + 304, + 1304, + 2204, + 3304, + 4204 + } + }, + [32]={ + ["board"]=32, + ["monster"]={ + 804, + 1704, + 2604, + 2804, + 4004 + } + }, + [33]={ + ["board"]=33, + ["monster"]={ + 204, + 1404, + 2704, + 2804, + 4104 + } + }, + [34]={ + ["board"]=34, + ["monster"]={ + 104, + 1804, + 2704, + 2804, + 3704 + } + }, + [35]={ + ["board"]=35, + ["monster"]={ + 604, + 1604, + 2004, + 3104, + 4104 + } + }, + [36]={ + ["board"]=36, + ["monster"]={ + 104, + 1604, + 2704, + 3204, + 3904 + } + }, + [37]={ + ["board"]=37, + ["monster"]={ + 904, + 1804, + 2604, + 3004, + 3604 + } + }, + [38]={ + ["board"]=38, + ["monster"]={ + 1004, + 1404, + 2304, + 3104, + 3804 + } + }, + [39]={ + ["board"]=39, + ["monster"]={ + 604, + 1504, + 2604, + 2904, + 3804 + } + }, + [40]={ + ["board"]=40, + ["monster"]={ + 804, + 1604, + 2204, + 3104, + 3604 + } + }, + [41]={ + ["board"]=41, + ["monster"]={ + 104, + 1604, + 2604, + 3504, + 3804 + } + }, + [42]={ + ["board"]=42, + ["monster"]={ + 804, + 1604, + 2604, + 3004, + 4104 + } + }, + [43]={ + ["board"]=43, + ["monster"]={ + 104, + 1304, + 2204, + 3404, + 3704 + } + }, + [44]={ + ["board"]=44, + ["monster"]={ + 104, + 1104, + 2504, + 3204, + 4004 + } + }, + [45]={ + ["board"]=45, + ["monster"]={ + 704, + 1404, + 2304, + 3004, + 3604 + } + }, + [46]={ + ["board"]=46, + ["monster"]={ + 804, + 1804, + 2604, + 3404, + 4204 + } + }, + [47]={ + ["board"]=47, + ["monster"]={ + 504, + 1504, + 2604, + 3504, + 4204 + } + }, + [48]={ + ["board"]=48, + ["monster"]={ + 1004, + 1804, + 1904, + 2904, + 3604 + } + }, + [49]={ + ["board"]=49, + ["monster"]={ + 904, + 1204, + 1904, + 2804, + 3604 + } + }, + [50]={ + ["board"]=50, + ["monster"]={ + 1004, + 1404, + 2004, + 3104, + 3804 + } + }, + [51]={ + ["board"]=51, + ["monster"]={ + 504, + 1504, + 2604, + 2804, + 3904 + } + }, + [52]={ + ["board"]=52, + ["monster"]={ + 804, + 1704, + 2104, + 3004, + 4204 + } + }, + [53]={ + ["board"]=53, + ["monster"]={ + 704, + 1204, + 2504, + 3404, + 3704 + } + }, + [54]={ + ["board"]=54, + ["monster"]={ + 404, + 1804, + 2404, + 3004, + 3604 + } + }, + [55]={ + ["board"]=55, + ["monster"]={ + 904, + 1104, + 2404, + 2904, + 3804 + } + }, + [56]={ + ["board"]=56, + ["monster"]={ + 704, + 1304, + 2204, + 3404, + 3804 + } + }, + [57]={ + ["board"]=57, + ["monster"]={ + 404, + 1704, + 2304, + 3104, + 4204 + } + }, + [58]={ + ["board"]=58, + ["monster"]={ + 804, + 1104, + 2304, + 3104, + 3804 + } + }, + [59]={ + ["board"]=59, + ["monster"]={ + 604, + 1104, + 1904, + 3504, + 3804 + } + }, + [60]={ + ["board"]=60, + ["monster"]={ + 804, + 1404, + 2604, + 3104, + 3604 + } + }, + [61]={ + ["board"]=61, + ["monster"]={ + 104, + 1104, + 2204, + 2804, + 3904 + } + }, + [62]={ + ["board"]=62, + ["monster"]={ + 704, + 1604, + 2204, + 2904, + 3704 + } + }, + [63]={ + ["board"]=63, + ["monster"]={ + 604, + 1804, + 2504, + 3004, + 3704 + } + }, + [64]={ + ["board"]=64, + ["monster"]={ + 404, + 1704, + 2604, + 3404, + 3904 + } + }, + [65]={ + ["board"]=65, + ["monster"]={ + 604, + 1204, + 1904, + 3104, + 4104 + } + }, + [66]={ + ["board"]=66, + ["monster"]={ + 604, + 1504, + 2704, + 3504, + 4004 + } + }, + [67]={ + ["board"]=67, + ["monster"]={ + 704, + 1704, + 1904, + 3204, + 3604 + } + }, + [68]={ + ["board"]=68, + ["monster"]={ + 904, + 1304, + 2304, + 3104, + 4104 + } + }, + [69]={ + ["board"]=69, + ["monster"]={ + 204, + 1804, + 1904, + 3504, + 3604 + } + }, + [70]={ + ["board"]=70, + ["monster"]={ + 904, + 1804, + 2604, + 2804, + 4004 + } + }, + [71]={ + ["board"]=71, + ["monster"]={ + 1004, + 1304, + 2404, + 3404, + 4204 + } + }, + [72]={ + ["board"]=72, + ["monster"]={ + 604, + 1304, + 2504, + 3004, + 3904 + } + }, + [73]={ + ["board"]=73, + ["monster"]={ + 404, + 1304, + 2504, + 3004, + 3904 + } + }, + [74]={ + ["board"]=74, + ["monster"]={ + 704, + 1704, + 2004, + 3404, + 4104 + } + }, + [75]={ + ["board"]=75, + ["monster"]={ + 104, + 1304, + 2304, + 2904, + 4204 + } + }, + [76]={ + ["board"]=76, + ["monster"]={ + 604, + 1104, + 2604, + 3404, + 4104 + } + }, + [77]={ + ["board"]=77, + ["monster"]={ + 704, + 1104, + 2504, + 3304, + 4204 + } + }, + [78]={ + ["board"]=78, + ["monster"]={ + 304, + 1604, + 2204, + 3304, + 3604 + } + }, + [79]={ + ["board"]=79, + ["monster"]={ + 204, + 1704, + 2204, + 3004, + 3904 + } + }, + [80]={ + ["board"]=80, + ["monster"]={ + 204, + 1604, + 2104, + 3304, + 3604 + } + }, + [81]={ + ["board"]=81, + ["monster"]={ + 204, + 1504, + 1904, + 3304, + 3904 + } + }, + [82]={ + ["board"]=82, + ["monster"]={ + 304, + 1304, + 2004, + 3504, + 3704 + } + }, + [83]={ + ["board"]=83, + ["monster"]={ + 604, + 1704, + 1904, + 3304, + 4204 + } + }, + [84]={ + ["board"]=84, + ["monster"]={ + 404, + 1804, + 2304, + 3504, + 4104 + } + }, + [85]={ + ["board"]=85, + ["monster"]={ + 504, + 1504, + 2404, + 3304, + 4104 + } + }, + [86]={ + ["board"]=86, + ["monster"]={ + 304, + 1504, + 2104, + 3004, + 3804 + } + }, + [87]={ + ["board"]=87, + ["monster"]={ + 604, + 1804, + 2504, + 3504, + 3804 + } + }, + [88]={ + ["board"]=88, + ["monster"]={ + 604, + 1504, + 2704, + 3504, + 3804 + } + }, + [89]={ + ["board"]=89, + ["monster"]={ + 1004, + 1204, + 2004, + 3204, + 3704 + } + }, + [90]={ + ["board"]=90, + ["monster"]={ + 604, + 1104, + 2004, + 3004, + 4104 + } + }, + [91]={ + ["board"]=91, + ["monster"]={ + 704, + 1304, + 2204, + 3504, + 4004 + } + }, + [92]={ + ["board"]=92, + ["monster"]={ + 304, + 1404, + 2404, + 3204, + 3804 + } + }, + [93]={ + ["board"]=93, + ["monster"]={ + 704, + 1104, + 2504, + 3504, + 4004 + } + }, + [94]={ + ["board"]=94, + ["monster"]={ + 604, + 1704, + 2604, + 3304, + 3904 + } + }, + [95]={ + ["board"]=95, + ["monster"]={ + 604, + 1104, + 2104, + 3304, + 3904 + } + }, + [96]={ + ["board"]=96, + ["monster"]={ + 604, + 1304, + 2104, + 3304, + 3904 + } + }, + [97]={ + ["board"]=97, + ["monster"]={ + 804, + 1804, + 2404, + 3004, + 4104 + } + }, + [98]={ + ["board"]=98, + ["monster"]={ + 604, + 1404, + 2504, + 3404, + 3804 + } + }, + [99]={ + ["board"]=99, + ["monster"]={ + 404, + 1704, + 2504, + 2904, + 4104 + } + }, + [100]={ + ["board"]=100, + ["monster"]={ + 904, + 1204, + 2404, + 2904, + 3604 + } + }, + [101]={ + ["board"]=101, + ["monster"]={ + 504, + 1104, + 2404, + 3404, + 3604 + } + }, + [102]={ + ["board"]=102, + ["monster"]={ + 804, + 1504, + 2304, + 3404, + 4004 + } + }, + [103]={ + ["board"]=103, + ["monster"]={ + 404, + 1204, + 2204, + 3104, + 3604 + } + }, + [104]={ + ["board"]=104, + ["monster"]={ + 204, + 1404, + 1904, + 2904, + 4104 + } + }, + [105]={ + ["board"]=105, + ["monster"]={ + 404, + 1704, + 2604, + 3104, + 4204 + } + }, + [106]={ + ["board"]=106, + ["monster"]={ + 1004, + 1704, + 2004, + 3304, + 3904 + } + }, + [107]={ + ["board"]=107, + ["monster"]={ + 204, + 1804, + 2004, + 3504, + 3804 + } + }, + [108]={ + ["board"]=108, + ["monster"]={ + 604, + 1704, + 2404, + 3104, + 4004 + } + }, + [109]={ + ["board"]=109, + ["monster"]={ + 804, + 1104, + 1904, + 2904, + 3804 + } + }, + [110]={ + ["board"]=110, + ["monster"]={ + 804, + 1404, + 2704, + 3304, + 4004 + } + }, + [111]={ + ["board"]=111, + ["monster"]={ + 1004, + 1704, + 2004, + 3504, + 3704 + } + }, + [112]={ + ["board"]=112, + ["monster"]={ + 304, + 1604, + 2304, + 3404, + 3904 + } + }, + [113]={ + ["board"]=113, + ["monster"]={ + 604, + 1504, + 2504, + 3104, + 4204 + } + }, + [114]={ + ["board"]=114, + ["monster"]={ + 704, + 1804, + 2304, + 2904, + 4104 + } + }, + [115]={ + ["board"]=115, + ["monster"]={ + 904, + 1804, + 2604, + 2804, + 3804 + } + }, + [116]={ + ["board"]=116, + ["monster"]={ + 204, + 1704, + 2704, + 2904, + 4004 + } + }, + [117]={ + ["board"]=117, + ["monster"]={ + 304, + 1104, + 2504, + 3304, + 4204 + } + }, + [118]={ + ["board"]=118, + ["monster"]={ + 904, + 1304, + 2704, + 3304, + 3604 + } + }, + [119]={ + ["board"]=119, + ["monster"]={ + 304, + 1804, + 2604, + 3104, + 3904 + } + }, + [120]={ + ["board"]=120, + ["monster"]={ + 604, + 1504, + 1904, + 3504, + 3604 + } + }, + [121]={ + ["board"]=121, + ["monster"]={ + 204, + 1404, + 2404, + 3104, + 3904 + } + }, + [122]={ + ["board"]=122, + ["monster"]={ + 504, + 1204, + 1904, + 2904, + 4204 + } + }, + [123]={ + ["board"]=123, + ["monster"]={ + 104, + 1304, + 2104, + 2804, + 4104 + } + }, + [124]={ + ["board"]=124, + ["monster"]={ + 604, + 1704, + 2104, + 3304, + 3904 + } + }, + [125]={ + ["board"]=125, + ["monster"]={ + 804, + 1504, + 2304, + 2804, + 4004 + } + }, + [126]={ + ["board"]=126, + ["monster"]={ + 704, + 1504, + 2004, + 3504, + 3804 + } + }, + [127]={ + ["board"]=127, + ["monster"]={ + 304, + 1404, + 2504, + 3504, + 4104 + } + }, + [128]={ + ["board"]=128, + ["monster"]={ + 404, + 1404, + 2104, + 3204, + 4104 + } + }, + [129]={ + ["board"]=129, + ["monster"]={ + 204, + 1504, + 1904, + 3204, + 4004 + } + }, + [130]={ + ["board"]=130, + ["monster"]={ + 704, + 1104, + 2404, + 3504, + 3904 + } + }, + [131]={ + ["board"]=131, + ["monster"]={ + 504, + 1504, + 2604, + 3304, + 3604 + } + }, + [132]={ + ["board"]=132, + ["monster"]={ + 1004, + 1804, + 2004, + 3304, + 3804 + } + }, + [133]={ + ["board"]=133, + ["monster"]={ + 504, + 1604, + 2604, + 3204, + 3704 + } + }, + [134]={ + ["board"]=134, + ["monster"]={ + 104, + 1304, + 2404, + 3104, + 3604 + } + }, + [135]={ + ["board"]=135, + ["monster"]={ + 604, + 1604, + 1904, + 3004, + 4104 + } + }, + [136]={ + ["board"]=136, + ["monster"]={ + 204, + 1804, + 2304, + 2804, + 3604 + } + }, + [137]={ + ["board"]=137, + ["monster"]={ + 704, + 1604, + 2604, + 3204, + 4204 + } + }, + [138]={ + ["board"]=138, + ["monster"]={ + 304, + 1404, + 2104, + 3104, + 3804 + } + }, + [139]={ + ["board"]=139, + ["monster"]={ + 604, + 1204, + 2604, + 3004, + 4204 + } + }, + [140]={ + ["board"]=140, + ["monster"]={ + 904, + 1804, + 2604, + 3004, + 3704 + } + }, + [141]={ + ["board"]=141, + ["monster"]={ + 704, + 1304, + 2404, + 3204, + 3704 + } + }, + [142]={ + ["board"]=142, + ["monster"]={ + 804, + 1204, + 2104, + 3404, + 3904 + } + }, + [143]={ + ["board"]=143, + ["monster"]={ + 204, + 1204, + 2704, + 2904, + 3804 + } + }, + [144]={ + ["board"]=144, + ["monster"]={ + 804, + 1204, + 2204, + 3204, + 3704 + } + }, + [145]={ + ["board"]=145, + ["monster"]={ + 604, + 1604, + 2504, + 3204, + 3904 + } + }, + [146]={ + ["board"]=146, + ["monster"]={ + 1004, + 1504, + 2204, + 2804, + 4004 + } + }, + [147]={ + ["board"]=147, + ["monster"]={ + 404, + 1404, + 2404, + 3104, + 4204 + } + }, + [148]={ + ["board"]=148, + ["monster"]={ + 104, + 1504, + 2604, + 3104, + 4204 + } + }, + [149]={ + ["board"]=149, + ["monster"]={ + 404, + 1404, + 1904, + 3404, + 3604 + } + }, + [150]={ + ["board"]=150, + ["monster"]={ + 104, + 1604, + 2204, + 3504, + 3604 + } + }, + [151]={ + ["board"]=151, + ["monster"]={ + 804, + 1704, + 2004, + 3504, + 3704 + } + }, + [152]={ + ["board"]=152, + ["monster"]={ + 804, + 1504, + 1904, + 2804, + 3804 + } + }, + [153]={ + ["board"]=153, + ["monster"]={ + 604, + 1604, + 2604, + 3104, + 3804 + } + }, + [154]={ + ["board"]=154, + ["monster"]={ + 404, + 1404, + 2004, + 3204, + 3704 + } + } +} +local config = { +data=activity_boss_rush_chapter,count=154 +} +return config \ No newline at end of file diff --git a/lua/app/config/activity_boss_rush_chapter.lua.meta b/lua/app/config/activity_boss_rush_chapter.lua.meta new file mode 100644 index 00000000..3417c199 --- /dev/null +++ b/lua/app/config/activity_boss_rush_chapter.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 3b9c06b8307dd0b4cb53ae035d53aa11 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/activity_boss_rush_exchange.lua b/lua/app/config/activity_boss_rush_exchange.lua new file mode 100644 index 00000000..9481219c --- /dev/null +++ b/lua/app/config/activity_boss_rush_exchange.lua @@ -0,0 +1,158 @@ +local activity_boss_rush_exchange = { + [1]={ + ["cost"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=52, + ["id_for_nothing"]="Uwo=", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + }, + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + }, + ["limit"]=1 + }, + [2]={ + ["cost"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=52, + ["id_for_nothing"]="Uwo=", + ["num"]=101, + ["num_for_nothing"]="Vwhd" + }, + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=101, + ["num_for_nothing"]="Vwhd" + }, + ["limit"]=1 + }, + [3]={ + ["cost"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=52, + ["id_for_nothing"]="Uwo=", + ["num"]=102, + ["num_for_nothing"]="Vwhe" + }, + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=102, + ["num_for_nothing"]="Vwhe" + }, + ["limit"]=1 + }, + [4]={ + ["cost"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=52, + ["id_for_nothing"]="Uwo=", + ["num"]=103, + ["num_for_nothing"]="Vwhf" + }, + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=103, + ["num_for_nothing"]="Vwhf" + }, + ["limit"]=1 + }, + [5]={ + ["cost"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=52, + ["id_for_nothing"]="Uwo=", + ["num"]=104, + ["num_for_nothing"]="VwhY" + }, + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=104, + ["num_for_nothing"]="VwhY" + }, + ["limit"]=1 + }, + [6]={ + ["cost"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=52, + ["id_for_nothing"]="Uwo=", + ["num"]=105, + ["num_for_nothing"]="VwhZ" + }, + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=105, + ["num_for_nothing"]="VwhZ" + }, + ["limit"]=1 + }, + [7]={ + ["cost"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=52, + ["id_for_nothing"]="Uwo=", + ["num"]=106, + ["num_for_nothing"]="Vwha" + }, + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=106, + ["num_for_nothing"]="Vwha" + }, + ["limit"]=1 + }, + [8]={ + ["cost"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=52, + ["id_for_nothing"]="Uwo=", + ["num"]=107, + ["num_for_nothing"]="Vwhb" + }, + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=107, + ["num_for_nothing"]="Vwhb" + }, + ["limit"]=1 + } +} +local config = { +data=activity_boss_rush_exchange,count=8 +} +return config \ No newline at end of file diff --git a/lua/app/config/activity_boss_rush_exchange.lua.meta b/lua/app/config/activity_boss_rush_exchange.lua.meta new file mode 100644 index 00000000..347a5b2f --- /dev/null +++ b/lua/app/config/activity_boss_rush_exchange.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 8c8d75a1f2e364844b081ef20888e140 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/activity_boss_rush_rank.lua b/lua/app/config/activity_boss_rush_rank.lua new file mode 100644 index 00000000..fd08a208 --- /dev/null +++ b/lua/app/config/activity_boss_rush_rank.lua @@ -0,0 +1,222 @@ +local activity_boss_rush_rank = { + [1]={ + ["ranking"]={ + 1, + 1 + }, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=160, + ["num_for_nothing"]="Vw5c" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=5, + ["id_for_nothing"]="Uw==", + ["num"]=220, + ["num_for_nothing"]="VApc" + } + } + }, + [2]={ + ["ranking"]={ + 2, + 2 + }, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=40000, + ["num_for_nothing"]="UghcA2U=" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=13, + ["id_for_nothing"]="Vws=", + ["num"]=3, + ["num_for_nothing"]="VQ==" + } + } + }, + [3]={ + ["ranking"]={ + 3, + 3 + }, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=35000, + ["num_for_nothing"]="VQ1cA2U=" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=200, + ["num_for_nothing"]="VAhc" + } + } + }, + [4]={ + ["ranking"]={ + 4, + 10 + }, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=150, + ["num_for_nothing"]="Vw1c" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=5, + ["id_for_nothing"]="Uw==", + ["num"]=180, + ["num_for_nothing"]="VwBc" + } + } + }, + [5]={ + ["ranking"]={ + 11, + 50 + }, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=25000, + ["num_for_nothing"]="VA1cA2U=" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=13, + ["id_for_nothing"]="Vws=", + ["num"]=3, + ["num_for_nothing"]="VQ==" + } + } + }, + [6]={ + ["ranking"]={ + 51, + 100 + }, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=25000, + ["num_for_nothing"]="VA1cA2U=" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=200, + ["num_for_nothing"]="VAhc" + } + } + }, + [7]={ + ["ranking"]={ + 101, + 500 + }, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=120, + ["num_for_nothing"]="Vwpc" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=5, + ["id_for_nothing"]="Uw==", + ["num"]=120, + ["num_for_nothing"]="Vwpc" + } + } + }, + [8]={ + ["ranking"]={ + 501, + 1000 + }, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=18000, + ["num_for_nothing"]="VwBcA2U=" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=13, + ["id_for_nothing"]="Vws=", + ["num"]=3, + ["num_for_nothing"]="VQ==" + } + } + }, + [9]={ + ["ranking"]={ + 1001, + 99999999 + }, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=18000, + ["num_for_nothing"]="VwBcA2U=" + }, + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=100, + ["num_for_nothing"]="Vwhc" + } + } + } +} +local config = { +data=activity_boss_rush_rank,count=9 +} +return config \ No newline at end of file diff --git a/lua/app/config/activity_boss_rush_rank.lua.meta b/lua/app/config/activity_boss_rush_rank.lua.meta new file mode 100644 index 00000000..fcf40175 --- /dev/null +++ b/lua/app/config/activity_boss_rush_rank.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 472bee3e9223f3c4aa8b407e72891bc3 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/activity_herofund.lua b/lua/app/config/activity_herofund.lua index ce2b6681..1bd3e595 100644 --- a/lua/app/config/activity_herofund.lua +++ b/lua/app/config/activity_herofund.lua @@ -1,6 +1,6 @@ local activity_herofund = { [1]={ - ["exp"]=0, + ["exp"]=30, ["reward"]={ ["type"]=1, ["type_for_nothing"]="Vw==", @@ -14,8 +14,8 @@ local activity_herofund = { ["type_for_nothing"]="Vw==", ["id"]=44003, ["id_for_nothing"]="UgxcA2Y=", - ["num"]=3, - ["num_for_nothing"]="VQ==" + ["num"]=1, + ["num_for_nothing"]="Vw==" }, ["reward_pro_max"]={ ["type"]=1, @@ -27,8 +27,16 @@ local activity_herofund = { } }, [2]={ - ["exp"]=30, + ["exp"]=60, ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=1000, + ["num_for_nothing"]="VwhcAw==" + }, + ["reward_pro"]={ ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=1, @@ -36,52 +44,44 @@ local activity_herofund = { ["num"]=1500, ["num_for_nothing"]="Vw1cAw==" }, - ["reward_pro"]={ - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=2000, - ["num_for_nothing"]="VAhcAw==" - }, ["reward_pro_max"]={ ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=1, ["id_for_nothing"]="Vw==", - ["num"]=4000, - ["num_for_nothing"]="UghcAw==" + ["num"]=3000, + ["num_for_nothing"]="VQhcAw==" } }, [3]={ - ["exp"]=60, + ["exp"]=90, ["reward"]={ ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=3, - ["id_for_nothing"]="VQ==", - ["num"]=10, - ["num_for_nothing"]="Vwg=" + ["id"]=8, + ["id_for_nothing"]="Xg==", + ["num"]=1, + ["num_for_nothing"]="Vw==" }, ["reward_pro"]={ ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=3, - ["id_for_nothing"]="VQ==", - ["num"]=15, - ["num_for_nothing"]="Vw0=" + ["id"]=9, + ["id_for_nothing"]="Xw==", + ["num"]=1, + ["num_for_nothing"]="Vw==" }, ["reward_pro_max"]={ ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=3, - ["id_for_nothing"]="VQ==", - ["num"]=20, - ["num_for_nothing"]="VAg=" + ["id"]=9, + ["id_for_nothing"]="Xw==", + ["num"]=2, + ["num_for_nothing"]="VA==" } }, [4]={ - ["exp"]=90, + ["exp"]=120, ["reward"]={ ["type"]=1, ["type_for_nothing"]="Vw==", @@ -108,49 +108,22 @@ local activity_herofund = { } }, [5]={ - ["exp"]=120, - ["reward"]={ - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=1500, - ["num_for_nothing"]="Vw1cAw==" - }, - ["reward_pro"]={ - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=2000, - ["num_for_nothing"]="VAhcAw==" - }, - ["reward_pro_max"]={ - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=4000, - ["num_for_nothing"]="UghcAw==" - } - }, - [6]={ ["exp"]=150, ["reward"]={ ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=2, - ["id_for_nothing"]="VA==", - ["num"]=30, - ["num_for_nothing"]="VQg=" + ["id"]=10, + ["id_for_nothing"]="Vwg=", + ["num"]=1, + ["num_for_nothing"]="Vw==" }, ["reward_pro"]={ ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=44003, - ["id_for_nothing"]="UgxcA2Y=", - ["num"]=2, - ["num_for_nothing"]="VA==" + ["id"]=11, + ["id_for_nothing"]="Vwk=", + ["num"]=1, + ["num_for_nothing"]="Vw==" }, ["reward_pro_max"]={ ["type"]=1, @@ -161,36 +134,17 @@ local activity_herofund = { ["num_for_nothing"]="VQ==" } }, - [7]={ + [6]={ ["exp"]=180, ["reward"]={ ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=3, - ["id_for_nothing"]="VQ==", - ["num"]=10, - ["num_for_nothing"]="Vwg=" + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=1000, + ["num_for_nothing"]="VwhcAw==" }, ["reward_pro"]={ - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=3, - ["id_for_nothing"]="VQ==", - ["num"]=15, - ["num_for_nothing"]="Vw0=" - }, - ["reward_pro_max"]={ - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=3, - ["id_for_nothing"]="VQ==", - ["num"]=20, - ["num_for_nothing"]="VAg=" - } - }, - [8]={ - ["exp"]=210, - ["reward"]={ ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=1, @@ -198,25 +152,71 @@ local activity_herofund = { ["num"]=1500, ["num_for_nothing"]="Vw1cAw==" }, - ["reward_pro"]={ - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=2000, - ["num_for_nothing"]="VAhcAw==" - }, ["reward_pro_max"]={ ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=1, ["id_for_nothing"]="Vw==", - ["num"]=4000, - ["num_for_nothing"]="UghcAw==" + ["num"]=3000, + ["num_for_nothing"]="VQhcAw==" + } + }, + [7]={ + ["exp"]=210, + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=8, + ["id_for_nothing"]="Xg==", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + ["reward_pro"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=9, + ["id_for_nothing"]="Xw==", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + ["reward_pro_max"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=9, + ["id_for_nothing"]="Xw==", + ["num"]=2, + ["num_for_nothing"]="VA==" + } + }, + [8]={ + ["exp"]=240, + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=20, + ["num_for_nothing"]="VAg=" + }, + ["reward_pro"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=50, + ["num_for_nothing"]="Uwg=" + }, + ["reward_pro_max"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=100, + ["num_for_nothing"]="Vwhc" } }, [9]={ - ["exp"]=240, + ["exp"]=270, ["reward"]={ ["type"]=1, ["type_for_nothing"]="Vw==", @@ -243,7 +243,7 @@ local activity_herofund = { } }, [10]={ - ["exp"]=270, + ["exp"]=300, ["reward"]={ ["type"]=1, ["type_for_nothing"]="Vw==", @@ -270,7 +270,7 @@ local activity_herofund = { } }, [11]={ - ["exp"]=300, + ["exp"]=330, ["reward"]={ ["type"]=1, ["type_for_nothing"]="Vw==", @@ -297,116 +297,124 @@ local activity_herofund = { } }, [12]={ - ["exp"]=330, - ["reward"]={ - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=2, - ["id_for_nothing"]="VA==", - ["num"]=30, - ["num_for_nothing"]="VQg=" - }, - ["reward_pro"]={ - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=2, - ["id_for_nothing"]="VA==", - ["num"]=50, - ["num_for_nothing"]="Uwg=" - }, - ["reward_pro_max"]={ - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=2, - ["id_for_nothing"]="VA==", - ["num"]=100, - ["num_for_nothing"]="Vwhc" - } - }, - [13]={ ["exp"]=360, ["reward"]={ ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=1, ["id_for_nothing"]="Vw==", - ["num"]=1500, - ["num_for_nothing"]="Vw1cAw==" + ["num"]=1000, + ["num_for_nothing"]="VwhcAw==" }, ["reward_pro"]={ ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=1, ["id_for_nothing"]="Vw==", - ["num"]=2000, - ["num_for_nothing"]="VAhcAw==" + ["num"]=1500, + ["num_for_nothing"]="Vw1cAw==" }, ["reward_pro_max"]={ ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=1, ["id_for_nothing"]="Vw==", - ["num"]=4000, - ["num_for_nothing"]="UghcAw==" + ["num"]=3000, + ["num_for_nothing"]="VQhcAw==" } }, - [14]={ + [13]={ ["exp"]=390, ["reward"]={ ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=3, - ["id_for_nothing"]="VQ==", - ["num"]=10, - ["num_for_nothing"]="Vwg=" - }, - ["reward_pro"]={ - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=3, - ["id_for_nothing"]="VQ==", - ["num"]=15, - ["num_for_nothing"]="Vw0=" - }, - ["reward_pro_max"]={ - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=3, - ["id_for_nothing"]="VQ==", - ["num"]=20, - ["num_for_nothing"]="VAg=" - } - }, - [15]={ - ["exp"]=420, - ["reward"]={ - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=44003, - ["id_for_nothing"]="UgxcA2Y=", + ["id"]=8, + ["id_for_nothing"]="Xg==", ["num"]=1, ["num_for_nothing"]="Vw==" }, ["reward_pro"]={ ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=44003, - ["id_for_nothing"]="UgxcA2Y=", + ["id"]=9, + ["id_for_nothing"]="Xw==", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + ["reward_pro_max"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=9, + ["id_for_nothing"]="Xw==", + ["num"]=2, + ["num_for_nothing"]="VA==" + } + }, + [14]={ + ["exp"]=420, + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=13, + ["id_for_nothing"]="Vws=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + ["reward_pro"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=13, + ["id_for_nothing"]="Vws=", ["num"]=2, ["num_for_nothing"]="VA==" }, ["reward_pro_max"]={ ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=44003, - ["id_for_nothing"]="UgxcA2Y=", - ["num"]=3, - ["num_for_nothing"]="VQ==" + ["id"]=13, + ["id_for_nothing"]="Vws=", + ["num"]=2, + ["num_for_nothing"]="VA==" + } + }, + [15]={ + ["exp"]=450, + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=10, + ["id_for_nothing"]="Vwg=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + ["reward_pro"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=11, + ["id_for_nothing"]="Vwk=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + ["reward_pro_max"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=18, + ["id_for_nothing"]="VwA=", + ["num"]=1, + ["num_for_nothing"]="Vw==" } }, [16]={ - ["exp"]=450, + ["exp"]=480, ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=1000, + ["num_for_nothing"]="VwhcAw==" + }, + ["reward_pro"]={ ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=1, @@ -414,59 +422,51 @@ local activity_herofund = { ["num"]=1500, ["num_for_nothing"]="Vw1cAw==" }, - ["reward_pro"]={ - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=2000, - ["num_for_nothing"]="VAhcAw==" - }, ["reward_pro_max"]={ ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=1, ["id_for_nothing"]="Vw==", - ["num"]=4000, - ["num_for_nothing"]="UghcAw==" + ["num"]=3000, + ["num_for_nothing"]="VQhcAw==" } }, [17]={ - ["exp"]=480, + ["exp"]=510, ["reward"]={ ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=3, - ["id_for_nothing"]="VQ==", - ["num"]=10, - ["num_for_nothing"]="Vwg=" + ["id"]=8, + ["id_for_nothing"]="Xg==", + ["num"]=1, + ["num_for_nothing"]="Vw==" }, ["reward_pro"]={ ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=3, - ["id_for_nothing"]="VQ==", - ["num"]=15, - ["num_for_nothing"]="Vw0=" + ["id"]=9, + ["id_for_nothing"]="Xw==", + ["num"]=1, + ["num_for_nothing"]="Vw==" }, ["reward_pro_max"]={ ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=3, - ["id_for_nothing"]="VQ==", - ["num"]=20, - ["num_for_nothing"]="VAg=" + ["id"]=9, + ["id_for_nothing"]="Xw==", + ["num"]=2, + ["num_for_nothing"]="VA==" } }, [18]={ - ["exp"]=510, + ["exp"]=540, ["reward"]={ ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=2, ["id_for_nothing"]="VA==", - ["num"]=30, - ["num_for_nothing"]="VQg=" + ["num"]=20, + ["num_for_nothing"]="VAg=" }, ["reward_pro"]={ ["type"]=1, @@ -486,7 +486,34 @@ local activity_herofund = { } }, [19]={ - ["exp"]=540, + ["exp"]=570, + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=10, + ["id_for_nothing"]="Vwg=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + ["reward_pro"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=10, + ["id_for_nothing"]="Vwg=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + }, + ["reward_pro_max"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=10, + ["id_for_nothing"]="Vwg=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + } + }, + [20]={ + ["exp"]=600, ["reward"]={ ["type"]=1, ["type_for_nothing"]="Vw==", @@ -512,35 +539,8 @@ local activity_herofund = { ["num_for_nothing"]="VQ==" } }, - [20]={ - ["exp"]=570, - ["reward"]={ - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=1500, - ["num_for_nothing"]="Vw1cAw==" - }, - ["reward_pro"]={ - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=2000, - ["num_for_nothing"]="VAhcAw==" - }, - ["reward_pro_max"]={ - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=4000, - ["num_for_nothing"]="UghcAw==" - } - }, [21]={ - ["exp"]=600, + ["exp"]=630, ["reward"]={ ["type"]=1, ["type_for_nothing"]="Vw==", @@ -567,8 +567,16 @@ local activity_herofund = { } }, [22]={ - ["exp"]=630, + ["exp"]=660, ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=1000, + ["num_for_nothing"]="VwhcAw==" + }, + ["reward_pro"]={ ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=1, @@ -576,52 +584,17 @@ local activity_herofund = { ["num"]=1500, ["num_for_nothing"]="Vw1cAw==" }, - ["reward_pro"]={ - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=2000, - ["num_for_nothing"]="VAhcAw==" - }, ["reward_pro_max"]={ ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=1, ["id_for_nothing"]="Vw==", - ["num"]=4000, - ["num_for_nothing"]="UghcAw==" - } - }, - [23]={ - ["exp"]=660, - ["reward"]={ - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=44003, - ["id_for_nothing"]="UgxcA2Y=", - ["num"]=1, - ["num_for_nothing"]="Vw==" - }, - ["reward_pro"]={ - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=44003, - ["id_for_nothing"]="UgxcA2Y=", - ["num"]=2, - ["num_for_nothing"]="VA==" - }, - ["reward_pro_max"]={ - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=44003, - ["id_for_nothing"]="UgxcA2Y=", - ["num"]=3, - ["num_for_nothing"]="VQ==" + ["num"]=3000, + ["num_for_nothing"]="VQhcAw==" } } } local config = { -data=activity_herofund,count=23 +data=activity_herofund,count=22 } return config \ No newline at end of file diff --git a/lua/app/config/arena_board.lua b/lua/app/config/arena_board.lua index 862e8f51..5c4b8208 100644 --- a/lua/app/config/arena_board.lua +++ b/lua/app/config/arena_board.lua @@ -20227,7 +20227,7 @@ local arena_board = { }, { 35, - 0 + 35 }, { 35, diff --git a/lua/app/config/arena_gift.lua b/lua/app/config/arena_gift.lua index 9ce15782..2aa1aa44 100644 --- a/lua/app/config/arena_gift.lua +++ b/lua/app/config/arena_gift.lua @@ -1,6 +1,32 @@ local arena_gift = { - [1]={ - ["score"]=900, + [101]={ + ["score"]=950, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=500, + ["num_for_nothing"]="Uwhc" + } + } + }, + [102]={ + ["score"]=1000, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=22, + ["id_for_nothing"]="VAo=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + } + } + }, + [103]={ + ["score"]=1050, ["reward"]={ { ["type"]=1, @@ -12,47 +38,92 @@ local arena_gift = { } } }, - [2]={ - ["score"]=950, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=23002, - ["id_for_nothing"]="VAtcA2c=", - ["num"]=10, - ["num_for_nothing"]="Vwg=" - } - } - }, - [3]={ - ["score"]=1000, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=10, - ["id_for_nothing"]="Vwg=", - ["num"]=1, - ["num_for_nothing"]="Vw==" - } - } - }, - [4]={ - ["score"]=1050, + [104]={ + ["score"]=1100, ["reward"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=1, ["id_for_nothing"]="Vw==", - ["num"]=5000, - ["num_for_nothing"]="UwhcAw==" + ["num"]=500, + ["num_for_nothing"]="Uwhc" + } + }, + ["unlock_hero"]={ + 54003 + } + }, + [105]={ + ["score"]=1150, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=8, + ["id_for_nothing"]="Xg==", + ["num"]=1, + ["num_for_nothing"]="Vw==" } } }, - [5]={ - ["score"]=1100, + [106]={ + ["score"]=1200, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=13, + ["id_for_nothing"]="Vws=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + } + }, + ["unlock_hero"]={ + 34003 + } + }, + [107]={ + ["score"]=1250, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=22, + ["id_for_nothing"]="VAo=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + } + } + }, + [108]={ + ["score"]=1300, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=30, + ["num_for_nothing"]="VQg=" + } + } + }, + [109]={ + ["score"]=1350, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=8, + ["id_for_nothing"]="Xg==", + ["num"]=1, + ["num_for_nothing"]="Vw==" + } + } + }, + [110]={ + ["score"]=1400, ["reward"]={ { ["type"]=1, @@ -64,11 +135,63 @@ local arena_gift = { } }, ["unlock_hero"]={ - 54003 + 24003 } }, - [6]={ - ["score"]=1150, + [111]={ + ["score"]=1450, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=8, + ["id_for_nothing"]="Xg==", + ["num"]=1, + ["num_for_nothing"]="Vw==" + } + } + }, + [112]={ + ["score"]=1500, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=500, + ["num_for_nothing"]="Uwhc" + } + } + }, + [113]={ + ["score"]=1550, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=8, + ["id_for_nothing"]="Xg==", + ["num"]=1, + ["num_for_nothing"]="Vw==" + } + } + }, + [114]={ + ["score"]=1600, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=13, + ["id_for_nothing"]="Vws=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + } + } + }, + [115]={ + ["score"]=1650, ["reward"]={ { ["type"]=1, @@ -80,156 +203,20 @@ local arena_gift = { } } }, - [7]={ - ["score"]=1200, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=6, - ["id_for_nothing"]="UA==", - ["num"]=1, - ["num_for_nothing"]="Vw==" - } - }, - ["unlock_hero"]={ - 34003 - } - }, - [8]={ - ["score"]=1250, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=10000, - ["num_for_nothing"]="VwhcA2U=" - } - } - }, - [9]={ - ["score"]=1300, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=11, - ["id_for_nothing"]="Vwk=", - ["num"]=1, - ["num_for_nothing"]="Vw==" - } - } - }, - [10]={ - ["score"]=1350, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=2, - ["id_for_nothing"]="VA==", - ["num"]=60, - ["num_for_nothing"]="UAg=" - } - } - }, - [11]={ - ["score"]=1400, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=54003, - ["id_for_nothing"]="UwxcA2Y=", - ["num"]=3, - ["num_for_nothing"]="VQ==" - } - }, - ["unlock_hero"]={ - 24003 - } - }, - [12]={ - ["score"]=1450, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=15000, - ["num_for_nothing"]="Vw1cA2U=" - } - } - }, - [13]={ - ["score"]=1500, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=11, - ["id_for_nothing"]="Vwk=", - ["num"]=1, - ["num_for_nothing"]="Vw==" - } - } - }, - [14]={ - ["score"]=1550, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=2, - ["id_for_nothing"]="VA==", - ["num"]=80, - ["num_for_nothing"]="Xgg=" - } - } - }, - [15]={ - ["score"]=1600, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=34003, - ["id_for_nothing"]="VQxcA2Y=", - ["num"]=3, - ["num_for_nothing"]="VQ==" - } - } - }, - [16]={ - ["score"]=1650, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=18000, - ["num_for_nothing"]="VwBcA2U=" - } - } - }, - [17]={ + [116]={ ["score"]=1700, ["reward"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=18, - ["id_for_nothing"]="VwA=", + ["id"]=22, + ["id_for_nothing"]="VAo=", ["num"]=1, ["num_for_nothing"]="Vw==" } } }, - [18]={ + [117]={ ["score"]=1750, ["reward"]={ { @@ -237,25 +224,25 @@ local arena_gift = { ["type_for_nothing"]="Vw==", ["id"]=2, ["id_for_nothing"]="VA==", - ["num"]=100, - ["num_for_nothing"]="Vwhc" + ["num"]=30, + ["num_for_nothing"]="VQg=" } } }, - [19]={ + [118]={ ["score"]=1800, ["reward"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=24003, - ["id_for_nothing"]="VAxcA2Y=", - ["num"]=3, - ["num_for_nothing"]="VQ==" + ["id"]=8, + ["id_for_nothing"]="Xg==", + ["num"]=1, + ["num_for_nothing"]="Vw==" } } }, - [20]={ + [119]={ ["score"]=1850, ["reward"]={ { @@ -263,298 +250,298 @@ local arena_gift = { ["type_for_nothing"]="Vw==", ["id"]=1, ["id_for_nothing"]="Vw==", - ["num"]=20000, - ["num_for_nothing"]="VAhcA2U=" + ["num"]=500, + ["num_for_nothing"]="Uwhc" } } }, - [21]={ + [120]={ ["score"]=1900, ["reward"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=18, - ["id_for_nothing"]="VwA=", + ["id"]=11, + ["id_for_nothing"]="Vwk=", ["num"]=1, ["num_for_nothing"]="Vw==" } } }, - [22]={ + [121]={ ["score"]=1950, ["reward"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=2, - ["id_for_nothing"]="VA==", - ["num"]=120, - ["num_for_nothing"]="Vwpc" + ["id"]=8, + ["id_for_nothing"]="Xg==", + ["num"]=1, + ["num_for_nothing"]="Vw==" } } }, - [23]={ + [122]={ ["score"]=2000, ["reward"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=47, - ["id_for_nothing"]="Ug8=", - ["num"]=5, - ["num_for_nothing"]="Uw==" + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=500, + ["num_for_nothing"]="Uwhc" } } }, - [24]={ + [123]={ ["score"]=2050, ["reward"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=24000, - ["num_for_nothing"]="VAxcA2U=" + ["id"]=8, + ["id_for_nothing"]="Xg==", + ["num"]=1, + ["num_for_nothing"]="Vw==" } } }, - [25]={ + [124]={ ["score"]=2100, ["reward"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=18, - ["id_for_nothing"]="VwA=", + ["id"]=13, + ["id_for_nothing"]="Vws=", ["num"]=1, ["num_for_nothing"]="Vw==" } } }, - [26]={ + [125]={ ["score"]=2150, ["reward"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=2, - ["id_for_nothing"]="VA==", - ["num"]=150, - ["num_for_nothing"]="Vw1c" + ["id"]=10, + ["id_for_nothing"]="Vwg=", + ["num"]=1, + ["num_for_nothing"]="Vw==" } } }, - [27]={ + [126]={ ["score"]=2200, ["reward"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=47, - ["id_for_nothing"]="Ug8=", - ["num"]=8, - ["num_for_nothing"]="Xg==" + ["id"]=22, + ["id_for_nothing"]="VAo=", + ["num"]=1, + ["num_for_nothing"]="Vw==" } } }, - [28]={ + [127]={ ["score"]=2250, ["reward"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=30000, - ["num_for_nothing"]="VQhcA2U=" + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=30, + ["num_for_nothing"]="VQg=" } } }, - [29]={ + [128]={ ["score"]=2300, ["reward"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=18, - ["id_for_nothing"]="VwA=", + ["id"]=8, + ["id_for_nothing"]="Xg==", ["num"]=1, ["num_for_nothing"]="Vw==" } } }, - [30]={ + [129]={ ["score"]=2350, ["reward"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=2, - ["id_for_nothing"]="VA==", - ["num"]=180, - ["num_for_nothing"]="VwBc" + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=500, + ["num_for_nothing"]="Uwhc" } } }, - [31]={ + [130]={ ["score"]=2400, ["reward"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=30000, - ["num_for_nothing"]="VQhcA2U=" + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=50, + ["num_for_nothing"]="Uwg=" } } }, - [32]={ + [131]={ ["score"]=2450, ["reward"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=14, - ["id_for_nothing"]="Vww=", + ["id"]=8, + ["id_for_nothing"]="Xg==", ["num"]=1, ["num_for_nothing"]="Vw==" } } }, - [33]={ + [132]={ ["score"]=2500, ["reward"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=47, - ["id_for_nothing"]="Ug8=", - ["num"]=10, - ["num_for_nothing"]="Vwg=" + ["id"]=1, + ["id_for_nothing"]="Vw==", + ["num"]=500, + ["num_for_nothing"]="Uwhc" } } }, - [34]={ + [133]={ ["score"]=2550, ["reward"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=40000, - ["num_for_nothing"]="UghcA2U=" + ["id"]=8, + ["id_for_nothing"]="Xg==", + ["num"]=1, + ["num_for_nothing"]="Vw==" } } }, - [35]={ + [134]={ ["score"]=2600, ["reward"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=18, - ["id_for_nothing"]="VwA=", + ["id"]=10, + ["id_for_nothing"]="Vwg=", ["num"]=1, ["num_for_nothing"]="Vw==" } } }, - [36]={ + [135]={ ["score"]=2650, ["reward"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=2, - ["id_for_nothing"]="VA==", - ["num"]=200, - ["num_for_nothing"]="VAhc" + ["id"]=13, + ["id_for_nothing"]="Vws=", + ["num"]=1, + ["num_for_nothing"]="Vw==" } } }, - [37]={ + [136]={ ["score"]=2700, ["reward"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=40000, - ["num_for_nothing"]="UghcA2U=" + ["id"]=22, + ["id_for_nothing"]="VAo=", + ["num"]=1, + ["num_for_nothing"]="Vw==" } } }, - [38]={ + [137]={ ["score"]=2750, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=15, - ["id_for_nothing"]="Vw0=", - ["num"]=1, - ["num_for_nothing"]="Vw==" - } - } - }, - [39]={ - ["score"]=2800, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=47, - ["id_for_nothing"]="Ug8=", - ["num"]=12, - ["num_for_nothing"]="Vwo=" - } - } - }, - [40]={ - ["score"]=2850, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=1, - ["id_for_nothing"]="Vw==", - ["num"]=50000, - ["num_for_nothing"]="UwhcA2U=" - } - } - }, - [41]={ - ["score"]=2900, - ["reward"]={ - { - ["type"]=1, - ["type_for_nothing"]="Vw==", - ["id"]=18, - ["id_for_nothing"]="VwA=", - ["num"]=1, - ["num_for_nothing"]="Vw==" - } - } - }, - [42]={ - ["score"]=2950, ["reward"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=2, ["id_for_nothing"]="VA==", - ["num"]=300, - ["num_for_nothing"]="VQhc" + ["num"]=30, + ["num_for_nothing"]="VQg=" } } }, - [43]={ + [138]={ + ["score"]=2800, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=8, + ["id_for_nothing"]="Xg==", + ["num"]=1, + ["num_for_nothing"]="Vw==" + } + } + }, + [139]={ + ["score"]=2850, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=10, + ["id_for_nothing"]="Vwg=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + } + } + }, + [140]={ + ["score"]=2900, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=11, + ["id_for_nothing"]="Vwk=", + ["num"]=1, + ["num_for_nothing"]="Vw==" + } + } + }, + [141]={ + ["score"]=2950, + ["reward"]={ + { + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=8, + ["id_for_nothing"]="Xg==", + ["num"]=1, + ["num_for_nothing"]="Vw==" + } + } + }, + [142]={ ["score"]=3000, ["reward"]={ { @@ -562,39 +549,39 @@ local arena_gift = { ["type_for_nothing"]="Vw==", ["id"]=1, ["id_for_nothing"]="Vw==", - ["num"]=50000, - ["num_for_nothing"]="UwhcA2U=" + ["num"]=500, + ["num_for_nothing"]="Uwhc" } } }, - [44]={ + [143]={ ["score"]=3050, ["reward"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=15, - ["id_for_nothing"]="Vw0=", + ["id"]=8, + ["id_for_nothing"]="Xg==", ["num"]=1, ["num_for_nothing"]="Vw==" } } }, - [45]={ + [144]={ ["score"]=3100, ["reward"]={ { ["type"]=1, ["type_for_nothing"]="Vw==", - ["id"]=47, - ["id_for_nothing"]="Ug8=", - ["num"]=15, - ["num_for_nothing"]="Vw0=" + ["id"]=8, + ["id_for_nothing"]="Xg==", + ["num"]=1, + ["num_for_nothing"]="Vw==" } } } } local config = { -data=arena_gift,count=45 +data=arena_gift,count=44 } return config \ No newline at end of file diff --git a/lua/app/config/arena_time.lua b/lua/app/config/arena_time.lua index 4579d403..046f8697 100644 --- a/lua/app/config/arena_time.lua +++ b/lua/app/config/arena_time.lua @@ -2,17 +2,20 @@ local arena_time = { [1]={ ["season"]=1, ["start_time"]="2023-6-25 00:00:00", - ["end_time"]="2023-8-16 00:00:00" + ["end_time"]="2023-8-16 00:00:00", + ["ui_banner"]="ui_arena_bounty_banner" }, [2]={ ["season"]=2, ["start_time"]="2023-8-16 00:00:00", - ["end_time"]="2023-9-15 00:00:00" + ["end_time"]="2023-9-15 00:00:00", + ["ui_banner"]="ui_arena_bounty_banner" }, [3]={ ["season"]=3, ["start_time"]="2023-9-15 00:00:00", - ["end_time"]="2023-10-16 00:00:00" + ["end_time"]="2023-10-16 00:00:00", + ["ui_banner"]="ui_arena_bounty_banner_1" } } local config = { diff --git a/lua/app/config/bounty_level.lua b/lua/app/config/bounty_level.lua index d000182a..60b263ba 100644 --- a/lua/app/config/bounty_level.lua +++ b/lua/app/config/bounty_level.lua @@ -3669,16 +3669,16 @@ local bounty_level = { ["type_for_nothing"]="Vw==", ["id"]=1, ["id_for_nothing"]="Vw==", - ["num"]=1000, - ["num_for_nothing"]="VwhcAw==" + ["num"]=500, + ["num_for_nothing"]="Uwhc" }, ["reward_pro"]={ ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=1, ["id_for_nothing"]="Vw==", - ["num"]=3000, - ["num_for_nothing"]="VQhcAw==" + ["num"]=1500, + ["num_for_nothing"]="Vw1cAw==" } }, [323]={ @@ -3870,16 +3870,16 @@ local bounty_level = { ["type_for_nothing"]="Vw==", ["id"]=1, ["id_for_nothing"]="Vw==", - ["num"]=1000, - ["num_for_nothing"]="VwhcAw==" + ["num"]=500, + ["num_for_nothing"]="Uwhc" }, ["reward_pro"]={ ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=1, ["id_for_nothing"]="Vw==", - ["num"]=3000, - ["num_for_nothing"]="VQhcAw==" + ["num"]=1500, + ["num_for_nothing"]="Vw1cAw==" } }, [333]={ @@ -4071,16 +4071,16 @@ local bounty_level = { ["type_for_nothing"]="Vw==", ["id"]=1, ["id_for_nothing"]="Vw==", - ["num"]=1000, - ["num_for_nothing"]="VwhcAw==" + ["num"]=500, + ["num_for_nothing"]="Uwhc" }, ["reward_pro"]={ ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=1, ["id_for_nothing"]="Vw==", - ["num"]=3000, - ["num_for_nothing"]="VQhcAw==" + ["num"]=1500, + ["num_for_nothing"]="Vw1cAw==" } }, [343]={ @@ -4211,8 +4211,8 @@ local bounty_level = { ["type_for_nothing"]="Vw==", ["id"]=1, ["id_for_nothing"]="Vw==", - ["num"]=1500, - ["num_for_nothing"]="Vw1cAw==" + ["num"]=1000, + ["num_for_nothing"]="VwhcAw==" }, ["reward_pro"]={ ["type"]=1, @@ -4272,16 +4272,16 @@ local bounty_level = { ["type_for_nothing"]="Vw==", ["id"]=1, ["id_for_nothing"]="Vw==", - ["num"]=1500, - ["num_for_nothing"]="Vw1cAw==" + ["num"]=500, + ["num_for_nothing"]="Uwhc" }, ["reward_pro"]={ ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=1, ["id_for_nothing"]="Vw==", - ["num"]=4500, - ["num_for_nothing"]="Ug1cAw==" + ["num"]=1500, + ["num_for_nothing"]="Vw1cAw==" } }, [353]={ @@ -4473,16 +4473,16 @@ local bounty_level = { ["type_for_nothing"]="Vw==", ["id"]=1, ["id_for_nothing"]="Vw==", - ["num"]=1500, - ["num_for_nothing"]="Vw1cAw==" + ["num"]=500, + ["num_for_nothing"]="Uwhc" }, ["reward_pro"]={ ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=1, ["id_for_nothing"]="Vw==", - ["num"]=4500, - ["num_for_nothing"]="Ug1cAw==" + ["num"]=1500, + ["num_for_nothing"]="Vw1cAw==" } }, [363]={ @@ -4674,16 +4674,16 @@ local bounty_level = { ["type_for_nothing"]="Vw==", ["id"]=1, ["id_for_nothing"]="Vw==", - ["num"]=1500, - ["num_for_nothing"]="Vw1cAw==" + ["num"]=500, + ["num_for_nothing"]="Uwhc" }, ["reward_pro"]={ ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=1, ["id_for_nothing"]="Vw==", - ["num"]=4500, - ["num_for_nothing"]="Ug1cAw==" + ["num"]=1500, + ["num_for_nothing"]="Vw1cAw==" } }, [373]={ @@ -4774,16 +4774,16 @@ local bounty_level = { ["type_for_nothing"]="Vw==", ["id"]=1, ["id_for_nothing"]="Vw==", - ["num"]=1500, - ["num_for_nothing"]="Vw1cAw==" + ["num"]=500, + ["num_for_nothing"]="Uwhc" }, ["reward_pro"]={ ["type"]=1, ["type_for_nothing"]="Vw==", ["id"]=1, ["id_for_nothing"]="Vw==", - ["num"]=4500, - ["num_for_nothing"]="Ug1cAw==" + ["num"]=1500, + ["num_for_nothing"]="Vw1cAw==" } }, [378]={ diff --git a/lua/app/config/chapter_board_bossrush.lua b/lua/app/config/chapter_board_bossrush.lua new file mode 100644 index 00000000..46e5a15c --- /dev/null +++ b/lua/app/config/chapter_board_bossrush.lua @@ -0,0 +1,31710 @@ +local chapter_board_bossrush = { + [1]={ + ["board"]={ + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [2]={ + ["board"]={ + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [3]={ + ["board"]={ + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 0, + 2 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 0, + 4 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [4]={ + ["board"]={ + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 0, + 5 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 0, + 5 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 0, + 5 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 0, + 5 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [5]={ + ["board"]={ + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 14, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + } + } + }, + [6]={ + ["board"]={ + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 5 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 0, + 5 + }, + { + 2, + 3 + }, + { + 0, + 5 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 14, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [7]={ + ["board"]={ + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 14, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [8]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 3, + 0 + }, + { + 14, + 0 + }, + { + 3, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [9]={ + ["board"]={ + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 7, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 7, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 7, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 7, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [10]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 7, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 14, + 0 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [11]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 4, + 1 + }, + { + 4, + 1 + }, + { + 4, + 3 + }, + { + 4, + 2 + }, + { + 4, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 4, + 4 + }, + { + 4, + 4 + }, + { + 4, + 3 + }, + { + 4, + 4 + }, + { + 4, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 14, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [12]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 4, + 2 + }, + { + 4, + 2 + }, + { + 4, + 3 + }, + { + 4, + 4 + }, + { + 4, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 14, + 0 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [13]={ + ["board"]={ + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 1 + }, + { + 2, + 2 + }, + { + 2, + 3 + }, + { + 2, + 4 + }, + { + 2, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 4, + 1 + }, + { + 4, + 2 + }, + { + 4, + 3 + }, + { + 4, + 4 + }, + { + 4, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 14, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + } + } + }, + [14]={ + ["board"]={ + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 4, + 1 + }, + { + 4, + 2 + }, + { + 4, + 1 + }, + { + 4, + 2 + }, + { + 4, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 4, + 2 + }, + { + 4, + 4 + }, + { + 4, + 5 + }, + { + 4, + 3 + }, + { + 4, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 14, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + } + } + }, + [15]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 5, + 3 + }, + { + 2, + 0 + }, + { + 5, + 4 + }, + { + 2, + 0 + }, + { + 5, + 3 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 5, + 4 + }, + { + 2, + 0 + }, + { + 5, + 4 + }, + { + 2, + 0 + }, + { + 5, + 4 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 14, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + } + } + }, + [16]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 4, + 3 + }, + { + 4, + 4 + }, + { + 4, + 4 + }, + { + 4, + 4 + }, + { + 4, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 5, + 2 + }, + { + 5, + 4 + }, + { + 5, + 2 + }, + { + 5, + 4 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 5, + 4 + }, + { + 5, + 2 + }, + { + 14, + 0 + }, + { + 5, + 2 + }, + { + 5, + 4 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + } + } + }, + [17]={ + ["board"]={ + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 5 + }, + { + 5, + 5 + }, + { + 5, + 5 + }, + { + 2, + 0 + }, + { + 5, + 3 + }, + { + 3, + 0 + }, + { + 5, + 3 + }, + { + 5, + 5 + }, + { + 3, + 0 + }, + { + 5, + 5 + }, + { + 2, + 0 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 5 + }, + { + 5, + 5 + }, + { + 5, + 5 + }, + { + 5, + 4 + }, + { + 5, + 4 + }, + { + 5, + 4 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 5, + 4 + }, + { + 14, + 0 + }, + { + 5, + 4 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 5, + 4 + }, + { + 5, + 4 + }, + { + 5, + 4 + }, + { + 1, + 0 + } + } + }, + [18]={ + ["board"]={ + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 4, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 5, + 1 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 5, + 1 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 2 + }, + { + 14, + 0 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 2 + }, + { + 5, + 1 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 1, + 0 + } + } + }, + [19]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 4, + 1 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 4, + 1 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 5 + }, + { + 5, + 5 + }, + { + 5, + 1 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 1, + 0 + }, + { + 5, + 1 + }, + { + 5, + 1 + }, + { + 5, + 3 + }, + { + 14, + 0 + }, + { + 5, + 1 + }, + { + 5, + 3 + }, + { + 5, + 1 + } + } + }, + [20]={ + ["board"]={ + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 5 + }, + { + 0, + 4 + }, + { + 0, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 0, + 4 + }, + { + 0, + 5 + }, + { + 0, + 4 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 14, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 5, + 2 + }, + { + 5, + 2 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 1 + }, + { + 5, + 1 + }, + { + 5, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [21]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 5 + }, + { + 1, + 0 + }, + { + 0, + 5 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 5 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 14, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + } + } + }, + [22]={ + ["board"]={ + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 5, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 5, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 5, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 5, + 2 + }, + { + 14, + 0 + }, + { + 5, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + } + } + }, + [23]={ + ["board"]={ + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 4, + 2 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 4, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 4, + 3 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 4, + 4 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 4, + 3 + }, + { + 4, + 1 + }, + { + 4, + 1 + }, + { + 4, + 5 + }, + { + 0, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [24]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 4, + 1 + }, + { + 4, + 1 + }, + { + 2, + 0 + }, + { + 4, + 5 + }, + { + 4, + 5 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 14, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [25]={ + ["board"]={ + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 5, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 5, + 3 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 5, + 4 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 5, + 3 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 5, + 4 + }, + { + 1, + 0 + } + } + }, + [26]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 5 + }, + { + 0, + 2 + }, + { + 2, + 0 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 0, + 2 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 0, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 14, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 4, + 2 + }, + { + 4, + 2 + }, + { + 4, + 4 + }, + { + 3, + 0 + }, + { + 4, + 4 + }, + { + 4, + 2 + }, + { + 4, + 2 + }, + { + 4, + 1 + }, + { + 0, + 0 + }, + { + 4, + 4 + }, + { + 2, + 0 + }, + { + 4, + 4 + }, + { + 0, + 0 + }, + { + 4, + 1 + }, + { + 4, + 1 + }, + { + 4, + 3 + }, + { + 4, + 3 + }, + { + 2, + 0 + }, + { + 4, + 3 + }, + { + 4, + 3 + }, + { + 4, + 1 + } + } + }, + [27]={ + ["board"]={ + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 4, + 4 + }, + { + 4, + 4 + }, + { + 1, + 0 + }, + { + 4, + 5 + }, + { + 4, + 5 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 14, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [28]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 3, + 0 + }, + { + 0, + 1 + }, + { + 3, + 0 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 3, + 0 + }, + { + 0, + 1 + }, + { + 3, + 0 + }, + { + 0, + 1 + }, + { + 3, + 0 + }, + { + 0, + 3 + }, + { + 3, + 0 + }, + { + 4, + 1 + }, + { + 4, + 5 + }, + { + 4, + 5 + }, + { + 4, + 5 + }, + { + 4, + 1 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 3, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 14, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [29]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 4, + 3 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 4, + 2 + }, + { + 0, + 3 + }, + { + 4, + 4 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 4, + 3 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 14, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + } + } + }, + [30]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 4, + 1 + }, + { + 4, + 2 + }, + { + 4, + 3 + }, + { + 4, + 4 + }, + { + 4, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 4, + 1 + }, + { + 4, + 2 + }, + { + 4, + 3 + }, + { + 4, + 4 + }, + { + 4, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 3, + 0 + }, + { + 14, + 0 + }, + { + 3, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + } + } + }, + [31]={ + ["board"]={ + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 4, + 3 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 4, + 3 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 4, + 2 + }, + { + 4, + 3 + }, + { + 4, + 2 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 14, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [32]={ + ["board"]={ + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 4, + 1 + }, + { + 0, + 3 + }, + { + 4, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 9, + 0 + }, + { + 4, + 1 + }, + { + 0, + 3 + }, + { + 4, + 2 + }, + { + 9, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 7, + 0 + }, + { + 4, + 1 + }, + { + 0, + 3 + }, + { + 4, + 2 + }, + { + 7, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 7, + 0 + }, + { + 4, + 1 + }, + { + 4, + 3 + }, + { + 4, + 2 + }, + { + 7, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 7, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 7, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 7, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 7, + 0 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 10, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 11, + 0 + }, + { + 14, + 0 + } + } + }, + [33]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 14, + 0 + }, + { + 9, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 10, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 14, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 11, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + } + } + }, + [34]={ + ["board"]={ + { + 3, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 3, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 3, + 0 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 14, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 0, + 1 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + } + } + }, + [35]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 0, + 5 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 4, + 3 + }, + { + 3, + 0 + }, + { + 0, + 5 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 4, + 3 + }, + { + 4, + 2 + }, + { + 3, + 0 + }, + { + 0, + 5 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 3, + 0 + }, + { + 4, + 1 + }, + { + 4, + 2 + }, + { + 4, + 1 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 0, + 0 + }, + { + 14, + 0 + }, + { + 0, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [36]={ + ["board"]={ + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 0, + 4 + }, + { + 2, + 0 + }, + { + 0, + 4 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 14, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + } + } + }, + [37]={ + ["board"]={ + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 1 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 5, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 14, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 3 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 5, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + } + } + }, + [38]={ + ["board"]={ + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 5, + 5 + }, + { + 0, + 5 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 5, + 1 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 0, + 5 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 5, + 5 + }, + { + 2, + 0 + }, + { + 0, + 2 + }, + { + 2, + 0 + }, + { + 5, + 1 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 5, + 5 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 5, + 1 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 14, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + } + } + }, + [39]={ + ["board"]={ + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 13, + 1 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 14, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 13, + 5 + }, + { + 13, + 1 + }, + { + 13, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [40]={ + ["board"]={ + { + 0, + 5 + }, + { + 0, + 2 + }, + { + 0, + 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 + }, + { + 0, + 3 + }, + { + 3, + 0 + }, + { + 14, + 0 + }, + { + 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, + 1 + }, + { + 13, + 4 + }, + { + 13, + 3 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 13, + 2 + }, + { + 13, + 1 + }, + { + 13, + 4 + }, + { + 13, + 3 + }, + { + 2, + 0 + }, + { + 1, + 0 + } + } + }, + [41]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 13, + 5 + }, + { + 2, + 0 + }, + { + 13, + 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, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + } + } + }, + [42]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 13, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 13, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 13, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 13, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + } + } + }, + [43]={ + ["board"]={ + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 4 + }, + { + 14, + 0 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 0, + 5 + }, + { + 13, + 5 + }, + { + 13, + 5 + }, + { + 13, + 5 + }, + { + 0, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [44]={ + ["board"]={ + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 13, + 1 + }, + { + 13, + 3 + }, + { + 13, + 3 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 14, + 0 + }, + { + 2, + 0 + }, + { + 13, + 5 + }, + { + 13, + 5 + }, + { + 13, + 3 + }, + { + 2, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 13, + 5 + }, + { + 13, + 3 + }, + { + 13, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [45]={ + ["board"]={ + { + 2, + 0 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 14, + 0 + }, + { + 13, + 1 + }, + { + 13, + 4 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 13, + 4 + }, + { + 13, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 14, + 0 + }, + { + 13, + 4 + }, + { + 13, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [46]={ + ["board"]={ + { + 3, + 0 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 0, + 5 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 0, + 4 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 0, + 2 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 13, + 3 + }, + { + 13, + 4 + }, + { + 13, + 5 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 5 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 14, + 0 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 5 + }, + { + 14, + 0 + }, + { + 3, + 0 + } + } + }, + [47]={ + ["board"]={ + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 21, + 2 + }, + { + 2, + 0 + }, + { + 21, + 4 + }, + { + 2, + 0 + }, + { + 21, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 14, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [48]={ + ["board"]={ + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 0, + 4 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 0, + 4 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 0, + 4 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 21, + 5 + }, + { + 2, + 0 + }, + { + 21, + 5 + }, + { + 2, + 0 + }, + { + 21, + 5 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 14, + 0 + }, + { + 2, + 0 + }, + { + 21, + 5 + }, + { + 2, + 0 + }, + { + 14, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [49]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 5 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 0, + 4 + }, + { + 0, + 5 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 21, + 3 + }, + { + 2, + 0 + }, + { + 0, + 5 + }, + { + 2, + 0 + }, + { + 21, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 21, + 4 + }, + { + 2, + 0 + }, + { + 21, + 3 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 21, + 4 + }, + { + 21, + 5 + }, + { + 21, + 3 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 21, + 5 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + } + } + }, + [50]={ + ["board"]={ + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 9, + 0 + }, + { + 2, + 0 + }, + { + 9, + 0 + }, + { + 2, + 0 + }, + { + 9, + 0 + }, + { + 2, + 0 + }, + { + 9, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 21, + 2 + }, + { + 3, + 0 + }, + { + 21, + 2 + }, + { + 3, + 0 + }, + { + 21, + 2 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 14, + 0 + }, + { + 21, + 2 + }, + { + 3, + 0 + }, + { + 21, + 2 + }, + { + 3, + 0 + }, + { + 21, + 2 + }, + { + 14, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + } + } + }, + [51]={ + ["board"]={ + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 3, + 0 + }, + { + 9, + 0 + }, + { + 3, + 0 + }, + { + 9, + 0 + }, + { + 3, + 0 + }, + { + 9, + 0 + }, + { + 3, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 21, + 1 + }, + { + 0, + 0 + }, + { + 21, + 1 + }, + { + 0, + 0 + }, + { + 21, + 1 + }, + { + 0, + 0 + }, + { + 21, + 1 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 14, + 0 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 14, + 0 + }, + { + 2, + 0 + } + } + }, + [52]={ + ["board"]={ + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 2, + 0 + }, + { + 9, + 0 + }, + { + 21, + 3 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 4 + }, + { + 21, + 4 + }, + { + 11, + 0 + }, + { + 21, + 3 + }, + { + 21, + 3 + }, + { + 9, + 0 + }, + { + 1, + 0 + }, + { + 21, + 3 + }, + { + 21, + 3 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 14, + 0 + }, + { + 21, + 2 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 21, + 3 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 21, + 2 + }, + { + 3, + 0 + }, + { + 14, + 0 + }, + { + 21, + 3 + }, + { + 1, + 0 + }, + { + 21, + 1 + }, + { + 21, + 1 + }, + { + 21, + 2 + }, + { + 21, + 1 + }, + { + 21, + 1 + }, + { + 10, + 0 + } + } + }, + [53]={ + ["board"]={ + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 21, + 3 + }, + { + 21, + 5 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 14, + 0 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 21, + 3 + }, + { + 21, + 5 + }, + { + 3, + 0 + }, + { + 9, + 0 + }, + { + 21, + 3 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 21, + 2 + }, + { + 21, + 5 + }, + { + 9, + 0 + }, + { + 21, + 2 + }, + { + 21, + 3 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 21, + 2 + }, + { + 8, + 0 + }, + { + 21, + 1 + }, + { + 21, + 2 + }, + { + 21, + 3 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 8, + 0 + }, + { + 3, + 0 + }, + { + 21, + 1 + }, + { + 21, + 2 + }, + { + 21, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 21, + 1 + }, + { + 21, + 2 + }, + { + 8, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 21, + 1 + }, + { + 14, + 0 + }, + { + 1, + 0 + } + } + }, + [54]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 9, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 21, + 3 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 21, + 3 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 11, + 0 + }, + { + 21, + 1 + }, + { + 21, + 3 + }, + { + 21, + 3 + }, + { + 21, + 2 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 21, + 1 + }, + { + 21, + 1 + }, + { + 21, + 2 + }, + { + 21, + 2 + }, + { + 1, + 0 + } + } + }, + [55]={ + ["board"]={ + { + 18, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 18, + 0 + }, + { + 19, + 0 + }, + { + 18, + 0 + }, + { + 19, + 0 + }, + { + 18, + 0 + }, + { + 19, + 0 + }, + { + 10, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 22, + 2 + }, + { + 0, + 2 + }, + { + 22, + 3 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 22, + 2 + }, + { + 14, + 0 + }, + { + 22, + 3 + }, + { + 14, + 0 + }, + { + 22, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [56]={ + ["board"]={ + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 4, + 3 + }, + { + 4, + 3 + }, + { + 4, + 1 + }, + { + 4, + 2 + }, + { + 4, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 4, + 2 + }, + { + 4, + 2 + }, + { + 4, + 5 + }, + { + 4, + 5 + }, + { + 4, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 22, + 3 + }, + { + 22, + 3 + }, + { + 22, + 2 + }, + { + 22, + 2 + }, + { + 22, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 22, + 5 + }, + { + 22, + 4 + }, + { + 22, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [57]={ + ["board"]={ + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 0, + 2 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 4, + 4 + }, + { + 4, + 2 + }, + { + 4, + 5 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 22, + 3 + }, + { + 22, + 3 + }, + { + 22, + 3 + }, + { + 22, + 2 + }, + { + 22, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 22, + 2 + }, + { + 22, + 1 + }, + { + 22, + 5 + }, + { + 22, + 2 + }, + { + 22, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 22, + 1 + }, + { + 22, + 5 + }, + { + 22, + 2 + }, + { + 14, + 0 + }, + { + 1, + 0 + } + } + }, + [58]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 19, + 0 + }, + { + 4, + 4 + }, + { + 4, + 1 + }, + { + 4, + 4 + }, + { + 4, + 4 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 4, + 5 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 22, + 1 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 14, + 0 + }, + { + 22, + 1 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 22, + 1 + }, + { + 22, + 1 + }, + { + 22, + 2 + }, + { + 22, + 2 + }, + { + 22, + 2 + }, + { + 19, + 0 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 22, + 1 + }, + { + 22, + 1 + }, + { + 22, + 1 + }, + { + 22, + 1 + }, + { + 19, + 0 + }, + { + 1, + 0 + } + } + }, + [59]={ + ["board"]={ + { + 19, + 0 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 1, + 0 + }, + { + 4, + 3 + }, + { + 4, + 4 + }, + { + 4, + 3 + }, + { + 4, + 1 + }, + { + 4, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 4, + 2 + }, + { + 4, + 2 + }, + { + 4, + 1 + }, + { + 4, + 2 + }, + { + 4, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 14, + 0 + }, + { + 0, + 4 + }, + { + 0, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 22, + 1 + }, + { + 22, + 3 + }, + { + 22, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [60]={ + ["board"]={ + { + 1, + 0 + }, + { + 1, + 5 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 19, + 0 + }, + { + 1, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 0, + 4 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 4, + 3 + }, + { + 4, + 3 + }, + { + 4, + 3 + }, + { + 4, + 2 + }, + { + 4, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 4, + 2 + }, + { + 22, + 2 + }, + { + 22, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 0, + 0 + }, + { + 4, + 1 + }, + { + 22, + 2 + }, + { + 22, + 4 + }, + { + 22, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 14, + 0 + }, + { + 22, + 2 + }, + { + 22, + 4 + }, + { + 22, + 4 + } + } + }, + [61]={ + ["board"]={ + { + 18, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 22, + 1 + }, + { + 22, + 3 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 22, + 2 + }, + { + 22, + 4 + }, + { + 18, + 0 + }, + { + 4, + 5 + }, + { + 4, + 5 + }, + { + 4, + 5 + }, + { + 4, + 4 + }, + { + 14, + 0 + }, + { + 22, + 5 + }, + { + 18, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 22, + 1 + }, + { + 22, + 2 + }, + { + 22, + 3 + }, + { + 22, + 4 + } + } + }, + [62]={ + ["board"]={ + { + 22, + 5 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 4, + 3 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 4, + 3 + }, + { + 4, + 3 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 14, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 4, + 5 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 4, + 5 + }, + { + 4, + 5 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 14, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 4, + 2 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 4, + 2 + }, + { + 4, + 2 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 22, + 1 + }, + { + 19, + 0 + }, + { + 22, + 2 + }, + { + 19, + 0 + }, + { + 22, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [63]={ + ["board"]={ + { + 12, + 2 + }, + { + 18, + 0 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 0, + 2 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 1, + 0 + }, + { + 18, + 0 + }, + { + 0, + 5 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 18, + 0 + }, + { + 12, + 2 + }, + { + 12, + 2 + }, + { + 19, + 0 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 4 + }, + { + 19, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 12, + 2 + }, + { + 12, + 2 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 19, + 0 + }, + { + 20, + 0 + }, + { + 1, + 0 + }, + { + 20, + 0 + }, + { + 19, + 0 + }, + { + 12, + 2 + }, + { + 12, + 2 + }, + { + 20, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 20, + 0 + }, + { + 1, + 0 + } + } + }, + [64]={ + ["board"]={ + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 3 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 0, + 5 + }, + { + 18, + 0 + }, + { + 0, + 5 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 19, + 0 + }, + { + 18, + 0 + }, + { + 19, + 0 + }, + { + 18, + 0 + }, + { + 19, + 0 + }, + { + 18, + 0 + }, + { + 19, + 0 + }, + { + 4, + 3 + }, + { + 4, + 3 + }, + { + 4, + 3 + }, + { + 18, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 12, + 1 + }, + { + 12, + 1 + }, + { + 12, + 1 + }, + { + 14, + 0 + }, + { + 14, + 0 + }, + { + 12, + 2 + }, + { + 12, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [65]={ + ["board"]={ + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 18, + 0 + }, + { + 19, + 0 + }, + { + 18, + 0 + }, + { + 19, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 19, + 0 + }, + { + 18, + 0 + }, + { + 19, + 0 + }, + { + 18, + 0 + }, + { + 4, + 3 + }, + { + 4, + 3 + }, + { + 4, + 1 + }, + { + 14, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 19, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 19, + 0 + }, + { + 18, + 0 + }, + { + 19, + 0 + }, + { + 18, + 0 + }, + { + 12, + 4 + }, + { + 12, + 5 + }, + { + 12, + 5 + }, + { + 18, + 0 + }, + { + 19, + 0 + }, + { + 18, + 0 + }, + { + 19, + 0 + }, + { + 18, + 0 + }, + { + 12, + 5 + }, + { + 12, + 5 + }, + { + 19, + 0 + }, + { + 18, + 0 + }, + { + 19, + 0 + }, + { + 14, + 0 + }, + { + 19, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [66]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 5 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 5 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 12, + 2 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 19, + 0 + }, + { + 12, + 1 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 1, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 12, + 3 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [67]={ + ["board"]={ + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 11, + 0 + }, + { + 18, + 0 + }, + { + 14, + 0 + }, + { + 18, + 0 + }, + { + 9, + 0 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 14, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 10, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [68]={ + ["board"]={ + { + 18, + 0 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 5 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 5 + }, + { + 18, + 0 + }, + { + 19, + 0 + }, + { + 4, + 4 + }, + { + 4, + 4 + }, + { + 19, + 0 + }, + { + 4, + 1 + }, + { + 4, + 1 + }, + { + 19, + 0 + }, + { + 18, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 12, + 5 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 19, + 0 + }, + { + 18, + 0 + }, + { + 1, + 0 + }, + { + 18, + 0 + }, + { + 19, + 0 + }, + { + 18, + 0 + }, + { + 19, + 0 + }, + { + 14, + 0 + }, + { + 19, + 0 + }, + { + 1, + 0 + }, + { + 19, + 0 + }, + { + 14, + 0 + }, + { + 19, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [69]={ + ["board"]={ + { + 19, + 0 + }, + { + 0, + 5 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 20, + 0 + }, + { + 4, + 4 + }, + { + 0, + 0 + }, + { + 4, + 4 + }, + { + 0, + 0 + }, + { + 4, + 4 + }, + { + 20, + 0 + }, + { + 0, + 0 + }, + { + 4, + 4 + }, + { + 0, + 0 + }, + { + 4, + 4 + }, + { + 0, + 0 + }, + { + 4, + 4 + }, + { + 0, + 0 + }, + { + 20, + 0 + }, + { + 12, + 4 + }, + { + 20, + 0 + }, + { + 12, + 4 + }, + { + 20, + 0 + }, + { + 12, + 4 + }, + { + 20, + 0 + }, + { + 12, + 4 + }, + { + 14, + 0 + }, + { + 12, + 4 + }, + { + 12, + 4 + }, + { + 12, + 4 + }, + { + 14, + 0 + }, + { + 12, + 4 + } + } + }, + [70]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 19, + 0 + }, + { + 4, + 2 + }, + { + 4, + 1 + }, + { + 4, + 3 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 18, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 4, + 2 + }, + { + 4, + 3 + }, + { + 4, + 2 + }, + { + 12, + 2 + }, + { + 0, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 4, + 2 + }, + { + 18, + 0 + }, + { + 19, + 0 + }, + { + 12, + 2 + }, + { + 0, + 0 + }, + { + 18, + 0 + }, + { + 18, + 0 + }, + { + 0, + 0 + }, + { + 12, + 2 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 19, + 0 + }, + { + 18, + 0 + }, + { + 12, + 2 + }, + { + 1, + 0 + }, + { + 18, + 0 + }, + { + 14, + 0 + }, + { + 18, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [71]={ + ["board"]={ + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 11, + 0 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 12, + 2 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 11, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 14, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 11, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 14, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + } + } + }, + [72]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 4 + }, + { + 0, + 5 + }, + { + 0, + 4 + }, + { + 0, + 5 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 12, + 3 + }, + { + 0, + 4 + }, + { + 10, + 0 + }, + { + 0, + 5 + }, + { + 11, + 0 + }, + { + 0, + 4 + }, + { + 12, + 3 + }, + { + 4, + 3 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 4, + 3 + }, + { + 12, + 3 + }, + { + 3, + 0 + }, + { + 10, + 0 + }, + { + 0, + 0 + }, + { + 11, + 0 + }, + { + 3, + 0 + }, + { + 12, + 3 + }, + { + 7, + 0 + }, + { + 7, + 0 + }, + { + 7, + 0 + }, + { + 7, + 0 + }, + { + 7, + 0 + }, + { + 7, + 0 + }, + { + 7, + 0 + }, + { + 14, + 0 + }, + { + 7, + 0 + }, + { + 10, + 0 + }, + { + 0, + 0 + }, + { + 11, + 0 + }, + { + 7, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 7, + 0 + }, + { + 7, + 0 + }, + { + 7, + 0 + }, + { + 7, + 0 + }, + { + 7, + 0 + }, + { + 1, + 0 + } + } + }, + [73]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 9, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 4, + 1 + }, + { + 4, + 1 + }, + { + 2, + 0 + }, + { + 4, + 1 + }, + { + 4, + 1 + }, + { + 1, + 0 + }, + { + 4, + 3 + }, + { + 4, + 3 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 4, + 3 + }, + { + 4, + 3 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [74]={ + ["board"]={ + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 9, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 7, + 0 + }, + { + 7, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 10, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 7, + 0 + }, + { + 7, + 0 + }, + { + 7, + 0 + }, + { + 7, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 14, + 0 + }, + { + 7, + 0 + }, + { + 7, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [75]={ + ["board"]={ + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 9, + 0 + }, + { + 9, + 0 + }, + { + 9, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + } + } + }, + [76]={ + ["board"]={ + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 4, + 5 + }, + { + 4, + 5 + }, + { + 4, + 2 + }, + { + 4, + 2 + }, + { + 4, + 1 + }, + { + 4, + 1 + }, + { + 10, + 0 + }, + { + 11, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 14, + 0 + }, + { + 4, + 5 + }, + { + 4, + 5 + }, + { + 4, + 4 + }, + { + 4, + 4 + }, + { + 4, + 3 + }, + { + 4, + 3 + }, + { + 10, + 0 + }, + { + 11, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 14, + 0 + } + } + }, + [77]={ + ["board"]={ + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 4, + 2 + }, + { + 4, + 2 + }, + { + 11, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 7, + 0 + }, + { + 7, + 0 + }, + { + 7, + 0 + }, + { + 7, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 11, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 7, + 0 + }, + { + 7, + 0 + }, + { + 7, + 0 + }, + { + 7, + 0 + }, + { + 1, + 0 + } + } + }, + [78]={ + ["board"]={ + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 9, + 0 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 4, + 2 + }, + { + 0, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 4, + 1 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 4, + 1 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 4, + 4 + }, + { + 4, + 4 + }, + { + 4, + 3 + }, + { + 4, + 3 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + } + } + }, + [79]={ + ["board"]={ + { + 25, + 0 + }, + { + 25, + 0 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 24, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 25, + 0 + }, + { + 25, + 0 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 24, + 0 + }, + { + 9, + 0 + }, + { + 1, + 0 + }, + { + 25, + 0 + }, + { + 25, + 0 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 24, + 0 + }, + { + 25, + 0 + }, + { + 9, + 0 + }, + { + 25, + 0 + }, + { + 25, + 0 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 24, + 0 + }, + { + 25, + 0 + }, + { + 25, + 0 + }, + { + 11, + 0 + }, + { + 24, + 0 + }, + { + 0, + 4 + }, + { + 23, + 3 + }, + { + 23, + 2 + }, + { + 23, + 1 + }, + { + 23, + 5 + }, + { + 1, + 0 + }, + { + 11, + 0 + }, + { + 23, + 4 + }, + { + 23, + 3 + }, + { + 23, + 2 + }, + { + 23, + 1 + }, + { + 23, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 23, + 4 + }, + { + 23, + 3 + }, + { + 23, + 2 + }, + { + 23, + 1 + }, + { + 23, + 5 + } + } + }, + [80]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 23, + 1 + }, + { + 25, + 0 + }, + { + 27, + 2 + }, + { + 27, + 2 + }, + { + 27, + 4 + }, + { + 25, + 0 + }, + { + 23, + 1 + }, + { + 23, + 1 + }, + { + 25, + 0 + }, + { + 27, + 5 + }, + { + 27, + 4 + }, + { + 27, + 4 + }, + { + 25, + 0 + }, + { + 23, + 1 + }, + { + 23, + 1 + }, + { + 25, + 0 + }, + { + 27, + 5 + }, + { + 27, + 5 + }, + { + 27, + 1 + }, + { + 25, + 0 + }, + { + 23, + 1 + }, + { + 23, + 1 + }, + { + 25, + 0 + }, + { + 25, + 0 + }, + { + 25, + 0 + }, + { + 25, + 0 + }, + { + 25, + 0 + }, + { + 23, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 23, + 1 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [81]={ + ["board"]={ + { + 1, + 0 + }, + { + 23, + 5 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 5 + }, + { + 25, + 0 + }, + { + 23, + 4 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 5 + }, + { + 25, + 0 + }, + { + 0, + 4 + }, + { + 25, + 0 + }, + { + 23, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 5 + }, + { + 25, + 0 + }, + { + 0, + 4 + }, + { + 25, + 0 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 24, + 0 + }, + { + 25, + 0 + }, + { + 0, + 4 + }, + { + 25, + 0 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 24, + 0 + }, + { + 25, + 0 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [82]={ + ["board"]={ + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 0, + 4 + }, + { + 27, + 2 + }, + { + 0, + 4 + }, + { + 27, + 1 + }, + { + 0, + 1 + }, + { + 27, + 1 + }, + { + 0, + 4 + }, + { + 27, + 5 + }, + { + 0, + 4 + }, + { + 27, + 2 + }, + { + 0, + 2 + }, + { + 27, + 1 + }, + { + 0, + 5 + }, + { + 27, + 5 + }, + { + 0, + 4 + }, + { + 24, + 0 + }, + { + 25, + 0 + }, + { + 24, + 0 + }, + { + 0, + 3 + }, + { + 24, + 0 + }, + { + 25, + 0 + }, + { + 24, + 0 + }, + { + 25, + 0 + }, + { + 24, + 0 + }, + { + 23, + 3 + }, + { + 23, + 3 + }, + { + 23, + 3 + }, + { + 24, + 0 + }, + { + 25, + 0 + }, + { + 14, + 0 + }, + { + 25, + 0 + }, + { + 23, + 3 + }, + { + 23, + 2 + }, + { + 23, + 3 + }, + { + 25, + 0 + }, + { + 14, + 0 + }, + { + 23, + 3 + }, + { + 25, + 0 + }, + { + 23, + 2 + }, + { + 23, + 2 + }, + { + 23, + 2 + }, + { + 25, + 0 + }, + { + 23, + 3 + } + } + }, + [83]={ + ["board"]={ + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 14, + 0 + }, + { + 24, + 0 + }, + { + 24, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 24, + 0 + }, + { + 24, + 0 + }, + { + 24, + 0 + }, + { + 9, + 0 + }, + { + 24, + 0 + }, + { + 24, + 0 + }, + { + 24, + 0 + }, + { + 24, + 0 + }, + { + 25, + 0 + }, + { + 24, + 0 + }, + { + 24, + 0 + }, + { + 24, + 0 + }, + { + 24, + 0 + }, + { + 24, + 0 + }, + { + 23, + 2 + }, + { + 1, + 0 + }, + { + 24, + 0 + }, + { + 24, + 0 + }, + { + 24, + 0 + }, + { + 24, + 0 + }, + { + 23, + 2 + }, + { + 23, + 2 + }, + { + 1, + 0 + }, + { + 25, + 0 + }, + { + 24, + 0 + }, + { + 24, + 0 + }, + { + 23, + 1 + }, + { + 23, + 1 + }, + { + 23, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 25, + 0 + }, + { + 23, + 1 + }, + { + 23, + 3 + }, + { + 14, + 0 + }, + { + 1, + 0 + } + } + }, + [84]={ + ["board"]={ + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 24, + 0 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 24, + 0 + }, + { + 25, + 0 + }, + { + 24, + 0 + }, + { + 27, + 3 + }, + { + 27, + 2 + }, + { + 27, + 1 + }, + { + 24, + 0 + }, + { + 25, + 0 + }, + { + 25, + 0 + }, + { + 25, + 0 + }, + { + 27, + 3 + }, + { + 27, + 2 + }, + { + 27, + 1 + }, + { + 25, + 0 + }, + { + 25, + 0 + }, + { + 25, + 0 + }, + { + 25, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 25, + 0 + }, + { + 25, + 0 + }, + { + 1, + 0 + }, + { + 23, + 1 + }, + { + 23, + 1 + }, + { + 26, + 0 + }, + { + 23, + 2 + }, + { + 23, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [85]={ + ["board"]={ + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 23, + 5 + }, + { + 24, + 0 + }, + { + 27, + 1 + }, + { + 27, + 2 + }, + { + 27, + 1 + }, + { + 24, + 0 + }, + { + 23, + 5 + }, + { + 23, + 5 + }, + { + 23, + 5 + }, + { + 27, + 3 + }, + { + 27, + 4 + }, + { + 27, + 3 + }, + { + 23, + 5 + }, + { + 23, + 5 + }, + { + 23, + 5 + }, + { + 24, + 0 + }, + { + 27, + 4 + }, + { + 27, + 3 + }, + { + 27, + 4 + }, + { + 24, + 0 + }, + { + 23, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 24, + 0 + }, + { + 14, + 0 + }, + { + 24, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 23, + 5 + }, + { + 23, + 5 + }, + { + 23, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [86]={ + ["board"]={ + { + 14, + 0 + }, + { + 27, + 1 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 0, + 4 + }, + { + 27, + 4 + }, + { + 14, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 27, + 3 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 25, + 0 + }, + { + 25, + 0 + }, + { + 25, + 0 + }, + { + 25, + 0 + }, + { + 25, + 0 + }, + { + 25, + 0 + }, + { + 25, + 0 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 23, + 2 + }, + { + 23, + 5 + }, + { + 23, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [87]={ + ["board"]={ + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 0, + 5 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 28, + 0 + }, + { + 0, + 5 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 28, + 0 + }, + { + 29, + 0 + }, + { + 28, + 0 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 28, + 0 + }, + { + 29, + 0 + }, + { + 30, + 0 + }, + { + 29, + 0 + }, + { + 28, + 0 + }, + { + 0, + 1 + }, + { + 28, + 0 + }, + { + 29, + 0 + }, + { + 30, + 0 + }, + { + 30, + 0 + }, + { + 30, + 0 + }, + { + 29, + 0 + }, + { + 28, + 0 + }, + { + 5, + 3 + }, + { + 5, + 5 + }, + { + 21, + 3 + }, + { + 21, + 4 + }, + { + 21, + 1 + }, + { + 5, + 2 + }, + { + 5, + 1 + }, + { + 5, + 5 + }, + { + 5, + 3 + }, + { + 21, + 5 + }, + { + 21, + 4 + }, + { + 21, + 2 + }, + { + 5, + 1 + }, + { + 5, + 2 + } + } + }, + [88]={ + ["board"]={ + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 21, + 1 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 21, + 1 + }, + { + 1, + 0 + }, + { + 21, + 1 + }, + { + 21, + 1 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 21, + 1 + }, + { + 21, + 1 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 5, + 5 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 14, + 0 + }, + { + 30, + 0 + }, + { + 5, + 5 + }, + { + 5, + 2 + }, + { + 5, + 5 + }, + { + 30, + 0 + }, + { + 14, + 0 + }, + { + 29, + 0 + }, + { + 30, + 0 + }, + { + 29, + 0 + }, + { + 5, + 5 + }, + { + 29, + 0 + }, + { + 30, + 0 + }, + { + 29, + 0 + }, + { + 29, + 0 + }, + { + 30, + 0 + }, + { + 29, + 0 + }, + { + 5, + 2 + }, + { + 29, + 0 + }, + { + 30, + 0 + }, + { + 29, + 0 + } + } + }, + [89]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 5 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 28, + 0 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 1, + 0 + }, + { + 21, + 4 + }, + { + 21, + 4 + }, + { + 28, + 0 + }, + { + 28, + 0 + }, + { + 28, + 0 + }, + { + 21, + 4 + }, + { + 21, + 4 + }, + { + 21, + 4 + }, + { + 21, + 4 + }, + { + 29, + 0 + }, + { + 29, + 0 + }, + { + 29, + 0 + }, + { + 21, + 4 + }, + { + 21, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 29, + 0 + }, + { + 29, + 0 + }, + { + 29, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [90]={ + ["board"]={ + { + 5, + 5 + }, + { + 5, + 2 + }, + { + 5, + 1 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 0, + 1 + }, + { + 0, + 0 + }, + { + 9, + 0 + }, + { + 5, + 1 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 0 + }, + { + 28, + 0 + }, + { + 5, + 1 + }, + { + 5, + 1 + }, + { + 5, + 5 + }, + { + 5, + 5 + }, + { + 5, + 5 + }, + { + 0, + 0 + }, + { + 28, + 0 + }, + { + 21, + 3 + }, + { + 21, + 3 + }, + { + 21, + 3 + }, + { + 9, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 28, + 0 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 28, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 28, + 0 + }, + { + 30, + 0 + }, + { + 30, + 0 + }, + { + 30, + 0 + }, + { + 28, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 28, + 0 + }, + { + 14, + 0 + }, + { + 30, + 0 + }, + { + 14, + 0 + }, + { + 28, + 0 + }, + { + 1, + 0 + } + } + }, + [91]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 28, + 0 + }, + { + 28, + 0 + }, + { + 28, + 0 + }, + { + 28, + 0 + }, + { + 28, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 21, + 1 + }, + { + 21, + 2 + }, + { + 28, + 0 + }, + { + 21, + 3 + }, + { + 21, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 28, + 0 + }, + { + 29, + 0 + }, + { + 29, + 0 + }, + { + 29, + 0 + }, + { + 28, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 1 + }, + { + 5, + 2 + }, + { + 14, + 0 + }, + { + 5, + 3 + }, + { + 5, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 1 + }, + { + 5, + 2 + }, + { + 1, + 0 + }, + { + 5, + 3 + }, + { + 5, + 4 + }, + { + 1, + 0 + } + } + }, + [92]={ + ["board"]={ + { + 29, + 0 + }, + { + 28, + 0 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 28, + 0 + }, + { + 29, + 0 + }, + { + 29, + 0 + }, + { + 28, + 0 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 28, + 0 + }, + { + 29, + 0 + }, + { + 5, + 1 + }, + { + 5, + 5 + }, + { + 21, + 2 + }, + { + 0, + 3 + }, + { + 21, + 4 + }, + { + 5, + 2 + }, + { + 5, + 1 + }, + { + 5, + 5 + }, + { + 5, + 1 + }, + { + 21, + 2 + }, + { + 0, + 3 + }, + { + 21, + 4 + }, + { + 5, + 1 + }, + { + 5, + 2 + }, + { + 0, + 0 + }, + { + 5, + 5 + }, + { + 5, + 1 + }, + { + 5, + 1 + }, + { + 5, + 1 + }, + { + 5, + 2 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + } + } + }, + [93]={ + ["board"]={ + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 21, + 3 + }, + { + 21, + 3 + }, + { + 21, + 2 + }, + { + 9, + 0 + }, + { + 21, + 2 + }, + { + 21, + 3 + }, + { + 21, + 3 + }, + { + 0, + 0 + }, + { + 21, + 3 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 21, + 3 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 21, + 3 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 21, + 3 + }, + { + 0, + 0 + }, + { + 5, + 4 + }, + { + 5, + 4 + }, + { + 5, + 4 + }, + { + 1, + 0 + }, + { + 5, + 4 + }, + { + 5, + 4 + }, + { + 5, + 4 + }, + { + 14, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 30, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [94]={ + ["board"]={ + { + 29, + 0 + }, + { + 29, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 29, + 0 + }, + { + 29, + 0 + }, + { + 29, + 0 + }, + { + 29, + 0 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 29, + 0 + }, + { + 29, + 0 + }, + { + 28, + 0 + }, + { + 28, + 0 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 28, + 0 + }, + { + 28, + 0 + }, + { + 5, + 1 + }, + { + 5, + 1 + }, + { + 5, + 1 + }, + { + 5, + 5 + }, + { + 5, + 2 + }, + { + 5, + 2 + }, + { + 5, + 2 + }, + { + 21, + 3 + }, + { + 21, + 3 + }, + { + 21, + 5 + }, + { + 1, + 0 + }, + { + 21, + 5 + }, + { + 21, + 4 + }, + { + 21, + 4 + }, + { + 21, + 1 + }, + { + 1, + 0 + }, + { + 21, + 5 + }, + { + 1, + 0 + }, + { + 21, + 5 + }, + { + 1, + 0 + }, + { + 21, + 2 + }, + { + 21, + 1 + }, + { + 1, + 0 + }, + { + 21, + 5 + }, + { + 14, + 0 + }, + { + 21, + 5 + }, + { + 1, + 0 + }, + { + 21, + 2 + } + } + }, + [95]={ + ["board"]={ + { + 31, + 0 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 35, + 4 + }, + { + 0, + 5 + }, + { + 0, + 2 + }, + { + 31, + 0 + }, + { + 1, + 0 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 5 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 0, + 5 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 35, + 4 + }, + { + 31, + 0 + }, + { + 35, + 4 + }, + { + 1, + 0 + }, + { + 35, + 4 + }, + { + 31, + 0 + }, + { + 35, + 4 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 1, + 0 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 35, + 4 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 35, + 4 + }, + { + 31, + 0 + } + } + }, + [96]={ + ["board"]={ + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 31, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 0, + 0 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 8, + 0 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 32, + 0 + }, + { + 31, + 0 + }, + { + 0, + 2 + }, + { + 10, + 0 + }, + { + 0, + 3 + }, + { + 11, + 0 + }, + { + 0, + 1 + }, + { + 31, + 0 + }, + { + 14, + 0 + }, + { + 33, + 0 + }, + { + 0, + 3 + }, + { + 9, + 0 + }, + { + 0, + 2 + }, + { + 33, + 0 + }, + { + 14, + 0 + }, + { + 33, + 0 + }, + { + 33, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 33, + 0 + }, + { + 33, + 0 + }, + { + 33, + 0 + }, + { + 33, + 0 + }, + { + 33, + 0 + }, + { + 31, + 0 + }, + { + 33, + 0 + }, + { + 33, + 0 + }, + { + 33, + 0 + } + } + }, + [97]={ + ["board"]={ + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 5 + }, + { + 4, + 3 + }, + { + 4, + 3 + }, + { + 4, + 3 + }, + { + 4, + 3 + }, + { + 4, + 4 + }, + { + 0, + 4 + }, + { + 4, + 5 + }, + { + 4, + 1 + }, + { + 9, + 0 + }, + { + 32, + 0 + }, + { + 10, + 0 + }, + { + 4, + 1 + }, + { + 4, + 4 + }, + { + 33, + 0 + }, + { + 0, + 0 + }, + { + 32, + 0 + }, + { + 33, + 0 + }, + { + 32, + 0 + }, + { + 0, + 0 + }, + { + 33, + 0 + }, + { + 35, + 3 + }, + { + 0, + 0 + }, + { + 10, + 0 + }, + { + 33, + 0 + }, + { + 11, + 0 + }, + { + 0, + 0 + }, + { + 35, + 3 + }, + { + 35, + 3 + }, + { + 35, + 3 + }, + { + 33, + 0 + }, + { + 33, + 0 + }, + { + 33, + 0 + }, + { + 35, + 3 + }, + { + 35, + 3 + }, + { + 14, + 0 + }, + { + 33, + 0 + }, + { + 33, + 0 + }, + { + 33, + 0 + }, + { + 33, + 0 + }, + { + 33, + 0 + }, + { + 14, + 0 + } + } + }, + [98]={ + ["board"]={ + { + 1, + 0 + }, + { + 4, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 4, + 2 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 4, + 2 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 4, + 4 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 32, + 0 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 32, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 35, + 3 + }, + { + 35, + 2 + }, + { + 35, + 4 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 4, + 2 + }, + { + 35, + 2 + }, + { + 4, + 1 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 4, + 1 + }, + { + 4, + 1 + }, + { + 35, + 2 + }, + { + 4, + 2 + }, + { + 4, + 2 + }, + { + 1, + 0 + } + } + }, + [99]={ + ["board"]={ + { + 31, + 0 + }, + { + 0, + 5 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 0, + 3 + }, + { + 0, + 5 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 31, + 0 + }, + { + 35, + 3 + }, + { + 35, + 2 + }, + { + 35, + 1 + }, + { + 35, + 1 + }, + { + 35, + 1 + }, + { + 35, + 2 + }, + { + 35, + 2 + }, + { + 35, + 5 + }, + { + 4, + 5 + }, + { + 4, + 1 + }, + { + 1, + 0 + }, + { + 4, + 1 + }, + { + 4, + 5 + }, + { + 35, + 3 + }, + { + 35, + 1 + }, + { + 4, + 1 + }, + { + 4, + 5 + }, + { + 1, + 0 + }, + { + 4, + 5 + }, + { + 4, + 1 + }, + { + 35, + 2 + }, + { + 35, + 1 + }, + { + 4, + 1 + }, + { + 4, + 5 + }, + { + 4, + 1 + }, + { + 4, + 5 + }, + { + 4, + 1 + }, + { + 35, + 3 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 14, + 0 + } + } + }, + [100]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 4, + 5 + }, + { + 0, + 2 + }, + { + 35, + 2 + }, + { + 14, + 0 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 4, + 3 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 4 + }, + { + 0, + 5 + }, + { + 0, + 1 + }, + { + 4, + 4 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 4, + 3 + }, + { + 4, + 3 + }, + { + 4, + 3 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 5 + }, + { + 4, + 5 + }, + { + 0, + 1 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 14, + 0 + }, + { + 35, + 5 + }, + { + 0, + 5 + }, + { + 4, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 4, + 5 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [101]={ + ["board"]={ + { + 32, + 0 + }, + { + 0, + 5 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 0, + 5 + }, + { + 0, + 3 + }, + { + 0, + 5 + }, + { + 0, + 3 + }, + { + 0, + 5 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 3 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 14, + 0 + }, + { + 35, + 1 + }, + { + 4, + 4 + }, + { + 4, + 4 + }, + { + 4, + 4 + }, + { + 35, + 3 + }, + { + 14, + 0 + }, + { + 35, + 1 + }, + { + 35, + 1 + }, + { + 35, + 1 + }, + { + 32, + 0 + }, + { + 35, + 3 + }, + { + 35, + 3 + }, + { + 35, + 3 + }, + { + 1, + 0 + }, + { + 35, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 35, + 3 + }, + { + 1, + 0 + } + } + }, + [102]={ + ["board"]={ + { + 32, + 0 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 33, + 0 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 0, + 4 + }, + { + 33, + 0 + }, + { + 14, + 0 + }, + { + 33, + 0 + }, + { + 0, + 3 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 33, + 0 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 4, + 2 + }, + { + 0, + 4 + }, + { + 4, + 3 + }, + { + 0, + 1 + }, + { + 4, + 1 + }, + { + 32, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 4, + 2 + }, + { + 4, + 3 + }, + { + 4, + 3 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [103]={ + ["board"]={ + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 32, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 32, + 0 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 32, + 0 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 34, + 2 + }, + { + 34, + 1 + }, + { + 34, + 2 + }, + { + 32, + 0 + }, + { + 34, + 2 + }, + { + 34, + 1 + }, + { + 34, + 2 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 34, + 2 + }, + { + 32, + 0 + }, + { + 34, + 2 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 14, + 0 + }, + { + 32, + 0 + }, + { + 14, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + } + } + }, + [104]={ + ["board"]={ + { + 32, + 0 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 32, + 0 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 0, + 0 + }, + { + 32, + 0 + }, + { + 0, + 0 + }, + { + 33, + 0 + }, + { + 0, + 0 + }, + { + 32, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 32, + 0 + }, + { + 0, + 0 + }, + { + 33, + 0 + }, + { + 0, + 0 + }, + { + 32, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 32, + 0 + }, + { + 34, + 1 + }, + { + 33, + 0 + }, + { + 34, + 1 + }, + { + 32, + 0 + }, + { + 0, + 0 + }, + { + 34, + 1 + }, + { + 32, + 0 + }, + { + 14, + 0 + }, + { + 33, + 0 + }, + { + 14, + 0 + }, + { + 32, + 0 + }, + { + 34, + 2 + } + } + }, + [105]={ + ["board"]={ + { + 32, + 0 + }, + { + 0, + 5 + }, + { + 0, + 1 + }, + { + 0, + 5 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 4, + 3 + }, + { + 4, + 2 + }, + { + 4, + 3 + }, + { + 4, + 4 + }, + { + 4, + 4 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 1, + 0 + }, + { + 34, + 1 + }, + { + 34, + 1 + }, + { + 34, + 1 + }, + { + 1, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 1, + 0 + }, + { + 34, + 1 + }, + { + 34, + 2 + }, + { + 34, + 1 + }, + { + 1, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 1, + 0 + }, + { + 34, + 2 + }, + { + 34, + 2 + }, + { + 34, + 2 + }, + { + 1, + 0 + }, + { + 32, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 34, + 1 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [106]={ + ["board"]={ + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 5 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 5 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 5 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 4, + 4 + }, + { + 4, + 4 + }, + { + 4, + 1 + }, + { + 4, + 3 + }, + { + 4, + 3 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 34, + 5 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 34, + 4 + }, + { + 0, + 0 + }, + { + 34, + 3 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 34, + 2 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 34, + 1 + } + } + }, + [107]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 0, + 5 + }, + { + 1, + 0 + }, + { + 31, + 0 + }, + { + 0, + 2 + }, + { + 31, + 0 + }, + { + 0, + 4 + }, + { + 31, + 0 + }, + { + 0, + 5 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 0, + 2 + }, + { + 4, + 3 + }, + { + 0, + 1 + }, + { + 4, + 3 + }, + { + 0, + 5 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 34, + 2 + }, + { + 32, + 0 + }, + { + 0, + 4 + }, + { + 32, + 0 + }, + { + 34, + 5 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 33, + 0 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 33, + 0 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 0, + 0 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 0 + }, + { + 31, + 0 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + } + } + }, + [108]={ + ["board"]={ + { + 33, + 0 + }, + { + 33, + 0 + }, + { + 33, + 0 + }, + { + 0, + 3 + }, + { + 33, + 0 + }, + { + 33, + 0 + }, + { + 33, + 0 + }, + { + 33, + 0 + }, + { + 33, + 0 + }, + { + 0, + 1 + }, + { + 33, + 0 + }, + { + 0, + 3 + }, + { + 33, + 0 + }, + { + 33, + 0 + }, + { + 33, + 0 + }, + { + 0, + 1 + }, + { + 33, + 0 + }, + { + 0, + 4 + }, + { + 33, + 0 + }, + { + 0, + 3 + }, + { + 33, + 0 + }, + { + 0, + 1 + }, + { + 33, + 0 + }, + { + 0, + 4 + }, + { + 33, + 0 + }, + { + 0, + 4 + }, + { + 33, + 0 + }, + { + 0, + 1 + }, + { + 33, + 0 + }, + { + 0, + 4 + }, + { + 33, + 0 + }, + { + 0, + 4 + }, + { + 33, + 0 + }, + { + 0, + 4 + }, + { + 33, + 0 + }, + { + 0, + 1 + }, + { + 33, + 0 + }, + { + 0, + 1 + }, + { + 33, + 0 + }, + { + 0, + 1 + }, + { + 33, + 0 + }, + { + 0, + 1 + }, + { + 33, + 0 + }, + { + 14, + 0 + }, + { + 33, + 0 + }, + { + 0, + 4 + }, + { + 33, + 0 + }, + { + 14, + 0 + }, + { + 33, + 0 + } + } + }, + [109]={ + ["board"]={ + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 32, + 0 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 32, + 0 + }, + { + 34, + 1 + }, + { + 32, + 0 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 32, + 0 + }, + { + 34, + 1 + }, + { + 34, + 1 + }, + { + 34, + 1 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 34, + 1 + }, + { + 34, + 1 + }, + { + 1, + 0 + }, + { + 34, + 1 + }, + { + 34, + 1 + }, + { + 32, + 0 + }, + { + 34, + 1 + }, + { + 34, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 32, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 32, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [110]={ + ["board"]={ + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 34, + 2 + }, + { + 34, + 2 + }, + { + 34, + 3 + }, + { + 34, + 4 + }, + { + 34, + 3 + }, + { + 34, + 2 + }, + { + 34, + 2 + }, + { + 33, + 0 + }, + { + 33, + 0 + }, + { + 34, + 3 + }, + { + 34, + 4 + }, + { + 34, + 3 + }, + { + 33, + 0 + }, + { + 33, + 0 + }, + { + 34, + 2 + }, + { + 34, + 2 + }, + { + 14, + 0 + }, + { + 34, + 4 + }, + { + 14, + 0 + }, + { + 34, + 2 + }, + { + 34, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 4, + 2 + }, + { + 4, + 3 + }, + { + 4, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 4, + 3 + }, + { + 4, + 2 + }, + { + 4, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [111]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 34, + 2 + }, + { + 34, + 5 + }, + { + 34, + 5 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 34, + 1 + }, + { + 1, + 0 + }, + { + 32, + 0 + }, + { + 1, + 0 + }, + { + 34, + 2 + }, + { + 0, + 1 + }, + { + 0, + 5 + }, + { + 34, + 4 + }, + { + 32, + 0 + }, + { + 14, + 0 + }, + { + 32, + 0 + }, + { + 34, + 1 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 34, + 1 + }, + { + 1, + 0 + }, + { + 32, + 0 + }, + { + 1, + 0 + }, + { + 34, + 5 + }, + { + 0, + 5 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 34, + 2 + }, + { + 34, + 4 + }, + { + 34, + 5 + }, + { + 0, + 1 + }, + { + 0, + 5 + }, + { + 1, + 0 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 1, + 0 + } + } + }, + [112]={ + ["board"]={ + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 0, + 5 + }, + { + 0, + 3 + }, + { + 31, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 0, + 5 + }, + { + 0, + 3 + }, + { + 31, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 5 + }, + { + 31, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 31, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 34, + 2 + }, + { + 34, + 1 + }, + { + 34, + 3 + }, + { + 34, + 3 + }, + { + 34, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 34, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 34, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [113]={ + ["board"]={ + { + 0, + 1 + }, + { + 34, + 2 + }, + { + 34, + 2 + }, + { + 34, + 2 + }, + { + 34, + 2 + }, + { + 34, + 2 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 34, + 2 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 33, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 34, + 4 + }, + { + 34, + 2 + }, + { + 34, + 2 + }, + { + 34, + 4 + }, + { + 34, + 4 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 33, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 34, + 2 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 34, + 2 + }, + { + 34, + 2 + }, + { + 34, + 2 + }, + { + 34, + 2 + }, + { + 34, + 4 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 34, + 2 + }, + { + 1, + 0 + }, + { + 0, + 5 + }, + { + 33, + 0 + }, + { + 0, + 5 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 34, + 1 + }, + { + 34, + 2 + }, + { + 34, + 2 + }, + { + 34, + 2 + }, + { + 34, + 3 + }, + { + 0, + 3 + } + } + }, + [114]={ + ["board"]={ + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 32, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 32, + 0 + }, + { + 14, + 0 + }, + { + 32, + 0 + }, + { + 34, + 1 + }, + { + 32, + 0 + }, + { + 34, + 4 + }, + { + 32, + 0 + }, + { + 14, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 32, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 34, + 1 + }, + { + 34, + 2 + }, + { + 34, + 3 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 34, + 2 + }, + { + 0, + 5 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 34, + 4 + }, + { + 0, + 0 + }, + { + 34, + 3 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 34, + 5 + } + } + }, + [115]={ + ["board"]={ + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 5 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 5 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 14, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 3, + 0 + }, + { + 0, + 0 + }, + { + 36, + 0 + }, + { + 36, + 0 + }, + { + 36, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [116]={ + ["board"]={ + { + 0, + 5 + }, + { + 0, + 1 + }, + { + 0, + 5 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 5 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 3, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 3, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 3, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 36, + 0 + }, + { + 14, + 0 + }, + { + 36, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + } + } + }, + [117]={ + ["board"]={ + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 36, + 0 + }, + { + 0, + 0 + }, + { + 36, + 0 + }, + { + 0, + 0 + }, + { + 36, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 14, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [118]={ + ["board"]={ + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 3, + 0 + }, + { + 36, + 0 + }, + { + 3, + 0 + }, + { + 0, + 4 + }, + { + 0, + 5 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 0, + 4 + }, + { + 0, + 5 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 36, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 36, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 36, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 14, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 36, + 0 + } + } + }, + [119]={ + ["board"]={ + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 36, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 36, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 36, + 0 + }, + { + 0, + 3 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [120]={ + ["board"]={ + { + 1, + 0 + }, + { + 36, + 0 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 36, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 0, + 5 + }, + { + 36, + 0 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 0, + 4 + }, + { + 14, + 0 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 0 + } + } + }, + [121]={ + ["board"]={ + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 36, + 0 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 36, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 36, + 0 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 36, + 0 + }, + { + 0, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [122]={ + ["board"]={ + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 36, + 0 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 5 + }, + { + 36, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 3, + 0 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 36, + 0 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 3, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 36, + 0 + }, + { + 14, + 0 + }, + { + 36, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [123]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 4, + 1 + }, + { + 4, + 2 + }, + { + 4, + 3 + }, + { + 4, + 4 + }, + { + 4, + 5 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 14, + 0 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 4 + }, + { + 5, + 5 + }, + { + 5, + 5 + }, + { + 5, + 5 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 5, + 4 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + } + } + }, + [124]={ + ["board"]={ + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 3 + }, + { + 1, + 0 + }, + { + 5, + 3 + }, + { + 5, + 4 + }, + { + 5, + 5 + }, + { + 4, + 2 + }, + { + 4, + 3 + }, + { + 4, + 4 + }, + { + 4, + 1 + }, + { + 4, + 5 + }, + { + 5, + 5 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 5, + 5 + }, + { + 1, + 0 + }, + { + 5, + 1 + }, + { + 5, + 2 + }, + { + 5, + 2 + }, + { + 5, + 2 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [125]={ + ["board"]={ + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 5, + 3 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 4, + 2 + }, + { + 5, + 2 + }, + { + 1, + 3 + }, + { + 5, + 3 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 5, + 5 + }, + { + 5, + 4 + }, + { + 5, + 5 + }, + { + 5, + 4 + }, + { + 5, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 4 + }, + { + 5, + 3 + }, + { + 5, + 4 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 3 + }, + { + 5, + 2 + }, + { + 5, + 3 + }, + { + 5, + 1 + }, + { + 5, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 1 + }, + { + 14, + 0 + }, + { + 5, + 2 + }, + { + 5, + 2 + }, + { + 1, + 0 + } + } + }, + [126]={ + ["board"]={ + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 5 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 4, + 4 + }, + { + 4, + 5 + }, + { + 4, + 5 + }, + { + 1, + 0 + }, + { + 4, + 3 + }, + { + 4, + 3 + }, + { + 4, + 4 + }, + { + 4, + 4 + }, + { + 1, + 0 + }, + { + 4, + 2 + }, + { + 1, + 0 + }, + { + 4, + 2 + }, + { + 1, + 0 + }, + { + 4, + 4 + }, + { + 4, + 3 + }, + { + 4, + 3 + }, + { + 4, + 2 + }, + { + 4, + 1 + }, + { + 4, + 2 + }, + { + 4, + 5 + }, + { + 4, + 5 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 5, + 3 + }, + { + 5, + 3 + } + } + }, + [127]={ + ["board"]={ + { + 21, + 1 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 21, + 4 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 5, + 1 + }, + { + 5, + 1 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 4 + }, + { + 5, + 4 + }, + { + 37, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 21, + 5 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 21, + 5 + }, + { + 14, + 0 + }, + { + 21, + 5 + }, + { + 0, + 0 + }, + { + 37, + 0 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 2 + }, + { + 21, + 5 + }, + { + 5, + 5 + }, + { + 5, + 5 + }, + { + 1, + 0 + }, + { + 5, + 4 + }, + { + 5, + 4 + }, + { + 5, + 2 + }, + { + 1, + 0 + }, + { + 5, + 4 + }, + { + 5, + 4 + }, + { + 5, + 4 + } + } + }, + [128]={ + ["board"]={ + { + 21, + 3 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 5, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 21, + 3 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 5, + 2 + }, + { + 37, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 4 + }, + { + 5, + 5 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 21, + 3 + }, + { + 0, + 5 + }, + { + 5, + 5 + }, + { + 5, + 1 + }, + { + 5, + 4 + }, + { + 0, + 4 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 14, + 0 + }, + { + 5, + 3 + }, + { + 37, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 5, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 3 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 5, + 4 + }, + { + 5, + 4 + }, + { + 5, + 4 + }, + { + 0, + 3 + } + } + }, + [129]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 37, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 5 + }, + { + 5, + 5 + }, + { + 5, + 5 + }, + { + 5, + 1 + }, + { + 5, + 1 + }, + { + 1, + 0 + }, + { + 21, + 2 + }, + { + 21, + 2 + }, + { + 21, + 2 + }, + { + 21, + 3 + }, + { + 21, + 3 + }, + { + 21, + 3 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 5, + 4 + }, + { + 5, + 4 + }, + { + 5, + 5 + }, + { + 5, + 5 + }, + { + 5, + 5 + }, + { + 1, + 0 + }, + { + 21, + 4 + }, + { + 21, + 4 + }, + { + 21, + 4 + }, + { + 21, + 1 + }, + { + 21, + 1 + }, + { + 21, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 2 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 1, + 0 + } + } + }, + [130]={ + ["board"]={ + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 5 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 5 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 2 + }, + { + 5, + 2 + }, + { + 5, + 5 + }, + { + 5, + 1 + }, + { + 5, + 1 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 5 + }, + { + 5, + 1 + }, + { + 5, + 1 + }, + { + 1, + 0 + }, + { + 37, + 0 + }, + { + 21, + 1 + }, + { + 1, + 0 + }, + { + 0, + 5 + }, + { + 1, + 0 + }, + { + 21, + 1 + }, + { + 1, + 0 + }, + { + 14, + 0 + }, + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 37, + 0 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 37, + 0 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 1, + 0 + } + } + }, + [131]={ + ["board"]={ + { + 37, + 0 + }, + { + 0, + 3 + }, + { + 5, + 1 + }, + { + 5, + 1 + }, + { + 5, + 1 + }, + { + 0, + 5 + }, + { + 37, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 7, + 0 + }, + { + 14, + 0 + }, + { + 7, + 0 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 4 + }, + { + 5, + 5 + }, + { + 5, + 5 + }, + { + 5, + 5 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 21, + 4 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 1, + 0 + }, + { + 21, + 3 + }, + { + 21, + 3 + }, + { + 1, + 0 + }, + { + 21, + 5 + }, + { + 21, + 5 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + } + } + }, + [132]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 5, + 5 + }, + { + 5, + 5 + }, + { + 5, + 4 + }, + { + 5, + 4 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 1 + }, + { + 1, + 0 + }, + { + 21, + 3 + }, + { + 5, + 4 + }, + { + 37, + 0 + }, + { + 5, + 3 + }, + { + 21, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 4 + }, + { + 14, + 0 + }, + { + 5, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 5, + 4 + }, + { + 5, + 5 + }, + { + 5, + 3 + }, + { + 0, + 0 + }, + { + 1, + 0 + } + } + }, + [133]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 1 + }, + { + 37, + 0 + }, + { + 5, + 5 + }, + { + 5, + 5 + }, + { + 5, + 5 + }, + { + 37, + 0 + }, + { + 1, + 0 + }, + { + 5, + 1 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 21, + 5 + }, + { + 5, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 14, + 0 + }, + { + 5, + 4 + }, + { + 21, + 5 + }, + { + 5, + 3 + }, + { + 21, + 4 + }, + { + 37, + 0 + }, + { + 5, + 2 + }, + { + 1, + 0 + }, + { + 5, + 4 + }, + { + 5, + 2 + }, + { + 5, + 2 + }, + { + 1, + 0 + } + } + }, + [134]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 37, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 37, + 0 + }, + { + 14, + 0 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 4 + }, + { + 5, + 4 + }, + { + 5, + 4 + }, + { + 5, + 1 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 5, + 1 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 5, + 1 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 2 + }, + { + 5, + 5 + }, + { + 5, + 5 + }, + { + 5, + 5 + }, + { + 1, + 0 + }, + { + 21, + 2 + }, + { + 21, + 2 + }, + { + 21, + 1 + }, + { + 21, + 1 + }, + { + 21, + 5 + }, + { + 1, + 0 + }, + { + 1, + 0 + } + } + }, + [135]={ + ["board"]={ + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 0, + 5 + }, + { + 0, + 3 + }, + { + 0, + 5 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 5 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 14, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 21, + 3 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 21, + 5 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 21, + 5 + }, + { + 21, + 3 + }, + { + 37, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 37, + 0 + }, + { + 21, + 5 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + } + } + }, + [136]={ + ["board"]={ + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 21, + 2 + }, + { + 21, + 2 + }, + { + 0, + 5 + }, + { + 14, + 0 + }, + { + 0, + 5 + }, + { + 21, + 2 + }, + { + 21, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 5 + }, + { + 2, + 0 + }, + { + 0, + 5 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 0, + 5 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 37, + 0 + }, + { + 1, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + } + } + }, + [137]={ + ["board"]={ + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 0, + 2 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 21, + 5 + }, + { + 2, + 0 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 2, + 0 + }, + { + 21, + 5 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 14, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 21, + 5 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 21, + 5 + }, + { + 1, + 0 + }, + { + 0, + 4 + }, + { + 2, + 0 + }, + { + 37, + 0 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 0, + 5 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 0, + 1 + } + } + }, + [138]={ + ["board"]={ + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 2, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 3, + 0 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 0, + 1 + }, + { + 14, + 0 + }, + { + 0, + 1 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 3, + 0 + }, + { + 0, + 1 + }, + { + 3, + 0 + }, + { + 1, + 1 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 37, + 0 + }, + { + 0, + 4 + }, + { + 3, + 0 + }, + { + 0, + 3 + }, + { + 37, + 0 + }, + { + 0, + 3 + } + } + }, + [139]={ + ["board"]={ + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 2 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 3, + 0 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 0, + 2 + }, + { + 3, + 0 + }, + { + 0, + 2 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 0, + 2 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 21, + 3 + }, + { + 2, + 0 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 2, + 0 + }, + { + 21, + 5 + }, + { + 21, + 3 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 37, + 0 + }, + { + 0, + 5 + }, + { + 2, + 0 + }, + { + 21, + 5 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 37, + 0 + }, + { + 14, + 0 + }, + { + 37, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + } + } + }, + [140]={ + ["board"]={ + { + 2, + 0 + }, + { + 0, + 5 + }, + { + 2, + 0 + }, + { + 0, + 4 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 0, + 5 + }, + { + 2, + 0 + }, + { + 0, + 5 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 14, + 0 + }, + { + 0, + 5 + }, + { + 1, + 0 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 14, + 0 + }, + { + 0, + 5 + }, + { + 2, + 0 + }, + { + 0, + 5 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 21, + 2 + }, + { + 2, + 0 + }, + { + 21, + 2 + }, + { + 2, + 0 + }, + { + 21, + 2 + }, + { + 1, + 0 + }, + { + 21, + 3 + }, + { + 2, + 0 + }, + { + 21, + 3 + }, + { + 2, + 0 + }, + { + 21, + 3 + }, + { + 2, + 0 + }, + { + 21, + 3 + }, + { + 2, + 0 + }, + { + 21, + 2 + }, + { + 2, + 0 + }, + { + 21, + 2 + }, + { + 2, + 0 + }, + { + 21, + 2 + }, + { + 2, + 0 + } + } + }, + [141]={ + ["board"]={ + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 3, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 14, + 0 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 37, + 0 + }, + { + 0, + 5 + }, + { + 21, + 1 + }, + { + 0, + 1 + }, + { + 37, + 0 + }, + { + 0, + 5 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + } + } + }, + [142]={ + ["board"]={ + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 37, + 0 + }, + { + 0, + 4 + }, + { + 2, + 0 + }, + { + 0, + 4 + }, + { + 2, + 0 + }, + { + 21, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 21, + 3 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 14, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 21, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 21, + 3 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 0, + 5 + }, + { + 37, + 0 + }, + { + 0, + 5 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 21, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 21, + 3 + }, + { + 2, + 0 + } + } + }, + [143]={ + ["board"]={ + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 0, + 0 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 3, + 0 + }, + { + 0, + 0 + }, + { + 0, + 1 + }, + { + 0, + 0 + }, + { + 3, + 0 + }, + { + 0, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 0, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 0, + 0 + }, + { + 21, + 5 + }, + { + 0, + 0 + }, + { + 14, + 0 + }, + { + 0, + 0 + }, + { + 21, + 4 + }, + { + 0, + 0 + }, + { + 21, + 5 + }, + { + 21, + 5 + }, + { + 21, + 5 + }, + { + 21, + 1 + }, + { + 21, + 4 + }, + { + 21, + 4 + }, + { + 21, + 4 + } + }, + ["grid_edge"]={ + { + ["pos"]=11, + ["type"]=1, + ["direction"]=2 + }, + { + ["pos"]=22, + ["type"]=1, + ["direction"]=2 + }, + { + ["pos"]=33, + ["type"]=1, + ["direction"]=2 + }, + { + ["pos"]=44, + ["type"]=1, + ["direction"]=2 + }, + { + ["pos"]=35, + ["type"]=1, + ["direction"]=2 + }, + { + ["pos"]=26, + ["type"]=1, + ["direction"]=2 + }, + { + ["pos"]=17, + ["type"]=1, + ["direction"]=2 + }, + { + ["pos"]=22, + ["type"]=1, + ["direction"]=3 + }, + { + ["pos"]=33, + ["type"]=1, + ["direction"]=3 + }, + { + ["pos"]=44, + ["type"]=1, + ["direction"]=3 + }, + { + ["pos"]=35, + ["type"]=1, + ["direction"]=4 + }, + { + ["pos"]=26, + ["type"]=1, + ["direction"]=4 + }, + { + ["pos"]=44, + ["type"]=1, + ["direction"]=4 + } + } + }, + [144]={ + ["board"]={ + { + 1, + 0 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 0, + 5 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 21, + 5 + }, + { + 21, + 2 + }, + { + 21, + 2 + }, + { + 14, + 0 + }, + { + 21, + 5 + }, + { + 21, + 2 + }, + { + 21, + 3 + }, + { + 21, + 4 + }, + { + 21, + 2 + }, + { + 1, + 0 + }, + { + 21, + 5 + }, + { + 1, + 0 + }, + { + 21, + 2 + }, + { + 21, + 4 + } + }, + ["grid_edge"]={ + { + ["pos"]=12, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=22, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=32, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=42, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=52, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=62, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=72, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=16, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=26, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=36, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=46, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=56, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=66, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=76, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=14, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=24, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=34, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=44, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=54, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=14, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=24, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=34, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=44, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=54, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=64, + ["type"]=2, + ["direction"]=2 + } + } + }, + [145]={ + ["board"]={ + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 21, + 2 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 21, + 3 + }, + { + 14, + 0 + }, + { + 21, + 2 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 0 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 21, + 1 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 2 + }, + { + 21, + 2 + }, + { + 0, + 3 + }, + { + 0, + 0 + }, + { + 0, + 0 + } + }, + ["grid_edge"]={ + { + ["pos"]=13, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=23, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=33, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=42, + ["type"]=2, + ["direction"]=1 + }, + { + ["pos"]=42, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=51, + ["type"]=2, + ["direction"]=1 + }, + { + ["pos"]=51, + ["type"]=2, + ["direction"]=2 + }, + { + ["pos"]=62, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=62, + ["type"]=2, + ["direction"]=2 + }, + { + ["pos"]=73, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=15, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=25, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=35, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=46, + ["type"]=2, + ["direction"]=1 + }, + { + ["pos"]=46, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=57, + ["type"]=2, + ["direction"]=1 + }, + { + ["pos"]=57, + ["type"]=2, + ["direction"]=2 + }, + { + ["pos"]=66, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=66, + ["type"]=2, + ["direction"]=2 + }, + { + ["pos"]=75, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=54, + ["type"]=3, + ["direction"]=1 + }, + { + ["pos"]=54, + ["type"]=3, + ["direction"]=2 + }, + { + ["pos"]=54, + ["type"]=3, + ["direction"]=3 + }, + { + ["pos"]=54, + ["type"]=3, + ["direction"]=4 + } + } + }, + [146]={ + ["board"]={ + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 5 + }, + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 2, + 0 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 0, + 2 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 21, + 2 + }, + { + 21, + 3 + }, + { + 21, + 4 + }, + { + 14, + 0 + }, + { + 21, + 4 + }, + { + 21, + 3 + }, + { + 21, + 2 + } + }, + ["grid_edge"]={ + { + ["pos"]=51, + ["type"]=1, + ["direction"]=1 + }, + { + ["pos"]=51, + ["type"]=1, + ["direction"]=4 + }, + { + ["pos"]=62, + ["type"]=1, + ["direction"]=1 + }, + { + ["pos"]=62, + ["type"]=1, + ["direction"]=4 + }, + { + ["pos"]=73, + ["type"]=1, + ["direction"]=1 + }, + { + ["pos"]=73, + ["type"]=1, + ["direction"]=4 + }, + { + ["pos"]=75, + ["type"]=1, + ["direction"]=1 + }, + { + ["pos"]=75, + ["type"]=1, + ["direction"]=3 + }, + { + ["pos"]=66, + ["type"]=1, + ["direction"]=1 + }, + { + ["pos"]=66, + ["type"]=1, + ["direction"]=3 + }, + { + ["pos"]=57, + ["type"]=1, + ["direction"]=1 + }, + { + ["pos"]=57, + ["type"]=1, + ["direction"]=3 + } + } + }, + [147]={ + ["board"]={ + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 21, + 3 + }, + { + 3, + 0 + }, + { + 21, + 3 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 21, + 3 + }, + { + 14, + 0 + }, + { + 21, + 3 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 21, + 3 + }, + { + 21, + 3 + }, + { + 21, + 3 + }, + { + 0, + 0 + }, + { + 0, + 0 + } + }, + ["grid_edge"]={ + { + ["pos"]=51, + ["type"]=2, + ["direction"]=1 + }, + { + ["pos"]=52, + ["type"]=2, + ["direction"]=1 + }, + { + ["pos"]=53, + ["type"]=2, + ["direction"]=1 + }, + { + ["pos"]=54, + ["type"]=2, + ["direction"]=1 + }, + { + ["pos"]=55, + ["type"]=2, + ["direction"]=1 + }, + { + ["pos"]=56, + ["type"]=2, + ["direction"]=1 + }, + { + ["pos"]=57, + ["type"]=2, + ["direction"]=1 + } + } + }, + [148]={ + ["board"]={ + { + 7, + 0 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 7, + 0 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 0, + 5 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 7, + 0 + }, + { + 7, + 0 + }, + { + 7, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 7, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 21, + 5 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 21, + 5 + }, + { + 21, + 5 + }, + { + 21, + 5 + }, + { + 0, + 0 + }, + { + 14, + 0 + }, + { + 0, + 0 + }, + { + 21, + 5 + }, + { + 21, + 5 + } + }, + ["grid_edge"]={ + { + ["pos"]=51, + ["type"]=2, + ["direction"]=1 + }, + { + ["pos"]=52, + ["type"]=2, + ["direction"]=1 + }, + { + ["pos"]=53, + ["type"]=2, + ["direction"]=1 + }, + { + ["pos"]=55, + ["type"]=2, + ["direction"]=1 + }, + { + ["pos"]=56, + ["type"]=2, + ["direction"]=1 + }, + { + ["pos"]=57, + ["type"]=2, + ["direction"]=1 + }, + { + ["pos"]=43, + ["type"]=3, + ["direction"]=3 + }, + { + ["pos"]=43, + ["type"]=3, + ["direction"]=1 + }, + { + ["pos"]=44, + ["type"]=3, + ["direction"]=1 + }, + { + ["pos"]=45, + ["type"]=3, + ["direction"]=4 + }, + { + ["pos"]=45, + ["type"]=3, + ["direction"]=1 + } + } + }, + [149]={ + ["board"]={ + { + 0, + 5 + }, + { + 0, + 2 + }, + { + 2, + 0 + }, + { + 0, + 4 + }, + { + 2, + 0 + }, + { + 0, + 5 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 0, + 4 + }, + { + 2, + 0 + }, + { + 0, + 5 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 2, + 0 + }, + { + 0, + 4 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 5 + }, + { + 0, + 4 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 3, + 0 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 3, + 0 + }, + { + 21, + 2 + }, + { + 2, + 0 + }, + { + 0, + 4 + }, + { + 14, + 0 + }, + { + 0, + 4 + }, + { + 2, + 0 + }, + { + 21, + 2 + } + }, + ["grid_edge"]={ + { + ["pos"]=13, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=23, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=23, + ["type"]=2, + ["direction"]=2 + }, + { + ["pos"]=34, + ["type"]=3, + ["direction"]=3 + }, + { + ["pos"]=34, + ["type"]=3, + ["direction"]=4 + }, + { + ["pos"]=34, + ["type"]=2, + ["direction"]=2 + }, + { + ["pos"]=25, + ["type"]=2, + ["direction"]=2 + }, + { + ["pos"]=25, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=15, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=71, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=74, + ["type"]=2, + ["direction"]=1 + }, + { + ["pos"]=74, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=74, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=77, + ["type"]=2, + ["direction"]=3 + } + } + }, + [150]={ + ["board"]={ + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 3, + 0 + }, + { + 14, + 0 + }, + { + 3, + 0 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 3, + 0 + }, + { + 0, + 3 + }, + { + 3, + 0 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 2 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 21, + 1 + }, + { + 21, + 1 + }, + { + 21, + 1 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 21, + 1 + }, + { + 21, + 1 + }, + { + 21, + 1 + }, + { + 0, + 3 + }, + { + 0, + 3 + } + }, + ["grid_edge"]={ + { + ["pos"]=12, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=22, + ["type"]=3, + ["direction"]=4 + }, + { + ["pos"]=32, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=42, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=52, + ["type"]=3, + ["direction"]=4 + }, + { + ["pos"]=16, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=26, + ["type"]=3, + ["direction"]=3 + }, + { + ["pos"]=36, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=46, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=56, + ["type"]=3, + ["direction"]=3 + }, + { + ["pos"]=72, + ["type"]=3, + ["direction"]=4 + }, + { + ["pos"]=73, + ["type"]=3, + ["direction"]=4 + }, + { + ["pos"]=74, + ["type"]=3, + ["direction"]=4 + }, + { + ["pos"]=75, + ["type"]=3, + ["direction"]=4 + } + } + }, + [151]={ + ["board"]={ + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 3, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 21, + 4 + }, + { + 21, + 4 + }, + { + 2, + 0 + }, + { + 14, + 0 + }, + { + 2, + 0 + }, + { + 21, + 4 + }, + { + 21, + 4 + } + }, + ["grid_edge"]={ + { + ["pos"]=11, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=21, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=32, + ["type"]=3, + ["direction"]=1 + }, + { + ["pos"]=32, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=43, + ["type"]=3, + ["direction"]=1 + }, + { + ["pos"]=45, + ["type"]=3, + ["direction"]=1 + }, + { + ["pos"]=36, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=36, + ["type"]=3, + ["direction"]=1 + }, + { + ["pos"]=27, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=17, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=41, + ["type"]=2, + ["direction"]=1 + }, + { + ["pos"]=41, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=51, + ["type"]=2, + ["direction"]=2 + }, + { + ["pos"]=52, + ["type"]=2, + ["direction"]=1 + }, + { + ["pos"]=52, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=52, + ["type"]=2, + ["direction"]=2 + }, + { + ["pos"]=56, + ["type"]=2, + ["direction"]=1 + }, + { + ["pos"]=56, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=56, + ["type"]=2, + ["direction"]=2 + }, + { + ["pos"]=57, + ["type"]=2, + ["direction"]=2 + }, + { + ["pos"]=47, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=47, + ["type"]=2, + ["direction"]=1 + } + } + }, + [152]={ + ["board"]={ + { + 3, + 0 + }, + { + 0, + 1 + }, + { + 0, + 5 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 3, + 0 + }, + { + 0, + 1 + }, + { + 0, + 5 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 14, + 0 + }, + { + 2, + 0 + }, + { + 0, + 5 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 5 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 0, + 5 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 5 + }, + { + 0, + 3 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 21, + 2 + }, + { + 3, + 0 + }, + { + 21, + 2 + }, + { + 3, + 0 + }, + { + 21, + 2 + }, + { + 3, + 0 + } + }, + ["grid_edge"]={ + { + ["pos"]=23, + ["type"]=3, + ["direction"]=4 + }, + { + ["pos"]=23, + ["type"]=3, + ["direction"]=2 + }, + { + ["pos"]=25, + ["type"]=3, + ["direction"]=3 + }, + { + ["pos"]=25, + ["type"]=3, + ["direction"]=2 + }, + { + ["pos"]=43, + ["type"]=3, + ["direction"]=1 + }, + { + ["pos"]=43, + ["type"]=3, + ["direction"]=4 + }, + { + ["pos"]=45, + ["type"]=3, + ["direction"]=1 + }, + { + ["pos"]=45, + ["type"]=3, + ["direction"]=3 + } + } + }, + [153]={ + ["board"]={ + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 4 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 3, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 21, + 1 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 14, + 0 + } + }, + ["grid_edge"]={ + { + ["pos"]=61, + ["type"]=2, + ["direction"]=1 + }, + { + ["pos"]=62, + ["type"]=2, + ["direction"]=1 + }, + { + ["pos"]=62, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=63, + ["type"]=2, + ["direction"]=1 + }, + { + ["pos"]=63, + ["type"]=2, + ["direction"]=1 + }, + { + ["pos"]=64, + ["type"]=2, + ["direction"]=1 + }, + { + ["pos"]=65, + ["type"]=2, + ["direction"]=1 + }, + { + ["pos"]=72, + ["type"]=2, + ["direction"]=4 + } + } + }, + [154]={ + ["board"]={ + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 0, + 0 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 4 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 5 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 1 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 3, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 3, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 21, + 3 + }, + { + 21, + 3 + }, + { + 14, + 0 + }, + { + 21, + 3 + }, + { + 21, + 3 + }, + { + 3, + 0 + } + }, + ["grid_edge"]={ + { + ["pos"]=12, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=12, + ["type"]=3, + ["direction"]=2 + }, + { + ["pos"]=22, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=32, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=42, + ["type"]=3, + ["direction"]=3 + }, + { + ["pos"]=42, + ["type"]=2, + ["direction"]=2 + }, + { + ["pos"]=53, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=53, + ["type"]=2, + ["direction"]=2 + }, + { + ["pos"]=63, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=64, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=55, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=55, + ["type"]=2, + ["direction"]=2 + }, + { + ["pos"]=46, + ["type"]=2, + ["direction"]=2 + }, + { + ["pos"]=46, + ["type"]=3, + ["direction"]=4 + }, + { + ["pos"]=36, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=26, + ["type"]=2, + ["direction"]=4 + }, + { + ["pos"]=16, + ["type"]=2, + ["direction"]=3 + }, + { + ["pos"]=16, + ["type"]=3, + ["direction"]=2 + } + } + } +} +local config = { +data=chapter_board_bossrush,count=154 +} +return config \ No newline at end of file diff --git a/lua/app/config/chapter_board_bossrush.lua.meta b/lua/app/config/chapter_board_bossrush.lua.meta new file mode 100644 index 00000000..c4390393 --- /dev/null +++ b/lua/app/config/chapter_board_bossrush.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: f136cacb0fc4a2e47b93053e37dcf71b +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/chapter_dungeon_armor.lua b/lua/app/config/chapter_dungeon_armor.lua index 694e623b..9203a047 100644 --- a/lua/app/config/chapter_dungeon_armor.lua +++ b/lua/app/config/chapter_dungeon_armor.lua @@ -828,23 +828,29 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1007, ["num"]=1, - ["weight"]=85 + ["weight"]=72 }, { ["type"]=1, ["id"]=1008, ["num"]=1, - ["weight"]=15 + ["weight"]=28 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1007, + ["num"]=1, + ["weight"]=40 + }, { ["type"]=1, ["id"]=1008, ["num"]=1, - ["weight"]=100 + ["weight"]=60 } }, ["bao_drop_num"]=2, @@ -947,23 +953,29 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1013, ["num"]=1, - ["weight"]=85 + ["weight"]=72 }, { ["type"]=1, ["id"]=1014, ["num"]=1, - ["weight"]=15 + ["weight"]=28 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1013, + ["num"]=1, + ["weight"]=40 + }, { ["type"]=1, ["id"]=1014, ["num"]=1, - ["weight"]=100 + ["weight"]=60 } }, ["bao_drop_num"]=2, @@ -1066,23 +1078,29 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1019, ["num"]=1, - ["weight"]=85 + ["weight"]=72 }, { ["type"]=1, ["id"]=1020, ["num"]=1, - ["weight"]=15 + ["weight"]=28 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1019, + ["num"]=1, + ["weight"]=40 + }, { ["type"]=1, ["id"]=1020, ["num"]=1, - ["weight"]=100 + ["weight"]=60 } }, ["bao_drop_num"]=2, @@ -1185,23 +1203,29 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1025, ["num"]=1, - ["weight"]=85 + ["weight"]=72 }, { ["type"]=1, ["id"]=1026, ["num"]=1, - ["weight"]=15 + ["weight"]=28 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1025, + ["num"]=1, + ["weight"]=40 + }, { ["type"]=1, ["id"]=1026, ["num"]=1, - ["weight"]=100 + ["weight"]=60 } }, ["bao_drop_num"]=2, @@ -1304,77 +1328,101 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1007, ["num"]=1, - ["weight"]=213 + ["weight"]=180 }, { ["type"]=1, ["id"]=1013, ["num"]=1, - ["weight"]=213 + ["weight"]=180 }, { ["type"]=1, ["id"]=1019, ["num"]=1, - ["weight"]=213 + ["weight"]=180 }, { ["type"]=1, ["id"]=1025, ["num"]=1, - ["weight"]=213 + ["weight"]=180 }, { ["type"]=1, ["id"]=1008, ["num"]=1, - ["weight"]=38 + ["weight"]=70 }, { ["type"]=1, ["id"]=1014, ["num"]=1, - ["weight"]=38 + ["weight"]=70 }, { ["type"]=1, ["id"]=1020, ["num"]=1, - ["weight"]=38 + ["weight"]=70 }, { ["type"]=1, ["id"]=1026, ["num"]=1, - ["weight"]=38 + ["weight"]=70 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1007, + ["num"]=1, + ["weight"]=100 + }, + { + ["type"]=1, + ["id"]=1013, + ["num"]=1, + ["weight"]=100 + }, + { + ["type"]=1, + ["id"]=1019, + ["num"]=1, + ["weight"]=100 + }, + { + ["type"]=1, + ["id"]=1025, + ["num"]=1, + ["weight"]=100 + }, { ["type"]=1, ["id"]=1008, ["num"]=1, - ["weight"]=250 + ["weight"]=150 }, { ["type"]=1, ["id"]=1014, ["num"]=1, - ["weight"]=250 + ["weight"]=150 }, { ["type"]=1, ["id"]=1020, ["num"]=1, - ["weight"]=250 + ["weight"]=150 }, { ["type"]=1, ["id"]=1026, ["num"]=1, - ["weight"]=250 + ["weight"]=150 } }, ["bao_drop_num"]=2, @@ -1493,77 +1541,101 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1007, ["num"]=1, - ["weight"]=213 + ["weight"]=180 }, { ["type"]=1, ["id"]=1013, ["num"]=1, - ["weight"]=213 + ["weight"]=180 }, { ["type"]=1, ["id"]=1019, ["num"]=1, - ["weight"]=213 + ["weight"]=180 }, { ["type"]=1, ["id"]=1025, ["num"]=1, - ["weight"]=213 + ["weight"]=180 }, { ["type"]=1, ["id"]=1008, ["num"]=1, - ["weight"]=38 + ["weight"]=70 }, { ["type"]=1, ["id"]=1014, ["num"]=1, - ["weight"]=38 + ["weight"]=70 }, { ["type"]=1, ["id"]=1020, ["num"]=1, - ["weight"]=38 + ["weight"]=70 }, { ["type"]=1, ["id"]=1026, ["num"]=1, - ["weight"]=38 + ["weight"]=70 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1007, + ["num"]=1, + ["weight"]=100 + }, + { + ["type"]=1, + ["id"]=1013, + ["num"]=1, + ["weight"]=100 + }, + { + ["type"]=1, + ["id"]=1019, + ["num"]=1, + ["weight"]=100 + }, + { + ["type"]=1, + ["id"]=1025, + ["num"]=1, + ["weight"]=100 + }, { ["type"]=1, ["id"]=1008, ["num"]=1, - ["weight"]=250 + ["weight"]=150 }, { ["type"]=1, ["id"]=1014, ["num"]=1, - ["weight"]=250 + ["weight"]=150 }, { ["type"]=1, ["id"]=1020, ["num"]=1, - ["weight"]=250 + ["weight"]=150 }, { ["type"]=1, ["id"]=1026, ["num"]=1, - ["weight"]=250 + ["weight"]=150 } }, ["bao_drop_num"]=2, @@ -1682,29 +1754,41 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1007, ["num"]=1, - ["weight"]=65 + ["weight"]=31 }, { ["type"]=1, ["id"]=1008, ["num"]=1, - ["weight"]=25 + ["weight"]=51 }, { ["type"]=1, ["id"]=1009, ["num"]=1, - ["weight"]=10 + ["weight"]=18 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1007, + ["num"]=1, + ["weight"]=10 + }, + { + ["type"]=1, + ["id"]=1008, + ["num"]=1, + ["weight"]=40 + }, { ["type"]=1, ["id"]=1009, ["num"]=1, - ["weight"]=100 + ["weight"]=50 } }, ["bao_drop_num"]=2, @@ -1807,29 +1891,41 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1013, ["num"]=1, - ["weight"]=65 + ["weight"]=31 }, { ["type"]=1, ["id"]=1014, ["num"]=1, - ["weight"]=25 + ["weight"]=51 }, { ["type"]=1, ["id"]=1015, ["num"]=1, - ["weight"]=10 + ["weight"]=18 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1013, + ["num"]=1, + ["weight"]=10 + }, + { + ["type"]=1, + ["id"]=1014, + ["num"]=1, + ["weight"]=40 + }, { ["type"]=1, ["id"]=1015, ["num"]=1, - ["weight"]=100 + ["weight"]=50 } }, ["bao_drop_num"]=2, @@ -1932,29 +2028,41 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1019, ["num"]=1, - ["weight"]=65 + ["weight"]=31 }, { ["type"]=1, ["id"]=1020, ["num"]=1, - ["weight"]=25 + ["weight"]=51 }, { ["type"]=1, ["id"]=1021, ["num"]=1, - ["weight"]=10 + ["weight"]=18 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1019, + ["num"]=1, + ["weight"]=10 + }, + { + ["type"]=1, + ["id"]=1020, + ["num"]=1, + ["weight"]=40 + }, { ["type"]=1, ["id"]=1021, ["num"]=1, - ["weight"]=100 + ["weight"]=50 } }, ["bao_drop_num"]=2, @@ -2057,29 +2165,41 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1025, ["num"]=1, - ["weight"]=65 + ["weight"]=31 }, { ["type"]=1, ["id"]=1026, ["num"]=1, - ["weight"]=25 + ["weight"]=51 }, { ["type"]=1, ["id"]=1027, ["num"]=1, - ["weight"]=10 + ["weight"]=18 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1025, + ["num"]=1, + ["weight"]=10 + }, + { + ["type"]=1, + ["id"]=1026, + ["num"]=1, + ["weight"]=40 + }, { ["type"]=1, ["id"]=1027, ["num"]=1, - ["weight"]=100 + ["weight"]=50 } }, ["bao_drop_num"]=2, @@ -2182,101 +2302,149 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1007, ["num"]=1, - ["weight"]=163 + ["weight"]=78 }, { ["type"]=1, ["id"]=1013, ["num"]=1, - ["weight"]=163 + ["weight"]=78 }, { ["type"]=1, ["id"]=1019, ["num"]=1, - ["weight"]=163 + ["weight"]=78 }, { ["type"]=1, ["id"]=1025, ["num"]=1, - ["weight"]=163 + ["weight"]=78 }, { ["type"]=1, ["id"]=1008, ["num"]=1, - ["weight"]=63 + ["weight"]=128 }, { ["type"]=1, ["id"]=1014, ["num"]=1, - ["weight"]=63 + ["weight"]=128 }, { ["type"]=1, ["id"]=1020, ["num"]=1, - ["weight"]=63 + ["weight"]=128 }, { ["type"]=1, ["id"]=1026, ["num"]=1, - ["weight"]=63 + ["weight"]=128 }, { ["type"]=1, ["id"]=1009, ["num"]=1, - ["weight"]=25 + ["weight"]=45 }, { ["type"]=1, ["id"]=1015, ["num"]=1, - ["weight"]=25 + ["weight"]=45 }, { ["type"]=1, ["id"]=1021, ["num"]=1, - ["weight"]=25 + ["weight"]=45 }, { ["type"]=1, ["id"]=1027, ["num"]=1, - ["weight"]=25 + ["weight"]=45 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1007, + ["num"]=1, + ["weight"]=25 + }, + { + ["type"]=1, + ["id"]=1013, + ["num"]=1, + ["weight"]=25 + }, + { + ["type"]=1, + ["id"]=1019, + ["num"]=1, + ["weight"]=25 + }, + { + ["type"]=1, + ["id"]=1025, + ["num"]=1, + ["weight"]=25 + }, + { + ["type"]=1, + ["id"]=1008, + ["num"]=1, + ["weight"]=100 + }, + { + ["type"]=1, + ["id"]=1014, + ["num"]=1, + ["weight"]=100 + }, + { + ["type"]=1, + ["id"]=1020, + ["num"]=1, + ["weight"]=100 + }, + { + ["type"]=1, + ["id"]=1026, + ["num"]=1, + ["weight"]=100 + }, { ["type"]=1, ["id"]=1009, ["num"]=1, - ["weight"]=250 + ["weight"]=125 }, { ["type"]=1, ["id"]=1015, ["num"]=1, - ["weight"]=250 + ["weight"]=125 }, { ["type"]=1, ["id"]=1021, ["num"]=1, - ["weight"]=250 + ["weight"]=125 }, { ["type"]=1, ["id"]=1027, ["num"]=1, - ["weight"]=250 + ["weight"]=125 } }, ["bao_drop_num"]=2, @@ -2395,101 +2563,149 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1007, ["num"]=1, - ["weight"]=163 + ["weight"]=78 }, { ["type"]=1, ["id"]=1013, ["num"]=1, - ["weight"]=163 + ["weight"]=78 }, { ["type"]=1, ["id"]=1019, ["num"]=1, - ["weight"]=163 + ["weight"]=78 }, { ["type"]=1, ["id"]=1025, ["num"]=1, - ["weight"]=163 + ["weight"]=78 }, { ["type"]=1, ["id"]=1008, ["num"]=1, - ["weight"]=63 + ["weight"]=128 }, { ["type"]=1, ["id"]=1014, ["num"]=1, - ["weight"]=63 + ["weight"]=128 }, { ["type"]=1, ["id"]=1020, ["num"]=1, - ["weight"]=63 + ["weight"]=128 }, { ["type"]=1, ["id"]=1026, ["num"]=1, - ["weight"]=63 + ["weight"]=128 }, { ["type"]=1, ["id"]=1009, ["num"]=1, - ["weight"]=25 + ["weight"]=45 }, { ["type"]=1, ["id"]=1015, ["num"]=1, - ["weight"]=25 + ["weight"]=45 }, { ["type"]=1, ["id"]=1021, ["num"]=1, - ["weight"]=25 + ["weight"]=45 }, { ["type"]=1, ["id"]=1027, ["num"]=1, - ["weight"]=25 + ["weight"]=45 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1007, + ["num"]=1, + ["weight"]=25 + }, + { + ["type"]=1, + ["id"]=1013, + ["num"]=1, + ["weight"]=25 + }, + { + ["type"]=1, + ["id"]=1019, + ["num"]=1, + ["weight"]=25 + }, + { + ["type"]=1, + ["id"]=1025, + ["num"]=1, + ["weight"]=25 + }, + { + ["type"]=1, + ["id"]=1008, + ["num"]=1, + ["weight"]=100 + }, + { + ["type"]=1, + ["id"]=1014, + ["num"]=1, + ["weight"]=100 + }, + { + ["type"]=1, + ["id"]=1020, + ["num"]=1, + ["weight"]=100 + }, + { + ["type"]=1, + ["id"]=1026, + ["num"]=1, + ["weight"]=100 + }, { ["type"]=1, ["id"]=1009, ["num"]=1, - ["weight"]=250 + ["weight"]=125 }, { ["type"]=1, ["id"]=1015, ["num"]=1, - ["weight"]=250 + ["weight"]=125 }, { ["type"]=1, ["id"]=1021, ["num"]=1, - ["weight"]=250 + ["weight"]=125 }, { ["type"]=1, ["id"]=1027, ["num"]=1, - ["weight"]=250 + ["weight"]=125 } }, ["bao_drop_num"]=2, @@ -2608,32 +2824,38 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1007, ["num"]=1, - ["weight"]=45 + ["weight"]=10 }, { ["type"]=1, ["id"]=1008, ["num"]=1, - ["weight"]=35 + ["weight"]=62 }, { ["type"]=1, ["id"]=1009, ["num"]=1, - ["weight"]=20 + ["weight"]=28 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1008, + ["num"]=1, + ["weight"]=30 + }, { ["type"]=1, ["id"]=1009, ["num"]=1, - ["weight"]=100 + ["weight"]=70 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -2733,32 +2955,38 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1013, ["num"]=1, - ["weight"]=45 + ["weight"]=10 }, { ["type"]=1, ["id"]=1014, ["num"]=1, - ["weight"]=35 + ["weight"]=62 }, { ["type"]=1, ["id"]=1015, ["num"]=1, - ["weight"]=20 + ["weight"]=28 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1014, + ["num"]=1, + ["weight"]=30 + }, { ["type"]=1, ["id"]=1015, ["num"]=1, - ["weight"]=100 + ["weight"]=70 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -2858,32 +3086,38 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1019, ["num"]=1, - ["weight"]=45 + ["weight"]=10 }, { ["type"]=1, ["id"]=1020, ["num"]=1, - ["weight"]=35 + ["weight"]=62 }, { ["type"]=1, ["id"]=1021, ["num"]=1, - ["weight"]=20 + ["weight"]=28 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1020, + ["num"]=1, + ["weight"]=30 + }, { ["type"]=1, ["id"]=1021, ["num"]=1, - ["weight"]=100 + ["weight"]=70 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -2983,32 +3217,38 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1025, ["num"]=1, - ["weight"]=45 + ["weight"]=10 }, { ["type"]=1, ["id"]=1026, ["num"]=1, - ["weight"]=35 + ["weight"]=62 }, { ["type"]=1, ["id"]=1027, ["num"]=1, - ["weight"]=20 + ["weight"]=28 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1026, + ["num"]=1, + ["weight"]=30 + }, { ["type"]=1, ["id"]=1027, ["num"]=1, - ["weight"]=100 + ["weight"]=70 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -3108,104 +3348,128 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1007, ["num"]=1, - ["weight"]=113 + ["weight"]=25 }, { ["type"]=1, ["id"]=1013, ["num"]=1, - ["weight"]=113 + ["weight"]=25 }, { ["type"]=1, ["id"]=1019, ["num"]=1, - ["weight"]=113 + ["weight"]=25 }, { ["type"]=1, ["id"]=1025, ["num"]=1, - ["weight"]=113 + ["weight"]=25 }, { ["type"]=1, ["id"]=1008, ["num"]=1, - ["weight"]=88 + ["weight"]=155 }, { ["type"]=1, ["id"]=1014, ["num"]=1, - ["weight"]=88 + ["weight"]=155 }, { ["type"]=1, ["id"]=1020, ["num"]=1, - ["weight"]=88 + ["weight"]=155 }, { ["type"]=1, ["id"]=1026, ["num"]=1, - ["weight"]=88 + ["weight"]=155 }, { ["type"]=1, ["id"]=1009, ["num"]=1, - ["weight"]=50 + ["weight"]=70 }, { ["type"]=1, ["id"]=1015, ["num"]=1, - ["weight"]=50 + ["weight"]=70 }, { ["type"]=1, ["id"]=1021, ["num"]=1, - ["weight"]=50 + ["weight"]=70 }, { ["type"]=1, ["id"]=1027, ["num"]=1, - ["weight"]=50 + ["weight"]=70 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1008, + ["num"]=1, + ["weight"]=75 + }, + { + ["type"]=1, + ["id"]=1014, + ["num"]=1, + ["weight"]=75 + }, + { + ["type"]=1, + ["id"]=1020, + ["num"]=1, + ["weight"]=75 + }, + { + ["type"]=1, + ["id"]=1026, + ["num"]=1, + ["weight"]=75 + }, { ["type"]=1, ["id"]=1009, ["num"]=1, - ["weight"]=250 + ["weight"]=175 }, { ["type"]=1, ["id"]=1015, ["num"]=1, - ["weight"]=250 + ["weight"]=175 }, { ["type"]=1, ["id"]=1021, ["num"]=1, - ["weight"]=250 + ["weight"]=175 }, { ["type"]=1, ["id"]=1027, ["num"]=1, - ["weight"]=250 + ["weight"]=175 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -3321,104 +3585,128 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1007, ["num"]=1, - ["weight"]=113 + ["weight"]=25 }, { ["type"]=1, ["id"]=1013, ["num"]=1, - ["weight"]=113 + ["weight"]=25 }, { ["type"]=1, ["id"]=1019, ["num"]=1, - ["weight"]=113 + ["weight"]=25 }, { ["type"]=1, ["id"]=1025, ["num"]=1, - ["weight"]=113 + ["weight"]=25 }, { ["type"]=1, ["id"]=1008, ["num"]=1, - ["weight"]=88 + ["weight"]=155 }, { ["type"]=1, ["id"]=1014, ["num"]=1, - ["weight"]=88 + ["weight"]=155 }, { ["type"]=1, ["id"]=1020, ["num"]=1, - ["weight"]=88 + ["weight"]=155 }, { ["type"]=1, ["id"]=1026, ["num"]=1, - ["weight"]=88 + ["weight"]=155 }, { ["type"]=1, ["id"]=1009, ["num"]=1, - ["weight"]=50 + ["weight"]=70 }, { ["type"]=1, ["id"]=1015, ["num"]=1, - ["weight"]=50 + ["weight"]=70 }, { ["type"]=1, ["id"]=1021, ["num"]=1, - ["weight"]=50 + ["weight"]=70 }, { ["type"]=1, ["id"]=1027, ["num"]=1, - ["weight"]=50 + ["weight"]=70 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1008, + ["num"]=1, + ["weight"]=75 + }, + { + ["type"]=1, + ["id"]=1014, + ["num"]=1, + ["weight"]=75 + }, + { + ["type"]=1, + ["id"]=1020, + ["num"]=1, + ["weight"]=75 + }, + { + ["type"]=1, + ["id"]=1026, + ["num"]=1, + ["weight"]=75 + }, { ["type"]=1, ["id"]=1009, ["num"]=1, - ["weight"]=250 + ["weight"]=175 }, { ["type"]=1, ["id"]=1015, ["num"]=1, - ["weight"]=250 + ["weight"]=175 }, { ["type"]=1, ["id"]=1021, ["num"]=1, - ["weight"]=250 + ["weight"]=175 }, { ["type"]=1, ["id"]=1027, ["num"]=1, - ["weight"]=250 + ["weight"]=175 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -3534,29 +3822,41 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1008, ["num"]=1, - ["weight"]=60 + ["weight"]=41 }, { ["type"]=1, ["id"]=1009, ["num"]=1, - ["weight"]=30 + ["weight"]=40 }, { ["type"]=1, ["id"]=1010, ["num"]=1, - ["weight"]=10 + ["weight"]=19 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1008, + ["num"]=1, + ["weight"]=20 + }, + { + ["type"]=1, + ["id"]=1009, + ["num"]=1, + ["weight"]=40 + }, { ["type"]=1, ["id"]=1010, ["num"]=1, - ["weight"]=100 + ["weight"]=40 } }, ["bao_drop_num"]=2, @@ -3667,29 +3967,41 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1014, ["num"]=1, - ["weight"]=60 + ["weight"]=41 }, { ["type"]=1, ["id"]=1015, ["num"]=1, - ["weight"]=30 + ["weight"]=40 }, { ["type"]=1, ["id"]=1016, ["num"]=1, - ["weight"]=10 + ["weight"]=19 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1014, + ["num"]=1, + ["weight"]=20 + }, + { + ["type"]=1, + ["id"]=1015, + ["num"]=1, + ["weight"]=40 + }, { ["type"]=1, ["id"]=1016, ["num"]=1, - ["weight"]=100 + ["weight"]=40 } }, ["bao_drop_num"]=2, @@ -3800,29 +4112,41 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1020, ["num"]=1, - ["weight"]=60 + ["weight"]=41 }, { ["type"]=1, ["id"]=1021, ["num"]=1, - ["weight"]=30 + ["weight"]=40 }, { ["type"]=1, ["id"]=1022, ["num"]=1, - ["weight"]=10 + ["weight"]=19 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1020, + ["num"]=1, + ["weight"]=20 + }, + { + ["type"]=1, + ["id"]=1021, + ["num"]=1, + ["weight"]=40 + }, { ["type"]=1, ["id"]=1022, ["num"]=1, - ["weight"]=100 + ["weight"]=40 } }, ["bao_drop_num"]=2, @@ -3933,29 +4257,41 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1026, ["num"]=1, - ["weight"]=60 + ["weight"]=41 }, { ["type"]=1, ["id"]=1027, ["num"]=1, - ["weight"]=30 + ["weight"]=40 }, { ["type"]=1, ["id"]=1028, ["num"]=1, - ["weight"]=10 + ["weight"]=19 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1026, + ["num"]=1, + ["weight"]=20 + }, + { + ["type"]=1, + ["id"]=1027, + ["num"]=1, + ["weight"]=40 + }, { ["type"]=1, ["id"]=1028, ["num"]=1, - ["weight"]=100 + ["weight"]=40 } }, ["bao_drop_num"]=2, @@ -4066,101 +4402,149 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1008, ["num"]=1, - ["weight"]=150 + ["weight"]=103 }, { ["type"]=1, ["id"]=1014, ["num"]=1, - ["weight"]=150 + ["weight"]=103 }, { ["type"]=1, ["id"]=1020, ["num"]=1, - ["weight"]=150 + ["weight"]=103 }, { ["type"]=1, ["id"]=1026, ["num"]=1, - ["weight"]=150 + ["weight"]=103 }, { ["type"]=1, ["id"]=1009, ["num"]=1, - ["weight"]=75 + ["weight"]=100 }, { ["type"]=1, ["id"]=1015, ["num"]=1, - ["weight"]=75 + ["weight"]=100 }, { ["type"]=1, ["id"]=1021, ["num"]=1, - ["weight"]=75 + ["weight"]=100 }, { ["type"]=1, ["id"]=1027, ["num"]=1, - ["weight"]=75 + ["weight"]=100 }, { ["type"]=1, ["id"]=1010, ["num"]=1, - ["weight"]=25 + ["weight"]=48 }, { ["type"]=1, ["id"]=1016, ["num"]=1, - ["weight"]=25 + ["weight"]=48 }, { ["type"]=1, ["id"]=1022, ["num"]=1, - ["weight"]=25 + ["weight"]=48 }, { ["type"]=1, ["id"]=1028, ["num"]=1, - ["weight"]=25 + ["weight"]=48 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1008, + ["num"]=1, + ["weight"]=50 + }, + { + ["type"]=1, + ["id"]=1014, + ["num"]=1, + ["weight"]=50 + }, + { + ["type"]=1, + ["id"]=1020, + ["num"]=1, + ["weight"]=50 + }, + { + ["type"]=1, + ["id"]=1026, + ["num"]=1, + ["weight"]=50 + }, + { + ["type"]=1, + ["id"]=1009, + ["num"]=1, + ["weight"]=100 + }, + { + ["type"]=1, + ["id"]=1015, + ["num"]=1, + ["weight"]=100 + }, + { + ["type"]=1, + ["id"]=1021, + ["num"]=1, + ["weight"]=100 + }, + { + ["type"]=1, + ["id"]=1027, + ["num"]=1, + ["weight"]=100 + }, { ["type"]=1, ["id"]=1010, ["num"]=1, - ["weight"]=250 + ["weight"]=100 }, { ["type"]=1, ["id"]=1016, ["num"]=1, - ["weight"]=250 + ["weight"]=100 }, { ["type"]=1, ["id"]=1022, ["num"]=1, - ["weight"]=250 + ["weight"]=100 }, { ["type"]=1, ["id"]=1028, ["num"]=1, - ["weight"]=250 + ["weight"]=100 } }, ["bao_drop_num"]=2, @@ -4279,101 +4663,149 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1008, ["num"]=1, - ["weight"]=150 + ["weight"]=103 }, { ["type"]=1, ["id"]=1014, ["num"]=1, - ["weight"]=150 + ["weight"]=103 }, { ["type"]=1, ["id"]=1020, ["num"]=1, - ["weight"]=150 + ["weight"]=103 }, { ["type"]=1, ["id"]=1026, ["num"]=1, - ["weight"]=150 + ["weight"]=103 }, { ["type"]=1, ["id"]=1009, ["num"]=1, - ["weight"]=75 + ["weight"]=100 }, { ["type"]=1, ["id"]=1015, ["num"]=1, - ["weight"]=75 + ["weight"]=100 }, { ["type"]=1, ["id"]=1021, ["num"]=1, - ["weight"]=75 + ["weight"]=100 }, { ["type"]=1, ["id"]=1027, ["num"]=1, - ["weight"]=75 + ["weight"]=100 }, { ["type"]=1, ["id"]=1010, ["num"]=1, - ["weight"]=25 + ["weight"]=48 }, { ["type"]=1, ["id"]=1016, ["num"]=1, - ["weight"]=25 + ["weight"]=48 }, { ["type"]=1, ["id"]=1022, ["num"]=1, - ["weight"]=25 + ["weight"]=48 }, { ["type"]=1, ["id"]=1028, ["num"]=1, - ["weight"]=25 + ["weight"]=48 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1008, + ["num"]=1, + ["weight"]=50 + }, + { + ["type"]=1, + ["id"]=1014, + ["num"]=1, + ["weight"]=50 + }, + { + ["type"]=1, + ["id"]=1020, + ["num"]=1, + ["weight"]=50 + }, + { + ["type"]=1, + ["id"]=1026, + ["num"]=1, + ["weight"]=50 + }, + { + ["type"]=1, + ["id"]=1009, + ["num"]=1, + ["weight"]=100 + }, + { + ["type"]=1, + ["id"]=1015, + ["num"]=1, + ["weight"]=100 + }, + { + ["type"]=1, + ["id"]=1021, + ["num"]=1, + ["weight"]=100 + }, + { + ["type"]=1, + ["id"]=1027, + ["num"]=1, + ["weight"]=100 + }, { ["type"]=1, ["id"]=1010, ["num"]=1, - ["weight"]=250 + ["weight"]=100 }, { ["type"]=1, ["id"]=1016, ["num"]=1, - ["weight"]=250 + ["weight"]=100 }, { ["type"]=1, ["id"]=1022, ["num"]=1, - ["weight"]=250 + ["weight"]=100 }, { ["type"]=1, ["id"]=1028, ["num"]=1, - ["weight"]=250 + ["weight"]=100 } }, ["bao_drop_num"]=2, @@ -4492,32 +4924,38 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1008, ["num"]=1, - ["weight"]=45 + ["weight"]=20 }, { ["type"]=1, ["id"]=1009, ["num"]=1, - ["weight"]=35 + ["weight"]=52 }, { ["type"]=1, ["id"]=1010, ["num"]=1, - ["weight"]=20 + ["weight"]=28 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1009, + ["num"]=1, + ["weight"]=30 + }, { ["type"]=1, ["id"]=1010, ["num"]=1, - ["weight"]=100 + ["weight"]=70 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -4617,32 +5055,38 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1014, ["num"]=1, - ["weight"]=45 + ["weight"]=20 }, { ["type"]=1, ["id"]=1015, ["num"]=1, - ["weight"]=35 + ["weight"]=52 }, { ["type"]=1, ["id"]=1016, ["num"]=1, - ["weight"]=20 + ["weight"]=28 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1015, + ["num"]=1, + ["weight"]=30 + }, { ["type"]=1, ["id"]=1016, ["num"]=1, - ["weight"]=100 + ["weight"]=70 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -4742,32 +5186,38 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1020, ["num"]=1, - ["weight"]=45 + ["weight"]=20 }, { ["type"]=1, ["id"]=1021, ["num"]=1, - ["weight"]=35 + ["weight"]=52 }, { ["type"]=1, ["id"]=1022, ["num"]=1, - ["weight"]=20 + ["weight"]=28 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1021, + ["num"]=1, + ["weight"]=30 + }, { ["type"]=1, ["id"]=1022, ["num"]=1, - ["weight"]=100 + ["weight"]=70 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -4867,32 +5317,38 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1026, ["num"]=1, - ["weight"]=45 + ["weight"]=20 }, { ["type"]=1, ["id"]=1027, ["num"]=1, - ["weight"]=35 + ["weight"]=52 }, { ["type"]=1, ["id"]=1028, ["num"]=1, - ["weight"]=20 + ["weight"]=28 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1027, + ["num"]=1, + ["weight"]=30 + }, { ["type"]=1, ["id"]=1028, ["num"]=1, - ["weight"]=100 + ["weight"]=70 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -4992,104 +5448,128 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1008, ["num"]=1, - ["weight"]=113 + ["weight"]=50 }, { ["type"]=1, ["id"]=1014, ["num"]=1, - ["weight"]=113 + ["weight"]=50 }, { ["type"]=1, ["id"]=1020, ["num"]=1, - ["weight"]=113 + ["weight"]=50 }, { ["type"]=1, ["id"]=1026, ["num"]=1, - ["weight"]=113 + ["weight"]=50 }, { ["type"]=1, ["id"]=1009, ["num"]=1, - ["weight"]=88 + ["weight"]=130 }, { ["type"]=1, ["id"]=1015, ["num"]=1, - ["weight"]=88 + ["weight"]=130 }, { ["type"]=1, ["id"]=1021, ["num"]=1, - ["weight"]=88 + ["weight"]=130 }, { ["type"]=1, ["id"]=1027, ["num"]=1, - ["weight"]=88 + ["weight"]=130 }, { ["type"]=1, ["id"]=1010, ["num"]=1, - ["weight"]=50 + ["weight"]=70 }, { ["type"]=1, ["id"]=1016, ["num"]=1, - ["weight"]=50 + ["weight"]=70 }, { ["type"]=1, ["id"]=1022, ["num"]=1, - ["weight"]=50 + ["weight"]=70 }, { ["type"]=1, ["id"]=1028, ["num"]=1, - ["weight"]=50 + ["weight"]=70 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1009, + ["num"]=1, + ["weight"]=75 + }, + { + ["type"]=1, + ["id"]=1015, + ["num"]=1, + ["weight"]=75 + }, + { + ["type"]=1, + ["id"]=1021, + ["num"]=1, + ["weight"]=75 + }, + { + ["type"]=1, + ["id"]=1027, + ["num"]=1, + ["weight"]=75 + }, { ["type"]=1, ["id"]=1010, ["num"]=1, - ["weight"]=250 + ["weight"]=175 }, { ["type"]=1, ["id"]=1016, ["num"]=1, - ["weight"]=250 + ["weight"]=175 }, { ["type"]=1, ["id"]=1022, ["num"]=1, - ["weight"]=250 + ["weight"]=175 }, { ["type"]=1, ["id"]=1028, ["num"]=1, - ["weight"]=250 + ["weight"]=175 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -5205,104 +5685,128 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1008, ["num"]=1, - ["weight"]=113 + ["weight"]=50 }, { ["type"]=1, ["id"]=1014, ["num"]=1, - ["weight"]=113 + ["weight"]=50 }, { ["type"]=1, ["id"]=1020, ["num"]=1, - ["weight"]=113 + ["weight"]=50 }, { ["type"]=1, ["id"]=1026, ["num"]=1, - ["weight"]=113 + ["weight"]=50 }, { ["type"]=1, ["id"]=1009, ["num"]=1, - ["weight"]=88 + ["weight"]=130 }, { ["type"]=1, ["id"]=1015, ["num"]=1, - ["weight"]=88 + ["weight"]=130 }, { ["type"]=1, ["id"]=1021, ["num"]=1, - ["weight"]=88 + ["weight"]=130 }, { ["type"]=1, ["id"]=1027, ["num"]=1, - ["weight"]=88 + ["weight"]=130 }, { ["type"]=1, ["id"]=1010, ["num"]=1, - ["weight"]=50 + ["weight"]=70 }, { ["type"]=1, ["id"]=1016, ["num"]=1, - ["weight"]=50 + ["weight"]=70 }, { ["type"]=1, ["id"]=1022, ["num"]=1, - ["weight"]=50 + ["weight"]=70 }, { ["type"]=1, ["id"]=1028, ["num"]=1, - ["weight"]=50 + ["weight"]=70 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1009, + ["num"]=1, + ["weight"]=75 + }, + { + ["type"]=1, + ["id"]=1015, + ["num"]=1, + ["weight"]=75 + }, + { + ["type"]=1, + ["id"]=1021, + ["num"]=1, + ["weight"]=75 + }, + { + ["type"]=1, + ["id"]=1027, + ["num"]=1, + ["weight"]=75 + }, { ["type"]=1, ["id"]=1010, ["num"]=1, - ["weight"]=250 + ["weight"]=175 }, { ["type"]=1, ["id"]=1016, ["num"]=1, - ["weight"]=250 + ["weight"]=175 }, { ["type"]=1, ["id"]=1022, ["num"]=1, - ["weight"]=250 + ["weight"]=175 }, { ["type"]=1, ["id"]=1028, ["num"]=1, - ["weight"]=250 + ["weight"]=175 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -5418,29 +5922,41 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1009, ["num"]=1, - ["weight"]=60 + ["weight"]=41 }, { ["type"]=1, ["id"]=1010, ["num"]=1, - ["weight"]=30 + ["weight"]=45 }, { ["type"]=1, ["id"]=1011, ["num"]=1, - ["weight"]=10 + ["weight"]=14 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1009, + ["num"]=1, + ["weight"]=10 + }, + { + ["type"]=1, + ["id"]=1010, + ["num"]=1, + ["weight"]=50 + }, { ["type"]=1, ["id"]=1011, ["num"]=1, - ["weight"]=100 + ["weight"]=40 } }, ["bao_drop_num"]=2, @@ -5551,29 +6067,41 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1015, ["num"]=1, - ["weight"]=60 + ["weight"]=41 }, { ["type"]=1, ["id"]=1016, ["num"]=1, - ["weight"]=30 + ["weight"]=45 }, { ["type"]=1, ["id"]=1017, ["num"]=1, - ["weight"]=10 + ["weight"]=14 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1015, + ["num"]=1, + ["weight"]=10 + }, + { + ["type"]=1, + ["id"]=1016, + ["num"]=1, + ["weight"]=50 + }, { ["type"]=1, ["id"]=1017, ["num"]=1, - ["weight"]=100 + ["weight"]=40 } }, ["bao_drop_num"]=2, @@ -5684,29 +6212,41 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1021, ["num"]=1, - ["weight"]=60 + ["weight"]=41 }, { ["type"]=1, ["id"]=1022, ["num"]=1, - ["weight"]=30 + ["weight"]=45 }, { ["type"]=1, ["id"]=1023, ["num"]=1, - ["weight"]=10 + ["weight"]=14 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1021, + ["num"]=1, + ["weight"]=10 + }, + { + ["type"]=1, + ["id"]=1022, + ["num"]=1, + ["weight"]=50 + }, { ["type"]=1, ["id"]=1023, ["num"]=1, - ["weight"]=100 + ["weight"]=40 } }, ["bao_drop_num"]=2, @@ -5817,29 +6357,41 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1027, ["num"]=1, - ["weight"]=60 + ["weight"]=41 }, { ["type"]=1, ["id"]=1028, ["num"]=1, - ["weight"]=30 + ["weight"]=45 }, { ["type"]=1, ["id"]=1029, ["num"]=1, - ["weight"]=10 + ["weight"]=14 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1027, + ["num"]=1, + ["weight"]=10 + }, + { + ["type"]=1, + ["id"]=1028, + ["num"]=1, + ["weight"]=50 + }, { ["type"]=1, ["id"]=1029, ["num"]=1, - ["weight"]=100 + ["weight"]=40 } }, ["bao_drop_num"]=2, @@ -5950,101 +6502,149 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1009, ["num"]=1, - ["weight"]=150 + ["weight"]=103 }, { ["type"]=1, ["id"]=1015, ["num"]=1, - ["weight"]=150 + ["weight"]=103 }, { ["type"]=1, ["id"]=1021, ["num"]=1, - ["weight"]=150 + ["weight"]=103 }, { ["type"]=1, ["id"]=1027, ["num"]=1, - ["weight"]=150 + ["weight"]=103 }, { ["type"]=1, ["id"]=1010, ["num"]=1, - ["weight"]=75 + ["weight"]=113 }, { ["type"]=1, ["id"]=1016, ["num"]=1, - ["weight"]=75 + ["weight"]=113 }, { ["type"]=1, ["id"]=1022, ["num"]=1, - ["weight"]=75 + ["weight"]=113 }, { ["type"]=1, ["id"]=1028, ["num"]=1, - ["weight"]=75 + ["weight"]=113 }, { ["type"]=1, ["id"]=1011, ["num"]=1, - ["weight"]=25 + ["weight"]=35 }, { ["type"]=1, ["id"]=1017, ["num"]=1, - ["weight"]=25 + ["weight"]=35 }, { ["type"]=1, ["id"]=1023, ["num"]=1, - ["weight"]=25 + ["weight"]=35 }, { ["type"]=1, ["id"]=1029, ["num"]=1, - ["weight"]=25 + ["weight"]=35 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1009, + ["num"]=1, + ["weight"]=25 + }, + { + ["type"]=1, + ["id"]=1015, + ["num"]=1, + ["weight"]=25 + }, + { + ["type"]=1, + ["id"]=1021, + ["num"]=1, + ["weight"]=25 + }, + { + ["type"]=1, + ["id"]=1027, + ["num"]=1, + ["weight"]=25 + }, + { + ["type"]=1, + ["id"]=1010, + ["num"]=1, + ["weight"]=125 + }, + { + ["type"]=1, + ["id"]=1016, + ["num"]=1, + ["weight"]=125 + }, + { + ["type"]=1, + ["id"]=1022, + ["num"]=1, + ["weight"]=125 + }, + { + ["type"]=1, + ["id"]=1028, + ["num"]=1, + ["weight"]=125 + }, { ["type"]=1, ["id"]=1011, ["num"]=1, - ["weight"]=250 + ["weight"]=100 }, { ["type"]=1, ["id"]=1017, ["num"]=1, - ["weight"]=250 + ["weight"]=100 }, { ["type"]=1, ["id"]=1023, ["num"]=1, - ["weight"]=250 + ["weight"]=100 }, { ["type"]=1, ["id"]=1029, ["num"]=1, - ["weight"]=250 + ["weight"]=100 } }, ["bao_drop_num"]=2, @@ -6163,101 +6763,149 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1009, ["num"]=1, - ["weight"]=150 + ["weight"]=103 }, { ["type"]=1, ["id"]=1015, ["num"]=1, - ["weight"]=150 + ["weight"]=103 }, { ["type"]=1, ["id"]=1021, ["num"]=1, - ["weight"]=150 + ["weight"]=103 }, { ["type"]=1, ["id"]=1027, ["num"]=1, - ["weight"]=150 + ["weight"]=103 }, { ["type"]=1, ["id"]=1010, ["num"]=1, - ["weight"]=75 + ["weight"]=113 }, { ["type"]=1, ["id"]=1016, ["num"]=1, - ["weight"]=75 + ["weight"]=113 }, { ["type"]=1, ["id"]=1022, ["num"]=1, - ["weight"]=75 + ["weight"]=113 }, { ["type"]=1, ["id"]=1028, ["num"]=1, - ["weight"]=75 + ["weight"]=113 }, { ["type"]=1, ["id"]=1011, ["num"]=1, - ["weight"]=25 + ["weight"]=35 }, { ["type"]=1, ["id"]=1017, ["num"]=1, - ["weight"]=25 + ["weight"]=35 }, { ["type"]=1, ["id"]=1023, ["num"]=1, - ["weight"]=25 + ["weight"]=35 }, { ["type"]=1, ["id"]=1029, ["num"]=1, - ["weight"]=25 + ["weight"]=35 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1009, + ["num"]=1, + ["weight"]=25 + }, + { + ["type"]=1, + ["id"]=1015, + ["num"]=1, + ["weight"]=25 + }, + { + ["type"]=1, + ["id"]=1021, + ["num"]=1, + ["weight"]=25 + }, + { + ["type"]=1, + ["id"]=1027, + ["num"]=1, + ["weight"]=25 + }, + { + ["type"]=1, + ["id"]=1010, + ["num"]=1, + ["weight"]=125 + }, + { + ["type"]=1, + ["id"]=1016, + ["num"]=1, + ["weight"]=125 + }, + { + ["type"]=1, + ["id"]=1022, + ["num"]=1, + ["weight"]=125 + }, + { + ["type"]=1, + ["id"]=1028, + ["num"]=1, + ["weight"]=125 + }, { ["type"]=1, ["id"]=1011, ["num"]=1, - ["weight"]=250 + ["weight"]=100 }, { ["type"]=1, ["id"]=1017, ["num"]=1, - ["weight"]=250 + ["weight"]=100 }, { ["type"]=1, ["id"]=1023, ["num"]=1, - ["weight"]=250 + ["weight"]=100 }, { ["type"]=1, ["id"]=1029, ["num"]=1, - ["weight"]=250 + ["weight"]=100 } }, ["bao_drop_num"]=2, @@ -6376,32 +7024,38 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1009, ["num"]=1, - ["weight"]=47 + ["weight"]=20 }, { ["type"]=1, ["id"]=1010, ["num"]=1, - ["weight"]=35 + ["weight"]=57 }, { ["type"]=1, ["id"]=1011, ["num"]=1, - ["weight"]=18 + ["weight"]=23 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1010, + ["num"]=1, + ["weight"]=30 + }, { ["type"]=1, ["id"]=1011, ["num"]=1, - ["weight"]=100 + ["weight"]=70 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -6501,32 +7155,38 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1015, ["num"]=1, - ["weight"]=47 + ["weight"]=20 }, { ["type"]=1, ["id"]=1016, ["num"]=1, - ["weight"]=35 + ["weight"]=57 }, { ["type"]=1, ["id"]=1017, ["num"]=1, - ["weight"]=18 + ["weight"]=23 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1016, + ["num"]=1, + ["weight"]=30 + }, { ["type"]=1, ["id"]=1017, ["num"]=1, - ["weight"]=100 + ["weight"]=70 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -6626,32 +7286,38 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1021, ["num"]=1, - ["weight"]=47 + ["weight"]=20 }, { ["type"]=1, ["id"]=1022, ["num"]=1, - ["weight"]=35 + ["weight"]=57 }, { ["type"]=1, ["id"]=1023, ["num"]=1, - ["weight"]=18 + ["weight"]=23 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1022, + ["num"]=1, + ["weight"]=30 + }, { ["type"]=1, ["id"]=1023, ["num"]=1, - ["weight"]=100 + ["weight"]=70 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -6751,32 +7417,38 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1027, ["num"]=1, - ["weight"]=47 + ["weight"]=20 }, { ["type"]=1, ["id"]=1028, ["num"]=1, - ["weight"]=35 + ["weight"]=57 }, { ["type"]=1, ["id"]=1029, ["num"]=1, - ["weight"]=18 + ["weight"]=23 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1028, + ["num"]=1, + ["weight"]=30 + }, { ["type"]=1, ["id"]=1029, ["num"]=1, - ["weight"]=100 + ["weight"]=70 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -6876,104 +7548,128 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1009, ["num"]=1, - ["weight"]=118 + ["weight"]=50 }, { ["type"]=1, ["id"]=1015, ["num"]=1, - ["weight"]=118 + ["weight"]=50 }, { ["type"]=1, ["id"]=1021, ["num"]=1, - ["weight"]=118 + ["weight"]=50 }, { ["type"]=1, ["id"]=1027, ["num"]=1, - ["weight"]=118 + ["weight"]=50 }, { ["type"]=1, ["id"]=1010, ["num"]=1, - ["weight"]=88 + ["weight"]=143 }, { ["type"]=1, ["id"]=1016, ["num"]=1, - ["weight"]=88 + ["weight"]=143 }, { ["type"]=1, ["id"]=1022, ["num"]=1, - ["weight"]=88 + ["weight"]=143 }, { ["type"]=1, ["id"]=1028, ["num"]=1, - ["weight"]=88 + ["weight"]=143 }, { ["type"]=1, ["id"]=1011, ["num"]=1, - ["weight"]=45 + ["weight"]=58 }, { ["type"]=1, ["id"]=1017, ["num"]=1, - ["weight"]=45 + ["weight"]=58 }, { ["type"]=1, ["id"]=1023, ["num"]=1, - ["weight"]=45 + ["weight"]=58 }, { ["type"]=1, ["id"]=1029, ["num"]=1, - ["weight"]=45 + ["weight"]=58 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1010, + ["num"]=1, + ["weight"]=75 + }, + { + ["type"]=1, + ["id"]=1016, + ["num"]=1, + ["weight"]=75 + }, + { + ["type"]=1, + ["id"]=1022, + ["num"]=1, + ["weight"]=75 + }, + { + ["type"]=1, + ["id"]=1028, + ["num"]=1, + ["weight"]=75 + }, { ["type"]=1, ["id"]=1011, ["num"]=1, - ["weight"]=250 + ["weight"]=175 }, { ["type"]=1, ["id"]=1017, ["num"]=1, - ["weight"]=250 + ["weight"]=175 }, { ["type"]=1, ["id"]=1023, ["num"]=1, - ["weight"]=250 + ["weight"]=175 }, { ["type"]=1, ["id"]=1029, ["num"]=1, - ["weight"]=250 + ["weight"]=175 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -7089,104 +7785,128 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1009, ["num"]=1, - ["weight"]=118 + ["weight"]=50 }, { ["type"]=1, ["id"]=1015, ["num"]=1, - ["weight"]=118 + ["weight"]=50 }, { ["type"]=1, ["id"]=1021, ["num"]=1, - ["weight"]=118 + ["weight"]=50 }, { ["type"]=1, ["id"]=1027, ["num"]=1, - ["weight"]=118 + ["weight"]=50 }, { ["type"]=1, ["id"]=1010, ["num"]=1, - ["weight"]=88 + ["weight"]=143 }, { ["type"]=1, ["id"]=1016, ["num"]=1, - ["weight"]=88 + ["weight"]=143 }, { ["type"]=1, ["id"]=1022, ["num"]=1, - ["weight"]=88 + ["weight"]=143 }, { ["type"]=1, ["id"]=1028, ["num"]=1, - ["weight"]=88 + ["weight"]=143 }, { ["type"]=1, ["id"]=1011, ["num"]=1, - ["weight"]=45 + ["weight"]=58 }, { ["type"]=1, ["id"]=1017, ["num"]=1, - ["weight"]=45 + ["weight"]=58 }, { ["type"]=1, ["id"]=1023, ["num"]=1, - ["weight"]=45 + ["weight"]=58 }, { ["type"]=1, ["id"]=1029, ["num"]=1, - ["weight"]=45 + ["weight"]=58 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1010, + ["num"]=1, + ["weight"]=75 + }, + { + ["type"]=1, + ["id"]=1016, + ["num"]=1, + ["weight"]=75 + }, + { + ["type"]=1, + ["id"]=1022, + ["num"]=1, + ["weight"]=75 + }, + { + ["type"]=1, + ["id"]=1028, + ["num"]=1, + ["weight"]=75 + }, { ["type"]=1, ["id"]=1011, ["num"]=1, - ["weight"]=250 + ["weight"]=175 }, { ["type"]=1, ["id"]=1017, ["num"]=1, - ["weight"]=250 + ["weight"]=175 }, { ["type"]=1, ["id"]=1023, ["num"]=1, - ["weight"]=250 + ["weight"]=175 }, { ["type"]=1, ["id"]=1029, ["num"]=1, - ["weight"]=250 + ["weight"]=175 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -7302,29 +8022,41 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1010, ["num"]=1, - ["weight"]=64 + ["weight"]=46 }, { ["type"]=1, ["id"]=1011, ["num"]=1, - ["weight"]=26 + ["weight"]=40 }, { ["type"]=1, ["id"]=1012, ["num"]=1, - ["weight"]=10 + ["weight"]=14 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1010, + ["num"]=1, + ["weight"]=10 + }, + { + ["type"]=1, + ["id"]=1011, + ["num"]=1, + ["weight"]=50 + }, { ["type"]=1, ["id"]=1012, ["num"]=1, - ["weight"]=100 + ["weight"]=40 } }, ["bao_drop_num"]=2, @@ -7435,29 +8167,41 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1016, ["num"]=1, - ["weight"]=64 + ["weight"]=46 }, { ["type"]=1, ["id"]=1017, ["num"]=1, - ["weight"]=26 + ["weight"]=40 }, { ["type"]=1, ["id"]=1018, ["num"]=1, - ["weight"]=10 + ["weight"]=14 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1016, + ["num"]=1, + ["weight"]=10 + }, + { + ["type"]=1, + ["id"]=1017, + ["num"]=1, + ["weight"]=50 + }, { ["type"]=1, ["id"]=1018, ["num"]=1, - ["weight"]=100 + ["weight"]=40 } }, ["bao_drop_num"]=2, @@ -7568,29 +8312,41 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1022, ["num"]=1, - ["weight"]=64 + ["weight"]=46 }, { ["type"]=1, ["id"]=1023, ["num"]=1, - ["weight"]=26 + ["weight"]=40 }, { ["type"]=1, ["id"]=1024, ["num"]=1, - ["weight"]=10 + ["weight"]=14 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1022, + ["num"]=1, + ["weight"]=10 + }, + { + ["type"]=1, + ["id"]=1023, + ["num"]=1, + ["weight"]=50 + }, { ["type"]=1, ["id"]=1024, ["num"]=1, - ["weight"]=100 + ["weight"]=40 } }, ["bao_drop_num"]=2, @@ -7701,29 +8457,41 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1028, ["num"]=1, - ["weight"]=64 + ["weight"]=46 }, { ["type"]=1, ["id"]=1029, ["num"]=1, - ["weight"]=26 + ["weight"]=40 }, { ["type"]=1, ["id"]=1030, ["num"]=1, - ["weight"]=10 + ["weight"]=14 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1028, + ["num"]=1, + ["weight"]=10 + }, + { + ["type"]=1, + ["id"]=1029, + ["num"]=1, + ["weight"]=50 + }, { ["type"]=1, ["id"]=1030, ["num"]=1, - ["weight"]=100 + ["weight"]=40 } }, ["bao_drop_num"]=2, @@ -7834,101 +8602,149 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1010, ["num"]=1, - ["weight"]=160 + ["weight"]=115 }, { ["type"]=1, ["id"]=1016, ["num"]=1, - ["weight"]=160 + ["weight"]=115 }, { ["type"]=1, ["id"]=1022, ["num"]=1, - ["weight"]=160 + ["weight"]=115 }, { ["type"]=1, ["id"]=1028, ["num"]=1, - ["weight"]=160 + ["weight"]=115 }, { ["type"]=1, ["id"]=1011, ["num"]=1, - ["weight"]=65 + ["weight"]=100 }, { ["type"]=1, ["id"]=1017, ["num"]=1, - ["weight"]=65 + ["weight"]=100 }, { ["type"]=1, ["id"]=1023, ["num"]=1, - ["weight"]=65 + ["weight"]=100 }, { ["type"]=1, ["id"]=1029, ["num"]=1, - ["weight"]=65 + ["weight"]=100 }, { ["type"]=1, ["id"]=1012, ["num"]=1, - ["weight"]=25 + ["weight"]=35 }, { ["type"]=1, ["id"]=1018, ["num"]=1, - ["weight"]=25 + ["weight"]=35 }, { ["type"]=1, ["id"]=1024, ["num"]=1, - ["weight"]=25 + ["weight"]=35 }, { ["type"]=1, ["id"]=1030, ["num"]=1, - ["weight"]=25 + ["weight"]=35 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1010, + ["num"]=1, + ["weight"]=25 + }, + { + ["type"]=1, + ["id"]=1016, + ["num"]=1, + ["weight"]=25 + }, + { + ["type"]=1, + ["id"]=1022, + ["num"]=1, + ["weight"]=25 + }, + { + ["type"]=1, + ["id"]=1028, + ["num"]=1, + ["weight"]=25 + }, + { + ["type"]=1, + ["id"]=1011, + ["num"]=1, + ["weight"]=125 + }, + { + ["type"]=1, + ["id"]=1017, + ["num"]=1, + ["weight"]=125 + }, + { + ["type"]=1, + ["id"]=1023, + ["num"]=1, + ["weight"]=125 + }, + { + ["type"]=1, + ["id"]=1029, + ["num"]=1, + ["weight"]=125 + }, { ["type"]=1, ["id"]=1012, ["num"]=1, - ["weight"]=250 + ["weight"]=100 }, { ["type"]=1, ["id"]=1018, ["num"]=1, - ["weight"]=250 + ["weight"]=100 }, { ["type"]=1, ["id"]=1024, ["num"]=1, - ["weight"]=250 + ["weight"]=100 }, { ["type"]=1, ["id"]=1030, ["num"]=1, - ["weight"]=250 + ["weight"]=100 } }, ["bao_drop_num"]=2, @@ -8047,101 +8863,149 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1010, ["num"]=1, - ["weight"]=160 + ["weight"]=115 }, { ["type"]=1, ["id"]=1016, ["num"]=1, - ["weight"]=160 + ["weight"]=115 }, { ["type"]=1, ["id"]=1022, ["num"]=1, - ["weight"]=160 + ["weight"]=115 }, { ["type"]=1, ["id"]=1028, ["num"]=1, - ["weight"]=160 + ["weight"]=115 }, { ["type"]=1, ["id"]=1011, ["num"]=1, - ["weight"]=65 + ["weight"]=100 }, { ["type"]=1, ["id"]=1017, ["num"]=1, - ["weight"]=65 + ["weight"]=100 }, { ["type"]=1, ["id"]=1023, ["num"]=1, - ["weight"]=65 + ["weight"]=100 }, { ["type"]=1, ["id"]=1029, ["num"]=1, - ["weight"]=65 + ["weight"]=100 }, { ["type"]=1, ["id"]=1012, ["num"]=1, - ["weight"]=25 + ["weight"]=35 }, { ["type"]=1, ["id"]=1018, ["num"]=1, - ["weight"]=25 + ["weight"]=35 }, { ["type"]=1, ["id"]=1024, ["num"]=1, - ["weight"]=25 + ["weight"]=35 }, { ["type"]=1, ["id"]=1030, ["num"]=1, - ["weight"]=25 + ["weight"]=35 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1010, + ["num"]=1, + ["weight"]=25 + }, + { + ["type"]=1, + ["id"]=1016, + ["num"]=1, + ["weight"]=25 + }, + { + ["type"]=1, + ["id"]=1022, + ["num"]=1, + ["weight"]=25 + }, + { + ["type"]=1, + ["id"]=1028, + ["num"]=1, + ["weight"]=25 + }, + { + ["type"]=1, + ["id"]=1011, + ["num"]=1, + ["weight"]=125 + }, + { + ["type"]=1, + ["id"]=1017, + ["num"]=1, + ["weight"]=125 + }, + { + ["type"]=1, + ["id"]=1023, + ["num"]=1, + ["weight"]=125 + }, + { + ["type"]=1, + ["id"]=1029, + ["num"]=1, + ["weight"]=125 + }, { ["type"]=1, ["id"]=1012, ["num"]=1, - ["weight"]=250 + ["weight"]=100 }, { ["type"]=1, ["id"]=1018, ["num"]=1, - ["weight"]=250 + ["weight"]=100 }, { ["type"]=1, ["id"]=1024, ["num"]=1, - ["weight"]=250 + ["weight"]=100 }, { ["type"]=1, ["id"]=1030, ["num"]=1, - ["weight"]=250 + ["weight"]=100 } }, ["bao_drop_num"]=2, @@ -8260,32 +9124,38 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1010, ["num"]=1, - ["weight"]=42 + ["weight"]=16 }, { ["type"]=1, ["id"]=1011, ["num"]=1, - ["weight"]=38 + ["weight"]=51 }, { ["type"]=1, ["id"]=1012, ["num"]=1, - ["weight"]=20 + ["weight"]=33 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1011, + ["num"]=1, + ["weight"]=30 + }, { ["type"]=1, ["id"]=1012, ["num"]=1, - ["weight"]=100 + ["weight"]=70 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -8385,32 +9255,38 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1016, ["num"]=1, - ["weight"]=42 + ["weight"]=16 }, { ["type"]=1, ["id"]=1017, ["num"]=1, - ["weight"]=38 + ["weight"]=51 }, { ["type"]=1, ["id"]=1018, ["num"]=1, - ["weight"]=20 + ["weight"]=33 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1017, + ["num"]=1, + ["weight"]=30 + }, { ["type"]=1, ["id"]=1018, ["num"]=1, - ["weight"]=100 + ["weight"]=70 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -8510,32 +9386,38 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1022, ["num"]=1, - ["weight"]=42 + ["weight"]=16 }, { ["type"]=1, ["id"]=1023, ["num"]=1, - ["weight"]=38 + ["weight"]=51 }, { ["type"]=1, ["id"]=1024, ["num"]=1, - ["weight"]=20 + ["weight"]=33 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1023, + ["num"]=1, + ["weight"]=30 + }, { ["type"]=1, ["id"]=1024, ["num"]=1, - ["weight"]=100 + ["weight"]=70 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -8635,32 +9517,38 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1028, ["num"]=1, - ["weight"]=42 + ["weight"]=16 }, { ["type"]=1, ["id"]=1029, ["num"]=1, - ["weight"]=38 + ["weight"]=51 }, { ["type"]=1, ["id"]=1030, ["num"]=1, - ["weight"]=20 + ["weight"]=33 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1029, + ["num"]=1, + ["weight"]=30 + }, { ["type"]=1, ["id"]=1030, ["num"]=1, - ["weight"]=100 + ["weight"]=70 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -8760,104 +9648,128 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1010, ["num"]=1, - ["weight"]=105 + ["weight"]=40 }, { ["type"]=1, ["id"]=1016, ["num"]=1, - ["weight"]=105 + ["weight"]=40 }, { ["type"]=1, ["id"]=1022, ["num"]=1, - ["weight"]=105 + ["weight"]=40 }, { ["type"]=1, ["id"]=1028, ["num"]=1, - ["weight"]=105 + ["weight"]=40 }, { ["type"]=1, ["id"]=1011, ["num"]=1, - ["weight"]=95 + ["weight"]=128 }, { ["type"]=1, ["id"]=1017, ["num"]=1, - ["weight"]=95 + ["weight"]=128 }, { ["type"]=1, ["id"]=1023, ["num"]=1, - ["weight"]=95 + ["weight"]=128 }, { ["type"]=1, ["id"]=1029, ["num"]=1, - ["weight"]=95 + ["weight"]=128 }, { ["type"]=1, ["id"]=1012, ["num"]=1, - ["weight"]=50 + ["weight"]=83 }, { ["type"]=1, ["id"]=1018, ["num"]=1, - ["weight"]=50 + ["weight"]=83 }, { ["type"]=1, ["id"]=1024, ["num"]=1, - ["weight"]=50 + ["weight"]=83 }, { ["type"]=1, ["id"]=1030, ["num"]=1, - ["weight"]=50 + ["weight"]=83 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1011, + ["num"]=1, + ["weight"]=75 + }, + { + ["type"]=1, + ["id"]=1017, + ["num"]=1, + ["weight"]=75 + }, + { + ["type"]=1, + ["id"]=1023, + ["num"]=1, + ["weight"]=75 + }, + { + ["type"]=1, + ["id"]=1029, + ["num"]=1, + ["weight"]=75 + }, { ["type"]=1, ["id"]=1012, ["num"]=1, - ["weight"]=250 + ["weight"]=175 }, { ["type"]=1, ["id"]=1018, ["num"]=1, - ["weight"]=250 + ["weight"]=175 }, { ["type"]=1, ["id"]=1024, ["num"]=1, - ["weight"]=250 + ["weight"]=175 }, { ["type"]=1, ["id"]=1030, ["num"]=1, - ["weight"]=250 + ["weight"]=175 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -8973,104 +9885,128 @@ local chapter_dungeon_armor = { ["type"]=1, ["id"]=1010, ["num"]=1, - ["weight"]=105 + ["weight"]=40 }, { ["type"]=1, ["id"]=1016, ["num"]=1, - ["weight"]=105 + ["weight"]=40 }, { ["type"]=1, ["id"]=1022, ["num"]=1, - ["weight"]=105 + ["weight"]=40 }, { ["type"]=1, ["id"]=1028, ["num"]=1, - ["weight"]=105 + ["weight"]=40 }, { ["type"]=1, ["id"]=1011, ["num"]=1, - ["weight"]=95 + ["weight"]=128 }, { ["type"]=1, ["id"]=1017, ["num"]=1, - ["weight"]=95 + ["weight"]=128 }, { ["type"]=1, ["id"]=1023, ["num"]=1, - ["weight"]=95 + ["weight"]=128 }, { ["type"]=1, ["id"]=1029, ["num"]=1, - ["weight"]=95 + ["weight"]=128 }, { ["type"]=1, ["id"]=1012, ["num"]=1, - ["weight"]=50 + ["weight"]=83 }, { ["type"]=1, ["id"]=1018, ["num"]=1, - ["weight"]=50 + ["weight"]=83 }, { ["type"]=1, ["id"]=1024, ["num"]=1, - ["weight"]=50 + ["weight"]=83 }, { ["type"]=1, ["id"]=1030, ["num"]=1, - ["weight"]=50 + ["weight"]=83 } }, ["rand_drop_num"]=10, ["bao_limit"]=3, ["bao_drop"]={ + { + ["type"]=1, + ["id"]=1011, + ["num"]=1, + ["weight"]=75 + }, + { + ["type"]=1, + ["id"]=1017, + ["num"]=1, + ["weight"]=75 + }, + { + ["type"]=1, + ["id"]=1023, + ["num"]=1, + ["weight"]=75 + }, + { + ["type"]=1, + ["id"]=1029, + ["num"]=1, + ["weight"]=75 + }, { ["type"]=1, ["id"]=1012, ["num"]=1, - ["weight"]=250 + ["weight"]=175 }, { ["type"]=1, ["id"]=1018, ["num"]=1, - ["weight"]=250 + ["weight"]=175 }, { ["type"]=1, ["id"]=1024, ["num"]=1, - ["weight"]=250 + ["weight"]=175 }, { ["type"]=1, ["id"]=1030, ["num"]=1, - ["weight"]=250 + ["weight"]=175 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, diff --git a/lua/app/config/chapter_dungeon_equip.lua b/lua/app/config/chapter_dungeon_equip.lua index 3d0d8511..dd5e946f 100644 --- a/lua/app/config/chapter_dungeon_equip.lua +++ b/lua/app/config/chapter_dungeon_equip.lua @@ -58,7 +58,7 @@ local chapter_dungeon_equip = { ["weight"]=100 } }, - ["bao_drop_num"]=1, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -191,13 +191,13 @@ local chapter_dungeon_equip = { ["type"]=1, ["id"]=1001, ["num"]=1, - ["weight"]=90 + ["weight"]=80 }, { ["type"]=1, ["id"]=1002, ["num"]=1, - ["weight"]=10 + ["weight"]=20 } }, ["rand_drop_num"]=10, @@ -205,12 +205,12 @@ local chapter_dungeon_equip = { ["bao_drop"]={ { ["type"]=1, - ["id"]=1002, + ["id"]=1001, ["num"]=1, ["weight"]=100 } }, - ["bao_drop_num"]=1, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -278,13 +278,13 @@ local chapter_dungeon_equip = { ["type"]=1, ["id"]=1001, ["num"]=1, - ["weight"]=85 + ["weight"]=60 }, { ["type"]=1, ["id"]=1002, ["num"]=1, - ["weight"]=15 + ["weight"]=40 } }, ["rand_drop_num"]=10, @@ -365,13 +365,13 @@ local chapter_dungeon_equip = { ["type"]=1, ["id"]=1001, ["num"]=1, - ["weight"]=80 + ["weight"]=35 }, { ["type"]=1, ["id"]=1002, ["num"]=1, - ["weight"]=20 + ["weight"]=65 } }, ["rand_drop_num"]=10, @@ -384,7 +384,7 @@ local chapter_dungeon_equip = { ["weight"]=100 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -452,19 +452,19 @@ local chapter_dungeon_equip = { ["type"]=1, ["id"]=1001, ["num"]=1, - ["weight"]=60 + ["weight"]=15 }, { ["type"]=1, ["id"]=1002, ["num"]=1, - ["weight"]=30 + ["weight"]=70 }, { ["type"]=1, ["id"]=1003, ["num"]=1, - ["weight"]=10 + ["weight"]=15 } }, ["rand_drop_num"]=10, @@ -472,12 +472,12 @@ local chapter_dungeon_equip = { ["bao_drop"]={ { ["type"]=1, - ["id"]=1003, + ["id"]=1002, ["num"]=1, ["weight"]=100 } }, - ["bao_drop_num"]=1, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -545,19 +545,19 @@ local chapter_dungeon_equip = { ["type"]=1, ["id"]=1001, ["num"]=1, - ["weight"]=45 + ["weight"]=5 }, { ["type"]=1, ["id"]=1002, ["num"]=1, - ["weight"]=40 + ["weight"]=65 }, { ["type"]=1, ["id"]=1003, ["num"]=1, - ["weight"]=15 + ["weight"]=30 } }, ["rand_drop_num"]=10, @@ -565,7 +565,7 @@ local chapter_dungeon_equip = { ["bao_drop"]={ { ["type"]=1, - ["id"]=1003, + ["id"]=1002, ["num"]=1, ["weight"]=100 } @@ -634,23 +634,17 @@ local chapter_dungeon_equip = { } }, ["rand_drop"]={ - { - ["type"]=1, - ["id"]=1001, - ["num"]=1, - ["weight"]=30 - }, { ["type"]=1, ["id"]=1002, ["num"]=1, - ["weight"]=50 + ["weight"]=40 }, { ["type"]=1, ["id"]=1003, ["num"]=1, - ["weight"]=20 + ["weight"]=60 } }, ["rand_drop_num"]=10, @@ -663,7 +657,7 @@ local chapter_dungeon_equip = { ["weight"]=100 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -731,13 +725,13 @@ local chapter_dungeon_equip = { ["type"]=1, ["id"]=1002, ["num"]=1, - ["weight"]=60 + ["weight"]=20 }, { ["type"]=1, ["id"]=1003, ["num"]=1, - ["weight"]=30 + ["weight"]=70 }, { ["type"]=1, @@ -751,12 +745,12 @@ local chapter_dungeon_equip = { ["bao_drop"]={ { ["type"]=1, - ["id"]=1004, + ["id"]=1003, ["num"]=1, ["weight"]=100 } }, - ["bao_drop_num"]=1, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -824,19 +818,19 @@ local chapter_dungeon_equip = { ["type"]=1, ["id"]=1002, ["num"]=1, - ["weight"]=45 + ["weight"]=10 }, { ["type"]=1, ["id"]=1003, ["num"]=1, - ["weight"]=40 + ["weight"]=65 }, { ["type"]=1, ["id"]=1004, ["num"]=1, - ["weight"]=15 + ["weight"]=25 } }, ["rand_drop_num"]=10, @@ -844,7 +838,7 @@ local chapter_dungeon_equip = { ["bao_drop"]={ { ["type"]=1, - ["id"]=1004, + ["id"]=1003, ["num"]=1, ["weight"]=100 } @@ -913,23 +907,17 @@ local chapter_dungeon_equip = { } }, ["rand_drop"]={ - { - ["type"]=1, - ["id"]=1002, - ["num"]=1, - ["weight"]=30 - }, { ["type"]=1, ["id"]=1003, ["num"]=1, - ["weight"]=50 + ["weight"]=55 }, { ["type"]=1, ["id"]=1004, ["num"]=1, - ["weight"]=20 + ["weight"]=45 } }, ["rand_drop_num"]=10, @@ -937,12 +925,12 @@ local chapter_dungeon_equip = { ["bao_drop"]={ { ["type"]=1, - ["id"]=1004, + ["id"]=1003, ["num"]=1, ["weight"]=100 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -1010,19 +998,19 @@ local chapter_dungeon_equip = { ["type"]=1, ["id"]=1003, ["num"]=1, - ["weight"]=67 + ["weight"]=30 }, { ["type"]=1, ["id"]=1004, ["num"]=1, - ["weight"]=25 + ["weight"]=60 }, { ["type"]=1, ["id"]=1005, ["num"]=1, - ["weight"]=8 + ["weight"]=10 } }, ["rand_drop_num"]=10, @@ -1030,12 +1018,12 @@ local chapter_dungeon_equip = { ["bao_drop"]={ { ["type"]=1, - ["id"]=1005, + ["id"]=1004, ["num"]=1, ["weight"]=100 } }, - ["bao_drop_num"]=1, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -1103,19 +1091,19 @@ local chapter_dungeon_equip = { ["type"]=1, ["id"]=1003, ["num"]=1, - ["weight"]=57 + ["weight"]=10 }, { ["type"]=1, ["id"]=1004, ["num"]=1, - ["weight"]=30 + ["weight"]=80 }, { ["type"]=1, ["id"]=1005, ["num"]=1, - ["weight"]=13 + ["weight"]=20 } }, ["rand_drop_num"]=10, @@ -1123,7 +1111,7 @@ local chapter_dungeon_equip = { ["bao_drop"]={ { ["type"]=1, - ["id"]=1005, + ["id"]=1004, ["num"]=1, ["weight"]=100 } @@ -1192,23 +1180,17 @@ local chapter_dungeon_equip = { } }, ["rand_drop"]={ - { - ["type"]=1, - ["id"]=1003, - ["num"]=1, - ["weight"]=46 - }, { ["type"]=1, ["id"]=1004, ["num"]=1, - ["weight"]=36 + ["weight"]=60 }, { ["type"]=1, ["id"]=1005, ["num"]=1, - ["weight"]=18 + ["weight"]=40 } }, ["rand_drop_num"]=10, @@ -1216,12 +1198,12 @@ local chapter_dungeon_equip = { ["bao_drop"]={ { ["type"]=1, - ["id"]=1005, + ["id"]=1004, ["num"]=1, ["weight"]=100 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -1289,19 +1271,19 @@ local chapter_dungeon_equip = { ["type"]=1, ["id"]=1004, ["num"]=1, - ["weight"]=66 + ["weight"]=30 }, { ["type"]=1, ["id"]=1005, ["num"]=1, - ["weight"]=30 + ["weight"]=55 }, { ["type"]=1, ["id"]=1006, ["num"]=1, - ["weight"]=4 + ["weight"]=5 } }, ["rand_drop_num"]=10, @@ -1309,12 +1291,12 @@ local chapter_dungeon_equip = { ["bao_drop"]={ { ["type"]=1, - ["id"]=1006, + ["id"]=1004, ["num"]=1, ["weight"]=100 } }, - ["bao_drop_num"]=1, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -1390,19 +1372,19 @@ local chapter_dungeon_equip = { ["type"]=1, ["id"]=1004, ["num"]=1, - ["weight"]=53 + ["weight"]=20 }, { ["type"]=1, ["id"]=1005, ["num"]=1, - ["weight"]=38 + ["weight"]=70 }, { ["type"]=1, ["id"]=1006, ["num"]=1, - ["weight"]=9 + ["weight"]=10 } }, ["rand_drop_num"]=10, @@ -1410,12 +1392,12 @@ local chapter_dungeon_equip = { ["bao_drop"]={ { ["type"]=1, - ["id"]=1006, + ["id"]=1005, ["num"]=1, ["weight"]=100 } }, - ["bao_drop_num"]=1, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -1483,19 +1465,19 @@ local chapter_dungeon_equip = { ["type"]=1, ["id"]=1004, ["num"]=1, - ["weight"]=43 + ["weight"]=15 }, { ["type"]=1, ["id"]=1005, ["num"]=1, - ["weight"]=42 + ["weight"]=65 }, { ["type"]=1, ["id"]=1006, ["num"]=1, - ["weight"]=15 + ["weight"]=20 } }, ["rand_drop_num"]=10, @@ -1503,7 +1485,7 @@ local chapter_dungeon_equip = { ["bao_drop"]={ { ["type"]=1, - ["id"]=1006, + ["id"]=1005, ["num"]=1, ["weight"]=100 } @@ -1576,19 +1558,19 @@ local chapter_dungeon_equip = { ["type"]=1, ["id"]=1004, ["num"]=1, - ["weight"]=40 + ["weight"]=10 }, { ["type"]=1, ["id"]=1005, ["num"]=1, - ["weight"]=40 + ["weight"]=60 }, { ["type"]=1, ["id"]=1006, ["num"]=1, - ["weight"]=20 + ["weight"]=30 } }, ["rand_drop_num"]=10, @@ -1596,7 +1578,7 @@ local chapter_dungeon_equip = { ["bao_drop"]={ { ["type"]=1, - ["id"]=1006, + ["id"]=1005, ["num"]=1, ["weight"]=100 } @@ -1669,19 +1651,19 @@ local chapter_dungeon_equip = { ["type"]=1, ["id"]=1004, ["num"]=1, - ["weight"]=37 + ["weight"]=7 }, { ["type"]=1, ["id"]=1005, ["num"]=1, - ["weight"]=38 + ["weight"]=53 }, { ["type"]=1, ["id"]=1006, ["num"]=1, - ["weight"]=25 + ["weight"]=40 } }, ["rand_drop_num"]=10, @@ -1689,12 +1671,12 @@ local chapter_dungeon_equip = { ["bao_drop"]={ { ["type"]=1, - ["id"]=1006, + ["id"]=1005, ["num"]=1, ["weight"]=100 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, @@ -1762,19 +1744,19 @@ local chapter_dungeon_equip = { ["type"]=1, ["id"]=1004, ["num"]=1, - ["weight"]=34 + ["weight"]=5 }, { ["type"]=1, ["id"]=1005, ["num"]=1, - ["weight"]=36 + ["weight"]=45 }, { ["type"]=1, ["id"]=1006, ["num"]=1, - ["weight"]=30 + ["weight"]=50 } }, ["rand_drop_num"]=10, @@ -1787,7 +1769,7 @@ local chapter_dungeon_equip = { ["weight"]=100 } }, - ["bao_drop_num"]=3, + ["bao_drop_num"]=2, ["item_show"]={ { ["type"]=1, diff --git a/lua/app/config/const.lua b/lua/app/config/const.lua index 48f7be39..2a438c42 100644 --- a/lua/app/config/const.lua +++ b/lua/app/config/const.lua @@ -376,9 +376,38 @@ local const = { }, ["bounty_click"]={ ["value"]=4 + }, + ["activity_boss_rush_time"]={ + ["value"]=1 + }, + ["activity_boss_rush_cost"]={ + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=20, + ["num_for_nothing"]="VAg=" + } + }, + ["activity_boss_rush_costadd"]={ + ["reward"]={ + ["type"]=1, + ["type_for_nothing"]="Vw==", + ["id"]=2, + ["id_for_nothing"]="VA==", + ["num"]=20, + ["num_for_nothing"]="VAg=" + } + }, + ["activity_boss_rush_hp_add"]={ + ["value"]=100 + }, + ["activity_boss_rush_atk_add"]={ + ["value"]=100 } } local config = { -data=const,count=77 +data=const,count=82 } return config \ No newline at end of file diff --git a/lua/app/config/equip.lua b/lua/app/config/equip.lua index d7bb5afa..e0095b55 100644 --- a/lua/app/config/equip.lua +++ b/lua/app/config/equip.lua @@ -7556,12 +7556,12 @@ local equip = { } }, ["weapon_icon"]={ - 25, - 26, - 27, - 28, - 29, - 30 + 31, + 32, + 33, + 34, + 35, + 36 } }, [1400103]={ @@ -8001,12 +8001,12 @@ local equip = { } }, ["weapon_icon"]={ - 13, - 14, - 15, - 16, - 17, - 18 + 19, + 20, + 21, + 22, + 23, + 24 } }, [1400104]={ @@ -8446,12 +8446,12 @@ local equip = { } }, ["weapon_icon"]={ - 1, - 2, - 3, - 4, - 5, - 6 + 7, + 8, + 9, + 10, + 11, + 12 } }, [1400105]={ @@ -8891,12 +8891,12 @@ local equip = { } }, ["weapon_icon"]={ - 37, - 38, - 39, - 40, - 41, - 42 + 43, + 44, + 45, + 46, + 47, + 48 } }, [1400201]={ diff --git a/lua/app/config/fx.lua b/lua/app/config/fx.lua index 9c46cc42..12d8d401 100644 --- a/lua/app/config/fx.lua +++ b/lua/app/config/fx.lua @@ -2003,10 +2003,6 @@ local fx = { ["bind"]="root", ["bg"]=1 }, - [300150]={ - ["res"]="sfx_p0036_b05", - ["bind"]="root" - }, [400000]={ ["res"]="sfx_p0012_b01", ["bind"]="root", @@ -2758,14 +2754,9 @@ local fx = { ["bind"]="root", ["flip"]=1, ["bg"]=1 - }, - [400150]={ - ["res"]="sfx_p0036_b05", - ["bind"]="root", - ["flip"]=1 } } local config = { -data=fx,count=649 +data=fx,count=647 } return config \ No newline at end of file diff --git a/lua/app/config/hero.lua b/lua/app/config/hero.lua index 04f6c483..7c971e28 100644 --- a/lua/app/config/hero.lua +++ b/lua/app/config/hero.lua @@ -247,8 +247,7 @@ local hero = { ["is_show"]=1, ["collection_point"]=5, ["skin"]={ - 14001, - 1400101 + 14001 } }, [14002]={ diff --git a/lua/app/config/item.lua b/lua/app/config/item.lua index 5b3a05be..be25daa5 100644 --- a/lua/app/config/item.lua +++ b/lua/app/config/item.lua @@ -1550,6 +1550,16 @@ local item = { } } }, + [51]={ + ["type"]=2, + ["qlt"]=4, + ["icon"]="51" + }, + [52]={ + ["type"]=2, + ["qlt"]=4, + ["icon"]="52" + }, [1001]={ ["type"]=2, ["qlt"]=1, @@ -1562,8 +1572,7 @@ local item = { 4, 5, 6, - 7, - 8 + 7 } }, [1002]={ @@ -1572,14 +1581,14 @@ local item = { ["icon"]="1002", ["get_way_type"]=1, ["get_way"]={ - 9, - 8, - 10, 6, - 11, + 7, 5, + 8, 4, - 3 + 9, + 3, + 10 } }, [1003]={ @@ -1588,15 +1597,14 @@ local item = { ["icon"]="1003", ["get_way_type"]=1, ["get_way"]={ - 12, - 13, - 11, - 14, - 10, 9, + 10, 8, + 11, + 12, 7, - 6 + 6, + 13 } }, [1004]={ @@ -1605,18 +1613,18 @@ local item = { ["icon"]="1004", ["get_way_type"]=1, ["get_way"]={ + 13, + 14, + 12, 15, + 11, 16, + 10, 17, 18, 19, - 14, 20, - 13, - 12, - 11, - 10, - 9 + 10 } }, [1005]={ @@ -1625,12 +1633,12 @@ local item = { ["icon"]="1005", ["get_way_type"]=1, ["get_way"]={ + 16, 17, 18, - 16, 19, - 20, 15, + 20, 14, 13, 12 @@ -1676,21 +1684,21 @@ local item = { ["icon"]="1008", ["get_way_type"]=2, ["get_way"]={ - 25, - 31, 19, 13, + 25, 7, - 29, - 30, - 35, - 36, + 31, 23, 24, 17, 18, + 29, + 30, 11, - 12 + 12, + 35, + 36 } }, [1009]={ @@ -1699,22 +1707,22 @@ local item = { ["icon"]="1009", ["get_way_type"]=2, ["get_way"]={ - 37, - 43, 31, + 37, 25, 19, + 43, 13, - 41, - 42, - 47, - 48, 35, 36, + 41, + 42, 29, 30, 23, 24, + 47, + 48, 17, 18 } @@ -1725,22 +1733,22 @@ local item = { ["icon"]="1010", ["get_way_type"]=2, ["get_way"]={ - 49, - 55, 43, + 49, 37, 31, + 55, 25, - 53, - 54, - 59, - 60, 47, 48, + 53, + 54, 41, 42, 35, 36, + 59, + 60, 29, 30 } @@ -1774,7 +1782,7 @@ local item = { 55, 49, 59, - 54, + 60, 53, 54 } @@ -1805,21 +1813,21 @@ local item = { ["icon"]="1020", ["get_way_type"]=2, ["get_way"]={ - 26, - 32, 20, 14, + 26, 8, - 29, - 30, - 35, - 36, + 32, 23, 24, 17, 18, + 29, + 30, 11, - 12 + 12, + 35, + 36 } }, [1015]={ @@ -1828,22 +1836,22 @@ local item = { ["icon"]="1021", ["get_way_type"]=2, ["get_way"]={ - 38, - 44, 32, + 38, 26, 20, + 44, 14, - 41, - 42, - 47, - 48, 35, 36, + 41, + 42, 29, 30, 23, 24, + 47, + 48, 17, 18 } @@ -1854,22 +1862,22 @@ local item = { ["icon"]="1022", ["get_way_type"]=2, ["get_way"]={ - 50, - 56, 44, + 50, 38, 32, + 56, 26, - 53, - 54, - 59, - 60, 47, 48, + 53, + 54, 41, 42, 35, 36, + 59, + 60, 29, 30 } @@ -1903,7 +1911,7 @@ local item = { 56, 50, 59, - 54, + 60, 53, 54 } @@ -1934,21 +1942,21 @@ local item = { ["icon"]="1014", ["get_way_type"]=2, ["get_way"]={ - 27, - 33, 21, 15, + 27, 9, - 29, - 30, - 35, - 36, + 33, 23, 24, 17, 18, + 29, + 30, 11, - 12 + 12, + 35, + 36 } }, [1021]={ @@ -1957,22 +1965,22 @@ local item = { ["icon"]="1015", ["get_way_type"]=2, ["get_way"]={ - 39, - 45, 33, + 39, 27, 21, + 45, 15, - 41, - 42, - 47, - 48, 35, 36, + 41, + 42, 29, 30, 23, 24, + 47, + 48, 17, 18 } @@ -1983,22 +1991,22 @@ local item = { ["icon"]="1016", ["get_way_type"]=2, ["get_way"]={ - 51, - 57, 45, + 51, 39, 33, + 57, 27, - 53, - 54, - 59, - 60, 47, 48, + 53, + 54, 41, 42, 35, 36, + 59, + 60, 29, 30 } @@ -2032,7 +2040,7 @@ local item = { 57, 51, 59, - 54, + 60, 53, 54 } @@ -2063,21 +2071,21 @@ local item = { ["icon"]="1026", ["get_way_type"]=2, ["get_way"]={ - 28, - 34, 22, 16, + 28, 10, - 29, - 30, - 35, - 36, + 34, 23, 24, 17, 18, + 29, + 30, 11, - 12 + 12, + 35, + 36 } }, [1027]={ @@ -2086,22 +2094,22 @@ local item = { ["icon"]="1027", ["get_way_type"]=2, ["get_way"]={ - 40, - 46, 34, + 40, 28, 22, + 46, 16, - 41, - 42, - 47, - 48, 35, 36, + 41, + 42, 29, 30, 23, 24, + 47, + 48, 17, 18 } @@ -2112,22 +2120,22 @@ local item = { ["icon"]="1028", ["get_way_type"]=2, ["get_way"]={ - 52, - 58, 46, + 52, 40, 34, + 58, 28, - 53, - 54, - 59, - 60, 47, 48, + 53, + 54, 41, 42, 35, 36, + 59, + 60, 29, 30 } @@ -2161,7 +2169,7 @@ local item = { 58, 52, 59, - 54, + 60, 53, 54 } @@ -2369,15 +2377,9 @@ local item = { ["parameter"]=5400101, ["qlt"]=4, ["icon"]="5400101" - }, - [1400101]={ - ["type"]=12, - ["parameter"]=1400101, - ["qlt"]=3, - ["icon"]="1400101" } } local config = { -data=item,count=112 +data=item,count=113 } return config \ No newline at end of file diff --git a/lua/app/config/localization/localization_global_const.lua b/lua/app/config/localization/localization_global_const.lua index b5621ba9..037b7073 100644 --- a/lua/app/config/localization/localization_global_const.lua +++ b/lua/app/config/localization/localization_global_const.lua @@ -455,17 +455,18 @@ local LocalizationGlobalConst = HERO_FUND_DESCC_2 = "HERO_FUND_DESCC_2", HERO_FUND_DESCC_3 = "HERO_FUND_DESCC_3", HERO_FUND_DESCC_4 = "HERO_FUND_DESCC_4", - ARENA_DESC_37 = "ARENA_DESC_37", - ARENA_DESC_38 = "ARENA_DESC_38", - ARENA_DESC_39 = "ARENA_DESC_39", - ARENA_DESC_40 = "ARENA_DESC_40", - ARENA_DESC_41 = "ARENA_DESC_41", - ARENA_DESC_42 = "ARENA_DESC_42", - EQUIP_DESC_26 = "EQUIP_DESC_26", - EQUIP_DESC_27 = "EQUIP_DESC_27", - SEIZED_DESC_1 = "SEIZED_DESC_1", - SEIZED_DESC_2 = "SEIZED_DESC_2", - SEIZED_DESC_3 = "SEIZED_DESC_3", + ACT_FOURTEEN_TITLE_1 = "ACT_FOURTEEN_TITLE_1", + ACT_FOURTEEN_TITLE_2 = "ACT_FOURTEEN_TITLE_2", + ACT_FOURTEEN_TITLE_3 = "ACT_FOURTEEN_TITLE_3", + ACT_FOURTEEN_TITLE_4 = "ACT_FOURTEEN_TITLE_4", + ACT_FOURTEEN_DESC_1 = "ACT_FOURTEEN_DESC_1", + ACT_FOURTEEN_DESC_2 = "ACT_FOURTEEN_DESC_2", + ACT_FOURTEEN_DESC_3 = "ACT_FOURTEEN_DESC_3", + ACT_FOURTEEN_DESC_5 = "ACT_FOURTEEN_DESC_5", + ACT_FOURTEEN_DESC_6 = "ACT_FOURTEEN_DESC_6", + ACT_FOURTEEN_DESC_7 = "ACT_FOURTEEN_DESC_7", + ACT_FOURTEEN_DESC_8 = "ACT_FOURTEEN_DESC_8", + ACT_FOURTEEN_DESC_9 = "ACT_FOURTEEN_DESC_9", } return LocalizationGlobalConst \ No newline at end of file diff --git a/lua/app/config/monster_activity.lua b/lua/app/config/monster_activity.lua new file mode 100644 index 00000000..62ffcb7a --- /dev/null +++ b/lua/app/config/monster_activity.lua @@ -0,0 +1,777 @@ +local monster_activity = { + [104]={ + ["monster_base"]=20001, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30001, + 30002, + 30003 + }, + ["skill"]={ + 10020 + }, + ["monster_exp"]=10000 + }, + [204]={ + ["monster_base"]=20002, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30004, + 30005, + 30006 + }, + ["skill"]={ + 10019 + }, + ["monster_exp"]=10000 + }, + [304]={ + ["monster_base"]=20004, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30010, + 30011, + 30012 + }, + ["skill"]={ + 10015 + }, + ["monster_exp"]=10000 + }, + [404]={ + ["monster_base"]=20006, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30016, + 30017, + 30018 + }, + ["skill"]={ + 10033 + }, + ["passive_skill"]={ + 10010 + }, + ["monster_exp"]=10000 + }, + [504]={ + ["monster_base"]=20007, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30019, + 30020, + 30021 + }, + ["skill"]={ + 10060 + }, + ["passive_skill"]={ + 10061 + }, + ["monster_exp"]=10000 + }, + [604]={ + ["monster_base"]=20008, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30022, + 30023, + 30024 + }, + ["skill"]={ + 10032 + }, + ["passive_skill"]={ + 10009 + }, + ["monster_exp"]=10000 + }, + [704]={ + ["monster_base"]=20012, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30034, + 30035, + 30036 + }, + ["skill"]={ + 10017 + }, + ["monster_exp"]=10000 + }, + [804]={ + ["monster_base"]=20014, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30040, + 30041, + 30042 + }, + ["skill"]={ + 10016 + }, + ["monster_exp"]=10000 + }, + [904]={ + ["monster_base"]=20015, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30043, + 30044, + 30045 + }, + ["skill"]={ + 10070 + }, + ["passive_skill"]={ + 10008 + }, + ["monster_exp"]=10000 + }, + [1004]={ + ["monster_base"]=20023, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30067, + 30068, + 30069 + }, + ["skill"]={ + 10063 + }, + ["passive_skill"]={ + 10013 + }, + ["monster_exp"]=10000 + }, + [1104]={ + ["monster_base"]=20009, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30025, + 30026, + 30027 + }, + ["skill"]={ + 10039 + }, + ["passive_skill"]={ + 10010, + 10011 + }, + ["monster_exp"]=10000 + }, + [1204]={ + ["monster_base"]=20011, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30031, + 30032, + 30033 + }, + ["skill"]={ + 10018 + }, + ["monster_exp"]=10000 + }, + [1304]={ + ["monster_base"]=20017, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30049, + 30050, + 30051 + }, + ["skill"]={ + 10027 + }, + ["monster_exp"]=10000 + }, + [1404]={ + ["monster_base"]=20019, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30055, + 30056, + 30057 + }, + ["skill"]={ + 10045 + }, + ["passive_skill"]={ + 10013 + }, + ["monster_exp"]=10000 + }, + [1504]={ + ["monster_base"]=20022, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30064, + 30065, + 30066 + }, + ["skill"]={ + 10023 + }, + ["passive_skill"]={ + 10013 + }, + ["monster_exp"]=10000 + }, + [1604]={ + ["monster_base"]=20026, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30076, + 30077, + 30078 + }, + ["skill"]={ + 10064 + }, + ["passive_skill"]={ + 10013 + }, + ["monster_exp"]=10000 + }, + [1704]={ + ["monster_base"]=20028, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30162, + 30163, + 30164 + }, + ["skill"]={ + 10142 + }, + ["passive_skill"]={ + 10011 + }, + ["monster_exp"]=10000 + }, + [1804]={ + ["monster_base"]=20029, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30085, + 30086, + 30087 + }, + ["skill"]={ + 10065 + }, + ["monster_exp"]=10000 + }, + [1904]={ + ["monster_base"]=20010, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30028, + 30029, + 30030 + }, + ["skill"]={ + 10041, + 10066 + }, + ["passive_skill"]={ + 10008, + 10009, + 10013 + }, + ["monster_exp"]=10000 + }, + [2004]={ + ["monster_base"]=20016, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30046, + 30047, + 30048 + }, + ["skill"]={ + 10036 + }, + ["passive_skill"]={ + 10010, + 10011 + }, + ["monster_exp"]=10000 + }, + [2104]={ + ["monster_base"]=20018, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30052, + 30053, + 30054 + }, + ["skill"]={ + 10051 + }, + ["passive_skill"]={ + 10011, + 10012 + }, + ["monster_exp"]=10000 + }, + [2204]={ + ["monster_base"]=20021, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30061, + 30062, + 30063 + }, + ["skill"]={ + 10034 + }, + ["passive_skill"]={ + 10011, + 10008 + }, + ["monster_exp"]=10000 + }, + [2304]={ + ["monster_base"]=20025, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30073, + 30074, + 30075 + }, + ["skill"]={ + 10062 + }, + ["passive_skill"]={ + 10013 + }, + ["monster_exp"]=10000 + }, + [2404]={ + ["monster_base"]=20027, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30079, + 30080, + 30081 + }, + ["skill"]={ + 10082 + }, + ["monster_exp"]=10000 + }, + [2504]={ + ["monster_base"]=20035, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30100, + 30101, + 30102, + 30113 + }, + ["skill"]={ + 10076 + }, + ["passive_skill"]={ + 10011, + 10009 + }, + ["monster_exp"]=10000 + }, + [2604]={ + ["monster_base"]=20036, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30103, + 30104, + 30105 + }, + ["skill"]={ + 10077, + 10078 + }, + ["passive_skill"]={ + 10011 + }, + ["monster_exp"]=10000 + }, + [2704]={ + ["monster_base"]=20044, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30147, + 30148, + 30149 + }, + ["skill"]={ + 10130, + 10131 + }, + ["passive_skill"]={ + 10132, + 10013, + 10011 + }, + ["monster_exp"]=10000 + }, + [2804]={ + ["monster_base"]=20003, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30007, + 30008, + 30009 + }, + ["skill"]={ + 10029 + }, + ["passive_skill"]={ + 10013 + }, + ["monster_exp"]=10000 + }, + [2904]={ + ["monster_base"]=20005, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30013, + 30014, + 30015 + }, + ["skill"]={ + 10024 + }, + ["passive_skill"]={ + 10012 + }, + ["monster_exp"]=10000 + }, + [3004]={ + ["monster_base"]=20020, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30058, + 30059, + 30060 + }, + ["skill"]={ + 10047 + }, + ["passive_skill"]={ + 10013 + }, + ["monster_exp"]=10000 + }, + [3104]={ + ["monster_base"]=20030, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30088, + 30089, + 30090 + }, + ["skill"]={ + 10056, + 10057 + }, + ["passive_skill"]={ + 10014 + }, + ["monster_exp"]=10000 + }, + [3204]={ + ["monster_base"]=20034, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30097, + 30098, + 30099 + }, + ["skill"]={ + 10074, + 10075 + }, + ["passive_skill"]={ + 10013, + 10012 + }, + ["monster_exp"]=10000 + }, + [3304]={ + ["monster_base"]=20037, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30106, + 30107, + 30108 + }, + ["skill"]={ + 10079 + }, + ["passive_skill"]={ + 10013, + 10009, + 10084 + }, + ["monster_exp"]=10000 + }, + [3404]={ + ["monster_base"]=20045, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30150, + 30151, + 30152 + }, + ["skill"]={ + 10133, + 10134 + }, + ["passive_skill"]={ + 10012 + }, + ["monster_exp"]=10000 + }, + [3504]={ + ["monster_base"]=20046, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30153, + 30154, + 30155 + }, + ["skill"]={ + 10135, + 10136 + }, + ["passive_skill"]={ + 10012 + }, + ["monster_exp"]=10000 + }, + [3604]={ + ["monster_base"]=20013, + ["is_boss"]=1, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30037, + 30038, + 30039 + }, + ["skill"]={ + 10049, + 10050 + }, + ["monster_exp"]=10000 + }, + [3704]={ + ["monster_base"]=20024, + ["is_boss"]=1, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30070, + 30071, + 30072 + }, + ["skill"]={ + 10043, + 10044 + }, + ["passive_skill"]={ + 10012 + }, + ["monster_exp"]=10000 + }, + [3804]={ + ["monster_base"]=20031, + ["is_boss"]=1, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30091, + 30092, + 30093 + }, + ["skill"]={ + 10058, + 10059 + }, + ["passive_skill"]={ + 10008, + 10011, + 10013 + }, + ["monster_exp"]=10000 + }, + [3904]={ + ["monster_base"]=20032, + ["is_boss"]=1, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30094, + 30095, + 30096 + }, + ["skill"]={ + 10052, + 10053, + 10054 + }, + ["passive_skill"]={ + 10008, + 10010, + 10013 + }, + ["monster_exp"]=10000 + }, + [4004]={ + ["monster_base"]=20038, + ["is_boss"]=1, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30109, + 30110, + 30111, + 30112 + }, + ["skill"]={ + 10080, + 10081 + }, + ["passive_skill"]={ + 10083, + 10009, + 10011 + }, + ["monster_exp"]=10000 + }, + [4104]={ + ["monster_base"]=20047, + ["is_boss"]=1, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30156, + 30157, + 30158 + }, + ["skill"]={ + 10137, + 10138 + }, + ["passive_skill"]={ + 10013, + 10010 + }, + ["monster_exp"]=10000 + }, + [4204]={ + ["monster_base"]=20048, + ["is_boss"]=1, + ["hp"]=10000000, + ["atk"]=500000, + ["atk_times"]=4, + ["hurt_skill"]={ + 30159, + 30160, + 30161 + }, + ["skill"]={ + 10139, + 10140 + }, + ["passive_skill"]={ + 10141, + 10014, + 10009 + }, + ["monster_exp"]=10000 + } +} +local config = { +data=monster_activity,count=42 +} +return config \ No newline at end of file diff --git a/lua/app/config/monster_activity.lua.meta b/lua/app/config/monster_activity.lua.meta new file mode 100644 index 00000000..5f1cfcba --- /dev/null +++ b/lua/app/config/monster_activity.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 228b857e2abcb754185db1ca23e6184e +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/monster_dungeon_armor.lua b/lua/app/config/monster_dungeon_armor.lua index a03b03d4..e0257238 100644 --- a/lua/app/config/monster_dungeon_armor.lua +++ b/lua/app/config/monster_dungeon_armor.lua @@ -1,7 +1,7 @@ local monster_dungeon_armor = { [107]={ ["monster_base"]=10022, - ["hp"]=80820000, + ["hp"]=76340000, ["atk"]=1760000, ["atk_times"]=3, ["hurt_skill"]={ @@ -13,7 +13,7 @@ local monster_dungeon_armor = { }, [207]={ ["monster_base"]=10043, - ["hp"]=120870000, + ["hp"]=113830000, ["atk"]=1970000, ["atk_times"]=3, ["hurt_skill"]={ @@ -25,7 +25,7 @@ local monster_dungeon_armor = { }, [307]={ ["monster_base"]=10033, - ["hp"]=151840000, + ["hp"]=142400000, ["atk"]=2050000, ["atk_times"]=3, ["hurt_skill"]={ @@ -37,7 +37,7 @@ local monster_dungeon_armor = { }, [407]={ ["monster_base"]=10048, - ["hp"]=159840000, + ["hp"]=150430000, ["atk"]=2450000, ["atk_times"]=3, ["hurt_skill"]={ @@ -50,7 +50,7 @@ local monster_dungeon_armor = { [507]={ ["monster_base"]=20004, ["is_boss"]=1, - ["hp"]=327720000, + ["hp"]=290940000, ["atk"]=2640000, ["atk_times"]=4, ["hurt_skill"]={ @@ -65,7 +65,7 @@ local monster_dungeon_armor = { }, [607]={ ["monster_base"]=10051, - ["hp"]=197100000, + ["hp"]=185400000, ["atk"]=2550000, ["atk_times"]=3, ["hurt_skill"]={ @@ -77,7 +77,7 @@ local monster_dungeon_armor = { }, [707]={ ["monster_base"]=10046, - ["hp"]=228520000, + ["hp"]=203090000, ["atk"]=2640000, ["atk_times"]=3, ["hurt_skill"]={ @@ -89,7 +89,7 @@ local monster_dungeon_armor = { }, [807]={ ["monster_base"]=10003, - ["hp"]=268050000, + ["hp"]=237710000, ["atk"]=2600000, ["atk_times"]=2, ["hurt_skill"]={ @@ -101,7 +101,7 @@ local monster_dungeon_armor = { }, [907]={ ["monster_base"]=10058, - ["hp"]=307200000, + ["hp"]=273290000, ["atk"]=2740000, ["atk_times"]=3, ["hurt_skill"]={ @@ -114,7 +114,7 @@ local monster_dungeon_armor = { [1007]={ ["monster_base"]=20012, ["is_boss"]=2, - ["hp"]=521500000, + ["hp"]=494490000, ["atk"]=2740000, ["atk_times"]=4, ["hurt_skill"]={ @@ -129,7 +129,7 @@ local monster_dungeon_armor = { }, [1107]={ ["monster_base"]=10017, - ["hp"]=80820000, + ["hp"]=76340000, ["atk"]=1760000, ["atk_times"]=3, ["hurt_skill"]={ @@ -141,7 +141,7 @@ local monster_dungeon_armor = { }, [1207]={ ["monster_base"]=10009, - ["hp"]=120870000, + ["hp"]=113830000, ["atk"]=1970000, ["atk_times"]=3, ["hurt_skill"]={ @@ -153,7 +153,7 @@ local monster_dungeon_armor = { }, [1307]={ ["monster_base"]=10019, - ["hp"]=151840000, + ["hp"]=142400000, ["atk"]=2050000, ["atk_times"]=3, ["hurt_skill"]={ @@ -165,7 +165,7 @@ local monster_dungeon_armor = { }, [1407]={ ["monster_base"]=10039, - ["hp"]=159840000, + ["hp"]=150430000, ["atk"]=2450000, ["atk_times"]=3, ["hurt_skill"]={ @@ -178,7 +178,7 @@ local monster_dungeon_armor = { [1507]={ ["monster_base"]=20015, ["is_boss"]=1, - ["hp"]=327720000, + ["hp"]=290940000, ["atk"]=2640000, ["atk_times"]=4, ["hurt_skill"]={ @@ -196,7 +196,7 @@ local monster_dungeon_armor = { }, [1607]={ ["monster_base"]=10048, - ["hp"]=197100000, + ["hp"]=185400000, ["atk"]=2550000, ["atk_times"]=3, ["hurt_skill"]={ @@ -208,7 +208,7 @@ local monster_dungeon_armor = { }, [1707]={ ["monster_base"]=10017, - ["hp"]=228520000, + ["hp"]=203090000, ["atk"]=2640000, ["atk_times"]=3, ["hurt_skill"]={ @@ -220,7 +220,7 @@ local monster_dungeon_armor = { }, [1807]={ ["monster_base"]=10009, - ["hp"]=268050000, + ["hp"]=237710000, ["atk"]=2600000, ["atk_times"]=3, ["hurt_skill"]={ @@ -232,7 +232,7 @@ local monster_dungeon_armor = { }, [1907]={ ["monster_base"]=10039, - ["hp"]=307200000, + ["hp"]=273290000, ["atk"]=2740000, ["atk_times"]=3, ["hurt_skill"]={ @@ -245,7 +245,7 @@ local monster_dungeon_armor = { [2007]={ ["monster_base"]=20011, ["is_boss"]=2, - ["hp"]=521500000, + ["hp"]=494490000, ["atk"]=2740000, ["atk_times"]=4, ["hurt_skill"]={ @@ -260,7 +260,7 @@ local monster_dungeon_armor = { }, [2107]={ ["monster_base"]=10046, - ["hp"]=80820000, + ["hp"]=76340000, ["atk"]=1760000, ["atk_times"]=3, ["hurt_skill"]={ @@ -272,7 +272,7 @@ local monster_dungeon_armor = { }, [2207]={ ["monster_base"]=10005, - ["hp"]=120870000, + ["hp"]=113830000, ["atk"]=1970000, ["atk_times"]=2, ["hurt_skill"]={ @@ -284,7 +284,7 @@ local monster_dungeon_armor = { }, [2307]={ ["monster_base"]=10044, - ["hp"]=151840000, + ["hp"]=142400000, ["atk"]=2050000, ["atk_times"]=3, ["hurt_skill"]={ @@ -296,7 +296,7 @@ local monster_dungeon_armor = { }, [2407]={ ["monster_base"]=10052, - ["hp"]=159840000, + ["hp"]=150430000, ["atk"]=2450000, ["atk_times"]=3, ["hurt_skill"]={ @@ -309,7 +309,7 @@ local monster_dungeon_armor = { [2507]={ ["monster_base"]=20014, ["is_boss"]=1, - ["hp"]=327720000, + ["hp"]=290940000, ["atk"]=2640000, ["atk_times"]=4, ["hurt_skill"]={ @@ -324,7 +324,7 @@ local monster_dungeon_armor = { }, [2607]={ ["monster_base"]=10060, - ["hp"]=197100000, + ["hp"]=185400000, ["atk"]=2550000, ["atk_times"]=3, ["hurt_skill"]={ @@ -336,7 +336,7 @@ local monster_dungeon_armor = { }, [2707]={ ["monster_base"]=10051, - ["hp"]=228520000, + ["hp"]=203090000, ["atk"]=2640000, ["atk_times"]=3, ["hurt_skill"]={ @@ -348,7 +348,7 @@ local monster_dungeon_armor = { }, [2807]={ ["monster_base"]=10036, - ["hp"]=268050000, + ["hp"]=237710000, ["atk"]=2600000, ["atk_times"]=3, ["hurt_skill"]={ @@ -360,7 +360,7 @@ local monster_dungeon_armor = { }, [2907]={ ["monster_base"]=10029, - ["hp"]=307200000, + ["hp"]=273290000, ["atk"]=2740000, ["atk_times"]=3, ["hurt_skill"]={ @@ -373,7 +373,7 @@ local monster_dungeon_armor = { [3007]={ ["monster_base"]=20029, ["is_boss"]=2, - ["hp"]=521500000, + ["hp"]=494490000, ["atk"]=2740000, ["atk_times"]=4, ["hurt_skill"]={ @@ -388,7 +388,7 @@ local monster_dungeon_armor = { }, [3107]={ ["monster_base"]=10029, - ["hp"]=80820000, + ["hp"]=76340000, ["atk"]=1760000, ["atk_times"]=3, ["hurt_skill"]={ @@ -400,7 +400,7 @@ local monster_dungeon_armor = { }, [3207]={ ["monster_base"]=10061, - ["hp"]=120870000, + ["hp"]=113830000, ["atk"]=1970000, ["atk_times"]=3, ["hurt_skill"]={ @@ -412,7 +412,7 @@ local monster_dungeon_armor = { }, [3307]={ ["monster_base"]=10041, - ["hp"]=151840000, + ["hp"]=142400000, ["atk"]=2050000, ["atk_times"]=3, ["hurt_skill"]={ @@ -424,7 +424,7 @@ local monster_dungeon_armor = { }, [3407]={ ["monster_base"]=10020, - ["hp"]=159840000, + ["hp"]=150430000, ["atk"]=2450000, ["atk_times"]=3, ["hurt_skill"]={ @@ -437,7 +437,7 @@ local monster_dungeon_armor = { [3507]={ ["monster_base"]=20002, ["is_boss"]=1, - ["hp"]=327720000, + ["hp"]=290940000, ["atk"]=2640000, ["atk_times"]=4, ["hurt_skill"]={ @@ -452,7 +452,7 @@ local monster_dungeon_armor = { }, [3607]={ ["monster_base"]=10035, - ["hp"]=197100000, + ["hp"]=185400000, ["atk"]=2550000, ["atk_times"]=3, ["hurt_skill"]={ @@ -464,7 +464,7 @@ local monster_dungeon_armor = { }, [3707]={ ["monster_base"]=10018, - ["hp"]=228520000, + ["hp"]=203090000, ["atk"]=2640000, ["atk_times"]=3, ["hurt_skill"]={ @@ -476,7 +476,7 @@ local monster_dungeon_armor = { }, [3807]={ ["monster_base"]=10049, - ["hp"]=268050000, + ["hp"]=237710000, ["atk"]=2600000, ["atk_times"]=3, ["hurt_skill"]={ @@ -488,7 +488,7 @@ local monster_dungeon_armor = { }, [3907]={ ["monster_base"]=10014, - ["hp"]=307200000, + ["hp"]=273290000, ["atk"]=2740000, ["atk_times"]=3, ["hurt_skill"]={ @@ -501,7 +501,7 @@ local monster_dungeon_armor = { [4007]={ ["monster_base"]=20023, ["is_boss"]=2, - ["hp"]=521500000, + ["hp"]=494490000, ["atk"]=2740000, ["atk_times"]=4, ["hurt_skill"]={ @@ -519,7 +519,7 @@ local monster_dungeon_armor = { }, [4107]={ ["monster_base"]=10004, - ["hp"]=80820000, + ["hp"]=76340000, ["atk"]=1760000, ["atk_times"]=2, ["hurt_skill"]={ @@ -531,7 +531,7 @@ local monster_dungeon_armor = { }, [4207]={ ["monster_base"]=10055, - ["hp"]=120870000, + ["hp"]=113830000, ["atk"]=1970000, ["atk_times"]=3, ["hurt_skill"]={ @@ -543,7 +543,7 @@ local monster_dungeon_armor = { }, [4307]={ ["monster_base"]=10010, - ["hp"]=151840000, + ["hp"]=142400000, ["atk"]=2050000, ["atk_times"]=3, ["hurt_skill"]={ @@ -555,7 +555,7 @@ local monster_dungeon_armor = { }, [4407]={ ["monster_base"]=10015, - ["hp"]=159840000, + ["hp"]=150430000, ["atk"]=2450000, ["atk_times"]=3, ["hurt_skill"]={ @@ -568,7 +568,7 @@ local monster_dungeon_armor = { [4507]={ ["monster_base"]=20007, ["is_boss"]=1, - ["hp"]=327720000, + ["hp"]=290940000, ["atk"]=2640000, ["atk_times"]=4, ["hurt_skill"]={ @@ -586,7 +586,7 @@ local monster_dungeon_armor = { }, [4607]={ ["monster_base"]=10031, - ["hp"]=197100000, + ["hp"]=185400000, ["atk"]=2550000, ["atk_times"]=3, ["hurt_skill"]={ @@ -598,7 +598,7 @@ local monster_dungeon_armor = { }, [4707]={ ["monster_base"]=10038, - ["hp"]=228520000, + ["hp"]=203090000, ["atk"]=2640000, ["atk_times"]=3, ["hurt_skill"]={ @@ -610,7 +610,7 @@ local monster_dungeon_armor = { }, [4807]={ ["monster_base"]=10025, - ["hp"]=268050000, + ["hp"]=237710000, ["atk"]=2600000, ["atk_times"]=3, ["hurt_skill"]={ @@ -622,7 +622,7 @@ local monster_dungeon_armor = { }, [4907]={ ["monster_base"]=10007, - ["hp"]=307200000, + ["hp"]=273290000, ["atk"]=2740000, ["atk_times"]=2, ["hurt_skill"]={ @@ -635,7 +635,7 @@ local monster_dungeon_armor = { [5007]={ ["monster_base"]=20025, ["is_boss"]=2, - ["hp"]=521500000, + ["hp"]=494490000, ["atk"]=2740000, ["atk_times"]=4, ["hurt_skill"]={ @@ -653,7 +653,7 @@ local monster_dungeon_armor = { }, [5107]={ ["monster_base"]=10049, - ["hp"]=80820000, + ["hp"]=76340000, ["atk"]=1760000, ["atk_times"]=3, ["hurt_skill"]={ @@ -665,7 +665,7 @@ local monster_dungeon_armor = { }, [5207]={ ["monster_base"]=10008, - ["hp"]=120870000, + ["hp"]=113830000, ["atk"]=1970000, ["atk_times"]=2, ["hurt_skill"]={ @@ -677,7 +677,7 @@ local monster_dungeon_armor = { }, [5307]={ ["monster_base"]=10050, - ["hp"]=151840000, + ["hp"]=142400000, ["atk"]=2050000, ["atk_times"]=3, ["hurt_skill"]={ @@ -689,7 +689,7 @@ local monster_dungeon_armor = { }, [5407]={ ["monster_base"]=10051, - ["hp"]=159840000, + ["hp"]=150430000, ["atk"]=2450000, ["atk_times"]=3, ["hurt_skill"]={ @@ -702,7 +702,7 @@ local monster_dungeon_armor = { [5507]={ ["monster_base"]=20001, ["is_boss"]=1, - ["hp"]=327720000, + ["hp"]=290940000, ["atk"]=2640000, ["atk_times"]=4, ["hurt_skill"]={ @@ -717,7 +717,7 @@ local monster_dungeon_armor = { }, [5607]={ ["monster_base"]=10036, - ["hp"]=197100000, + ["hp"]=185400000, ["atk"]=2550000, ["atk_times"]=3, ["hurt_skill"]={ @@ -729,7 +729,7 @@ local monster_dungeon_armor = { }, [5707]={ ["monster_base"]=10030, - ["hp"]=228520000, + ["hp"]=203090000, ["atk"]=2640000, ["atk_times"]=3, ["hurt_skill"]={ @@ -741,7 +741,7 @@ local monster_dungeon_armor = { }, [5807]={ ["monster_base"]=10055, - ["hp"]=268050000, + ["hp"]=237710000, ["atk"]=2600000, ["atk_times"]=3, ["hurt_skill"]={ @@ -753,7 +753,7 @@ local monster_dungeon_armor = { }, [5907]={ ["monster_base"]=10062, - ["hp"]=307200000, + ["hp"]=273290000, ["atk"]=2740000, ["atk_times"]=3, ["hurt_skill"]={ @@ -766,7 +766,7 @@ local monster_dungeon_armor = { [6007]={ ["monster_base"]=20005, ["is_boss"]=2, - ["hp"]=521500000, + ["hp"]=494490000, ["atk"]=2740000, ["atk_times"]=4, ["hurt_skill"]={ @@ -784,8 +784,8 @@ local monster_dungeon_armor = { }, [6107]={ ["monster_base"]=10054, - ["hp"]=90100000, - ["atk"]=1970000, + ["hp"]=97940000, + ["atk"]=1910000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -796,8 +796,8 @@ local monster_dungeon_armor = { }, [6207]={ ["monster_base"]=10007, - ["hp"]=134930000, - ["atk"]=2210000, + ["hp"]=145130000, + ["atk"]=2150000, ["atk_times"]=2, ["hurt_skill"]={ 20019, @@ -808,8 +808,8 @@ local monster_dungeon_armor = { }, [6307]={ ["monster_base"]=10035, - ["hp"]=169110000, - ["atk"]=2290000, + ["hp"]=181680000, + ["atk"]=2220000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -820,8 +820,8 @@ local monster_dungeon_armor = { }, [6407]={ ["monster_base"]=10037, - ["hp"]=177990000, - ["atk"]=2740000, + ["hp"]=191500000, + ["atk"]=2660000, ["atk_times"]=3, ["hurt_skill"]={ 20106, @@ -833,8 +833,8 @@ local monster_dungeon_armor = { [6507]={ ["monster_base"]=20011, ["is_boss"]=1, - ["hp"]=366790000, - ["atk"]=2950000, + ["hp"]=356570000, + ["atk"]=2870000, ["atk_times"]=4, ["hurt_skill"]={ 30031, @@ -848,8 +848,8 @@ local monster_dungeon_armor = { }, [6607]={ ["monster_base"]=10004, - ["hp"]=219850000, - ["atk"]=2860000, + ["hp"]=236460000, + ["atk"]=2770000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -860,8 +860,8 @@ local monster_dungeon_armor = { }, [6707]={ ["monster_base"]=10060, - ["hp"]=254340000, - ["atk"]=2950000, + ["hp"]=248810000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20175, @@ -872,8 +872,8 @@ local monster_dungeon_armor = { }, [6807]={ ["monster_base"]=10036, - ["hp"]=298960000, - ["atk"]=2910000, + ["hp"]=291690000, + ["atk"]=2820000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -884,8 +884,8 @@ local monster_dungeon_armor = { }, [6907]={ ["monster_base"]=10057, - ["hp"]=342680000, - ["atk"]=3070000, + ["hp"]=335220000, + ["atk"]=2980000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -897,8 +897,8 @@ local monster_dungeon_armor = { [7007]={ ["monster_base"]=20017, ["is_boss"]=2, - ["hp"]=580750000, - ["atk"]=3070000, + ["hp"]=566760000, + ["atk"]=2980000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -912,8 +912,8 @@ local monster_dungeon_armor = { }, [7107]={ ["monster_base"]=10045, - ["hp"]=90100000, - ["atk"]=1970000, + ["hp"]=97940000, + ["atk"]=1910000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -924,8 +924,8 @@ local monster_dungeon_armor = { }, [7207]={ ["monster_base"]=10015, - ["hp"]=134930000, - ["atk"]=2210000, + ["hp"]=145130000, + ["atk"]=2150000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -936,8 +936,8 @@ local monster_dungeon_armor = { }, [7307]={ ["monster_base"]=10025, - ["hp"]=169110000, - ["atk"]=2290000, + ["hp"]=181680000, + ["atk"]=2220000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -948,8 +948,8 @@ local monster_dungeon_armor = { }, [7407]={ ["monster_base"]=10035, - ["hp"]=177990000, - ["atk"]=2740000, + ["hp"]=191500000, + ["atk"]=2660000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -961,8 +961,8 @@ local monster_dungeon_armor = { [7507]={ ["monster_base"]=20014, ["is_boss"]=1, - ["hp"]=366790000, - ["atk"]=2950000, + ["hp"]=356570000, + ["atk"]=2870000, ["atk_times"]=4, ["hurt_skill"]={ 30040, @@ -976,8 +976,8 @@ local monster_dungeon_armor = { }, [7607]={ ["monster_base"]=10040, - ["hp"]=219850000, - ["atk"]=2860000, + ["hp"]=236460000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -988,8 +988,8 @@ local monster_dungeon_armor = { }, [7707]={ ["monster_base"]=10002, - ["hp"]=254340000, - ["atk"]=2950000, + ["hp"]=248810000, + ["atk"]=2870000, ["atk_times"]=2, ["hurt_skill"]={ 20004, @@ -1000,8 +1000,8 @@ local monster_dungeon_armor = { }, [7807]={ ["monster_base"]=10047, - ["hp"]=298960000, - ["atk"]=2910000, + ["hp"]=291690000, + ["atk"]=2820000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -1012,8 +1012,8 @@ local monster_dungeon_armor = { }, [7907]={ ["monster_base"]=10034, - ["hp"]=342680000, - ["atk"]=3070000, + ["hp"]=335220000, + ["atk"]=2980000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -1025,8 +1025,8 @@ local monster_dungeon_armor = { [8007]={ ["monster_base"]=30014, ["is_boss"]=2, - ["hp"]=580750000, - ["atk"]=3070000, + ["hp"]=566760000, + ["atk"]=2980000, ["atk_times"]=4, ["hurt_skill"]={ 40009, @@ -1041,8 +1041,8 @@ local monster_dungeon_armor = { }, [8107]={ ["monster_base"]=10005, - ["hp"]=90100000, - ["atk"]=1970000, + ["hp"]=97940000, + ["atk"]=1910000, ["atk_times"]=2, ["hurt_skill"]={ 20013, @@ -1053,8 +1053,8 @@ local monster_dungeon_armor = { }, [8207]={ ["monster_base"]=10037, - ["hp"]=134930000, - ["atk"]=2210000, + ["hp"]=145130000, + ["atk"]=2150000, ["atk_times"]=3, ["hurt_skill"]={ 20106, @@ -1065,8 +1065,8 @@ local monster_dungeon_armor = { }, [8307]={ ["monster_base"]=10022, - ["hp"]=169110000, - ["atk"]=2290000, + ["hp"]=181680000, + ["atk"]=2220000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -1077,8 +1077,8 @@ local monster_dungeon_armor = { }, [8407]={ ["monster_base"]=10012, - ["hp"]=177990000, - ["atk"]=2740000, + ["hp"]=191500000, + ["atk"]=2660000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -1090,8 +1090,8 @@ local monster_dungeon_armor = { [8507]={ ["monster_base"]=20008, ["is_boss"]=1, - ["hp"]=366790000, - ["atk"]=2950000, + ["hp"]=356570000, + ["atk"]=2870000, ["atk_times"]=4, ["hurt_skill"]={ 30022, @@ -1108,8 +1108,8 @@ local monster_dungeon_armor = { }, [8607]={ ["monster_base"]=10029, - ["hp"]=219850000, - ["atk"]=2860000, + ["hp"]=236460000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -1120,8 +1120,8 @@ local monster_dungeon_armor = { }, [8707]={ ["monster_base"]=10030, - ["hp"]=254340000, - ["atk"]=2950000, + ["hp"]=248810000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -1132,8 +1132,8 @@ local monster_dungeon_armor = { }, [8807]={ ["monster_base"]=10021, - ["hp"]=298960000, - ["atk"]=2910000, + ["hp"]=291690000, + ["atk"]=2820000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -1144,8 +1144,8 @@ local monster_dungeon_armor = { }, [8907]={ ["monster_base"]=10024, - ["hp"]=342680000, - ["atk"]=3070000, + ["hp"]=335220000, + ["atk"]=2980000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -1157,8 +1157,8 @@ local monster_dungeon_armor = { [9007]={ ["monster_base"]=30012, ["is_boss"]=2, - ["hp"]=580750000, - ["atk"]=3070000, + ["hp"]=566760000, + ["atk"]=2980000, ["atk_times"]=4, ["hurt_skill"]={ 40005, @@ -1174,8 +1174,8 @@ local monster_dungeon_armor = { }, [9107]={ ["monster_base"]=10039, - ["hp"]=90100000, - ["atk"]=1970000, + ["hp"]=97940000, + ["atk"]=1910000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -1186,8 +1186,8 @@ local monster_dungeon_armor = { }, [9207]={ ["monster_base"]=10061, - ["hp"]=134930000, - ["atk"]=2210000, + ["hp"]=145130000, + ["atk"]=2150000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -1198,8 +1198,8 @@ local monster_dungeon_armor = { }, [9307]={ ["monster_base"]=10048, - ["hp"]=169110000, - ["atk"]=2290000, + ["hp"]=181680000, + ["atk"]=2220000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -1210,8 +1210,8 @@ local monster_dungeon_armor = { }, [9407]={ ["monster_base"]=10027, - ["hp"]=177990000, - ["atk"]=2740000, + ["hp"]=191500000, + ["atk"]=2660000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -1223,8 +1223,8 @@ local monster_dungeon_armor = { [9507]={ ["monster_base"]=20006, ["is_boss"]=1, - ["hp"]=366790000, - ["atk"]=2950000, + ["hp"]=356570000, + ["atk"]=2870000, ["atk_times"]=4, ["hurt_skill"]={ 30016, @@ -1241,8 +1241,8 @@ local monster_dungeon_armor = { }, [9607]={ ["monster_base"]=10031, - ["hp"]=219850000, - ["atk"]=2860000, + ["hp"]=236460000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -1253,8 +1253,8 @@ local monster_dungeon_armor = { }, [9707]={ ["monster_base"]=10041, - ["hp"]=254340000, - ["atk"]=2950000, + ["hp"]=248810000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -1265,8 +1265,8 @@ local monster_dungeon_armor = { }, [9807]={ ["monster_base"]=10040, - ["hp"]=298960000, - ["atk"]=2910000, + ["hp"]=291690000, + ["atk"]=2820000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -1277,8 +1277,8 @@ local monster_dungeon_armor = { }, [9907]={ ["monster_base"]=10017, - ["hp"]=342680000, - ["atk"]=3070000, + ["hp"]=335220000, + ["atk"]=2980000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -1290,8 +1290,8 @@ local monster_dungeon_armor = { [10007]={ ["monster_base"]=20021, ["is_boss"]=2, - ["hp"]=580750000, - ["atk"]=3070000, + ["hp"]=566760000, + ["atk"]=2980000, ["atk_times"]=4, ["hurt_skill"]={ 30061, @@ -1309,8 +1309,8 @@ local monster_dungeon_armor = { }, [10107]={ ["monster_base"]=10039, - ["hp"]=90100000, - ["atk"]=1970000, + ["hp"]=97940000, + ["atk"]=1910000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -1321,8 +1321,8 @@ local monster_dungeon_armor = { }, [10207]={ ["monster_base"]=10053, - ["hp"]=134930000, - ["atk"]=2210000, + ["hp"]=145130000, + ["atk"]=2150000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -1333,8 +1333,8 @@ local monster_dungeon_armor = { }, [10307]={ ["monster_base"]=10002, - ["hp"]=169110000, - ["atk"]=2290000, + ["hp"]=181680000, + ["atk"]=2220000, ["atk_times"]=2, ["hurt_skill"]={ 20004, @@ -1345,8 +1345,8 @@ local monster_dungeon_armor = { }, [10407]={ ["monster_base"]=10063, - ["hp"]=177990000, - ["atk"]=2740000, + ["hp"]=191500000, + ["atk"]=2660000, ["atk_times"]=3, ["hurt_skill"]={ 20184, @@ -1358,8 +1358,8 @@ local monster_dungeon_armor = { [10507]={ ["monster_base"]=20016, ["is_boss"]=1, - ["hp"]=366790000, - ["atk"]=2950000, + ["hp"]=356570000, + ["atk"]=2870000, ["atk_times"]=4, ["hurt_skill"]={ 30046, @@ -1377,8 +1377,8 @@ local monster_dungeon_armor = { }, [10607]={ ["monster_base"]=10061, - ["hp"]=219850000, - ["atk"]=2860000, + ["hp"]=236460000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -1389,8 +1389,8 @@ local monster_dungeon_armor = { }, [10707]={ ["monster_base"]=10050, - ["hp"]=254340000, - ["atk"]=2950000, + ["hp"]=248810000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -1401,8 +1401,8 @@ local monster_dungeon_armor = { }, [10807]={ ["monster_base"]=10033, - ["hp"]=298960000, - ["atk"]=2910000, + ["hp"]=291690000, + ["atk"]=2820000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -1413,8 +1413,8 @@ local monster_dungeon_armor = { }, [10907]={ ["monster_base"]=10057, - ["hp"]=342680000, - ["atk"]=3070000, + ["hp"]=335220000, + ["atk"]=2980000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -1426,8 +1426,8 @@ local monster_dungeon_armor = { [11007]={ ["monster_base"]=30020, ["is_boss"]=2, - ["hp"]=580750000, - ["atk"]=3070000, + ["hp"]=566760000, + ["atk"]=2980000, ["atk_times"]=4, ["hurt_skill"]={ 40033, @@ -1442,8 +1442,8 @@ local monster_dungeon_armor = { }, [11107]={ ["monster_base"]=10034, - ["hp"]=90100000, - ["atk"]=1970000, + ["hp"]=97940000, + ["atk"]=1910000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -1454,8 +1454,8 @@ local monster_dungeon_armor = { }, [11207]={ ["monster_base"]=10056, - ["hp"]=134930000, - ["atk"]=2210000, + ["hp"]=145130000, + ["atk"]=2150000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -1466,8 +1466,8 @@ local monster_dungeon_armor = { }, [11307]={ ["monster_base"]=10037, - ["hp"]=169110000, - ["atk"]=2290000, + ["hp"]=181680000, + ["atk"]=2220000, ["atk_times"]=3, ["hurt_skill"]={ 20106, @@ -1478,8 +1478,8 @@ local monster_dungeon_armor = { }, [11407]={ ["monster_base"]=10042, - ["hp"]=177990000, - ["atk"]=2740000, + ["hp"]=191500000, + ["atk"]=2660000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -1491,8 +1491,8 @@ local monster_dungeon_armor = { [11507]={ ["monster_base"]=30010, ["is_boss"]=1, - ["hp"]=366790000, - ["atk"]=2950000, + ["hp"]=356570000, + ["atk"]=2870000, ["atk_times"]=4, ["hurt_skill"]={ 40013, @@ -1507,8 +1507,8 @@ local monster_dungeon_armor = { }, [11607]={ ["monster_base"]=10062, - ["hp"]=219850000, - ["atk"]=2860000, + ["hp"]=236460000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -1519,8 +1519,8 @@ local monster_dungeon_armor = { }, [11707]={ ["monster_base"]=10042, - ["hp"]=254340000, - ["atk"]=2950000, + ["hp"]=248810000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -1531,8 +1531,8 @@ local monster_dungeon_armor = { }, [11807]={ ["monster_base"]=10008, - ["hp"]=298960000, - ["atk"]=2910000, + ["hp"]=291690000, + ["atk"]=2820000, ["atk_times"]=2, ["hurt_skill"]={ 20022, @@ -1543,8 +1543,8 @@ local monster_dungeon_armor = { }, [11907]={ ["monster_base"]=10023, - ["hp"]=342680000, - ["atk"]=3070000, + ["hp"]=335220000, + ["atk"]=2980000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -1556,8 +1556,8 @@ local monster_dungeon_armor = { [12007]={ ["monster_base"]=20003, ["is_boss"]=2, - ["hp"]=580750000, - ["atk"]=3070000, + ["hp"]=566760000, + ["atk"]=2980000, ["atk_times"]=4, ["hurt_skill"]={ 30007, @@ -1574,8 +1574,8 @@ local monster_dungeon_armor = { }, [12107]={ ["monster_base"]=10062, - ["hp"]=119130000, - ["atk"]=2650000, + ["hp"]=132190000, + ["atk"]=2500000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -1586,8 +1586,8 @@ local monster_dungeon_armor = { }, [12207]={ ["monster_base"]=10008, - ["hp"]=178560000, - ["atk"]=2940000, + ["hp"]=194920000, + ["atk"]=2770000, ["atk_times"]=2, ["hurt_skill"]={ 20022, @@ -1598,8 +1598,8 @@ local monster_dungeon_armor = { }, [12307]={ ["monster_base"]=10065, - ["hp"]=223610000, - ["atk"]=3080000, + ["hp"]=243300000, + ["atk"]=2900000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -1610,8 +1610,8 @@ local monster_dungeon_armor = { }, [12407]={ ["monster_base"]=10013, - ["hp"]=235300000, - ["atk"]=3660000, + ["hp"]=255540000, + ["atk"]=3450000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -1623,8 +1623,8 @@ local monster_dungeon_armor = { [12507]={ ["monster_base"]=20014, ["is_boss"]=1, - ["hp"]=484620000, - ["atk"]=3910000, + ["hp"]=475340000, + ["atk"]=3690000, ["atk_times"]=4, ["hurt_skill"]={ 30040, @@ -1638,8 +1638,8 @@ local monster_dungeon_armor = { }, [12607]={ ["monster_base"]=10020, - ["hp"]=290650000, - ["atk"]=3800000, + ["hp"]=316140000, + ["atk"]=3590000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -1650,8 +1650,8 @@ local monster_dungeon_armor = { }, [12707]={ ["monster_base"]=10047, - ["hp"]=336630000, - ["atk"]=3930000, + ["hp"]=332120000, + ["atk"]=3710000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -1662,8 +1662,8 @@ local monster_dungeon_armor = { }, [12807]={ ["monster_base"]=10065, - ["hp"]=395270000, - ["atk"]=3880000, + ["hp"]=389430000, + ["atk"]=3660000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -1674,8 +1674,8 @@ local monster_dungeon_armor = { }, [12907]={ ["monster_base"]=10063, - ["hp"]=452990000, - ["atk"]=4100000, + ["hp"]=447180000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20184, @@ -1687,8 +1687,8 @@ local monster_dungeon_armor = { [13007]={ ["monster_base"]=20005, ["is_boss"]=2, - ["hp"]=767450000, - ["atk"]=4100000, + ["hp"]=754850000, + ["atk"]=3870000, ["atk_times"]=4, ["hurt_skill"]={ 30013, @@ -1705,8 +1705,8 @@ local monster_dungeon_armor = { }, [13107]={ ["monster_base"]=10033, - ["hp"]=119130000, - ["atk"]=2650000, + ["hp"]=132190000, + ["atk"]=2500000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -1717,8 +1717,8 @@ local monster_dungeon_armor = { }, [13207]={ ["monster_base"]=10020, - ["hp"]=178560000, - ["atk"]=2940000, + ["hp"]=194920000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -1729,8 +1729,8 @@ local monster_dungeon_armor = { }, [13307]={ ["monster_base"]=10057, - ["hp"]=223610000, - ["atk"]=3080000, + ["hp"]=243300000, + ["atk"]=2900000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -1741,8 +1741,8 @@ local monster_dungeon_armor = { }, [13407]={ ["monster_base"]=10006, - ["hp"]=235300000, - ["atk"]=3660000, + ["hp"]=255540000, + ["atk"]=3450000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -1754,8 +1754,8 @@ local monster_dungeon_armor = { [13507]={ ["monster_base"]=20015, ["is_boss"]=1, - ["hp"]=484620000, - ["atk"]=3910000, + ["hp"]=475340000, + ["atk"]=3690000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -1772,8 +1772,8 @@ local monster_dungeon_armor = { }, [13607]={ ["monster_base"]=10048, - ["hp"]=290650000, - ["atk"]=3800000, + ["hp"]=316140000, + ["atk"]=3590000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -1784,8 +1784,8 @@ local monster_dungeon_armor = { }, [13707]={ ["monster_base"]=10020, - ["hp"]=336630000, - ["atk"]=3930000, + ["hp"]=332120000, + ["atk"]=3710000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -1796,8 +1796,8 @@ local monster_dungeon_armor = { }, [13807]={ ["monster_base"]=10041, - ["hp"]=395270000, - ["atk"]=3880000, + ["hp"]=389430000, + ["atk"]=3660000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -1808,8 +1808,8 @@ local monster_dungeon_armor = { }, [13907]={ ["monster_base"]=10006, - ["hp"]=452990000, - ["atk"]=4100000, + ["hp"]=447180000, + ["atk"]=3870000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -1821,8 +1821,8 @@ local monster_dungeon_armor = { [14007]={ ["monster_base"]=30012, ["is_boss"]=2, - ["hp"]=767450000, - ["atk"]=4100000, + ["hp"]=754850000, + ["atk"]=3870000, ["atk_times"]=4, ["hurt_skill"]={ 40005, @@ -1838,8 +1838,8 @@ local monster_dungeon_armor = { }, [14107]={ ["monster_base"]=10001, - ["hp"]=119130000, - ["atk"]=2650000, + ["hp"]=132190000, + ["atk"]=2500000, ["atk_times"]=2, ["hurt_skill"]={ 20001, @@ -1850,8 +1850,8 @@ local monster_dungeon_armor = { }, [14207]={ ["monster_base"]=10016, - ["hp"]=178560000, - ["atk"]=2940000, + ["hp"]=194920000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -1862,8 +1862,8 @@ local monster_dungeon_armor = { }, [14307]={ ["monster_base"]=10041, - ["hp"]=223610000, - ["atk"]=3080000, + ["hp"]=243300000, + ["atk"]=2900000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -1874,8 +1874,8 @@ local monster_dungeon_armor = { }, [14407]={ ["monster_base"]=10053, - ["hp"]=235300000, - ["atk"]=3660000, + ["hp"]=255540000, + ["atk"]=3450000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -1887,8 +1887,8 @@ local monster_dungeon_armor = { [14507]={ ["monster_base"]=20002, ["is_boss"]=1, - ["hp"]=484620000, - ["atk"]=3910000, + ["hp"]=475340000, + ["atk"]=3690000, ["atk_times"]=4, ["hurt_skill"]={ 30004, @@ -1902,8 +1902,8 @@ local monster_dungeon_armor = { }, [14607]={ ["monster_base"]=10054, - ["hp"]=290650000, - ["atk"]=3800000, + ["hp"]=316140000, + ["atk"]=3590000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -1914,8 +1914,8 @@ local monster_dungeon_armor = { }, [14707]={ ["monster_base"]=10018, - ["hp"]=336630000, - ["atk"]=3930000, + ["hp"]=332120000, + ["atk"]=3710000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -1926,8 +1926,8 @@ local monster_dungeon_armor = { }, [14807]={ ["monster_base"]=10050, - ["hp"]=395270000, - ["atk"]=3880000, + ["hp"]=389430000, + ["atk"]=3660000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -1938,8 +1938,8 @@ local monster_dungeon_armor = { }, [14907]={ ["monster_base"]=10041, - ["hp"]=452990000, - ["atk"]=4100000, + ["hp"]=447180000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -1951,8 +1951,8 @@ local monster_dungeon_armor = { [15007]={ ["monster_base"]=20017, ["is_boss"]=2, - ["hp"]=767450000, - ["atk"]=4100000, + ["hp"]=754850000, + ["atk"]=3870000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -1966,8 +1966,8 @@ local monster_dungeon_armor = { }, [15107]={ ["monster_base"]=10051, - ["hp"]=119130000, - ["atk"]=2650000, + ["hp"]=132190000, + ["atk"]=2500000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -1978,8 +1978,8 @@ local monster_dungeon_armor = { }, [15207]={ ["monster_base"]=10018, - ["hp"]=178560000, - ["atk"]=2940000, + ["hp"]=194920000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -1990,8 +1990,8 @@ local monster_dungeon_armor = { }, [15307]={ ["monster_base"]=10040, - ["hp"]=223610000, - ["atk"]=3080000, + ["hp"]=243300000, + ["atk"]=2900000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -2002,8 +2002,8 @@ local monster_dungeon_armor = { }, [15407]={ ["monster_base"]=10032, - ["hp"]=235300000, - ["atk"]=3660000, + ["hp"]=255540000, + ["atk"]=3450000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -2015,8 +2015,8 @@ local monster_dungeon_armor = { [15507]={ ["monster_base"]=20001, ["is_boss"]=1, - ["hp"]=484620000, - ["atk"]=3910000, + ["hp"]=475340000, + ["atk"]=3690000, ["atk_times"]=4, ["hurt_skill"]={ 30001, @@ -2030,8 +2030,8 @@ local monster_dungeon_armor = { }, [15607]={ ["monster_base"]=10041, - ["hp"]=290650000, - ["atk"]=3800000, + ["hp"]=316140000, + ["atk"]=3590000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -2042,8 +2042,8 @@ local monster_dungeon_armor = { }, [15707]={ ["monster_base"]=10053, - ["hp"]=336630000, - ["atk"]=3930000, + ["hp"]=332120000, + ["atk"]=3710000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -2054,8 +2054,8 @@ local monster_dungeon_armor = { }, [15807]={ ["monster_base"]=10024, - ["hp"]=395270000, - ["atk"]=3880000, + ["hp"]=389430000, + ["atk"]=3660000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -2066,8 +2066,8 @@ local monster_dungeon_armor = { }, [15907]={ ["monster_base"]=10038, - ["hp"]=452990000, - ["atk"]=4100000, + ["hp"]=447180000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -2079,8 +2079,8 @@ local monster_dungeon_armor = { [16007]={ ["monster_base"]=20016, ["is_boss"]=2, - ["hp"]=767450000, - ["atk"]=4100000, + ["hp"]=754850000, + ["atk"]=3870000, ["atk_times"]=4, ["hurt_skill"]={ 30046, @@ -2098,8 +2098,8 @@ local monster_dungeon_armor = { }, [16107]={ ["monster_base"]=10016, - ["hp"]=119130000, - ["atk"]=2650000, + ["hp"]=132190000, + ["atk"]=2500000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -2110,8 +2110,8 @@ local monster_dungeon_armor = { }, [16207]={ ["monster_base"]=10006, - ["hp"]=178560000, - ["atk"]=2940000, + ["hp"]=194920000, + ["atk"]=2770000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -2122,8 +2122,8 @@ local monster_dungeon_armor = { }, [16307]={ ["monster_base"]=10021, - ["hp"]=223610000, - ["atk"]=3080000, + ["hp"]=243300000, + ["atk"]=2900000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -2134,8 +2134,8 @@ local monster_dungeon_armor = { }, [16407]={ ["monster_base"]=10018, - ["hp"]=235300000, - ["atk"]=3660000, + ["hp"]=255540000, + ["atk"]=3450000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -2147,8 +2147,8 @@ local monster_dungeon_armor = { [16507]={ ["monster_base"]=20010, ["is_boss"]=1, - ["hp"]=484620000, - ["atk"]=3910000, + ["hp"]=475340000, + ["atk"]=3690000, ["atk_times"]=4, ["hurt_skill"]={ 30028, @@ -2168,8 +2168,8 @@ local monster_dungeon_armor = { }, [16607]={ ["monster_base"]=10052, - ["hp"]=290650000, - ["atk"]=3800000, + ["hp"]=316140000, + ["atk"]=3590000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -2180,8 +2180,8 @@ local monster_dungeon_armor = { }, [16707]={ ["monster_base"]=10039, - ["hp"]=336630000, - ["atk"]=3930000, + ["hp"]=332120000, + ["atk"]=3710000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -2192,8 +2192,8 @@ local monster_dungeon_armor = { }, [16807]={ ["monster_base"]=10055, - ["hp"]=395270000, - ["atk"]=3880000, + ["hp"]=389430000, + ["atk"]=3660000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -2204,8 +2204,8 @@ local monster_dungeon_armor = { }, [16907]={ ["monster_base"]=10031, - ["hp"]=452990000, - ["atk"]=4100000, + ["hp"]=447180000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -2217,8 +2217,8 @@ local monster_dungeon_armor = { [17007]={ ["monster_base"]=30015, ["is_boss"]=2, - ["hp"]=767450000, - ["atk"]=4100000, + ["hp"]=754850000, + ["atk"]=3870000, ["atk_times"]=4, ["hurt_skill"]={ 40025, @@ -2233,8 +2233,8 @@ local monster_dungeon_armor = { }, [17107]={ ["monster_base"]=10027, - ["hp"]=119130000, - ["atk"]=2650000, + ["hp"]=132190000, + ["atk"]=2500000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -2245,8 +2245,8 @@ local monster_dungeon_armor = { }, [17207]={ ["monster_base"]=10040, - ["hp"]=178560000, - ["atk"]=2940000, + ["hp"]=194920000, + ["atk"]=2770000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -2257,8 +2257,8 @@ local monster_dungeon_armor = { }, [17307]={ ["monster_base"]=10013, - ["hp"]=223610000, - ["atk"]=3080000, + ["hp"]=243300000, + ["atk"]=2900000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -2269,8 +2269,8 @@ local monster_dungeon_armor = { }, [17407]={ ["monster_base"]=10053, - ["hp"]=235300000, - ["atk"]=3660000, + ["hp"]=255540000, + ["atk"]=3450000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -2282,8 +2282,8 @@ local monster_dungeon_armor = { [17507]={ ["monster_base"]=30020, ["is_boss"]=1, - ["hp"]=484620000, - ["atk"]=3910000, + ["hp"]=475340000, + ["atk"]=3690000, ["atk_times"]=4, ["hurt_skill"]={ 40033, @@ -2298,8 +2298,8 @@ local monster_dungeon_armor = { }, [17607]={ ["monster_base"]=10019, - ["hp"]=290650000, - ["atk"]=3800000, + ["hp"]=316140000, + ["atk"]=3590000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -2310,8 +2310,8 @@ local monster_dungeon_armor = { }, [17707]={ ["monster_base"]=10018, - ["hp"]=336630000, - ["atk"]=3930000, + ["hp"]=332120000, + ["atk"]=3710000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -2322,8 +2322,8 @@ local monster_dungeon_armor = { }, [17807]={ ["monster_base"]=10013, - ["hp"]=395270000, - ["atk"]=3880000, + ["hp"]=389430000, + ["atk"]=3660000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -2334,8 +2334,8 @@ local monster_dungeon_armor = { }, [17907]={ ["monster_base"]=10023, - ["hp"]=452990000, - ["atk"]=4100000, + ["hp"]=447180000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -2347,8 +2347,8 @@ local monster_dungeon_armor = { [18007]={ ["monster_base"]=20009, ["is_boss"]=2, - ["hp"]=767450000, - ["atk"]=4100000, + ["hp"]=754850000, + ["atk"]=3870000, ["atk_times"]=4, ["hurt_skill"]={ 30025, @@ -2366,8 +2366,8 @@ local monster_dungeon_armor = { }, [18107]={ ["monster_base"]=10043, - ["hp"]=132050000, - ["atk"]=2950000, + ["hp"]=143370000, + ["atk"]=2710000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -2378,8 +2378,8 @@ local monster_dungeon_armor = { }, [18207]={ ["monster_base"]=10055, - ["hp"]=197820000, - ["atk"]=3280000, + ["hp"]=210680000, + ["atk"]=3000000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -2390,8 +2390,8 @@ local monster_dungeon_armor = { }, [18307]={ ["monster_base"]=10026, - ["hp"]=247320000, - ["atk"]=3420000, + ["hp"]=263090000, + ["atk"]=3140000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -2402,8 +2402,8 @@ local monster_dungeon_armor = { }, [18407]={ ["monster_base"]=10023, - ["hp"]=260370000, - ["atk"]=4070000, + ["hp"]=276480000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -2415,8 +2415,8 @@ local monster_dungeon_armor = { [18507]={ ["monster_base"]=30009, ["is_boss"]=1, - ["hp"]=535960000, - ["atk"]=4330000, + ["hp"]=512890000, + ["atk"]=3980000, ["atk_times"]=4, ["hurt_skill"]={ 40021, @@ -2431,8 +2431,8 @@ local monster_dungeon_armor = { }, [18607]={ ["monster_base"]=10006, - ["hp"]=321500000, - ["atk"]=4220000, + ["hp"]=341420000, + ["atk"]=3870000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -2443,8 +2443,8 @@ local monster_dungeon_armor = { }, [18707]={ ["monster_base"]=10057, - ["hp"]=372390000, - ["atk"]=4360000, + ["hp"]=359010000, + ["atk"]=4000000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -2455,8 +2455,8 @@ local monster_dungeon_armor = { }, [18807]={ ["monster_base"]=10004, - ["hp"]=437410000, - ["atk"]=4310000, + ["hp"]=420800000, + ["atk"]=3960000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -2467,8 +2467,8 @@ local monster_dungeon_armor = { }, [18907]={ ["monster_base"]=10048, - ["hp"]=500850000, - ["atk"]=4550000, + ["hp"]=483170000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -2480,8 +2480,8 @@ local monster_dungeon_armor = { [19007]={ ["monster_base"]=20010, ["is_boss"]=2, - ["hp"]=848720000, - ["atk"]=4550000, + ["hp"]=814970000, + ["atk"]=4170000, ["atk_times"]=4, ["hurt_skill"]={ 30028, @@ -2501,8 +2501,8 @@ local monster_dungeon_armor = { }, [19107]={ ["monster_base"]=10010, - ["hp"]=132050000, - ["atk"]=2950000, + ["hp"]=143370000, + ["atk"]=2710000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -2513,8 +2513,8 @@ local monster_dungeon_armor = { }, [19207]={ ["monster_base"]=10057, - ["hp"]=197820000, - ["atk"]=3280000, + ["hp"]=210680000, + ["atk"]=3000000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -2525,8 +2525,8 @@ local monster_dungeon_armor = { }, [19307]={ ["monster_base"]=10045, - ["hp"]=247320000, - ["atk"]=3420000, + ["hp"]=263090000, + ["atk"]=3140000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -2537,8 +2537,8 @@ local monster_dungeon_armor = { }, [19407]={ ["monster_base"]=10032, - ["hp"]=260370000, - ["atk"]=4070000, + ["hp"]=276480000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -2550,8 +2550,8 @@ local monster_dungeon_armor = { [19507]={ ["monster_base"]=20017, ["is_boss"]=1, - ["hp"]=535960000, - ["atk"]=4330000, + ["hp"]=512890000, + ["atk"]=3980000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -2565,8 +2565,8 @@ local monster_dungeon_armor = { }, [19607]={ ["monster_base"]=10010, - ["hp"]=321500000, - ["atk"]=4220000, + ["hp"]=341420000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -2577,8 +2577,8 @@ local monster_dungeon_armor = { }, [19707]={ ["monster_base"]=10029, - ["hp"]=372390000, - ["atk"]=4360000, + ["hp"]=359010000, + ["atk"]=4000000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -2589,8 +2589,8 @@ local monster_dungeon_armor = { }, [19807]={ ["monster_base"]=10042, - ["hp"]=437410000, - ["atk"]=4310000, + ["hp"]=420800000, + ["atk"]=3960000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -2601,8 +2601,8 @@ local monster_dungeon_armor = { }, [19907]={ ["monster_base"]=10007, - ["hp"]=500850000, - ["atk"]=4550000, + ["hp"]=483170000, + ["atk"]=4170000, ["atk_times"]=2, ["hurt_skill"]={ 20019, @@ -2614,8 +2614,8 @@ local monster_dungeon_armor = { [20007]={ ["monster_base"]=20019, ["is_boss"]=2, - ["hp"]=848720000, - ["atk"]=4550000, + ["hp"]=814970000, + ["atk"]=4170000, ["atk_times"]=4, ["hurt_skill"]={ 30055, @@ -2633,8 +2633,8 @@ local monster_dungeon_armor = { }, [20107]={ ["monster_base"]=10012, - ["hp"]=132050000, - ["atk"]=2950000, + ["hp"]=143370000, + ["atk"]=2710000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -2645,8 +2645,8 @@ local monster_dungeon_armor = { }, [20207]={ ["monster_base"]=10053, - ["hp"]=197820000, - ["atk"]=3280000, + ["hp"]=210680000, + ["atk"]=3000000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -2657,8 +2657,8 @@ local monster_dungeon_armor = { }, [20307]={ ["monster_base"]=10022, - ["hp"]=247320000, - ["atk"]=3420000, + ["hp"]=263090000, + ["atk"]=3140000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -2669,8 +2669,8 @@ local monster_dungeon_armor = { }, [20407]={ ["monster_base"]=10058, - ["hp"]=260370000, - ["atk"]=4070000, + ["hp"]=276480000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20169, @@ -2682,8 +2682,8 @@ local monster_dungeon_armor = { [20507]={ ["monster_base"]=30014, ["is_boss"]=1, - ["hp"]=535960000, - ["atk"]=4330000, + ["hp"]=512890000, + ["atk"]=3980000, ["atk_times"]=4, ["hurt_skill"]={ 40009, @@ -2698,8 +2698,8 @@ local monster_dungeon_armor = { }, [20607]={ ["monster_base"]=10023, - ["hp"]=321500000, - ["atk"]=4220000, + ["hp"]=341420000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -2710,8 +2710,8 @@ local monster_dungeon_armor = { }, [20707]={ ["monster_base"]=10046, - ["hp"]=372390000, - ["atk"]=4360000, + ["hp"]=359010000, + ["atk"]=4000000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -2722,8 +2722,8 @@ local monster_dungeon_armor = { }, [20807]={ ["monster_base"]=10008, - ["hp"]=437410000, - ["atk"]=4310000, + ["hp"]=420800000, + ["atk"]=3960000, ["atk_times"]=2, ["hurt_skill"]={ 20022, @@ -2734,8 +2734,8 @@ local monster_dungeon_armor = { }, [20907]={ ["monster_base"]=10056, - ["hp"]=500850000, - ["atk"]=4550000, + ["hp"]=483170000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -2747,8 +2747,8 @@ local monster_dungeon_armor = { [21007]={ ["monster_base"]=20020, ["is_boss"]=2, - ["hp"]=848720000, - ["atk"]=4550000, + ["hp"]=814970000, + ["atk"]=4170000, ["atk_times"]=4, ["hurt_skill"]={ 30058, @@ -2766,8 +2766,8 @@ local monster_dungeon_armor = { }, [21107]={ ["monster_base"]=10055, - ["hp"]=132050000, - ["atk"]=2950000, + ["hp"]=143370000, + ["atk"]=2710000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -2778,8 +2778,8 @@ local monster_dungeon_armor = { }, [21207]={ ["monster_base"]=10025, - ["hp"]=197820000, - ["atk"]=3280000, + ["hp"]=210680000, + ["atk"]=3000000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -2790,8 +2790,8 @@ local monster_dungeon_armor = { }, [21307]={ ["monster_base"]=10049, - ["hp"]=247320000, - ["atk"]=3420000, + ["hp"]=263090000, + ["atk"]=3140000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -2802,8 +2802,8 @@ local monster_dungeon_armor = { }, [21407]={ ["monster_base"]=10051, - ["hp"]=260370000, - ["atk"]=4070000, + ["hp"]=276480000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -2815,8 +2815,8 @@ local monster_dungeon_armor = { [21507]={ ["monster_base"]=20017, ["is_boss"]=1, - ["hp"]=535960000, - ["atk"]=4330000, + ["hp"]=512890000, + ["atk"]=3980000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -2830,8 +2830,8 @@ local monster_dungeon_armor = { }, [21607]={ ["monster_base"]=10026, - ["hp"]=321500000, - ["atk"]=4220000, + ["hp"]=341420000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -2842,8 +2842,8 @@ local monster_dungeon_armor = { }, [21707]={ ["monster_base"]=10006, - ["hp"]=372390000, - ["atk"]=4360000, + ["hp"]=359010000, + ["atk"]=4000000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -2854,8 +2854,8 @@ local monster_dungeon_armor = { }, [21807]={ ["monster_base"]=10005, - ["hp"]=437410000, - ["atk"]=4310000, + ["hp"]=420800000, + ["atk"]=3960000, ["atk_times"]=2, ["hurt_skill"]={ 20013, @@ -2866,8 +2866,8 @@ local monster_dungeon_armor = { }, [21907]={ ["monster_base"]=10009, - ["hp"]=500850000, - ["atk"]=4550000, + ["hp"]=483170000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -2879,8 +2879,8 @@ local monster_dungeon_armor = { [22007]={ ["monster_base"]=20018, ["is_boss"]=2, - ["hp"]=848720000, - ["atk"]=4550000, + ["hp"]=814970000, + ["atk"]=4170000, ["atk_times"]=4, ["hurt_skill"]={ 30052, @@ -2898,8 +2898,8 @@ local monster_dungeon_armor = { }, [22107]={ ["monster_base"]=10003, - ["hp"]=132050000, - ["atk"]=2950000, + ["hp"]=143370000, + ["atk"]=2710000, ["atk_times"]=2, ["hurt_skill"]={ 20007, @@ -2910,8 +2910,8 @@ local monster_dungeon_armor = { }, [22207]={ ["monster_base"]=10026, - ["hp"]=197820000, - ["atk"]=3280000, + ["hp"]=210680000, + ["atk"]=3000000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -2922,8 +2922,8 @@ local monster_dungeon_armor = { }, [22307]={ ["monster_base"]=10049, - ["hp"]=247320000, - ["atk"]=3420000, + ["hp"]=263090000, + ["atk"]=3140000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -2934,8 +2934,8 @@ local monster_dungeon_armor = { }, [22407]={ ["monster_base"]=10024, - ["hp"]=260370000, - ["atk"]=4070000, + ["hp"]=276480000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -2947,8 +2947,8 @@ local monster_dungeon_armor = { [22507]={ ["monster_base"]=30010, ["is_boss"]=1, - ["hp"]=535960000, - ["atk"]=4330000, + ["hp"]=512890000, + ["atk"]=3980000, ["atk_times"]=4, ["hurt_skill"]={ 40013, @@ -2963,8 +2963,8 @@ local monster_dungeon_armor = { }, [22607]={ ["monster_base"]=10048, - ["hp"]=321500000, - ["atk"]=4220000, + ["hp"]=341420000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -2975,8 +2975,8 @@ local monster_dungeon_armor = { }, [22707]={ ["monster_base"]=10004, - ["hp"]=372390000, - ["atk"]=4360000, + ["hp"]=359010000, + ["atk"]=4000000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -2987,8 +2987,8 @@ local monster_dungeon_armor = { }, [22807]={ ["monster_base"]=10014, - ["hp"]=437410000, - ["atk"]=4310000, + ["hp"]=420800000, + ["atk"]=3960000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -2999,8 +2999,8 @@ local monster_dungeon_armor = { }, [22907]={ ["monster_base"]=10055, - ["hp"]=500850000, - ["atk"]=4550000, + ["hp"]=483170000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -3012,8 +3012,8 @@ local monster_dungeon_armor = { [23007]={ ["monster_base"]=20013, ["is_boss"]=2, - ["hp"]=848720000, - ["atk"]=4550000, + ["hp"]=814970000, + ["atk"]=4170000, ["atk_times"]=4, ["hurt_skill"]={ 30037, @@ -3028,8 +3028,8 @@ local monster_dungeon_armor = { }, [23107]={ ["monster_base"]=10019, - ["hp"]=132050000, - ["atk"]=2950000, + ["hp"]=143370000, + ["atk"]=2710000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -3040,8 +3040,8 @@ local monster_dungeon_armor = { }, [23207]={ ["monster_base"]=10048, - ["hp"]=197820000, - ["atk"]=3280000, + ["hp"]=210680000, + ["atk"]=3000000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -3052,8 +3052,8 @@ local monster_dungeon_armor = { }, [23307]={ ["monster_base"]=10028, - ["hp"]=247320000, - ["atk"]=3420000, + ["hp"]=263090000, + ["atk"]=3140000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -3064,8 +3064,8 @@ local monster_dungeon_armor = { }, [23407]={ ["monster_base"]=10014, - ["hp"]=260370000, - ["atk"]=4070000, + ["hp"]=276480000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -3077,8 +3077,8 @@ local monster_dungeon_armor = { [23507]={ ["monster_base"]=20009, ["is_boss"]=1, - ["hp"]=535960000, - ["atk"]=4330000, + ["hp"]=512890000, + ["atk"]=3980000, ["atk_times"]=4, ["hurt_skill"]={ 30025, @@ -3096,8 +3096,8 @@ local monster_dungeon_armor = { }, [23607]={ ["monster_base"]=10012, - ["hp"]=321500000, - ["atk"]=4220000, + ["hp"]=341420000, + ["atk"]=3870000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -3108,8 +3108,8 @@ local monster_dungeon_armor = { }, [23707]={ ["monster_base"]=10065, - ["hp"]=372390000, - ["atk"]=4360000, + ["hp"]=359010000, + ["atk"]=4000000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -3120,8 +3120,8 @@ local monster_dungeon_armor = { }, [23807]={ ["monster_base"]=10018, - ["hp"]=437410000, - ["atk"]=4310000, + ["hp"]=420800000, + ["atk"]=3960000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -3132,8 +3132,8 @@ local monster_dungeon_armor = { }, [23907]={ ["monster_base"]=10014, - ["hp"]=500850000, - ["atk"]=4550000, + ["hp"]=483170000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -3145,8 +3145,8 @@ local monster_dungeon_armor = { [24007]={ ["monster_base"]=20024, ["is_boss"]=2, - ["hp"]=848720000, - ["atk"]=4550000, + ["hp"]=814970000, + ["atk"]=4170000, ["atk_times"]=4, ["hurt_skill"]={ 30070, @@ -3164,8 +3164,8 @@ local monster_dungeon_armor = { }, [24107]={ ["monster_base"]=10019, - ["hp"]=144620000, - ["atk"]=3230000, + ["hp"]=153090000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -3176,8 +3176,8 @@ local monster_dungeon_armor = { }, [24207]={ ["monster_base"]=10013, - ["hp"]=216360000, - ["atk"]=3590000, + ["hp"]=224450000, + ["atk"]=3190000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -3188,8 +3188,8 @@ local monster_dungeon_armor = { }, [24307]={ ["monster_base"]=10001, - ["hp"]=270480000, - ["atk"]=3740000, + ["hp"]=280370000, + ["atk"]=3320000, ["atk_times"]=2, ["hurt_skill"]={ 20001, @@ -3200,8 +3200,8 @@ local monster_dungeon_armor = { }, [24407]={ ["monster_base"]=10031, - ["hp"]=284960000, - ["atk"]=4460000, + ["hp"]=294620000, + ["atk"]=3960000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -3213,8 +3213,8 @@ local monster_dungeon_armor = { [24507]={ ["monster_base"]=30015, ["is_boss"]=1, - ["hp"]=585830000, - ["atk"]=4750000, + ["hp"]=545940000, + ["atk"]=4220000, ["atk_times"]=4, ["hurt_skill"]={ 40025, @@ -3229,8 +3229,8 @@ local monster_dungeon_armor = { }, [24607]={ ["monster_base"]=10019, - ["hp"]=351630000, - ["atk"]=4640000, + ["hp"]=363690000, + ["atk"]=4110000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -3241,8 +3241,8 @@ local monster_dungeon_armor = { }, [24707]={ ["monster_base"]=10063, - ["hp"]=407010000, - ["atk"]=4780000, + ["hp"]=382500000, + ["atk"]=4240000, ["atk_times"]=3, ["hurt_skill"]={ 20184, @@ -3253,8 +3253,8 @@ local monster_dungeon_armor = { }, [24807]={ ["monster_base"]=10016, - ["hp"]=478170000, - ["atk"]=4720000, + ["hp"]=447930000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -3265,8 +3265,8 @@ local monster_dungeon_armor = { }, [24907]={ ["monster_base"]=10024, - ["hp"]=547410000, - ["atk"]=4980000, + ["hp"]=514350000, + ["atk"]=4430000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -3278,8 +3278,8 @@ local monster_dungeon_armor = { [25007]={ ["monster_base"]=20032, ["is_boss"]=2, - ["hp"]=927650000, - ["atk"]=4980000, + ["hp"]=867510000, + ["atk"]=4430000, ["atk_times"]=4, ["hurt_skill"]={ 30094, @@ -3300,8 +3300,8 @@ local monster_dungeon_armor = { }, [25107]={ ["monster_base"]=10040, - ["hp"]=144620000, - ["atk"]=3230000, + ["hp"]=153090000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -3312,8 +3312,8 @@ local monster_dungeon_armor = { }, [25207]={ ["monster_base"]=10056, - ["hp"]=216360000, - ["atk"]=3590000, + ["hp"]=224450000, + ["atk"]=3190000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -3324,8 +3324,8 @@ local monster_dungeon_armor = { }, [25307]={ ["monster_base"]=10038, - ["hp"]=270480000, - ["atk"]=3740000, + ["hp"]=280370000, + ["atk"]=3320000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -3336,8 +3336,8 @@ local monster_dungeon_armor = { }, [25407]={ ["monster_base"]=10005, - ["hp"]=284960000, - ["atk"]=4460000, + ["hp"]=294620000, + ["atk"]=3960000, ["atk_times"]=2, ["hurt_skill"]={ 20013, @@ -3349,8 +3349,8 @@ local monster_dungeon_armor = { [25507]={ ["monster_base"]=20007, ["is_boss"]=1, - ["hp"]=585830000, - ["atk"]=4750000, + ["hp"]=545940000, + ["atk"]=4220000, ["atk_times"]=4, ["hurt_skill"]={ 30019, @@ -3367,8 +3367,8 @@ local monster_dungeon_armor = { }, [25607]={ ["monster_base"]=10035, - ["hp"]=351630000, - ["atk"]=4640000, + ["hp"]=363690000, + ["atk"]=4110000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -3379,8 +3379,8 @@ local monster_dungeon_armor = { }, [25707]={ ["monster_base"]=10026, - ["hp"]=407010000, - ["atk"]=4780000, + ["hp"]=382500000, + ["atk"]=4240000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -3391,8 +3391,8 @@ local monster_dungeon_armor = { }, [25807]={ ["monster_base"]=10025, - ["hp"]=478170000, - ["atk"]=4720000, + ["hp"]=447930000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -3403,8 +3403,8 @@ local monster_dungeon_armor = { }, [25907]={ ["monster_base"]=10034, - ["hp"]=547410000, - ["atk"]=4980000, + ["hp"]=514350000, + ["atk"]=4430000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -3416,8 +3416,8 @@ local monster_dungeon_armor = { [26007]={ ["monster_base"]=20003, ["is_boss"]=2, - ["hp"]=927650000, - ["atk"]=4980000, + ["hp"]=867510000, + ["atk"]=4430000, ["atk_times"]=4, ["hurt_skill"]={ 30007, @@ -3434,8 +3434,8 @@ local monster_dungeon_armor = { }, [26107]={ ["monster_base"]=10036, - ["hp"]=144620000, - ["atk"]=3230000, + ["hp"]=153090000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -3446,8 +3446,8 @@ local monster_dungeon_armor = { }, [26207]={ ["monster_base"]=10014, - ["hp"]=216360000, - ["atk"]=3590000, + ["hp"]=224450000, + ["atk"]=3190000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -3458,8 +3458,8 @@ local monster_dungeon_armor = { }, [26307]={ ["monster_base"]=10046, - ["hp"]=270480000, - ["atk"]=3740000, + ["hp"]=280370000, + ["atk"]=3320000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -3470,8 +3470,8 @@ local monster_dungeon_armor = { }, [26407]={ ["monster_base"]=10041, - ["hp"]=284960000, - ["atk"]=4460000, + ["hp"]=294620000, + ["atk"]=3960000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -3483,8 +3483,8 @@ local monster_dungeon_armor = { [26507]={ ["monster_base"]=30010, ["is_boss"]=1, - ["hp"]=585830000, - ["atk"]=4750000, + ["hp"]=545940000, + ["atk"]=4220000, ["atk_times"]=4, ["hurt_skill"]={ 40013, @@ -3499,8 +3499,8 @@ local monster_dungeon_armor = { }, [26607]={ ["monster_base"]=10006, - ["hp"]=351630000, - ["atk"]=4640000, + ["hp"]=363690000, + ["atk"]=4110000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -3511,8 +3511,8 @@ local monster_dungeon_armor = { }, [26707]={ ["monster_base"]=10036, - ["hp"]=407010000, - ["atk"]=4780000, + ["hp"]=382500000, + ["atk"]=4240000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -3523,8 +3523,8 @@ local monster_dungeon_armor = { }, [26807]={ ["monster_base"]=10004, - ["hp"]=478170000, - ["atk"]=4720000, + ["hp"]=447930000, + ["atk"]=4200000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -3535,8 +3535,8 @@ local monster_dungeon_armor = { }, [26907]={ ["monster_base"]=10031, - ["hp"]=547410000, - ["atk"]=4980000, + ["hp"]=514350000, + ["atk"]=4430000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -3548,8 +3548,8 @@ local monster_dungeon_armor = { [27007]={ ["monster_base"]=20016, ["is_boss"]=2, - ["hp"]=927650000, - ["atk"]=4980000, + ["hp"]=867510000, + ["atk"]=4430000, ["atk_times"]=4, ["hurt_skill"]={ 30046, @@ -3567,8 +3567,8 @@ local monster_dungeon_armor = { }, [27107]={ ["monster_base"]=10018, - ["hp"]=144620000, - ["atk"]=3230000, + ["hp"]=153090000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -3579,8 +3579,8 @@ local monster_dungeon_armor = { }, [27207]={ ["monster_base"]=10044, - ["hp"]=216360000, - ["atk"]=3590000, + ["hp"]=224450000, + ["atk"]=3190000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -3591,8 +3591,8 @@ local monster_dungeon_armor = { }, [27307]={ ["monster_base"]=10033, - ["hp"]=270480000, - ["atk"]=3740000, + ["hp"]=280370000, + ["atk"]=3320000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -3603,8 +3603,8 @@ local monster_dungeon_armor = { }, [27407]={ ["monster_base"]=10028, - ["hp"]=284960000, - ["atk"]=4460000, + ["hp"]=294620000, + ["atk"]=3960000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -3616,8 +3616,8 @@ local monster_dungeon_armor = { [27507]={ ["monster_base"]=20019, ["is_boss"]=1, - ["hp"]=585830000, - ["atk"]=4750000, + ["hp"]=545940000, + ["atk"]=4220000, ["atk_times"]=4, ["hurt_skill"]={ 30055, @@ -3635,8 +3635,8 @@ local monster_dungeon_armor = { }, [27607]={ ["monster_base"]=10016, - ["hp"]=351630000, - ["atk"]=4640000, + ["hp"]=363690000, + ["atk"]=4110000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -3647,8 +3647,8 @@ local monster_dungeon_armor = { }, [27707]={ ["monster_base"]=10044, - ["hp"]=407010000, - ["atk"]=4780000, + ["hp"]=382500000, + ["atk"]=4240000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -3659,8 +3659,8 @@ local monster_dungeon_armor = { }, [27807]={ ["monster_base"]=10021, - ["hp"]=478170000, - ["atk"]=4720000, + ["hp"]=447930000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -3671,8 +3671,8 @@ local monster_dungeon_armor = { }, [27907]={ ["monster_base"]=10030, - ["hp"]=547410000, - ["atk"]=4980000, + ["hp"]=514350000, + ["atk"]=4430000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -3684,8 +3684,8 @@ local monster_dungeon_armor = { [28007]={ ["monster_base"]=20020, ["is_boss"]=2, - ["hp"]=927650000, - ["atk"]=4980000, + ["hp"]=867510000, + ["atk"]=4430000, ["atk_times"]=4, ["hurt_skill"]={ 30058, @@ -3703,8 +3703,8 @@ local monster_dungeon_armor = { }, [28107]={ ["monster_base"]=10024, - ["hp"]=144620000, - ["atk"]=3230000, + ["hp"]=153090000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -3715,8 +3715,8 @@ local monster_dungeon_armor = { }, [28207]={ ["monster_base"]=10064, - ["hp"]=216360000, - ["atk"]=3590000, + ["hp"]=224450000, + ["atk"]=3190000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -3727,8 +3727,8 @@ local monster_dungeon_armor = { }, [28307]={ ["monster_base"]=10047, - ["hp"]=270480000, - ["atk"]=3740000, + ["hp"]=280370000, + ["atk"]=3320000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -3739,8 +3739,8 @@ local monster_dungeon_armor = { }, [28407]={ ["monster_base"]=10008, - ["hp"]=284960000, - ["atk"]=4460000, + ["hp"]=294620000, + ["atk"]=3960000, ["atk_times"]=2, ["hurt_skill"]={ 20022, @@ -3752,8 +3752,8 @@ local monster_dungeon_armor = { [28507]={ ["monster_base"]=20019, ["is_boss"]=1, - ["hp"]=585830000, - ["atk"]=4750000, + ["hp"]=545940000, + ["atk"]=4220000, ["atk_times"]=4, ["hurt_skill"]={ 30055, @@ -3771,8 +3771,8 @@ local monster_dungeon_armor = { }, [28607]={ ["monster_base"]=10056, - ["hp"]=351630000, - ["atk"]=4640000, + ["hp"]=363690000, + ["atk"]=4110000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -3783,8 +3783,8 @@ local monster_dungeon_armor = { }, [28707]={ ["monster_base"]=10045, - ["hp"]=407010000, - ["atk"]=4780000, + ["hp"]=382500000, + ["atk"]=4240000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -3795,8 +3795,8 @@ local monster_dungeon_armor = { }, [28807]={ ["monster_base"]=10016, - ["hp"]=478170000, - ["atk"]=4720000, + ["hp"]=447930000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -3807,8 +3807,8 @@ local monster_dungeon_armor = { }, [28907]={ ["monster_base"]=10064, - ["hp"]=547410000, - ["atk"]=4980000, + ["hp"]=514350000, + ["atk"]=4430000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -3820,8 +3820,8 @@ local monster_dungeon_armor = { [29007]={ ["monster_base"]=20013, ["is_boss"]=2, - ["hp"]=927650000, - ["atk"]=4980000, + ["hp"]=867510000, + ["atk"]=4430000, ["atk_times"]=4, ["hurt_skill"]={ 30037, @@ -3836,8 +3836,8 @@ local monster_dungeon_armor = { }, [29107]={ ["monster_base"]=10032, - ["hp"]=144620000, - ["atk"]=3230000, + ["hp"]=153090000, + ["atk"]=2870000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -3848,8 +3848,8 @@ local monster_dungeon_armor = { }, [29207]={ ["monster_base"]=10004, - ["hp"]=216360000, - ["atk"]=3590000, + ["hp"]=224450000, + ["atk"]=3190000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -3860,8 +3860,8 @@ local monster_dungeon_armor = { }, [29307]={ ["monster_base"]=10014, - ["hp"]=270480000, - ["atk"]=3740000, + ["hp"]=280370000, + ["atk"]=3320000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -3872,8 +3872,8 @@ local monster_dungeon_armor = { }, [29407]={ ["monster_base"]=10006, - ["hp"]=284960000, - ["atk"]=4460000, + ["hp"]=294620000, + ["atk"]=3960000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -3885,8 +3885,8 @@ local monster_dungeon_armor = { [29507]={ ["monster_base"]=20031, ["is_boss"]=1, - ["hp"]=585830000, - ["atk"]=4750000, + ["hp"]=545940000, + ["atk"]=4220000, ["atk_times"]=4, ["hurt_skill"]={ 30091, @@ -3906,8 +3906,8 @@ local monster_dungeon_armor = { }, [29607]={ ["monster_base"]=10015, - ["hp"]=351630000, - ["atk"]=4640000, + ["hp"]=363690000, + ["atk"]=4110000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -3918,8 +3918,8 @@ local monster_dungeon_armor = { }, [29707]={ ["monster_base"]=10026, - ["hp"]=407010000, - ["atk"]=4780000, + ["hp"]=382500000, + ["atk"]=4240000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -3930,8 +3930,8 @@ local monster_dungeon_armor = { }, [29807]={ ["monster_base"]=10007, - ["hp"]=478170000, - ["atk"]=4720000, + ["hp"]=447930000, + ["atk"]=4200000, ["atk_times"]=2, ["hurt_skill"]={ 20019, @@ -3942,8 +3942,8 @@ local monster_dungeon_armor = { }, [29907]={ ["monster_base"]=10064, - ["hp"]=547410000, - ["atk"]=4980000, + ["hp"]=514350000, + ["atk"]=4430000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -3955,8 +3955,8 @@ local monster_dungeon_armor = { [30007]={ ["monster_base"]=20032, ["is_boss"]=2, - ["hp"]=927650000, - ["atk"]=4980000, + ["hp"]=867510000, + ["atk"]=4430000, ["atk_times"]=4, ["hurt_skill"]={ 30094, @@ -3977,8 +3977,8 @@ local monster_dungeon_armor = { }, [30107]={ ["monster_base"]=10019, - ["hp"]=157930000, - ["atk"]=3530000, + ["hp"]=164360000, + ["atk"]=3050000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -3989,8 +3989,8 @@ local monster_dungeon_armor = { }, [30207]={ ["monster_base"]=10035, - ["hp"]=236010000, - ["atk"]=3930000, + ["hp"]=240110000, + ["atk"]=3390000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -4001,8 +4001,8 @@ local monster_dungeon_armor = { }, [30307]={ ["monster_base"]=10057, - ["hp"]=294910000, - ["atk"]=4070000, + ["hp"]=299890000, + ["atk"]=3520000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -4013,8 +4013,8 @@ local monster_dungeon_armor = { }, [30407]={ ["monster_base"]=10051, - ["hp"]=310960000, - ["atk"]=4870000, + ["hp"]=315280000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -4026,8 +4026,8 @@ local monster_dungeon_armor = { [30507]={ ["monster_base"]=20020, ["is_boss"]=1, - ["hp"]=638700000, - ["atk"]=5200000, + ["hp"]=583450000, + ["atk"]=4490000, ["atk_times"]=4, ["hurt_skill"]={ 30058, @@ -4045,8 +4045,8 @@ local monster_dungeon_armor = { }, [30607]={ ["monster_base"]=10062, - ["hp"]=383710000, - ["atk"]=5080000, + ["hp"]=388890000, + ["atk"]=4380000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -4057,8 +4057,8 @@ local monster_dungeon_armor = { }, [30707]={ ["monster_base"]=10056, - ["hp"]=443820000, - ["atk"]=5220000, + ["hp"]=409220000, + ["atk"]=4500000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -4069,8 +4069,8 @@ local monster_dungeon_armor = { }, [30807]={ ["monster_base"]=10054, - ["hp"]=521380000, - ["atk"]=5150000, + ["hp"]=479000000, + ["atk"]=4450000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -4081,8 +4081,8 @@ local monster_dungeon_armor = { }, [30907]={ ["monster_base"]=10060, - ["hp"]=596850000, - ["atk"]=5430000, + ["hp"]=549890000, + ["atk"]=4690000, ["atk_times"]=3, ["hurt_skill"]={ 20175, @@ -4094,8 +4094,8 @@ local monster_dungeon_armor = { [31007]={ ["monster_base"]=20013, ["is_boss"]=2, - ["hp"]=1011330000, - ["atk"]=5430000, + ["hp"]=927400000, + ["atk"]=4690000, ["atk_times"]=4, ["hurt_skill"]={ 30037, @@ -4110,8 +4110,8 @@ local monster_dungeon_armor = { }, [31107]={ ["monster_base"]=10058, - ["hp"]=157930000, - ["atk"]=3530000, + ["hp"]=164360000, + ["atk"]=3050000, ["atk_times"]=3, ["hurt_skill"]={ 20169, @@ -4122,8 +4122,8 @@ local monster_dungeon_armor = { }, [31207]={ ["monster_base"]=10027, - ["hp"]=236010000, - ["atk"]=3930000, + ["hp"]=240110000, + ["atk"]=3390000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -4134,8 +4134,8 @@ local monster_dungeon_armor = { }, [31307]={ ["monster_base"]=10025, - ["hp"]=294910000, - ["atk"]=4070000, + ["hp"]=299890000, + ["atk"]=3520000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -4146,8 +4146,8 @@ local monster_dungeon_armor = { }, [31407]={ ["monster_base"]=10007, - ["hp"]=310960000, - ["atk"]=4870000, + ["hp"]=315280000, + ["atk"]=4200000, ["atk_times"]=2, ["hurt_skill"]={ 20019, @@ -4159,8 +4159,8 @@ local monster_dungeon_armor = { [31507]={ ["monster_base"]=20012, ["is_boss"]=1, - ["hp"]=638700000, - ["atk"]=5200000, + ["hp"]=583450000, + ["atk"]=4490000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -4174,8 +4174,8 @@ local monster_dungeon_armor = { }, [31607]={ ["monster_base"]=10024, - ["hp"]=383710000, - ["atk"]=5080000, + ["hp"]=388890000, + ["atk"]=4380000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -4186,8 +4186,8 @@ local monster_dungeon_armor = { }, [31707]={ ["monster_base"]=10030, - ["hp"]=443820000, - ["atk"]=5220000, + ["hp"]=409220000, + ["atk"]=4500000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -4198,8 +4198,8 @@ local monster_dungeon_armor = { }, [31807]={ ["monster_base"]=10048, - ["hp"]=521380000, - ["atk"]=5150000, + ["hp"]=479000000, + ["atk"]=4450000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -4210,8 +4210,8 @@ local monster_dungeon_armor = { }, [31907]={ ["monster_base"]=10001, - ["hp"]=596850000, - ["atk"]=5430000, + ["hp"]=549890000, + ["atk"]=4690000, ["atk_times"]=2, ["hurt_skill"]={ 20001, @@ -4223,8 +4223,8 @@ local monster_dungeon_armor = { [32007]={ ["monster_base"]=20034, ["is_boss"]=2, - ["hp"]=1011330000, - ["atk"]=5430000, + ["hp"]=927400000, + ["atk"]=4690000, ["atk_times"]=4, ["hurt_skill"]={ 30097, @@ -4243,8 +4243,8 @@ local monster_dungeon_armor = { }, [32107]={ ["monster_base"]=10061, - ["hp"]=157930000, - ["atk"]=3530000, + ["hp"]=164360000, + ["atk"]=3050000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -4255,8 +4255,8 @@ local monster_dungeon_armor = { }, [32207]={ ["monster_base"]=10017, - ["hp"]=236010000, - ["atk"]=3930000, + ["hp"]=240110000, + ["atk"]=3390000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -4267,8 +4267,8 @@ local monster_dungeon_armor = { }, [32307]={ ["monster_base"]=10064, - ["hp"]=294910000, - ["atk"]=4070000, + ["hp"]=299890000, + ["atk"]=3520000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -4279,8 +4279,8 @@ local monster_dungeon_armor = { }, [32407]={ ["monster_base"]=10027, - ["hp"]=310960000, - ["atk"]=4870000, + ["hp"]=315280000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -4292,8 +4292,8 @@ local monster_dungeon_armor = { [32507]={ ["monster_base"]=20008, ["is_boss"]=1, - ["hp"]=638700000, - ["atk"]=5200000, + ["hp"]=583450000, + ["atk"]=4490000, ["atk_times"]=4, ["hurt_skill"]={ 30022, @@ -4310,8 +4310,8 @@ local monster_dungeon_armor = { }, [32607]={ ["monster_base"]=10005, - ["hp"]=383710000, - ["atk"]=5080000, + ["hp"]=388890000, + ["atk"]=4380000, ["atk_times"]=2, ["hurt_skill"]={ 20013, @@ -4322,8 +4322,8 @@ local monster_dungeon_armor = { }, [32707]={ ["monster_base"]=10032, - ["hp"]=443820000, - ["atk"]=5220000, + ["hp"]=409220000, + ["atk"]=4500000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -4334,8 +4334,8 @@ local monster_dungeon_armor = { }, [32807]={ ["monster_base"]=10056, - ["hp"]=521380000, - ["atk"]=5150000, + ["hp"]=479000000, + ["atk"]=4450000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -4346,8 +4346,8 @@ local monster_dungeon_armor = { }, [32907]={ ["monster_base"]=10053, - ["hp"]=596850000, - ["atk"]=5430000, + ["hp"]=549890000, + ["atk"]=4690000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -4359,8 +4359,8 @@ local monster_dungeon_armor = { [33007]={ ["monster_base"]=20035, ["is_boss"]=2, - ["hp"]=1011330000, - ["atk"]=5430000, + ["hp"]=927400000, + ["atk"]=4690000, ["atk_times"]=4, ["hurt_skill"]={ 30100, @@ -4379,8 +4379,8 @@ local monster_dungeon_armor = { }, [33107]={ ["monster_base"]=10004, - ["hp"]=157930000, - ["atk"]=3530000, + ["hp"]=164360000, + ["atk"]=3050000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -4391,8 +4391,8 @@ local monster_dungeon_armor = { }, [33207]={ ["monster_base"]=10064, - ["hp"]=236010000, - ["atk"]=3930000, + ["hp"]=240110000, + ["atk"]=3390000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -4403,8 +4403,8 @@ local monster_dungeon_armor = { }, [33307]={ ["monster_base"]=10050, - ["hp"]=294910000, - ["atk"]=4070000, + ["hp"]=299890000, + ["atk"]=3520000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -4415,8 +4415,8 @@ local monster_dungeon_armor = { }, [33407]={ ["monster_base"]=10012, - ["hp"]=310960000, - ["atk"]=4870000, + ["hp"]=315280000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -4428,8 +4428,8 @@ local monster_dungeon_armor = { [33507]={ ["monster_base"]=20021, ["is_boss"]=1, - ["hp"]=638700000, - ["atk"]=5200000, + ["hp"]=583450000, + ["atk"]=4490000, ["atk_times"]=4, ["hurt_skill"]={ 30061, @@ -4447,8 +4447,8 @@ local monster_dungeon_armor = { }, [33607]={ ["monster_base"]=10024, - ["hp"]=383710000, - ["atk"]=5080000, + ["hp"]=388890000, + ["atk"]=4380000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -4459,8 +4459,8 @@ local monster_dungeon_armor = { }, [33707]={ ["monster_base"]=10052, - ["hp"]=443820000, - ["atk"]=5220000, + ["hp"]=409220000, + ["atk"]=4500000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -4471,8 +4471,8 @@ local monster_dungeon_armor = { }, [33807]={ ["monster_base"]=10012, - ["hp"]=521380000, - ["atk"]=5150000, + ["hp"]=479000000, + ["atk"]=4450000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -4483,8 +4483,8 @@ local monster_dungeon_armor = { }, [33907]={ ["monster_base"]=10006, - ["hp"]=596850000, - ["atk"]=5430000, + ["hp"]=549890000, + ["atk"]=4690000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -4496,8 +4496,8 @@ local monster_dungeon_armor = { [34007]={ ["monster_base"]=20036, ["is_boss"]=2, - ["hp"]=1011330000, - ["atk"]=5430000, + ["hp"]=927400000, + ["atk"]=4690000, ["atk_times"]=4, ["hurt_skill"]={ 30103, @@ -4515,8 +4515,8 @@ local monster_dungeon_armor = { }, [34107]={ ["monster_base"]=10002, - ["hp"]=157930000, - ["atk"]=3530000, + ["hp"]=164360000, + ["atk"]=3050000, ["atk_times"]=2, ["hurt_skill"]={ 20004, @@ -4527,8 +4527,8 @@ local monster_dungeon_armor = { }, [34207]={ ["monster_base"]=10060, - ["hp"]=236010000, - ["atk"]=3930000, + ["hp"]=240110000, + ["atk"]=3390000, ["atk_times"]=3, ["hurt_skill"]={ 20175, @@ -4539,8 +4539,8 @@ local monster_dungeon_armor = { }, [34307]={ ["monster_base"]=10065, - ["hp"]=294910000, - ["atk"]=4070000, + ["hp"]=299890000, + ["atk"]=3520000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -4551,8 +4551,8 @@ local monster_dungeon_armor = { }, [34407]={ ["monster_base"]=10037, - ["hp"]=310960000, - ["atk"]=4870000, + ["hp"]=315280000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20106, @@ -4564,8 +4564,8 @@ local monster_dungeon_armor = { [34507]={ ["monster_base"]=20006, ["is_boss"]=1, - ["hp"]=638700000, - ["atk"]=5200000, + ["hp"]=583450000, + ["atk"]=4490000, ["atk_times"]=4, ["hurt_skill"]={ 30016, @@ -4582,8 +4582,8 @@ local monster_dungeon_armor = { }, [34607]={ ["monster_base"]=10012, - ["hp"]=383710000, - ["atk"]=5080000, + ["hp"]=388890000, + ["atk"]=4380000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -4594,8 +4594,8 @@ local monster_dungeon_armor = { }, [34707]={ ["monster_base"]=10049, - ["hp"]=443820000, - ["atk"]=5220000, + ["hp"]=409220000, + ["atk"]=4500000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -4606,8 +4606,8 @@ local monster_dungeon_armor = { }, [34807]={ ["monster_base"]=10020, - ["hp"]=521380000, - ["atk"]=5150000, + ["hp"]=479000000, + ["atk"]=4450000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -4618,8 +4618,8 @@ local monster_dungeon_armor = { }, [34907]={ ["monster_base"]=10043, - ["hp"]=596850000, - ["atk"]=5430000, + ["hp"]=549890000, + ["atk"]=4690000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -4631,8 +4631,8 @@ local monster_dungeon_armor = { [35007]={ ["monster_base"]=20037, ["is_boss"]=2, - ["hp"]=1011330000, - ["atk"]=5430000, + ["hp"]=927400000, + ["atk"]=4690000, ["atk_times"]=4, ["hurt_skill"]={ 30106, @@ -4651,8 +4651,8 @@ local monster_dungeon_armor = { }, [35107]={ ["monster_base"]=10041, - ["hp"]=157930000, - ["atk"]=3530000, + ["hp"]=164360000, + ["atk"]=3050000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -4663,8 +4663,8 @@ local monster_dungeon_armor = { }, [35207]={ ["monster_base"]=10014, - ["hp"]=236010000, - ["atk"]=3930000, + ["hp"]=240110000, + ["atk"]=3390000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -4675,8 +4675,8 @@ local monster_dungeon_armor = { }, [35307]={ ["monster_base"]=10047, - ["hp"]=294910000, - ["atk"]=4070000, + ["hp"]=299890000, + ["atk"]=3520000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -4687,8 +4687,8 @@ local monster_dungeon_armor = { }, [35407]={ ["monster_base"]=10062, - ["hp"]=310960000, - ["atk"]=4870000, + ["hp"]=315280000, + ["atk"]=4200000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -4700,8 +4700,8 @@ local monster_dungeon_armor = { [35507]={ ["monster_base"]=20027, ["is_boss"]=1, - ["hp"]=638700000, - ["atk"]=5200000, + ["hp"]=583450000, + ["atk"]=4490000, ["atk_times"]=4, ["hurt_skill"]={ 30079, @@ -4715,8 +4715,8 @@ local monster_dungeon_armor = { }, [35607]={ ["monster_base"]=10005, - ["hp"]=383710000, - ["atk"]=5080000, + ["hp"]=388890000, + ["atk"]=4380000, ["atk_times"]=2, ["hurt_skill"]={ 20013, @@ -4727,8 +4727,8 @@ local monster_dungeon_armor = { }, [35707]={ ["monster_base"]=10004, - ["hp"]=443820000, - ["atk"]=5220000, + ["hp"]=409220000, + ["atk"]=4500000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -4739,8 +4739,8 @@ local monster_dungeon_armor = { }, [35807]={ ["monster_base"]=10039, - ["hp"]=521380000, - ["atk"]=5150000, + ["hp"]=479000000, + ["atk"]=4450000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -4751,8 +4751,8 @@ local monster_dungeon_armor = { }, [35907]={ ["monster_base"]=10032, - ["hp"]=596850000, - ["atk"]=5430000, + ["hp"]=549890000, + ["atk"]=4690000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -4764,8 +4764,8 @@ local monster_dungeon_armor = { [36007]={ ["monster_base"]=20038, ["is_boss"]=2, - ["hp"]=1011330000, - ["atk"]=5430000, + ["hp"]=927400000, + ["atk"]=4690000, ["atk_times"]=4, ["hurt_skill"]={ 30109, @@ -4786,8 +4786,8 @@ local monster_dungeon_armor = { }, [36107]={ ["monster_base"]=10057, - ["hp"]=180630000, - ["atk"]=3970000, + ["hp"]=169650000, + ["atk"]=3230000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -4798,8 +4798,8 @@ local monster_dungeon_armor = { }, [36207]={ ["monster_base"]=10061, - ["hp"]=269660000, - ["atk"]=4420000, + ["hp"]=247740000, + ["atk"]=3600000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -4810,8 +4810,8 @@ local monster_dungeon_armor = { }, [36307]={ ["monster_base"]=10040, - ["hp"]=336720000, - ["atk"]=4570000, + ["hp"]=309200000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -4822,8 +4822,8 @@ local monster_dungeon_armor = { }, [36407]={ ["monster_base"]=10047, - ["hp"]=355220000, - ["atk"]=5460000, + ["hp"]=324830000, + ["atk"]=4460000, ["atk_times"]=3, ["hurt_skill"]={ 20136, @@ -4835,8 +4835,8 @@ local monster_dungeon_armor = { [36507]={ ["monster_base"]=20004, ["is_boss"]=1, - ["hp"]=729050000, - ["atk"]=5830000, + ["hp"]=600970000, + ["atk"]=4760000, ["atk_times"]=4, ["hurt_skill"]={ 30010, @@ -4850,8 +4850,8 @@ local monster_dungeon_armor = { }, [36607]={ ["monster_base"]=10028, - ["hp"]=438600000, - ["atk"]=5720000, + ["hp"]=400760000, + ["atk"]=4650000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -4862,8 +4862,8 @@ local monster_dungeon_armor = { }, [36707]={ ["monster_base"]=10004, - ["hp"]=506990000, - ["atk"]=5860000, + ["hp"]=421850000, + ["atk"]=4770000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -4874,8 +4874,8 @@ local monster_dungeon_armor = { }, [36807]={ ["monster_base"]=10002, - ["hp"]=595640000, - ["atk"]=5800000, + ["hp"]=493410000, + ["atk"]=4730000, ["atk_times"]=2, ["hurt_skill"]={ 20004, @@ -4886,8 +4886,8 @@ local monster_dungeon_armor = { }, [36907]={ ["monster_base"]=10062, - ["hp"]=682150000, - ["atk"]=6110000, + ["hp"]=566670000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -4899,8 +4899,8 @@ local monster_dungeon_armor = { [37007]={ ["monster_base"]=20012, ["is_boss"]=2, - ["hp"]=1152480000, - ["atk"]=6110000, + ["hp"]=955050000, + ["atk"]=4980000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -4914,8 +4914,8 @@ local monster_dungeon_armor = { }, [37107]={ ["monster_base"]=10001, - ["hp"]=180630000, - ["atk"]=3970000, + ["hp"]=169650000, + ["atk"]=3230000, ["atk_times"]=2, ["hurt_skill"]={ 20001, @@ -4926,8 +4926,8 @@ local monster_dungeon_armor = { }, [37207]={ ["monster_base"]=10054, - ["hp"]=269660000, - ["atk"]=4420000, + ["hp"]=247740000, + ["atk"]=3600000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -4938,8 +4938,8 @@ local monster_dungeon_armor = { }, [37307]={ ["monster_base"]=10023, - ["hp"]=336720000, - ["atk"]=4570000, + ["hp"]=309200000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -4950,8 +4950,8 @@ local monster_dungeon_armor = { }, [37407]={ ["monster_base"]=10008, - ["hp"]=355220000, - ["atk"]=5460000, + ["hp"]=324830000, + ["atk"]=4460000, ["atk_times"]=2, ["hurt_skill"]={ 20022, @@ -4963,8 +4963,8 @@ local monster_dungeon_armor = { [37507]={ ["monster_base"]=20022, ["is_boss"]=1, - ["hp"]=729050000, - ["atk"]=5830000, + ["hp"]=600970000, + ["atk"]=4760000, ["atk_times"]=4, ["hurt_skill"]={ 30064, @@ -4981,8 +4981,8 @@ local monster_dungeon_armor = { }, [37607]={ ["monster_base"]=10034, - ["hp"]=438600000, - ["atk"]=5720000, + ["hp"]=400760000, + ["atk"]=4650000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -4993,8 +4993,8 @@ local monster_dungeon_armor = { }, [37707]={ ["monster_base"]=10035, - ["hp"]=506990000, - ["atk"]=5860000, + ["hp"]=421850000, + ["atk"]=4770000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -5005,8 +5005,8 @@ local monster_dungeon_armor = { }, [37807]={ ["monster_base"]=10004, - ["hp"]=595640000, - ["atk"]=5800000, + ["hp"]=493410000, + ["atk"]=4730000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -5017,8 +5017,8 @@ local monster_dungeon_armor = { }, [37907]={ ["monster_base"]=10029, - ["hp"]=682150000, - ["atk"]=6110000, + ["hp"]=566670000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -5030,8 +5030,8 @@ local monster_dungeon_armor = { [38007]={ ["monster_base"]=20003, ["is_boss"]=2, - ["hp"]=1152480000, - ["atk"]=6110000, + ["hp"]=955050000, + ["atk"]=4980000, ["atk_times"]=4, ["hurt_skill"]={ 30007, @@ -5048,8 +5048,8 @@ local monster_dungeon_armor = { }, [38107]={ ["monster_base"]=10004, - ["hp"]=180630000, - ["atk"]=3970000, + ["hp"]=169650000, + ["atk"]=3230000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -5060,8 +5060,8 @@ local monster_dungeon_armor = { }, [38207]={ ["monster_base"]=10056, - ["hp"]=269660000, - ["atk"]=4420000, + ["hp"]=247740000, + ["atk"]=3600000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -5072,8 +5072,8 @@ local monster_dungeon_armor = { }, [38307]={ ["monster_base"]=10057, - ["hp"]=336720000, - ["atk"]=4570000, + ["hp"]=309200000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -5084,8 +5084,8 @@ local monster_dungeon_armor = { }, [38407]={ ["monster_base"]=10043, - ["hp"]=355220000, - ["atk"]=5460000, + ["hp"]=324830000, + ["atk"]=4460000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -5097,8 +5097,8 @@ local monster_dungeon_armor = { [38507]={ ["monster_base"]=20014, ["is_boss"]=1, - ["hp"]=729050000, - ["atk"]=5830000, + ["hp"]=600970000, + ["atk"]=4760000, ["atk_times"]=4, ["hurt_skill"]={ 30040, @@ -5112,8 +5112,8 @@ local monster_dungeon_armor = { }, [38607]={ ["monster_base"]=10009, - ["hp"]=438600000, - ["atk"]=5720000, + ["hp"]=400760000, + ["atk"]=4650000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -5124,8 +5124,8 @@ local monster_dungeon_armor = { }, [38707]={ ["monster_base"]=10030, - ["hp"]=506990000, - ["atk"]=5860000, + ["hp"]=421850000, + ["atk"]=4770000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -5136,8 +5136,8 @@ local monster_dungeon_armor = { }, [38807]={ ["monster_base"]=10048, - ["hp"]=595640000, - ["atk"]=5800000, + ["hp"]=493410000, + ["atk"]=4730000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -5148,8 +5148,8 @@ local monster_dungeon_armor = { }, [38907]={ ["monster_base"]=10041, - ["hp"]=682150000, - ["atk"]=6110000, + ["hp"]=566670000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -5161,8 +5161,8 @@ local monster_dungeon_armor = { [39007]={ ["monster_base"]=20005, ["is_boss"]=2, - ["hp"]=1152480000, - ["atk"]=6110000, + ["hp"]=955050000, + ["atk"]=4980000, ["atk_times"]=4, ["hurt_skill"]={ 30013, @@ -5179,8 +5179,8 @@ local monster_dungeon_armor = { }, [39107]={ ["monster_base"]=10003, - ["hp"]=180630000, - ["atk"]=3970000, + ["hp"]=169650000, + ["atk"]=3230000, ["atk_times"]=2, ["hurt_skill"]={ 20007, @@ -5191,8 +5191,8 @@ local monster_dungeon_armor = { }, [39207]={ ["monster_base"]=10056, - ["hp"]=269660000, - ["atk"]=4420000, + ["hp"]=247740000, + ["atk"]=3600000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -5203,8 +5203,8 @@ local monster_dungeon_armor = { }, [39307]={ ["monster_base"]=10062, - ["hp"]=336720000, - ["atk"]=4570000, + ["hp"]=309200000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -5215,8 +5215,8 @@ local monster_dungeon_armor = { }, [39407]={ ["monster_base"]=10057, - ["hp"]=355220000, - ["atk"]=5460000, + ["hp"]=324830000, + ["atk"]=4460000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -5228,8 +5228,8 @@ local monster_dungeon_armor = { [39507]={ ["monster_base"]=30009, ["is_boss"]=1, - ["hp"]=729050000, - ["atk"]=5830000, + ["hp"]=600970000, + ["atk"]=4760000, ["atk_times"]=4, ["hurt_skill"]={ 40021, @@ -5244,8 +5244,8 @@ local monster_dungeon_armor = { }, [39607]={ ["monster_base"]=10048, - ["hp"]=438600000, - ["atk"]=5720000, + ["hp"]=400760000, + ["atk"]=4650000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -5256,8 +5256,8 @@ local monster_dungeon_armor = { }, [39707]={ ["monster_base"]=10004, - ["hp"]=506990000, - ["atk"]=5860000, + ["hp"]=421850000, + ["atk"]=4770000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -5268,8 +5268,8 @@ local monster_dungeon_armor = { }, [39807]={ ["monster_base"]=10031, - ["hp"]=595640000, - ["atk"]=5800000, + ["hp"]=493410000, + ["atk"]=4730000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -5280,8 +5280,8 @@ local monster_dungeon_armor = { }, [39907]={ ["monster_base"]=10040, - ["hp"]=682150000, - ["atk"]=6110000, + ["hp"]=566670000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -5293,8 +5293,8 @@ local monster_dungeon_armor = { [40007]={ ["monster_base"]=20025, ["is_boss"]=2, - ["hp"]=1152480000, - ["atk"]=6110000, + ["hp"]=955050000, + ["atk"]=4980000, ["atk_times"]=4, ["hurt_skill"]={ 30073, @@ -5311,8 +5311,8 @@ local monster_dungeon_armor = { }, [40107]={ ["monster_base"]=10056, - ["hp"]=180630000, - ["atk"]=3970000, + ["hp"]=169650000, + ["atk"]=3230000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -5323,8 +5323,8 @@ local monster_dungeon_armor = { }, [40207]={ ["monster_base"]=10021, - ["hp"]=269660000, - ["atk"]=4420000, + ["hp"]=247740000, + ["atk"]=3600000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -5335,8 +5335,8 @@ local monster_dungeon_armor = { }, [40307]={ ["monster_base"]=10015, - ["hp"]=336720000, - ["atk"]=4570000, + ["hp"]=309200000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -5347,8 +5347,8 @@ local monster_dungeon_armor = { }, [40407]={ ["monster_base"]=10044, - ["hp"]=355220000, - ["atk"]=5460000, + ["hp"]=324830000, + ["atk"]=4460000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -5360,8 +5360,8 @@ local monster_dungeon_armor = { [40507]={ ["monster_base"]=30015, ["is_boss"]=1, - ["hp"]=729050000, - ["atk"]=5830000, + ["hp"]=600970000, + ["atk"]=4760000, ["atk_times"]=4, ["hurt_skill"]={ 40025, @@ -5376,8 +5376,8 @@ local monster_dungeon_armor = { }, [40607]={ ["monster_base"]=10055, - ["hp"]=438600000, - ["atk"]=5720000, + ["hp"]=400760000, + ["atk"]=4650000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -5388,8 +5388,8 @@ local monster_dungeon_armor = { }, [40707]={ ["monster_base"]=10003, - ["hp"]=506990000, - ["atk"]=5860000, + ["hp"]=421850000, + ["atk"]=4770000, ["atk_times"]=2, ["hurt_skill"]={ 20007, @@ -5400,8 +5400,8 @@ local monster_dungeon_armor = { }, [40807]={ ["monster_base"]=10031, - ["hp"]=595640000, - ["atk"]=5800000, + ["hp"]=493410000, + ["atk"]=4730000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -5412,8 +5412,8 @@ local monster_dungeon_armor = { }, [40907]={ ["monster_base"]=10004, - ["hp"]=682150000, - ["atk"]=6110000, + ["hp"]=566670000, + ["atk"]=4980000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -5425,8 +5425,8 @@ local monster_dungeon_armor = { [41007]={ ["monster_base"]=20037, ["is_boss"]=2, - ["hp"]=1152480000, - ["atk"]=6110000, + ["hp"]=955050000, + ["atk"]=4980000, ["atk_times"]=4, ["hurt_skill"]={ 30106, @@ -5445,8 +5445,8 @@ local monster_dungeon_armor = { }, [41107]={ ["monster_base"]=10019, - ["hp"]=180630000, - ["atk"]=3970000, + ["hp"]=169650000, + ["atk"]=3230000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -5457,8 +5457,8 @@ local monster_dungeon_armor = { }, [41207]={ ["monster_base"]=10017, - ["hp"]=269660000, - ["atk"]=4420000, + ["hp"]=247740000, + ["atk"]=3600000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -5469,8 +5469,8 @@ local monster_dungeon_armor = { }, [41307]={ ["monster_base"]=10055, - ["hp"]=336720000, - ["atk"]=4570000, + ["hp"]=309200000, + ["atk"]=3730000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -5481,8 +5481,8 @@ local monster_dungeon_armor = { }, [41407]={ ["monster_base"]=10013, - ["hp"]=355220000, - ["atk"]=5460000, + ["hp"]=324830000, + ["atk"]=4460000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -5494,8 +5494,8 @@ local monster_dungeon_armor = { [41507]={ ["monster_base"]=20030, ["is_boss"]=1, - ["hp"]=729050000, - ["atk"]=5830000, + ["hp"]=600970000, + ["atk"]=4760000, ["atk_times"]=4, ["hurt_skill"]={ 30088, @@ -5513,8 +5513,8 @@ local monster_dungeon_armor = { }, [41607]={ ["monster_base"]=10042, - ["hp"]=438600000, - ["atk"]=5720000, + ["hp"]=400760000, + ["atk"]=4650000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -5525,8 +5525,8 @@ local monster_dungeon_armor = { }, [41707]={ ["monster_base"]=10025, - ["hp"]=506990000, - ["atk"]=5860000, + ["hp"]=421850000, + ["atk"]=4770000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -5537,8 +5537,8 @@ local monster_dungeon_armor = { }, [41807]={ ["monster_base"]=10002, - ["hp"]=595640000, - ["atk"]=5800000, + ["hp"]=493410000, + ["atk"]=4730000, ["atk_times"]=2, ["hurt_skill"]={ 20004, @@ -5549,8 +5549,8 @@ local monster_dungeon_armor = { }, [41907]={ ["monster_base"]=10034, - ["hp"]=682150000, - ["atk"]=6110000, + ["hp"]=566670000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -5562,8 +5562,8 @@ local monster_dungeon_armor = { [42007]={ ["monster_base"]=20032, ["is_boss"]=2, - ["hp"]=1152480000, - ["atk"]=6110000, + ["hp"]=955050000, + ["atk"]=4980000, ["atk_times"]=4, ["hurt_skill"]={ 30094, @@ -5584,8 +5584,8 @@ local monster_dungeon_armor = { }, [42107]={ ["monster_base"]=10022, - ["hp"]=123300000, - ["atk"]=1030000, + ["hp"]=180880000, + ["atk"]=3430000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -5596,8 +5596,8 @@ local monster_dungeon_armor = { }, [42207]={ ["monster_base"]=10020, - ["hp"]=157710000, - ["atk"]=1090000, + ["hp"]=263550000, + ["atk"]=3820000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -5608,8 +5608,8 @@ local monster_dungeon_armor = { }, [42307]={ ["monster_base"]=10024, - ["hp"]=164880000, - ["atk"]=1130000, + ["hp"]=329070000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -5620,8 +5620,8 @@ local monster_dungeon_armor = { }, [42407]={ ["monster_base"]=10045, - ["hp"]=375380000, - ["atk"]=5770000, + ["hp"]=345780000, + ["atk"]=4720000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -5633,8 +5633,8 @@ local monster_dungeon_armor = { [42507]={ ["monster_base"]=20027, ["is_boss"]=1, - ["hp"]=770320000, - ["atk"]=6170000, + ["hp"]=639240000, + ["atk"]=5050000, ["atk_times"]=4, ["hurt_skill"]={ 30079, @@ -5648,8 +5648,8 @@ local monster_dungeon_armor = { }, [42607]={ ["monster_base"]=10002, - ["hp"]=463540000, - ["atk"]=6050000, + ["hp"]=426740000, + ["atk"]=4940000, ["atk_times"]=2, ["hurt_skill"]={ 20004, @@ -5660,8 +5660,8 @@ local monster_dungeon_armor = { }, [42707]={ ["monster_base"]=10008, - ["hp"]=535690000, - ["atk"]=6190000, + ["hp"]=448850000, + ["atk"]=5060000, ["atk_times"]=2, ["hurt_skill"]={ 20022, @@ -5672,8 +5672,8 @@ local monster_dungeon_armor = { }, [42807]={ ["monster_base"]=10019, - ["hp"]=629350000, - ["atk"]=6140000, + ["hp"]=525000000, + ["atk"]=5020000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -5684,8 +5684,8 @@ local monster_dungeon_armor = { }, [42907]={ ["monster_base"]=10048, - ["hp"]=720850000, - ["atk"]=6460000, + ["hp"]=602910000, + ["atk"]=5280000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -5697,8 +5697,8 @@ local monster_dungeon_armor = { [43007]={ ["monster_base"]=20034, ["is_boss"]=2, - ["hp"]=1217600000, - ["atk"]=6460000, + ["hp"]=1015810000, + ["atk"]=5280000, ["atk_times"]=4, ["hurt_skill"]={ 30097, @@ -5717,8 +5717,8 @@ local monster_dungeon_armor = { }, [43107]={ ["monster_base"]=10003, - ["hp"]=123300000, - ["atk"]=1030000, + ["hp"]=180880000, + ["atk"]=3430000, ["atk_times"]=2, ["hurt_skill"]={ 20007, @@ -5729,8 +5729,8 @@ local monster_dungeon_armor = { }, [43207]={ ["monster_base"]=10016, - ["hp"]=157710000, - ["atk"]=1090000, + ["hp"]=263550000, + ["atk"]=3820000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -5741,8 +5741,8 @@ local monster_dungeon_armor = { }, [43307]={ ["monster_base"]=10057, - ["hp"]=164880000, - ["atk"]=1130000, + ["hp"]=329070000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -5753,8 +5753,8 @@ local monster_dungeon_armor = { }, [43407]={ ["monster_base"]=10023, - ["hp"]=375380000, - ["atk"]=5770000, + ["hp"]=345780000, + ["atk"]=4720000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -5766,8 +5766,8 @@ local monster_dungeon_armor = { [43507]={ ["monster_base"]=30012, ["is_boss"]=1, - ["hp"]=770320000, - ["atk"]=6170000, + ["hp"]=639240000, + ["atk"]=5050000, ["atk_times"]=4, ["hurt_skill"]={ 40005, @@ -5783,8 +5783,8 @@ local monster_dungeon_armor = { }, [43607]={ ["monster_base"]=10040, - ["hp"]=463540000, - ["atk"]=6050000, + ["hp"]=426740000, + ["atk"]=4940000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -5795,8 +5795,8 @@ local monster_dungeon_armor = { }, [43707]={ ["monster_base"]=10041, - ["hp"]=535690000, - ["atk"]=6190000, + ["hp"]=448850000, + ["atk"]=5060000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -5807,8 +5807,8 @@ local monster_dungeon_armor = { }, [43807]={ ["monster_base"]=10032, - ["hp"]=629350000, - ["atk"]=6140000, + ["hp"]=525000000, + ["atk"]=5020000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -5819,8 +5819,8 @@ local monster_dungeon_armor = { }, [43907]={ ["monster_base"]=10020, - ["hp"]=720850000, - ["atk"]=6460000, + ["hp"]=602910000, + ["atk"]=5280000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -5832,8 +5832,8 @@ local monster_dungeon_armor = { [44007]={ ["monster_base"]=20009, ["is_boss"]=2, - ["hp"]=1217600000, - ["atk"]=6460000, + ["hp"]=1015810000, + ["atk"]=5280000, ["atk_times"]=4, ["hurt_skill"]={ 30025, @@ -5851,8 +5851,8 @@ local monster_dungeon_armor = { }, [44107]={ ["monster_base"]=10027, - ["hp"]=123300000, - ["atk"]=1030000, + ["hp"]=180880000, + ["atk"]=3430000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -5863,8 +5863,8 @@ local monster_dungeon_armor = { }, [44207]={ ["monster_base"]=10014, - ["hp"]=157710000, - ["atk"]=1090000, + ["hp"]=263550000, + ["atk"]=3820000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -5875,8 +5875,8 @@ local monster_dungeon_armor = { }, [44307]={ ["monster_base"]=10042, - ["hp"]=164880000, - ["atk"]=1130000, + ["hp"]=329070000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -5887,8 +5887,8 @@ local monster_dungeon_armor = { }, [44407]={ ["monster_base"]=10054, - ["hp"]=375380000, - ["atk"]=5770000, + ["hp"]=345780000, + ["atk"]=4720000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -5900,8 +5900,8 @@ local monster_dungeon_armor = { [44507]={ ["monster_base"]=30010, ["is_boss"]=1, - ["hp"]=770320000, - ["atk"]=6170000, + ["hp"]=639240000, + ["atk"]=5050000, ["atk_times"]=4, ["hurt_skill"]={ 40013, @@ -5916,8 +5916,8 @@ local monster_dungeon_armor = { }, [44607]={ ["monster_base"]=10024, - ["hp"]=463540000, - ["atk"]=6050000, + ["hp"]=426740000, + ["atk"]=4940000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -5928,8 +5928,8 @@ local monster_dungeon_armor = { }, [44707]={ ["monster_base"]=10022, - ["hp"]=535690000, - ["atk"]=6190000, + ["hp"]=448850000, + ["atk"]=5060000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -5940,8 +5940,8 @@ local monster_dungeon_armor = { }, [44807]={ ["monster_base"]=10034, - ["hp"]=629350000, - ["atk"]=6140000, + ["hp"]=525000000, + ["atk"]=5020000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -5952,8 +5952,8 @@ local monster_dungeon_armor = { }, [44907]={ ["monster_base"]=10017, - ["hp"]=720850000, - ["atk"]=6460000, + ["hp"]=602910000, + ["atk"]=5280000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -5965,8 +5965,8 @@ local monster_dungeon_armor = { [45007]={ ["monster_base"]=20036, ["is_boss"]=2, - ["hp"]=1217600000, - ["atk"]=6460000, + ["hp"]=1015810000, + ["atk"]=5280000, ["atk_times"]=4, ["hurt_skill"]={ 30103, @@ -5984,8 +5984,8 @@ local monster_dungeon_armor = { }, [45107]={ ["monster_base"]=10009, - ["hp"]=123300000, - ["atk"]=1030000, + ["hp"]=180880000, + ["atk"]=3430000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -5996,8 +5996,8 @@ local monster_dungeon_armor = { }, [45207]={ ["monster_base"]=10036, - ["hp"]=157710000, - ["atk"]=1090000, + ["hp"]=263550000, + ["atk"]=3820000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -6008,8 +6008,8 @@ local monster_dungeon_armor = { }, [45307]={ ["monster_base"]=10029, - ["hp"]=164880000, - ["atk"]=1130000, + ["hp"]=329070000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -6020,8 +6020,8 @@ local monster_dungeon_armor = { }, [45407]={ ["monster_base"]=10031, - ["hp"]=375380000, - ["atk"]=5770000, + ["hp"]=345780000, + ["atk"]=4720000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -6033,8 +6033,8 @@ local monster_dungeon_armor = { [45507]={ ["monster_base"]=20014, ["is_boss"]=1, - ["hp"]=770320000, - ["atk"]=6170000, + ["hp"]=639240000, + ["atk"]=5050000, ["atk_times"]=4, ["hurt_skill"]={ 30040, @@ -6048,8 +6048,8 @@ local monster_dungeon_armor = { }, [45607]={ ["monster_base"]=10022, - ["hp"]=463540000, - ["atk"]=6050000, + ["hp"]=426740000, + ["atk"]=4940000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -6060,8 +6060,8 @@ local monster_dungeon_armor = { }, [45707]={ ["monster_base"]=10017, - ["hp"]=535690000, - ["atk"]=6190000, + ["hp"]=448850000, + ["atk"]=5060000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -6072,8 +6072,8 @@ local monster_dungeon_armor = { }, [45807]={ ["monster_base"]=10041, - ["hp"]=629350000, - ["atk"]=6140000, + ["hp"]=525000000, + ["atk"]=5020000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -6084,8 +6084,8 @@ local monster_dungeon_armor = { }, [45907]={ ["monster_base"]=10004, - ["hp"]=720850000, - ["atk"]=6460000, + ["hp"]=602910000, + ["atk"]=5280000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -6097,8 +6097,8 @@ local monster_dungeon_armor = { [46007]={ ["monster_base"]=20026, ["is_boss"]=2, - ["hp"]=1217600000, - ["atk"]=6460000, + ["hp"]=1015810000, + ["atk"]=5280000, ["atk_times"]=4, ["hurt_skill"]={ 30076, @@ -6115,8 +6115,8 @@ local monster_dungeon_armor = { }, [46107]={ ["monster_base"]=10040, - ["hp"]=123300000, - ["atk"]=1030000, + ["hp"]=180880000, + ["atk"]=3430000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -6127,8 +6127,8 @@ local monster_dungeon_armor = { }, [46207]={ ["monster_base"]=10013, - ["hp"]=157710000, - ["atk"]=1090000, + ["hp"]=263550000, + ["atk"]=3820000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -6139,8 +6139,8 @@ local monster_dungeon_armor = { }, [46307]={ ["monster_base"]=10014, - ["hp"]=164880000, - ["atk"]=1130000, + ["hp"]=329070000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -6151,8 +6151,8 @@ local monster_dungeon_armor = { }, [46407]={ ["monster_base"]=10021, - ["hp"]=375380000, - ["atk"]=5770000, + ["hp"]=345780000, + ["atk"]=4720000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -6164,8 +6164,8 @@ local monster_dungeon_armor = { [46507]={ ["monster_base"]=20012, ["is_boss"]=1, - ["hp"]=770320000, - ["atk"]=6170000, + ["hp"]=639240000, + ["atk"]=5050000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -6179,8 +6179,8 @@ local monster_dungeon_armor = { }, [46607]={ ["monster_base"]=10017, - ["hp"]=463540000, - ["atk"]=6050000, + ["hp"]=426740000, + ["atk"]=4940000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -6191,8 +6191,8 @@ local monster_dungeon_armor = { }, [46707]={ ["monster_base"]=10012, - ["hp"]=535690000, - ["atk"]=6190000, + ["hp"]=448850000, + ["atk"]=5060000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -6203,8 +6203,8 @@ local monster_dungeon_armor = { }, [46807]={ ["monster_base"]=10065, - ["hp"]=629350000, - ["atk"]=6140000, + ["hp"]=525000000, + ["atk"]=5020000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -6215,8 +6215,8 @@ local monster_dungeon_armor = { }, [46907]={ ["monster_base"]=10044, - ["hp"]=720850000, - ["atk"]=6460000, + ["hp"]=602910000, + ["atk"]=5280000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -6228,8 +6228,8 @@ local monster_dungeon_armor = { [47007]={ ["monster_base"]=20021, ["is_boss"]=2, - ["hp"]=1217600000, - ["atk"]=6460000, + ["hp"]=1015810000, + ["atk"]=5280000, ["atk_times"]=4, ["hurt_skill"]={ 30061, @@ -6247,8 +6247,8 @@ local monster_dungeon_armor = { }, [47107]={ ["monster_base"]=10026, - ["hp"]=123300000, - ["atk"]=1030000, + ["hp"]=180880000, + ["atk"]=3430000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -6259,8 +6259,8 @@ local monster_dungeon_armor = { }, [47207]={ ["monster_base"]=10021, - ["hp"]=157710000, - ["atk"]=1090000, + ["hp"]=263550000, + ["atk"]=3820000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -6271,8 +6271,8 @@ local monster_dungeon_armor = { }, [47307]={ ["monster_base"]=10036, - ["hp"]=164880000, - ["atk"]=1130000, + ["hp"]=329070000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -6283,8 +6283,8 @@ local monster_dungeon_armor = { }, [47407]={ ["monster_base"]=10009, - ["hp"]=375380000, - ["atk"]=5770000, + ["hp"]=345780000, + ["atk"]=4720000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -6296,8 +6296,8 @@ local monster_dungeon_armor = { [47507]={ ["monster_base"]=20017, ["is_boss"]=1, - ["hp"]=770320000, - ["atk"]=6170000, + ["hp"]=639240000, + ["atk"]=5050000, ["atk_times"]=4, ["hurt_skill"]={ 30049, @@ -6311,8 +6311,8 @@ local monster_dungeon_armor = { }, [47607]={ ["monster_base"]=10035, - ["hp"]=463540000, - ["atk"]=6050000, + ["hp"]=426740000, + ["atk"]=4940000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -6323,8 +6323,8 @@ local monster_dungeon_armor = { }, [47707]={ ["monster_base"]=10027, - ["hp"]=535690000, - ["atk"]=6190000, + ["hp"]=448850000, + ["atk"]=5060000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -6335,8 +6335,8 @@ local monster_dungeon_armor = { }, [47807]={ ["monster_base"]=10005, - ["hp"]=629350000, - ["atk"]=6140000, + ["hp"]=525000000, + ["atk"]=5020000, ["atk_times"]=2, ["hurt_skill"]={ 20013, @@ -6347,8 +6347,8 @@ local monster_dungeon_armor = { }, [47907]={ ["monster_base"]=10037, - ["hp"]=720850000, - ["atk"]=6460000, + ["hp"]=602910000, + ["atk"]=5280000, ["atk_times"]=3, ["hurt_skill"]={ 20106, @@ -6360,8 +6360,8 @@ local monster_dungeon_armor = { [48007]={ ["monster_base"]=20034, ["is_boss"]=2, - ["hp"]=1217600000, - ["atk"]=6460000, + ["hp"]=1015810000, + ["atk"]=5280000, ["atk_times"]=4, ["hurt_skill"]={ 30097, @@ -6380,8 +6380,8 @@ local monster_dungeon_armor = { }, [48107]={ ["monster_base"]=10044, - ["hp"]=243240000, - ["atk"]=5360000, + ["hp"]=191410000, + ["atk"]=3630000, ["atk_times"]=3, ["hurt_skill"]={ 20127, @@ -6392,8 +6392,8 @@ local monster_dungeon_armor = { }, [48207]={ ["monster_base"]=10027, - ["hp"]=362910000, - ["atk"]=5970000, + ["hp"]=278310000, + ["atk"]=4040000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -6404,8 +6404,8 @@ local monster_dungeon_armor = { }, [48307]={ ["monster_base"]=10064, - ["hp"]=452500000, - ["atk"]=6170000, + ["hp"]=347620000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -6416,8 +6416,8 @@ local monster_dungeon_armor = { }, [48407]={ ["monster_base"]=10042, - ["hp"]=477600000, - ["atk"]=7340000, + ["hp"]=365170000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -6429,8 +6429,8 @@ local monster_dungeon_armor = { [48507]={ ["monster_base"]=30012, ["is_boss"]=1, - ["hp"]=979070000, - ["atk"]=7860000, + ["hp"]=674740000, + ["atk"]=5330000, ["atk_times"]=4, ["hurt_skill"]={ 40005, @@ -6446,8 +6446,8 @@ local monster_dungeon_armor = { }, [48607]={ ["monster_base"]=10001, - ["hp"]=589900000, - ["atk"]=7740000, + ["hp"]=450590000, + ["atk"]=5230000, ["atk_times"]=2, ["hurt_skill"]={ 20001, @@ -6458,8 +6458,8 @@ local monster_dungeon_armor = { }, [48707]={ ["monster_base"]=10050, - ["hp"]=681040000, - ["atk"]=7890000, + ["hp"]=474020000, + ["atk"]=5340000, ["atk_times"]=3, ["hurt_skill"]={ 20145, @@ -6470,8 +6470,8 @@ local monster_dungeon_armor = { }, [48807]={ ["monster_base"]=10003, - ["hp"]=800410000, - ["atk"]=7830000, + ["hp"]=554250000, + ["atk"]=5310000, ["atk_times"]=2, ["hurt_skill"]={ 20007, @@ -6482,8 +6482,8 @@ local monster_dungeon_armor = { }, [48907]={ ["monster_base"]=10057, - ["hp"]=917010000, - ["atk"]=8240000, + ["hp"]=636480000, + ["atk"]=5590000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -6495,8 +6495,8 @@ local monster_dungeon_armor = { [49007]={ ["monster_base"]=20035, ["is_boss"]=2, - ["hp"]=1547800000, - ["atk"]=8240000, + ["hp"]=1072430000, + ["atk"]=5590000, ["atk_times"]=4, ["hurt_skill"]={ 30100, @@ -6515,8 +6515,8 @@ local monster_dungeon_armor = { }, [49107]={ ["monster_base"]=10056, - ["hp"]=243240000, - ["atk"]=5360000, + ["hp"]=191410000, + ["atk"]=3630000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -6527,8 +6527,8 @@ local monster_dungeon_armor = { }, [49207]={ ["monster_base"]=10054, - ["hp"]=362910000, - ["atk"]=5970000, + ["hp"]=278310000, + ["atk"]=4040000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -6539,8 +6539,8 @@ local monster_dungeon_armor = { }, [49307]={ ["monster_base"]=10024, - ["hp"]=452500000, - ["atk"]=6170000, + ["hp"]=347620000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -6551,8 +6551,8 @@ local monster_dungeon_armor = { }, [49407]={ ["monster_base"]=10013, - ["hp"]=477600000, - ["atk"]=7340000, + ["hp"]=365170000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -6564,8 +6564,8 @@ local monster_dungeon_armor = { [49507]={ ["monster_base"]=30019, ["is_boss"]=1, - ["hp"]=979070000, - ["atk"]=7860000, + ["hp"]=674740000, + ["atk"]=5330000, ["atk_times"]=4, ["hurt_skill"]={ 40029, @@ -6584,8 +6584,8 @@ local monster_dungeon_armor = { }, [49607]={ ["monster_base"]=10017, - ["hp"]=589900000, - ["atk"]=7740000, + ["hp"]=450590000, + ["atk"]=5230000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -6596,8 +6596,8 @@ local monster_dungeon_armor = { }, [49707]={ ["monster_base"]=10006, - ["hp"]=681040000, - ["atk"]=7890000, + ["hp"]=474020000, + ["atk"]=5340000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -6608,8 +6608,8 @@ local monster_dungeon_armor = { }, [49807]={ ["monster_base"]=10028, - ["hp"]=800410000, - ["atk"]=7830000, + ["hp"]=554250000, + ["atk"]=5310000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -6620,8 +6620,8 @@ local monster_dungeon_armor = { }, [49907]={ ["monster_base"]=10057, - ["hp"]=917010000, - ["atk"]=8240000, + ["hp"]=636480000, + ["atk"]=5590000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -6633,8 +6633,8 @@ local monster_dungeon_armor = { [50007]={ ["monster_base"]=20023, ["is_boss"]=2, - ["hp"]=1547800000, - ["atk"]=8240000, + ["hp"]=1072430000, + ["atk"]=5590000, ["atk_times"]=4, ["hurt_skill"]={ 30067, @@ -6651,8 +6651,8 @@ local monster_dungeon_armor = { }, [50107]={ ["monster_base"]=10054, - ["hp"]=243240000, - ["atk"]=5360000, + ["hp"]=191410000, + ["atk"]=3630000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -6663,8 +6663,8 @@ local monster_dungeon_armor = { }, [50207]={ ["monster_base"]=10025, - ["hp"]=362910000, - ["atk"]=5970000, + ["hp"]=278310000, + ["atk"]=4040000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -6675,8 +6675,8 @@ local monster_dungeon_armor = { }, [50307]={ ["monster_base"]=10010, - ["hp"]=452500000, - ["atk"]=6170000, + ["hp"]=347620000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20028, @@ -6687,8 +6687,8 @@ local monster_dungeon_armor = { }, [50407]={ ["monster_base"]=10064, - ["hp"]=477600000, - ["atk"]=7340000, + ["hp"]=365170000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -6700,8 +6700,8 @@ local monster_dungeon_armor = { [50507]={ ["monster_base"]=20015, ["is_boss"]=1, - ["hp"]=979070000, - ["atk"]=7860000, + ["hp"]=674740000, + ["atk"]=5330000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -6718,8 +6718,8 @@ local monster_dungeon_armor = { }, [50607]={ ["monster_base"]=10007, - ["hp"]=589900000, - ["atk"]=7740000, + ["hp"]=450590000, + ["atk"]=5230000, ["atk_times"]=2, ["hurt_skill"]={ 20019, @@ -6730,8 +6730,8 @@ local monster_dungeon_armor = { }, [50707]={ ["monster_base"]=10040, - ["hp"]=681040000, - ["atk"]=7890000, + ["hp"]=474020000, + ["atk"]=5340000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -6742,8 +6742,8 @@ local monster_dungeon_armor = { }, [50807]={ ["monster_base"]=10018, - ["hp"]=800410000, - ["atk"]=7830000, + ["hp"]=554250000, + ["atk"]=5310000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -6754,8 +6754,8 @@ local monster_dungeon_armor = { }, [50907]={ ["monster_base"]=10043, - ["hp"]=917010000, - ["atk"]=8240000, + ["hp"]=636480000, + ["atk"]=5590000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -6767,8 +6767,8 @@ local monster_dungeon_armor = { [51007]={ ["monster_base"]=20020, ["is_boss"]=2, - ["hp"]=1547800000, - ["atk"]=8240000, + ["hp"]=1072430000, + ["atk"]=5590000, ["atk_times"]=4, ["hurt_skill"]={ 30058, @@ -6786,8 +6786,8 @@ local monster_dungeon_armor = { }, [51107]={ ["monster_base"]=10004, - ["hp"]=243240000, - ["atk"]=5360000, + ["hp"]=191410000, + ["atk"]=3630000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -6798,8 +6798,8 @@ local monster_dungeon_armor = { }, [51207]={ ["monster_base"]=10033, - ["hp"]=362910000, - ["atk"]=5970000, + ["hp"]=278310000, + ["atk"]=4040000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -6810,8 +6810,8 @@ local monster_dungeon_armor = { }, [51307]={ ["monster_base"]=10064, - ["hp"]=452500000, - ["atk"]=6170000, + ["hp"]=347620000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -6822,8 +6822,8 @@ local monster_dungeon_armor = { }, [51407]={ ["monster_base"]=10062, - ["hp"]=477600000, - ["atk"]=7340000, + ["hp"]=365170000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -6835,8 +6835,8 @@ local monster_dungeon_armor = { [51507]={ ["monster_base"]=20012, ["is_boss"]=1, - ["hp"]=979070000, - ["atk"]=7860000, + ["hp"]=674740000, + ["atk"]=5330000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -6850,8 +6850,8 @@ local monster_dungeon_armor = { }, [51607]={ ["monster_base"]=10014, - ["hp"]=589900000, - ["atk"]=7740000, + ["hp"]=450590000, + ["atk"]=5230000, ["atk_times"]=3, ["hurt_skill"]={ 20037, @@ -6862,8 +6862,8 @@ local monster_dungeon_armor = { }, [51707]={ ["monster_base"]=10064, - ["hp"]=681040000, - ["atk"]=7890000, + ["hp"]=474020000, + ["atk"]=5340000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -6874,8 +6874,8 @@ local monster_dungeon_armor = { }, [51807]={ ["monster_base"]=10036, - ["hp"]=800410000, - ["atk"]=7830000, + ["hp"]=554250000, + ["atk"]=5310000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -6886,8 +6886,8 @@ local monster_dungeon_armor = { }, [51907]={ ["monster_base"]=10013, - ["hp"]=917010000, - ["atk"]=8240000, + ["hp"]=636480000, + ["atk"]=5590000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -6899,8 +6899,8 @@ local monster_dungeon_armor = { [52007]={ ["monster_base"]=20024, ["is_boss"]=2, - ["hp"]=1547800000, - ["atk"]=8240000, + ["hp"]=1072430000, + ["atk"]=5590000, ["atk_times"]=4, ["hurt_skill"]={ 30070, @@ -6918,8 +6918,8 @@ local monster_dungeon_armor = { }, [52107]={ ["monster_base"]=10006, - ["hp"]=243240000, - ["atk"]=5360000, + ["hp"]=191410000, + ["atk"]=3630000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -6930,8 +6930,8 @@ local monster_dungeon_armor = { }, [52207]={ ["monster_base"]=10026, - ["hp"]=362910000, - ["atk"]=5970000, + ["hp"]=278310000, + ["atk"]=4040000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -6942,8 +6942,8 @@ local monster_dungeon_armor = { }, [52307]={ ["monster_base"]=10029, - ["hp"]=452500000, - ["atk"]=6170000, + ["hp"]=347620000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -6954,8 +6954,8 @@ local monster_dungeon_armor = { }, [52407]={ ["monster_base"]=10009, - ["hp"]=477600000, - ["atk"]=7340000, + ["hp"]=365170000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -6967,8 +6967,8 @@ local monster_dungeon_armor = { [52507]={ ["monster_base"]=20027, ["is_boss"]=1, - ["hp"]=979070000, - ["atk"]=7860000, + ["hp"]=674740000, + ["atk"]=5330000, ["atk_times"]=4, ["hurt_skill"]={ 30079, @@ -6982,8 +6982,8 @@ local monster_dungeon_armor = { }, [52607]={ ["monster_base"]=10035, - ["hp"]=589900000, - ["atk"]=7740000, + ["hp"]=450590000, + ["atk"]=5230000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -6994,8 +6994,8 @@ local monster_dungeon_armor = { }, [52707]={ ["monster_base"]=10043, - ["hp"]=681040000, - ["atk"]=7890000, + ["hp"]=474020000, + ["atk"]=5340000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -7006,8 +7006,8 @@ local monster_dungeon_armor = { }, [52807]={ ["monster_base"]=10030, - ["hp"]=800410000, - ["atk"]=7830000, + ["hp"]=554250000, + ["atk"]=5310000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -7018,8 +7018,8 @@ local monster_dungeon_armor = { }, [52907]={ ["monster_base"]=10009, - ["hp"]=917010000, - ["atk"]=8240000, + ["hp"]=636480000, + ["atk"]=5590000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -7031,8 +7031,8 @@ local monster_dungeon_armor = { [53007]={ ["monster_base"]=20021, ["is_boss"]=2, - ["hp"]=1547800000, - ["atk"]=8240000, + ["hp"]=1072430000, + ["atk"]=5590000, ["atk_times"]=4, ["hurt_skill"]={ 30061, @@ -7050,8 +7050,8 @@ local monster_dungeon_armor = { }, [53107]={ ["monster_base"]=10057, - ["hp"]=243240000, - ["atk"]=5360000, + ["hp"]=191410000, + ["atk"]=3630000, ["atk_times"]=3, ["hurt_skill"]={ 20166, @@ -7062,8 +7062,8 @@ local monster_dungeon_armor = { }, [53207]={ ["monster_base"]=10006, - ["hp"]=362910000, - ["atk"]=5970000, + ["hp"]=278310000, + ["atk"]=4040000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -7074,8 +7074,8 @@ local monster_dungeon_armor = { }, [53307]={ ["monster_base"]=10051, - ["hp"]=452500000, - ["atk"]=6170000, + ["hp"]=347620000, + ["atk"]=4170000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -7086,8 +7086,8 @@ local monster_dungeon_armor = { }, [53407]={ ["monster_base"]=10019, - ["hp"]=477600000, - ["atk"]=7340000, + ["hp"]=365170000, + ["atk"]=4980000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -7099,8 +7099,8 @@ local monster_dungeon_armor = { [53507]={ ["monster_base"]=30009, ["is_boss"]=1, - ["hp"]=979070000, - ["atk"]=7860000, + ["hp"]=674740000, + ["atk"]=5330000, ["atk_times"]=4, ["hurt_skill"]={ 40021, @@ -7115,8 +7115,8 @@ local monster_dungeon_armor = { }, [53607]={ ["monster_base"]=10024, - ["hp"]=589900000, - ["atk"]=7740000, + ["hp"]=450590000, + ["atk"]=5230000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -7127,8 +7127,8 @@ local monster_dungeon_armor = { }, [53707]={ ["monster_base"]=10001, - ["hp"]=681040000, - ["atk"]=7890000, + ["hp"]=474020000, + ["atk"]=5340000, ["atk_times"]=2, ["hurt_skill"]={ 20001, @@ -7139,8 +7139,8 @@ local monster_dungeon_armor = { }, [53807]={ ["monster_base"]=10015, - ["hp"]=800410000, - ["atk"]=7830000, + ["hp"]=554250000, + ["atk"]=5310000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -7151,8 +7151,8 @@ local monster_dungeon_armor = { }, [53907]={ ["monster_base"]=10035, - ["hp"]=917010000, - ["atk"]=8240000, + ["hp"]=636480000, + ["atk"]=5590000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -7164,8 +7164,8 @@ local monster_dungeon_armor = { [54007]={ ["monster_base"]=20038, ["is_boss"]=2, - ["hp"]=1547800000, - ["atk"]=8240000, + ["hp"]=1072430000, + ["atk"]=5590000, ["atk_times"]=4, ["hurt_skill"]={ 30109, @@ -7186,8 +7186,8 @@ local monster_dungeon_armor = { }, [54107]={ ["monster_base"]=10045, - ["hp"]=270340000, - ["atk"]=5950000, + ["hp"]=205490000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -7198,8 +7198,8 @@ local monster_dungeon_armor = { }, [54207]={ ["monster_base"]=10012, - ["hp"]=403210000, - ["atk"]=6660000, + ["hp"]=298160000, + ["atk"]=4390000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -7210,8 +7210,8 @@ local monster_dungeon_armor = { }, [54307]={ ["monster_base"]=10035, - ["hp"]=502130000, - ["atk"]=6870000, + ["hp"]=372560000, + ["atk"]=4530000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -7222,8 +7222,8 @@ local monster_dungeon_armor = { }, [54407]={ ["monster_base"]=10004, - ["hp"]=530250000, - ["atk"]=8190000, + ["hp"]=391500000, + ["atk"]=5410000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -7235,8 +7235,8 @@ local monster_dungeon_armor = { [54507]={ ["monster_base"]=20025, ["is_boss"]=1, - ["hp"]=1086210000, - ["atk"]=8730000, + ["hp"]=722740000, + ["atk"]=5790000, ["atk_times"]=4, ["hurt_skill"]={ 30073, @@ -7253,8 +7253,8 @@ local monster_dungeon_armor = { }, [54607]={ ["monster_base"]=10012, - ["hp"]=654930000, - ["atk"]=8630000, + ["hp"]=482700000, + ["atk"]=5690000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -7265,8 +7265,8 @@ local monster_dungeon_armor = { }, [54707]={ ["monster_base"]=10009, - ["hp"]=755890000, - ["atk"]=8780000, + ["hp"]=507910000, + ["atk"]=5800000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -7277,8 +7277,8 @@ local monster_dungeon_armor = { }, [54807]={ ["monster_base"]=10021, - ["hp"]=888130000, - ["atk"]=8730000, + ["hp"]=593840000, + ["atk"]=5780000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -7289,8 +7289,8 @@ local monster_dungeon_armor = { }, [54907]={ ["monster_base"]=10029, - ["hp"]=1017840000, - ["atk"]=9160000, + ["hp"]=681920000, + ["atk"]=6080000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -7302,8 +7302,8 @@ local monster_dungeon_armor = { [55007]={ ["monster_base"]=20036, ["is_boss"]=2, - ["hp"]=1717380000, - ["atk"]=9160000, + ["hp"]=1148710000, + ["atk"]=6080000, ["atk_times"]=4, ["hurt_skill"]={ 30103, @@ -7321,8 +7321,8 @@ local monster_dungeon_armor = { }, [55107]={ ["monster_base"]=10065, - ["hp"]=270340000, - ["atk"]=5950000, + ["hp"]=205490000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -7333,8 +7333,8 @@ local monster_dungeon_armor = { }, [55207]={ ["monster_base"]=10008, - ["hp"]=403210000, - ["atk"]=6660000, + ["hp"]=298160000, + ["atk"]=4390000, ["atk_times"]=2, ["hurt_skill"]={ 20022, @@ -7345,8 +7345,8 @@ local monster_dungeon_armor = { }, [55307]={ ["monster_base"]=10024, - ["hp"]=502130000, - ["atk"]=6870000, + ["hp"]=372560000, + ["atk"]=4530000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -7357,8 +7357,8 @@ local monster_dungeon_armor = { }, [55407]={ ["monster_base"]=10038, - ["hp"]=530250000, - ["atk"]=8190000, + ["hp"]=391500000, + ["atk"]=5410000, ["atk_times"]=3, ["hurt_skill"]={ 20109, @@ -7370,8 +7370,8 @@ local monster_dungeon_armor = { [55507]={ ["monster_base"]=30020, ["is_boss"]=1, - ["hp"]=1086210000, - ["atk"]=8730000, + ["hp"]=722740000, + ["atk"]=5790000, ["atk_times"]=4, ["hurt_skill"]={ 40033, @@ -7386,8 +7386,8 @@ local monster_dungeon_armor = { }, [55607]={ ["monster_base"]=10048, - ["hp"]=654930000, - ["atk"]=8630000, + ["hp"]=482700000, + ["atk"]=5690000, ["atk_times"]=3, ["hurt_skill"]={ 20139, @@ -7398,8 +7398,8 @@ local monster_dungeon_armor = { }, [55707]={ ["monster_base"]=10023, - ["hp"]=755890000, - ["atk"]=8780000, + ["hp"]=507910000, + ["atk"]=5800000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -7410,8 +7410,8 @@ local monster_dungeon_armor = { }, [55807]={ ["monster_base"]=10017, - ["hp"]=888130000, - ["atk"]=8730000, + ["hp"]=593840000, + ["atk"]=5780000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -7422,8 +7422,8 @@ local monster_dungeon_armor = { }, [55907]={ ["monster_base"]=10041, - ["hp"]=1017840000, - ["atk"]=9160000, + ["hp"]=681920000, + ["atk"]=6080000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -7435,8 +7435,8 @@ local monster_dungeon_armor = { [56007]={ ["monster_base"]=20018, ["is_boss"]=2, - ["hp"]=1717380000, - ["atk"]=9160000, + ["hp"]=1148710000, + ["atk"]=6080000, ["atk_times"]=4, ["hurt_skill"]={ 30052, @@ -7454,8 +7454,8 @@ local monster_dungeon_armor = { }, [56107]={ ["monster_base"]=10024, - ["hp"]=270340000, - ["atk"]=5950000, + ["hp"]=205490000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -7466,8 +7466,8 @@ local monster_dungeon_armor = { }, [56207]={ ["monster_base"]=10006, - ["hp"]=403210000, - ["atk"]=6660000, + ["hp"]=298160000, + ["atk"]=4390000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -7478,8 +7478,8 @@ local monster_dungeon_armor = { }, [56307]={ ["monster_base"]=10040, - ["hp"]=502130000, - ["atk"]=6870000, + ["hp"]=372560000, + ["atk"]=4530000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -7490,8 +7490,8 @@ local monster_dungeon_armor = { }, [56407]={ ["monster_base"]=10061, - ["hp"]=530250000, - ["atk"]=8190000, + ["hp"]=391500000, + ["atk"]=5410000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -7503,8 +7503,8 @@ local monster_dungeon_armor = { [56507]={ ["monster_base"]=20005, ["is_boss"]=1, - ["hp"]=1086210000, - ["atk"]=8730000, + ["hp"]=722740000, + ["atk"]=5790000, ["atk_times"]=4, ["hurt_skill"]={ 30013, @@ -7521,8 +7521,8 @@ local monster_dungeon_armor = { }, [56607]={ ["monster_base"]=10009, - ["hp"]=654930000, - ["atk"]=8630000, + ["hp"]=482700000, + ["atk"]=5690000, ["atk_times"]=3, ["hurt_skill"]={ 20025, @@ -7533,8 +7533,8 @@ local monster_dungeon_armor = { }, [56707]={ ["monster_base"]=10015, - ["hp"]=755890000, - ["atk"]=8780000, + ["hp"]=507910000, + ["atk"]=5800000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -7545,8 +7545,8 @@ local monster_dungeon_armor = { }, [56807]={ ["monster_base"]=10018, - ["hp"]=888130000, - ["atk"]=8730000, + ["hp"]=593840000, + ["atk"]=5780000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -7557,8 +7557,8 @@ local monster_dungeon_armor = { }, [56907]={ ["monster_base"]=10040, - ["hp"]=1017840000, - ["atk"]=9160000, + ["hp"]=681920000, + ["atk"]=6080000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -7570,8 +7570,8 @@ local monster_dungeon_armor = { [57007]={ ["monster_base"]=20025, ["is_boss"]=2, - ["hp"]=1717380000, - ["atk"]=9160000, + ["hp"]=1148710000, + ["atk"]=6080000, ["atk_times"]=4, ["hurt_skill"]={ 30073, @@ -7588,8 +7588,8 @@ local monster_dungeon_armor = { }, [57107]={ ["monster_base"]=10013, - ["hp"]=270340000, - ["atk"]=5950000, + ["hp"]=205490000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -7600,8 +7600,8 @@ local monster_dungeon_armor = { }, [57207]={ ["monster_base"]=10060, - ["hp"]=403210000, - ["atk"]=6660000, + ["hp"]=298160000, + ["atk"]=4390000, ["atk_times"]=3, ["hurt_skill"]={ 20175, @@ -7612,8 +7612,8 @@ local monster_dungeon_armor = { }, [57307]={ ["monster_base"]=10019, - ["hp"]=502130000, - ["atk"]=6870000, + ["hp"]=372560000, + ["atk"]=4530000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -7624,8 +7624,8 @@ local monster_dungeon_armor = { }, [57407]={ ["monster_base"]=10004, - ["hp"]=530250000, - ["atk"]=8190000, + ["hp"]=391500000, + ["atk"]=5410000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -7637,8 +7637,8 @@ local monster_dungeon_armor = { [57507]={ ["monster_base"]=20012, ["is_boss"]=1, - ["hp"]=1086210000, - ["atk"]=8730000, + ["hp"]=722740000, + ["atk"]=5790000, ["atk_times"]=4, ["hurt_skill"]={ 30034, @@ -7652,8 +7652,8 @@ local monster_dungeon_armor = { }, [57607]={ ["monster_base"]=10061, - ["hp"]=654930000, - ["atk"]=8630000, + ["hp"]=482700000, + ["atk"]=5690000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -7664,8 +7664,8 @@ local monster_dungeon_armor = { }, [57707]={ ["monster_base"]=10046, - ["hp"]=755890000, - ["atk"]=8780000, + ["hp"]=507910000, + ["atk"]=5800000, ["atk_times"]=3, ["hurt_skill"]={ 20133, @@ -7676,8 +7676,8 @@ local monster_dungeon_armor = { }, [57807]={ ["monster_base"]=10039, - ["hp"]=888130000, - ["atk"]=8730000, + ["hp"]=593840000, + ["atk"]=5780000, ["atk_times"]=3, ["hurt_skill"]={ 20112, @@ -7688,8 +7688,8 @@ local monster_dungeon_armor = { }, [57907]={ ["monster_base"]=10027, - ["hp"]=1017840000, - ["atk"]=9160000, + ["hp"]=681920000, + ["atk"]=6080000, ["atk_times"]=3, ["hurt_skill"]={ 20076, @@ -7701,8 +7701,8 @@ local monster_dungeon_armor = { [58007]={ ["monster_base"]=20019, ["is_boss"]=2, - ["hp"]=1717380000, - ["atk"]=9160000, + ["hp"]=1148710000, + ["atk"]=6080000, ["atk_times"]=4, ["hurt_skill"]={ 30055, @@ -7720,8 +7720,8 @@ local monster_dungeon_armor = { }, [58107]={ ["monster_base"]=10037, - ["hp"]=270340000, - ["atk"]=5950000, + ["hp"]=205490000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20106, @@ -7732,8 +7732,8 @@ local monster_dungeon_armor = { }, [58207]={ ["monster_base"]=10034, - ["hp"]=403210000, - ["atk"]=6660000, + ["hp"]=298160000, + ["atk"]=4390000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -7744,8 +7744,8 @@ local monster_dungeon_armor = { }, [58307]={ ["monster_base"]=10022, - ["hp"]=502130000, - ["atk"]=6870000, + ["hp"]=372560000, + ["atk"]=4530000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -7756,8 +7756,8 @@ local monster_dungeon_armor = { }, [58407]={ ["monster_base"]=10029, - ["hp"]=530250000, - ["atk"]=8190000, + ["hp"]=391500000, + ["atk"]=5410000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -7769,8 +7769,8 @@ local monster_dungeon_armor = { [58507]={ ["monster_base"]=20015, ["is_boss"]=1, - ["hp"]=1086210000, - ["atk"]=8730000, + ["hp"]=722740000, + ["atk"]=5790000, ["atk_times"]=4, ["hurt_skill"]={ 30043, @@ -7787,8 +7787,8 @@ local monster_dungeon_armor = { }, [58607]={ ["monster_base"]=10017, - ["hp"]=654930000, - ["atk"]=8630000, + ["hp"]=482700000, + ["atk"]=5690000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -7799,8 +7799,8 @@ local monster_dungeon_armor = { }, [58707]={ ["monster_base"]=10065, - ["hp"]=755890000, - ["atk"]=8780000, + ["hp"]=507910000, + ["atk"]=5800000, ["atk_times"]=3, ["hurt_skill"]={ 20187, @@ -7811,8 +7811,8 @@ local monster_dungeon_armor = { }, [58807]={ ["monster_base"]=10016, - ["hp"]=888130000, - ["atk"]=8730000, + ["hp"]=593840000, + ["atk"]=5780000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -7823,8 +7823,8 @@ local monster_dungeon_armor = { }, [58907]={ ["monster_base"]=10064, - ["hp"]=1017840000, - ["atk"]=9160000, + ["hp"]=681920000, + ["atk"]=6080000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -7836,8 +7836,8 @@ local monster_dungeon_armor = { [59007]={ ["monster_base"]=20024, ["is_boss"]=2, - ["hp"]=1717380000, - ["atk"]=9160000, + ["hp"]=1148710000, + ["atk"]=6080000, ["atk_times"]=4, ["hurt_skill"]={ 30070, @@ -7855,8 +7855,8 @@ local monster_dungeon_armor = { }, [59107]={ ["monster_base"]=10022, - ["hp"]=270340000, - ["atk"]=5950000, + ["hp"]=205490000, + ["atk"]=3950000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -7867,8 +7867,8 @@ local monster_dungeon_armor = { }, [59207]={ ["monster_base"]=10028, - ["hp"]=403210000, - ["atk"]=6660000, + ["hp"]=298160000, + ["atk"]=4390000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -7879,8 +7879,8 @@ local monster_dungeon_armor = { }, [59307]={ ["monster_base"]=10006, - ["hp"]=502130000, - ["atk"]=6870000, + ["hp"]=372560000, + ["atk"]=4530000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -7891,8 +7891,8 @@ local monster_dungeon_armor = { }, [59407]={ ["monster_base"]=10041, - ["hp"]=530250000, - ["atk"]=8190000, + ["hp"]=391500000, + ["atk"]=5410000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -7904,8 +7904,8 @@ local monster_dungeon_armor = { [59507]={ ["monster_base"]=20002, ["is_boss"]=1, - ["hp"]=1086210000, - ["atk"]=8730000, + ["hp"]=722740000, + ["atk"]=5790000, ["atk_times"]=4, ["hurt_skill"]={ 30004, @@ -7919,8 +7919,8 @@ local monster_dungeon_armor = { }, [59607]={ ["monster_base"]=10040, - ["hp"]=654930000, - ["atk"]=8630000, + ["hp"]=482700000, + ["atk"]=5690000, ["atk_times"]=3, ["hurt_skill"]={ 20115, @@ -7931,8 +7931,8 @@ local monster_dungeon_armor = { }, [59707]={ ["monster_base"]=10052, - ["hp"]=755890000, - ["atk"]=8780000, + ["hp"]=507910000, + ["atk"]=5800000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -7943,8 +7943,8 @@ local monster_dungeon_armor = { }, [59807]={ ["monster_base"]=10017, - ["hp"]=888130000, - ["atk"]=8730000, + ["hp"]=593840000, + ["atk"]=5780000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -7955,8 +7955,8 @@ local monster_dungeon_armor = { }, [59907]={ ["monster_base"]=10064, - ["hp"]=1017840000, - ["atk"]=9160000, + ["hp"]=681920000, + ["atk"]=6080000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -7968,8 +7968,8 @@ local monster_dungeon_armor = { [60007]={ ["monster_base"]=20031, ["is_boss"]=2, - ["hp"]=1717380000, - ["atk"]=9160000, + ["hp"]=1148710000, + ["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 d4a1c9f2..ec959e5b 100644 --- a/lua/app/config/monster_dungeon_equip.lua +++ b/lua/app/config/monster_dungeon_equip.lua @@ -1,7 +1,7 @@ local monster_dungeon_equip = { [106]={ ["monster_base"]=10056, - ["hp"]=81620000, + ["hp"]=76930000, ["atk"]=1390000, ["atk_times"]=3, ["hurt_skill"]={ @@ -16,7 +16,7 @@ local monster_dungeon_equip = { }, [206]={ ["monster_base"]=10045, - ["hp"]=99240000, + ["hp"]=93400000, ["atk"]=1930000, ["atk_times"]=3, ["hurt_skill"]={ @@ -31,7 +31,7 @@ local monster_dungeon_equip = { }, [306]={ ["monster_base"]=10028, - ["hp"]=178640000, + ["hp"]=153020000, ["atk"]=2140000, ["atk_times"]=3, ["hurt_skill"]={ @@ -46,7 +46,7 @@ local monster_dungeon_equip = { }, [406]={ ["monster_base"]=10003, - ["hp"]=237440000, + ["hp"]=203320000, ["atk"]=2220000, ["atk_times"]=2, ["hurt_skill"]={ @@ -62,7 +62,7 @@ local monster_dungeon_equip = { [506]={ ["monster_base"]=20041, ["is_boss"]=2, - ["hp"]=431900000, + ["hp"]=386900000, ["atk"]=2260000, ["atk_times"]=4, ["hurt_skill"]={ @@ -82,7 +82,7 @@ local monster_dungeon_equip = { }, [606]={ ["monster_base"]=10060, - ["hp"]=90860000, + ["hp"]=85320000, ["atk"]=1540000, ["atk_times"]=3, ["hurt_skill"]={ @@ -97,7 +97,7 @@ local monster_dungeon_equip = { }, [706]={ ["monster_base"]=10055, - ["hp"]=110400000, + ["hp"]=103120000, ["atk"]=2150000, ["atk_times"]=3, ["hurt_skill"]={ @@ -112,7 +112,7 @@ local monster_dungeon_equip = { }, [806]={ ["monster_base"]=10027, - ["hp"]=198820000, + ["hp"]=168890000, ["atk"]=2380000, ["atk_times"]=3, ["hurt_skill"]={ @@ -127,7 +127,7 @@ local monster_dungeon_equip = { }, [906]={ ["monster_base"]=10064, - ["hp"]=264180000, + ["hp"]=224600000, ["atk"]=2470000, ["atk_times"]=3, ["hurt_skill"]={ @@ -143,7 +143,7 @@ local monster_dungeon_equip = { [1006]={ ["monster_base"]=20040, ["is_boss"]=2, - ["hp"]=480480000, + ["hp"]=426150000, ["atk"]=2520000, ["atk_times"]=4, ["hurt_skill"]={ @@ -162,7 +162,7 @@ local monster_dungeon_equip = { }, [1106]={ ["monster_base"]=10015, - ["hp"]=98780000, + ["hp"]=93300000, ["atk"]=1680000, ["atk_times"]=3, ["hurt_skill"]={ @@ -177,7 +177,7 @@ local monster_dungeon_equip = { }, [1206]={ ["monster_base"]=10025, - ["hp"]=119880000, + ["hp"]=112820000, ["atk"]=2340000, ["atk_times"]=3, ["hurt_skill"]={ @@ -192,7 +192,7 @@ local monster_dungeon_equip = { }, [1306]={ ["monster_base"]=10030, - ["hp"]=215800000, + ["hp"]=191790000, ["atk"]=2590000, ["atk_times"]=3, ["hurt_skill"]={ @@ -207,7 +207,7 @@ local monster_dungeon_equip = { }, [1406]={ ["monster_base"]=10018, - ["hp"]=286720000, + ["hp"]=255070000, ["atk"]=2690000, ["atk_times"]=3, ["hurt_skill"]={ @@ -223,7 +223,7 @@ local monster_dungeon_equip = { [1506]={ ["monster_base"]=20039, ["is_boss"]=2, - ["hp"]=521500000, + ["hp"]=494490000, ["atk"]=2740000, ["atk_times"]=4, ["hurt_skill"]={ @@ -242,8 +242,8 @@ local monster_dungeon_equip = { }, [1606]={ ["monster_base"]=10004, - ["hp"]=118220000, - ["atk"]=2020000, + ["hp"]=119700000, + ["atk"]=1830000, ["atk_times"]=2, ["hurt_skill"]={ 20010, @@ -257,8 +257,8 @@ local monster_dungeon_equip = { }, [1706]={ ["monster_base"]=10049, - ["hp"]=143890000, - ["atk"]=2820000, + ["hp"]=143630000, + ["atk"]=2540000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -272,8 +272,8 @@ local monster_dungeon_equip = { }, [1806]={ ["monster_base"]=10037, - ["hp"]=259680000, - ["atk"]=3120000, + ["hp"]=235050000, + ["atk"]=2810000, ["atk_times"]=3, ["hurt_skill"]={ 20106, @@ -287,8 +287,8 @@ local monster_dungeon_equip = { }, [1906]={ ["monster_base"]=10016, - ["hp"]=351150000, - ["atk"]=3240000, + ["hp"]=312870000, + ["atk"]=2920000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -303,8 +303,8 @@ local monster_dungeon_equip = { [2006]={ ["monster_base"]=20043, ["is_boss"]=2, - ["hp"]=638400000, - ["atk"]=3310000, + ["hp"]=566760000, + ["atk"]=2980000, ["atk_times"]=4, ["hurt_skill"]={ 30120, @@ -323,8 +323,8 @@ local monster_dungeon_equip = { }, [2106]={ ["monster_base"]=10022, - ["hp"]=126040000, - ["atk"]=2180000, + ["hp"]=136880000, + ["atk"]=2010000, ["atk_times"]=3, ["hurt_skill"]={ 20061, @@ -338,8 +338,8 @@ local monster_dungeon_equip = { }, [2206]={ ["monster_base"]=10032, - ["hp"]=153470000, - ["atk"]=3010000, + ["hp"]=163040000, + ["atk"]=2780000, ["atk_times"]=3, ["hurt_skill"]={ 20091, @@ -353,8 +353,8 @@ local monster_dungeon_equip = { }, [2306]={ ["monster_base"]=10013, - ["hp"]=276960000, - ["atk"]=3330000, + ["hp"]=267170000, + ["atk"]=3070000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -368,8 +368,8 @@ local monster_dungeon_equip = { }, [2406]={ ["monster_base"]=10001, - ["hp"]=374550000, - ["atk"]=3480000, + ["hp"]=355450000, + ["atk"]=3200000, ["atk_times"]=2, ["hurt_skill"]={ 20001, @@ -384,8 +384,8 @@ local monster_dungeon_equip = { [2506]={ ["monster_base"]=20042, ["is_boss"]=2, - ["hp"]=680700000, - ["atk"]=3540000, + ["hp"]=643710000, + ["atk"]=3260000, ["atk_times"]=4, ["hurt_skill"]={ 30123, @@ -403,8 +403,8 @@ local monster_dungeon_equip = { }, [2606]={ ["monster_base"]=10045, - ["hp"]=140300000, - ["atk"]=2400000, + ["hp"]=147550000, + ["atk"]=2190000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -418,8 +418,8 @@ local monster_dungeon_equip = { }, [2706]={ ["monster_base"]=10056, - ["hp"]=169470000, - ["atk"]=3320000, + ["hp"]=175200000, + ["atk"]=3030000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -433,8 +433,8 @@ local monster_dungeon_equip = { }, [2806]={ ["monster_base"]=10003, - ["hp"]=306100000, - ["atk"]=3660000, + ["hp"]=287270000, + ["atk"]=3340000, ["atk_times"]=2, ["hurt_skill"]={ 20007, @@ -448,8 +448,8 @@ local monster_dungeon_equip = { }, [2906]={ ["monster_base"]=10028, - ["hp"]=415400000, - ["atk"]=3830000, + ["hp"]=382140000, + ["atk"]=3490000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -464,8 +464,8 @@ local monster_dungeon_equip = { [3006]={ ["monster_base"]=20041, ["is_boss"]=2, - ["hp"]=754750000, - ["atk"]=3970000, + ["hp"]=691660000, + ["atk"]=3560000, ["atk_times"]=4, ["hurt_skill"]={ 30126, @@ -484,8 +484,8 @@ local monster_dungeon_equip = { }, [3106]={ ["monster_base"]=10052, - ["hp"]=153460000, - ["atk"]=2630000, + ["hp"]=161570000, + ["atk"]=2380000, ["atk_times"]=3, ["hurt_skill"]={ 20151, @@ -499,8 +499,8 @@ local monster_dungeon_equip = { }, [3206]={ ["monster_base"]=10062, - ["hp"]=185090000, - ["atk"]=3630000, + ["hp"]=191650000, + ["atk"]=3300000, ["atk_times"]=3, ["hurt_skill"]={ 20181, @@ -514,8 +514,8 @@ local monster_dungeon_equip = { }, [3306]={ ["monster_base"]=10036, - ["hp"]=334280000, - ["atk"]=4000000, + ["hp"]=313710000, + ["atk"]=3620000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -529,8 +529,8 @@ local monster_dungeon_equip = { }, [3406]={ ["monster_base"]=10061, - ["hp"]=453650000, - ["atk"]=4190000, + ["hp"]=417370000, + ["atk"]=3790000, ["atk_times"]=3, ["hurt_skill"]={ 20178, @@ -545,8 +545,8 @@ local monster_dungeon_equip = { [3506]={ ["monster_base"]=20040, ["is_boss"]=2, - ["hp"]=824060000, - ["atk"]=4350000, + ["hp"]=754850000, + ["atk"]=3870000, ["atk_times"]=4, ["hurt_skill"]={ 30129, @@ -564,8 +564,8 @@ local monster_dungeon_equip = { }, [3606]={ ["monster_base"]=10030, - ["hp"]=163330000, - ["atk"]=2810000, + ["hp"]=175230000, + ["atk"]=2580000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -579,8 +579,8 @@ local monster_dungeon_equip = { }, [3706]={ ["monster_base"]=10015, - ["hp"]=196740000, - ["atk"]=3870000, + ["hp"]=207360000, + ["atk"]=3560000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -594,8 +594,8 @@ local monster_dungeon_equip = { }, [3806]={ ["monster_base"]=10025, - ["hp"]=355260000, - ["atk"]=4250000, + ["hp"]=338580000, + ["atk"]=3900000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -609,8 +609,8 @@ local monster_dungeon_equip = { }, [3906]={ ["monster_base"]=10034, - ["hp"]=481950000, - ["atk"]=4460000, + ["hp"]=450950000, + ["atk"]=4090000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -625,8 +625,8 @@ local monster_dungeon_equip = { [4006]={ ["monster_base"]=20039, ["is_boss"]=2, - ["hp"]=875620000, - ["atk"]=4630000, + ["hp"]=814970000, + ["atk"]=4170000, ["atk_times"]=4, ["hurt_skill"]={ 30117, @@ -644,8 +644,8 @@ local monster_dungeon_equip = { }, [4106]={ ["monster_base"]=10054, - ["hp"]=177360000, - ["atk"]=3070000, + ["hp"]=182360000, + ["atk"]=2660000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -659,8 +659,8 @@ local monster_dungeon_equip = { }, [4206]={ ["monster_base"]=10037, - ["hp"]=215560000, - ["atk"]=4230000, + ["hp"]=215460000, + ["atk"]=3660000, ["atk_times"]=3, ["hurt_skill"]={ 20106, @@ -674,8 +674,8 @@ local monster_dungeon_equip = { }, [4306]={ ["monster_base"]=10012, - ["hp"]=386500000, - ["atk"]=4650000, + ["hp"]=351510000, + ["atk"]=4010000, ["atk_times"]=3, ["hurt_skill"]={ 20031, @@ -689,8 +689,8 @@ local monster_dungeon_equip = { }, [4406]={ ["monster_base"]=10049, - ["hp"]=521660000, - ["atk"]=4870000, + ["hp"]=468340000, + ["atk"]=4210000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -705,8 +705,8 @@ local monster_dungeon_equip = { [4506]={ ["monster_base"]=20043, ["is_boss"]=2, - ["hp"]=947700000, - ["atk"]=5140000, + ["hp"]=846340000, + ["atk"]=4290000, ["atk_times"]=4, ["hurt_skill"]={ 30120, @@ -725,8 +725,8 @@ local monster_dungeon_equip = { }, [4606]={ ["monster_base"]=10042, - ["hp"]=187920000, - ["atk"]=3250000, + ["hp"]=187110000, + ["atk"]=2740000, ["atk_times"]=3, ["hurt_skill"]={ 20121, @@ -740,8 +740,8 @@ local monster_dungeon_equip = { }, [4706]={ ["monster_base"]=10026, - ["hp"]=228230000, - ["atk"]=4480000, + ["hp"]=220970000, + ["atk"]=3780000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -755,8 +755,8 @@ local monster_dungeon_equip = { }, [4806]={ ["monster_base"]=10019, - ["hp"]=409000000, - ["atk"]=4940000, + ["hp"]=360430000, + ["atk"]=4140000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -770,8 +770,8 @@ local monster_dungeon_equip = { }, [4906]={ ["monster_base"]=10001, - ["hp"]=551930000, - ["atk"]=5160000, + ["hp"]=480060000, + ["atk"]=4340000, ["atk_times"]=2, ["hurt_skill"]={ 20001, @@ -786,8 +786,8 @@ local monster_dungeon_equip = { [5006]={ ["monster_base"]=20042, ["is_boss"]=2, - ["hp"]=1002610000, - ["atk"]=5440000, + ["hp"]=867510000, + ["atk"]=4430000, ["atk_times"]=4, ["hurt_skill"]={ 30132, @@ -805,8 +805,8 @@ local monster_dungeon_equip = { }, [5106]={ ["monster_base"]=10045, - ["hp"]=199440000, - ["atk"]=3450000, + ["hp"]=200880000, + ["atk"]=2910000, ["atk_times"]=3, ["hurt_skill"]={ 20130, @@ -820,8 +820,8 @@ local monster_dungeon_equip = { }, [5206]={ ["monster_base"]=10056, - ["hp"]=242090000, - ["atk"]=4750000, + ["hp"]=236460000, + ["atk"]=4010000, ["atk_times"]=3, ["hurt_skill"]={ 20163, @@ -835,8 +835,8 @@ local monster_dungeon_equip = { }, [5306]={ ["monster_base"]=10003, - ["hp"]=433750000, - ["atk"]=5240000, + ["hp"]=385650000, + ["atk"]=4400000, ["atk_times"]=2, ["hurt_skill"]={ 20007, @@ -850,8 +850,8 @@ local monster_dungeon_equip = { }, [5406]={ ["monster_base"]=10028, - ["hp"]=585310000, - ["atk"]=5480000, + ["hp"]=513230000, + ["atk"]=4600000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -866,8 +866,8 @@ local monster_dungeon_equip = { [5506]={ ["monster_base"]=20041, ["is_boss"]=2, - ["hp"]=1063140000, - ["atk"]=5780000, + ["hp"]=927400000, + ["atk"]=4690000, ["atk_times"]=4, ["hurt_skill"]={ 30126, @@ -886,8 +886,8 @@ local monster_dungeon_equip = { }, [5606]={ ["monster_base"]=10029, - ["hp"]=221510000, - ["atk"]=4040000, + ["hp"]=202710000, + ["atk"]=2990000, ["atk_times"]=3, ["hurt_skill"]={ 20082, @@ -901,8 +901,8 @@ local monster_dungeon_equip = { }, [5706]={ ["monster_base"]=10055, - ["hp"]=267580000, - ["atk"]=5560000, + ["hp"]=238240000, + ["atk"]=4130000, ["atk_times"]=3, ["hurt_skill"]={ 20160, @@ -916,8 +916,8 @@ local monster_dungeon_equip = { }, [5806]={ ["monster_base"]=10051, - ["hp"]=484180000, - ["atk"]=6110000, + ["hp"]=388530000, + ["atk"]=4530000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -931,8 +931,8 @@ local monster_dungeon_equip = { }, [5906]={ ["monster_base"]=10064, - ["hp"]=650420000, - ["atk"]=6400000, + ["hp"]=517080000, + ["atk"]=4730000, ["atk_times"]=3, ["hurt_skill"]={ 20190, @@ -947,8 +947,8 @@ local monster_dungeon_equip = { [6006]={ ["monster_base"]=20040, ["is_boss"]=2, - ["hp"]=1181290000, - ["atk"]=6660000, + ["hp"]=933980000, + ["atk"]=4820000, ["atk_times"]=4, ["hurt_skill"]={ 30135, @@ -966,8 +966,8 @@ local monster_dungeon_equip = { }, [6106]={ ["monster_base"]=10015, - ["hp"]=227560000, - ["atk"]=4160000, + ["hp"]=216480000, + ["atk"]=3180000, ["atk_times"]=3, ["hurt_skill"]={ 20040, @@ -981,8 +981,8 @@ local monster_dungeon_equip = { }, [6206]={ ["monster_base"]=10025, - ["hp"]=274900000, - ["atk"]=5710000, + ["hp"]=254320000, + ["atk"]=4380000, ["atk_times"]=3, ["hurt_skill"]={ 20070, @@ -996,8 +996,8 @@ local monster_dungeon_equip = { }, [6306]={ ["monster_base"]=10021, - ["hp"]=497380000, - ["atk"]=6280000, + ["hp"]=415070000, + ["atk"]=4810000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -1011,8 +1011,8 @@ local monster_dungeon_equip = { }, [6406]={ ["monster_base"]=10034, - ["hp"]=668140000, - ["atk"]=6580000, + ["hp"]=552120000, + ["atk"]=5030000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -1027,8 +1027,8 @@ local monster_dungeon_equip = { [6506]={ ["monster_base"]=20039, ["is_boss"]=2, - ["hp"]=1213440000, - ["atk"]=6850000, + ["hp"]=996810000, + ["atk"]=5130000, ["atk_times"]=4, ["hurt_skill"]={ 30117, @@ -1046,8 +1046,8 @@ local monster_dungeon_equip = { }, [6606]={ ["monster_base"]=10049, - ["hp"]=151200000, - ["atk"]=1050000, + ["hp"]=221080000, + ["atk"]=3280000, ["atk_times"]=3, ["hurt_skill"]={ 20142, @@ -1061,8 +1061,8 @@ local monster_dungeon_equip = { }, [6706]={ ["monster_base"]=10006, - ["hp"]=282760000, - ["atk"]=5870000, + ["hp"]=259330000, + ["atk"]=4500000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -1076,8 +1076,8 @@ local monster_dungeon_equip = { }, [6806]={ ["monster_base"]=10054, - ["hp"]=511630000, - ["atk"]=6460000, + ["hp"]=423100000, + ["atk"]=4950000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -1091,8 +1091,8 @@ local monster_dungeon_equip = { }, [6906]={ ["monster_base"]=10024, - ["hp"]=687320000, - ["atk"]=6770000, + ["hp"]=562720000, + ["atk"]=5180000, ["atk_times"]=3, ["hurt_skill"]={ 20067, @@ -1107,8 +1107,8 @@ local monster_dungeon_equip = { [7006]={ ["monster_base"]=20043, ["is_boss"]=2, - ["hp"]=1248040000, - ["atk"]=7050000, + ["hp"]=1015810000, + ["atk"]=5280000, ["atk_times"]=4, ["hurt_skill"]={ 30120, @@ -1127,8 +1127,8 @@ local monster_dungeon_equip = { }, [7106]={ ["monster_base"]=10019, - ["hp"]=273750000, - ["atk"]=4990000, + ["hp"]=225650000, + ["atk"]=3370000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -1142,8 +1142,8 @@ local monster_dungeon_equip = { }, [7206]={ ["monster_base"]=10035, - ["hp"]=330170000, - ["atk"]=6840000, + ["hp"]=264660000, + ["atk"]=4630000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -1157,8 +1157,8 @@ local monster_dungeon_equip = { }, [7306]={ ["monster_base"]=10026, - ["hp"]=624370000, - ["atk"]=7530000, + ["hp"]=431730000, + ["atk"]=5090000, ["atk_times"]=3, ["hurt_skill"]={ 20073, @@ -1172,8 +1172,8 @@ local monster_dungeon_equip = { }, [7406]={ ["monster_base"]=10041, - ["hp"]=801000000, - ["atk"]=7910000, + ["hp"]=574040000, + ["atk"]=5330000, ["atk_times"]=3, ["hurt_skill"]={ 20118, @@ -1188,8 +1188,8 @@ local monster_dungeon_equip = { [7506]={ ["monster_base"]=20042, ["is_boss"]=2, - ["hp"]=1454090000, - ["atk"]=8290000, + ["hp"]=1036280000, + ["atk"]=5440000, ["atk_times"]=4, ["hurt_skill"]={ 30138, @@ -1207,8 +1207,8 @@ local monster_dungeon_equip = { }, [7606]={ ["monster_base"]=10053, - ["hp"]=289120000, - ["atk"]=5270000, + ["hp"]=233950000, + ["atk"]=3470000, ["atk_times"]=3, ["hurt_skill"]={ 20154, @@ -1222,8 +1222,8 @@ local monster_dungeon_equip = { }, [7706]={ ["monster_base"]=10043, - ["hp"]=348580000, - ["atk"]=7220000, + ["hp"]=273880000, + ["atk"]=4760000, ["atk_times"]=3, ["hurt_skill"]={ 20124, @@ -1237,8 +1237,8 @@ local monster_dungeon_equip = { }, [7806]={ ["monster_base"]=10033, - ["hp"]=659030000, - ["atk"]=7960000, + ["hp"]=446810000, + ["atk"]=5230000, ["atk_times"]=3, ["hurt_skill"]={ 20094, @@ -1252,8 +1252,8 @@ local monster_dungeon_equip = { }, [7906]={ ["monster_base"]=10028, - ["hp"]=845550000, - ["atk"]=8350000, + ["hp"]=594050000, + ["atk"]=5480000, ["atk_times"]=3, ["hurt_skill"]={ 20079, @@ -1268,8 +1268,8 @@ local monster_dungeon_equip = { [8006]={ ["monster_base"]=20041, ["is_boss"]=2, - ["hp"]=1534760000, - ["atk"]=8750000, + ["hp"]=1072430000, + ["atk"]=5590000, ["atk_times"]=4, ["hurt_skill"]={ 30126, @@ -1288,8 +1288,8 @@ local monster_dungeon_equip = { }, [8106]={ ["monster_base"]=10036, - ["hp"]=312170000, - ["atk"]=5690000, + ["hp"]=132000000, + ["atk"]=870000, ["atk_times"]=3, ["hurt_skill"]={ 20103, @@ -1303,8 +1303,8 @@ local monster_dungeon_equip = { }, [8206]={ ["monster_base"]=10017, - ["hp"]=376280000, - ["atk"]=7800000, + ["hp"]=284280000, + ["atk"]=4890000, ["atk_times"]=3, ["hurt_skill"]={ 20046, @@ -1318,8 +1318,8 @@ local monster_dungeon_equip = { }, [8306]={ ["monster_base"]=10023, - ["hp"]=711080000, - ["atk"]=8610000, + ["hp"]=463670000, + ["atk"]=5380000, ["atk_times"]=3, ["hurt_skill"]={ 20064, @@ -1333,8 +1333,8 @@ local monster_dungeon_equip = { }, [8406]={ ["monster_base"]=10051, - ["hp"]=912460000, - ["atk"]=9020000, + ["hp"]=616180000, + ["atk"]=5640000, ["atk_times"]=3, ["hurt_skill"]={ 20148, @@ -1349,8 +1349,8 @@ local monster_dungeon_equip = { [8506]={ ["monster_base"]=20040, ["is_boss"]=2, - ["hp"]=1655840000, - ["atk"]=9450000, + ["hp"]=1112410000, + ["atk"]=5750000, ["atk_times"]=4, ["hurt_skill"]={ 30141, @@ -1368,8 +1368,8 @@ local monster_dungeon_equip = { }, [8606]={ ["monster_base"]=10021, - ["hp"]=339080000, - ["atk"]=6160000, + ["hp"]=251150000, + ["atk"]=3770000, ["atk_times"]=3, ["hurt_skill"]={ 20058, @@ -1383,8 +1383,8 @@ local monster_dungeon_equip = { }, [8706]={ ["monster_base"]=10034, - ["hp"]=408050000, - ["atk"]=8450000, + ["hp"]=293630000, + ["atk"]=5170000, ["atk_times"]=3, ["hurt_skill"]={ 20097, @@ -1398,8 +1398,8 @@ local monster_dungeon_equip = { }, [8806]={ ["monster_base"]=10030, - ["hp"]=771120000, - ["atk"]=9340000, + ["hp"]=478890000, + ["atk"]=5680000, ["atk_times"]=3, ["hurt_skill"]={ 20085, @@ -1413,8 +1413,8 @@ local monster_dungeon_equip = { }, [8906]={ ["monster_base"]=10018, - ["hp"]=986810000, - ["atk"]=9790000, + ["hp"]=636450000, + ["atk"]=5960000, ["atk_times"]=3, ["hurt_skill"]={ 20049, @@ -1429,8 +1429,8 @@ local monster_dungeon_equip = { [9006]={ ["monster_base"]=20039, ["is_boss"]=2, - ["hp"]=1790630000, - ["atk"]=10230000, + ["hp"]=1148710000, + ["atk"]=6080000, ["atk_times"]=4, ["hurt_skill"]={ 30117, @@ -1448,8 +1448,8 @@ local monster_dungeon_equip = { }, [9106]={ ["monster_base"]=10016, - ["hp"]=357560000, - ["atk"]=6490000, + ["hp"]=261840000, + ["atk"]=3970000, ["atk_times"]=3, ["hurt_skill"]={ 20043, @@ -1463,8 +1463,8 @@ local monster_dungeon_equip = { }, [9206]={ ["monster_base"]=10054, - ["hp"]=429930000, - ["atk"]=8920000, + ["hp"]=305680000, + ["atk"]=5440000, ["atk_times"]=3, ["hurt_skill"]={ 20157, @@ -1478,8 +1478,8 @@ local monster_dungeon_equip = { }, [9306]={ ["monster_base"]=10006, - ["hp"]=812430000, - ["atk"]=9840000, + ["hp"]=498740000, + ["atk"]=5980000, ["atk_times"]=2, ["hurt_skill"]={ 20016, @@ -1493,8 +1493,8 @@ local monster_dungeon_equip = { }, [9406]={ ["monster_base"]=10020, - ["hp"]=1039660000, - ["atk"]=10320000, + ["hp"]=662690000, + ["atk"]=6280000, ["atk_times"]=3, ["hurt_skill"]={ 20055, @@ -1509,8 +1509,8 @@ local monster_dungeon_equip = { [9506]={ ["monster_base"]=20043, ["is_boss"]=2, - ["hp"]=1886200000, - ["atk"]=10790000, + ["hp"]=1196050000, + ["atk"]=6410000, ["atk_times"]=4, ["hurt_skill"]={ 30120, @@ -1529,8 +1529,8 @@ local monster_dungeon_equip = { }, [9606]={ ["monster_base"]=10031, - ["hp"]=375760000, - ["atk"]=6820000, + ["hp"]=270070000, + ["atk"]=4190000, ["atk_times"]=3, ["hurt_skill"]={ 20088, @@ -1544,8 +1544,8 @@ local monster_dungeon_equip = { }, [9706]={ ["monster_base"]=10035, - ["hp"]=451810000, - ["atk"]=9380000, + ["hp"]=315240000, + ["atk"]=5740000, ["atk_times"]=3, ["hurt_skill"]={ 20100, @@ -1559,8 +1559,8 @@ local monster_dungeon_equip = { }, [9806]={ ["monster_base"]=10019, - ["hp"]=853590000, - ["atk"]=10350000, + ["hp"]=514070000, + ["atk"]=6320000, ["atk_times"]=3, ["hurt_skill"]={ 20052, @@ -1574,8 +1574,8 @@ local monster_dungeon_equip = { }, [9906]={ ["monster_base"]=10013, - ["hp"]=1092340000, - ["atk"]=10850000, + ["hp"]=682910000, + ["atk"]=6630000, ["atk_times"]=3, ["hurt_skill"]={ 20034, @@ -1590,8 +1590,8 @@ local monster_dungeon_equip = { [10006]={ ["monster_base"]=20042, ["is_boss"]=2, - ["hp"]=1981770000, - ["atk"]=11340000, + ["hp"]=1232640000, + ["atk"]=6760000, ["atk_times"]=4, ["hurt_skill"]={ 30144, diff --git a/lua/app/config/skill.lua b/lua/app/config/skill.lua index be8e1b56..dc5f3225 100644 --- a/lua/app/config/skill.lua +++ b/lua/app/config/skill.lua @@ -4571,7 +4571,7 @@ local skill = { ["type"]="lethargy", ["num"]=0, ["ratio"]=5000, - ["round"]=1 + ["round"]=2 } }, ["obj"]=2, @@ -4694,71 +4694,7 @@ local skill = { { ["type"]="lethargy", ["num"]=0, - ["ratio"]=8000, - ["round"]=2 - } - }, - ["obj"]=2, - ["effect_block"]={ - 1, - 2, - 4 - }, - ["skill_position"]={ - 2, - 0 - }, - ["shake_time"]=200, - ["shake_type"]=5, - ["sound"]=34002200, - ["sound_delay"]=0.0, - ["name_act"]="skill01", - ["fx_self"]=300109, - ["bullet_time"]={ - 1000, - 3000, - 400 - }, - ["fx_self_mirror"]=400109 - }, - [3400224]={ - ["buff_id"]={ - "lethargy" - }, - ["energy"]=10, - ["link"]=1, - ["position"]=3, - ["method"]=1, - ["skill_type"]=4, - ["boardrange"]={ - - }, - ["battle_icon"]="23", - ["effect_type"]=1, - ["trigger"]=1, - ["effect"]={ - { - ["type"]="hurt_green", - ["num"]=13000, - ["ratio"]=10000, - ["round"]=0 - }, - { - ["type"]="hurt_green", - ["num"]=13000, - ["ratio"]=10000, - ["round"]=0 - }, - { - ["type"]="hurt_green", - ["num"]=24000, - ["ratio"]=10000, - ["round"]=0 - }, - { - ["type"]="lethargy", - ["num"]=0, - ["ratio"]=8000, + ["ratio"]=5000, ["round"]=2 } }, @@ -7617,7 +7553,7 @@ local skill = { }, ["name_act"]="attack01", ["fx_self"]=300112, - ["fx_self_mirror"]=400112 + ["fx_self_mirror"]=400127 }, [5400211]={ ["position"]=5, @@ -7643,7 +7579,7 @@ local skill = { }, ["name_act"]="attack02", ["fx_self"]=300113, - ["fx_self_mirror"]=400113 + ["fx_self_mirror"]=400128 }, [5400212]={ ["position"]=5, @@ -7669,7 +7605,7 @@ local skill = { }, ["name_act"]="attack03", ["fx_self"]=300114, - ["fx_self_mirror"]=400114 + ["fx_self_mirror"]=400129 }, [5400213]={ ["position"]=5, @@ -7695,7 +7631,7 @@ local skill = { }, ["name_act"]="attack04", ["fx_self"]=300115, - ["fx_self_mirror"]=400115 + ["fx_self_mirror"]=400130 }, [5400220]={ ["energy"]=10, @@ -7767,7 +7703,7 @@ local skill = { 3000, 400 }, - ["fx_self_mirror"]=400116 + ["fx_self_mirror"]=400131 }, [5400221]={ ["position"]=5, @@ -7897,7 +7833,7 @@ local skill = { }, ["name_act"]="attack01", ["fx_self"]=300127, - ["fx_self_mirror"]=400127 + ["fx_self_mirror"]=400112 }, [5400311]={ ["position"]=5, @@ -7923,7 +7859,7 @@ local skill = { }, ["name_act"]="attack02", ["fx_self"]=300128, - ["fx_self_mirror"]=400128 + ["fx_self_mirror"]=400113 }, [5400312]={ ["position"]=5, @@ -7949,7 +7885,7 @@ local skill = { }, ["name_act"]="attack03", ["fx_self"]=300129, - ["fx_self_mirror"]=400129 + ["fx_self_mirror"]=400114 }, [5400313]={ ["position"]=5, @@ -7975,7 +7911,7 @@ local skill = { }, ["name_act"]="attack04", ["fx_self"]=300130, - ["fx_self_mirror"]=400130 + ["fx_self_mirror"]=400115 }, [5400320]={ ["buff_id"]={ @@ -8022,7 +7958,7 @@ local skill = { 3000, 400 }, - ["fx_self_mirror"]=400131 + ["fx_self_mirror"]=400116 }, [5400321]={ ["position"]=5, @@ -12935,6 +12871,42 @@ local skill = { ["cd"]=0, ["cd_start"]=0 }, + [10142]={ + ["skill_type"]=3, + ["skill_type_parameter"]={ + 21, + 2 + }, + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=25000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]={ + 2, + 0 + }, + ["cd"]=2, + ["cd_start"]=0, + ["shake_time"]=200, + ["shake_type"]=6, + ["sound_hit"]={ + 10018 + }, + ["name_act"]="skill01", + ["fx_self"]=200099, + ["bullet_time"]={ + 466, + 3000, + 400 + } + }, [20001]={ ["effect_type"]=1, ["trigger"]=1, @@ -22518,6 +22490,78 @@ local skill = { ["name_act"]="attack03", ["fx_self"]=200184 }, + [30162]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]={ + 1, + 140 + }, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]={ + 1000011 + }, + ["name_act"]="attack01", + ["fx_self"]=200096 + }, + [30163]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]={ + 1, + 140 + }, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]={ + 1000012 + }, + ["name_act"]="attack02", + ["fx_self"]=200097 + }, + [30164]={ + ["effect_type"]=1, + ["trigger"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["ratio"]=10000, + ["round"]=0 + } + }, + ["obj"]=2, + ["skill_position"]={ + 1, + 140 + }, + ["shake_time"]=100, + ["shake_type"]=1, + ["sound_hit"]={ + 1000013 + }, + ["name_act"]="attack03", + ["fx_self"]=200098 + }, [40001]={ ["effect_type"]=1, ["trigger"]=1, @@ -27444,6 +27488,6 @@ local skill = { } } local config = { -data=skill,count=985 +data=skill,count=988 } return config \ No newline at end of file diff --git a/lua/app/config/skill_rogue.lua b/lua/app/config/skill_rogue.lua index 172f03d4..6494cca6 100644 --- a/lua/app/config/skill_rogue.lua +++ b/lua/app/config/skill_rogue.lua @@ -2967,9 +2967,10 @@ local skill_rogue = { ["limit_times"]=1, ["weight"]=3000, ["qlt"]=4, - ["type"]=1, + ["type"]=16, ["parameter"]={ - 3400224 + 4, + 3000 }, ["skill_position"]=3, ["icon"]="213" @@ -3012,8 +3013,6 @@ local skill_rogue = { ["icon"]="215" }, [3400207]={ - ["unlock"]=3400204, - ["cover_unlock"]=3400204, ["limit_times"]=1, ["weight"]=3000, ["qlt"]=4, diff --git a/lua/app/config/skin.lua b/lua/app/config/skin.lua index 84f476a0..62a1eb9d 100644 --- a/lua/app/config/skin.lua +++ b/lua/app/config/skin.lua @@ -23,32 +23,6 @@ local skin = { ["skin_point"]=0, ["hero_id"]=14001 }, - [1400101]={ - ["model_id"]="p0036", - ["qlt"]=3, - ["bonus"]={ - { - ["type"]="attr_skill_hurtp_red", - ["num"]=1000 - }, - { - ["type"]="attr_hpp_red", - ["num"]=1000 - } - }, - ["icon"]="skin_5", - ["got"]=1, - ["skin_point"]=10, - ["hero_id"]=14001, - ["item_id"]=1400101, - ["skill_show"]={ - 14001011, - 14001012, - 14001013, - 14001014, - 14001015 - } - }, [14002]={ ["model_id"]="p0018", ["qlt"]=1, @@ -311,6 +285,6 @@ local skin = { } } local config = { -data=skin,count=35 +data=skin,count=34 } return config \ No newline at end of file diff --git a/lua/app/config/skin_skill.lua b/lua/app/config/skin_skill.lua index 759d0ee2..4b309225 100644 --- a/lua/app/config/skin_skill.lua +++ b/lua/app/config/skin_skill.lua @@ -302,83 +302,9 @@ local skin_skill = { ["fx_bg"]=300148, ["fx_self_mirror"]=400144, ["fx_bg_mirror"]=400148 - }, - [14001011]={ - ["skill_position"]={ - 2, - 0 - }, - ["shake_time"]=100, - ["shake_type"]=2, - ["sound_hit"]={ - 1000011 - }, - ["name_act"]="attack01", - ["fx_self"]=300045, - ["fx_self_mirror"]=400078 - }, - [14001012]={ - ["skill_position"]={ - 2, - 0 - }, - ["shake_time"]=100, - ["shake_type"]=2, - ["sound_hit"]={ - 1000012 - }, - ["name_act"]="attack02", - ["fx_self"]=300046, - ["fx_self_mirror"]=400079 - }, - [14001013]={ - ["skill_position"]={ - 2, - 0 - }, - ["shake_time"]=100, - ["shake_type"]=4, - ["sound_hit"]={ - 1000013 - }, - ["name_act"]="attack03", - ["fx_self"]=300047, - ["fx_self_mirror"]=400080 - }, - [14001014]={ - ["skill_position"]={ - 2, - 0 - }, - ["shake_time"]=100, - ["shake_type"]=1, - ["sound_hit"]={ - 1000014 - }, - ["name_act"]="attack04", - ["fx_self"]=300048, - ["fx_self_mirror"]=400081 - }, - [14001015]={ - ["skill_position"]={ - 2, - 0 - }, - ["shake_time"]=200, - ["shake_type"]=6, - ["sound"]=14001200, - ["sound_delay"]=0.0, - ["name_act"]="skill01", - ["fx_self"]=300150, - ["bullet_time"]={ - 1166, - 3000, - 200 - }, - ["fx_self_mirror"]=400150 } } local config = { -data=skin_skill,count=25 +data=skin_skill,count=20 } return config \ No newline at end of file diff --git a/lua/app/config/strings/cn/act_fourteen_quest.lua b/lua/app/config/strings/cn/act_fourteen_quest.lua new file mode 100644 index 00000000..53288df1 --- /dev/null +++ b/lua/app/config/strings/cn/act_fourteen_quest.lua @@ -0,0 +1,141 @@ +local act_fourteen_quest = { + [1]={ + ["quest"]="深渊挑战通关{0}" + }, + [2]={ + ["quest"]="角色升到{0}级" + }, + [3]={ + ["quest"]="竞技场达到白银I" + }, + [4]={ + ["quest"]="广告次数累计达{0}" + }, + [5]={ + ["quest"]="完成所有任务" + }, + [6]={ + ["quest"]="武器升级{0}次" + }, + [7]={ + ["quest"]="时空裂隙3-6" + }, + [8]={ + ["quest"]="开启主线宝箱{0}个" + }, + [9]={ + ["quest"]="矿车拦截通关{0}" + }, + [10]={ + ["quest"]="完成所有任务" + }, + [11]={ + ["quest"]="灯神之塔通关{0}" + }, + [12]={ + ["quest"]="角色升级{0}次" + }, + [13]={ + ["quest"]="深渊挑战 10" + }, + [14]={ + ["quest"]="广告次数累计达{0}" + }, + [15]={ + ["quest"]="完成所有任务" + }, + [16]={ + ["quest"]="每日挑战 胜利{0}次" + }, + [17]={ + ["quest"]="矿车拦截通关{0}" + }, + [18]={ + ["quest"]="时空裂隙4-3" + }, + [19]={ + ["quest"]="开宝箱 {0}次" + }, + [20]={ + ["quest"]="完成所有任务" + }, + [21]={ + ["quest"]="广告次数累计达{0}" + }, + [22]={ + ["quest"]="通关波次 {0}次" + }, + [23]={ + ["quest"]="灯神之塔通关{0}" + }, + [24]={ + ["quest"]="竞技场达到白银III" + }, + [25]={ + ["quest"]="完成所有任务" + }, + [26]={ + ["quest"]="击杀BOSS {0}次" + }, + [27]={ + ["quest"]="深渊挑战通关{0}" + }, + [28]={ + ["quest"]="开启主线宝箱{0}个" + }, + [29]={ + ["quest"]="矿车拦截通关{0}" + }, + [30]={ + ["quest"]="完成所有任务" + }, + [31]={ + ["quest"]="时空裂隙5-2" + }, + [32]={ + ["quest"]="每日挑战 胜利{0}次" + }, + [33]={ + ["quest"]="开宝箱{0}次" + }, + [34]={ + ["quest"]="广告次数累计达{0}" + }, + [35]={ + ["quest"]="完成所有任务" + }, + [36]={ + ["quest"]="装备升级{0}次" + }, + [37]={ + ["quest"]="灯神之塔通关{0}" + }, + [38]={ + ["quest"]="通关波次{0}次" + }, + [39]={ + ["quest"]="矿车拦截通关{0}" + }, + [40]={ + ["quest"]="完成所有任务" + }, + [41]={ + ["quest"]="竞技场达到黄金段位" + }, + [42]={ + ["quest"]="广告次数累计达{0}" + }, + [43]={ + ["quest"]="角色升到{0}级" + }, + [44]={ + ["quest"]="深渊挑战通关{0}" + }, + [45]={ + ["quest"]="完成所有任务" + } +} +local config = { +data=act_fourteen_quest,count=45 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/cn/act_fourteen_quest.lua.meta b/lua/app/config/strings/cn/act_fourteen_quest.lua.meta new file mode 100644 index 00000000..cf4b697e --- /dev/null +++ b/lua/app/config/strings/cn/act_fourteen_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 3edd3553356248c489f45171b35afebd +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/cn/equip.lua b/lua/app/config/strings/cn/equip.lua index 7bc88371..662fe1d4 100644 --- a/lua/app/config/strings/cn/equip.lua +++ b/lua/app/config/strings/cn/equip.lua @@ -48,16 +48,16 @@ local equip = { ["name"]="巨力锤,战者之锤,流星巨锤,破军锤,断魂锤,陨星" }, [1400102]={ - ["name"]="凡花木冠,珍珠冠饰,火纹金冠,皎月玉冠,凤冠星冠,至尊魅冠" + ["name"]="粗钢面甲,精钢面盔,黑曜贵冠,英勇冠冕,龙角之冠,永恒华冠" }, [1400103]={ - ["name"]="软革里衣,缀玉长袍,紫纱绸缎,琥珀彩衣,凤羽华装,至尊星袍" + ["name"]="厚织长衫,薄钢环甲,玄铁重甲,强者玉甲,龙鳞金胄,永恒重铠" }, [1400104]={ - ["name"]="简约绣带,优雅束腰,珍珠绣带,星光御带,凤眸束带,至尊仙索" + ["name"]="皮革腰带,乌金束腰,骑士腰环,龙筋束腰,永恒腰链,铜制手环" }, [1400105]={ - ["name"]="紫铁手环,轻纱护手,黄金华护,星辰护手,凤骨护手,至尊御手甲" + ["name"]="铜制手环,皮革腕带,铁心腕带,英雄护手,龙须护腕,永恒腕轮" }, [1400201]={ ["name"]="猫拳,尖刺猫拳,青钢猫拳,裂伤猫拳,破空猫拳,福神之力" diff --git a/lua/app/config/strings/cn/global.lua b/lua/app/config/strings/cn/global.lua index eeb2e910..c5105803 100644 --- a/lua/app/config/strings/cn/global.lua +++ b/lua/app/config/strings/cn/global.lua @@ -455,17 +455,36 @@ local localization_global = ["HERO_FUND_DESCC_2"] = "月之祝福", ["HERO_FUND_DESCC_3"] = "拥有月之祝福后,在战斗中累计通过波次可获得丰厚奖励。", ["HERO_FUND_DESCC_4"] = "新活动14日达标开启", - ["ARENA_DESC_37"] = "解锁英雄:", - ["ARENA_DESC_38"] = "已解锁英雄:", - ["ARENA_DESC_39"] = "升段奖励为一次性奖励", - ["ARENA_DESC_40"] = "升段奖励", - ["ARENA_DESC_41"] = "结算奖励", - ["ARENA_DESC_42"] = "未领取奖励", - ["EQUIP_DESC_26"] = "武器直升{0}级礼包", - ["EQUIP_DESC_27"] = "防具直升{0}级礼包", - ["SEIZED_DESC_1"] = "检测到你的账号存在异常,请联系客服或删除账号使用新建账号继续游戏。", - ["SEIZED_DESC_2"] = "联系客服", - ["SEIZED_DESC_3"] = "删除账号", + ["ACT_FOURTEEN_TITLE_1"] = "登录好礼", + ["ACT_FOURTEEN_TITLE_2"] = "进阶挑战", + ["ACT_FOURTEEN_TITLE_3"] = "限时兑换", + ["ACT_FOURTEEN_TITLE_4"] = "限时礼包", + ["ACT_FOURTEEN_DESC_1"] = "登陆游戏,既享大礼!", + ["ACT_FOURTEEN_DESC_2"] = "挑战自己,更有好礼相送!", + ["ACT_FOURTEEN_DESC_3"] = "时不待人,机不再来!", + ["ACT_FOURTEEN_DESC_5"] = "登录即可领取奖励,解锁高级战令领取额外奖励!", + ["ACT_FOURTEEN_DESC_6"] = "阶段", + ["ACT_FOURTEEN_DESC_7"] = "尚未解锁,请明日再来~", + ["ACT_FOURTEEN_DESC_8"] = "完成当前阶段所有任务可获得:", + ["ACT_FOURTEEN_DESC_9"] = "活动期间,每完成1个任务可获得100个【挑战点】", + + + ["ACT_BOSS_RUSH_DESC_1"] = "是否消耗{0}钻石战斗?", + ["ACT_BOSS_RUSH_DESC_2"] = "首领公开赛", + ["ACT_BOSS_RUSH_DESC_3"] = "今日高手", + ["ACT_BOSS_RUSH_DESC_4"] = "我今日最高:", + ["ACT_BOSS_RUSH_DESC_5"] = "我今日挑战:{0}次", + ["ACT_BOSS_RUSH_DESC_6"] = "今日剩余免费挑战次数:{0}", + ["ACT_BOSS_RUSH_DESC_7"] = "消耗:", + ["ACT_BOSS_RUSH_DESC_8"] = "虚位以待", + ["ACT_BOSS_RUSH_DESC_9"] = "首领公开赛阵容设置标题", + ["ACT_BOSS_RUSH_DESC_10"] = "排行榜", + ["ACT_BOSS_RUSH_DESC_11"] = "首领巡礼", + ["ACT_BOSS_RUSH_DESC_12"] = "活动商店", + ["ACT_BOSS_RUSH_DESC_13"] = "首领公开赛弹窗描述", + ["ACT_BOSS_RUSH_DESC_14"] = "立即前往", + ["ACT_BOSS_RUSH_DESC_15"] = "首领公开赛基金标题", + ["ACT_BOSS_RUSH_DESC_16"] = "首领公开赛基金描述", } return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/cn/item.lua b/lua/app/config/strings/cn/item.lua index b5aed2c8..2c058d38 100644 --- a/lua/app/config/strings/cn/item.lua +++ b/lua/app/config/strings/cn/item.lua @@ -187,6 +187,14 @@ local item = { ["name"]="随机史诗英雄", ["desc"]="批量获取时只会随机以下英雄中的一名" }, + [51]={ + ["name"]="挑战点", + ["desc"]="限时兑换道具。" + }, + [52]={ + ["name"]="首领金币", + ["desc"]="首领公开赛可以进行兑换。" + }, [1001]={ ["name"]="暗淡陨铁", ["desc"]="一块暗淡的陨铁,蕴含着神秘的能量。" @@ -445,6 +453,6 @@ local item = { } } local config = { -data=item,count=111 +data=item,count=113 } return config \ No newline at end of file diff --git a/lua/app/config/strings/cn/skill.lua b/lua/app/config/strings/cn/skill.lua index 9724c5b0..311612a9 100644 --- a/lua/app/config/strings/cn/skill.lua +++ b/lua/app/config/strings/cn/skill.lua @@ -42,7 +42,7 @@ local skill = { ["desc"]="流星追月:使用后本次伤害提升,并造成一次巨量技能伤害。" }, [3400220]={ - ["desc"]="美丽梦魇:额外造成一次大量技能伤害,50%概率附加昏睡效果,1回合。" + ["desc"]="美丽梦魇:额外造成一次大量技能伤害,50%概率附加昏睡效果,2回合。" }, [4200120]={ ["desc"]="元素链接:随机消除3个元素,并造成一次技能伤害。" diff --git a/lua/app/config/strings/cn/skill_rogue.lua b/lua/app/config/strings/cn/skill_rogue.lua index 33cc7e7d..690c8169 100644 --- a/lua/app/config/strings/cn/skill_rogue.lua +++ b/lua/app/config/strings/cn/skill_rogue.lua @@ -468,7 +468,7 @@ local skill_rogue = { ["desc"]="流星追月链接4个元素或以上时,流星追月攻击将释放2次。" }, [3400200]={ - ["desc"]="解锁美丽梦魇:额外造成一次大量技能伤害,50%概率附加昏睡效果,1回合。" + ["desc"]="解锁美丽梦魇:额外造成一次大量技能伤害,50%概率附加昏睡效果,2回合。" }, [3400201]={ ["desc"]="美丽梦魇沿X方向可额外消除4格。" @@ -480,7 +480,7 @@ local skill_rogue = { ["desc"]="美丽梦魇沿X方向可额外消除4格。" }, [3400204]={ - ["desc"]="美丽梦魇附加的昏睡效果,概率提升到80%,回合数+1。" + ["desc"]="美丽梦魇附加的昏睡效果,概率提升到80%。" }, [3400205]={ ["desc"]="Combo:梦魔普攻昏睡敌人将附加禁锢效果,2回合。" diff --git a/lua/app/config/strings/cn/skin.lua b/lua/app/config/strings/cn/skin.lua index b35b2e8c..6004881a 100644 --- a/lua/app/config/strings/cn/skin.lua +++ b/lua/app/config/strings/cn/skin.lua @@ -11,9 +11,6 @@ local skin = { [14001]={ ["value"]="初始" }, - [1400101]={ - ["value"]="遗迹战甲" - }, [14002]={ ["value"]="初始" }, @@ -106,6 +103,6 @@ local skin = { } } local config = { -data=skin,count=35 +data=skin,count=34 } return config \ No newline at end of file diff --git a/lua/app/config/strings/de/act_fourteen_quest.lua b/lua/app/config/strings/de/act_fourteen_quest.lua new file mode 100644 index 00000000..a75c59ed --- /dev/null +++ b/lua/app/config/strings/de/act_fourteen_quest.lua @@ -0,0 +1,141 @@ +local act_fourteen_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + } +} +local config = { +data=act_fourteen_quest,count=45 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/de/act_fourteen_quest.lua.meta b/lua/app/config/strings/de/act_fourteen_quest.lua.meta new file mode 100644 index 00000000..19e9b463 --- /dev/null +++ b/lua/app/config/strings/de/act_fourteen_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: bf8f1ebafd0ca1e419ee11ab8dd89fdf +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/de/item.lua b/lua/app/config/strings/de/item.lua index 1e181bdd..b7138f5a 100644 --- a/lua/app/config/strings/de/item.lua +++ b/lua/app/config/strings/de/item.lua @@ -139,6 +139,12 @@ local item = { }, [47]={ + }, + [51]={ + + }, + [52]={ + }, [1001]={ @@ -334,6 +340,6 @@ local item = { } } local config = { -data=item,count=111 +data=item,count=113 } return config \ No newline at end of file diff --git a/lua/app/config/strings/de/skin.lua b/lua/app/config/strings/de/skin.lua index 01f28e15..3fcc5359 100644 --- a/lua/app/config/strings/de/skin.lua +++ b/lua/app/config/strings/de/skin.lua @@ -10,9 +10,6 @@ local skin = { }, [14001]={ - }, - [1400101]={ - }, [14002]={ @@ -106,6 +103,6 @@ local skin = { } } local config = { -data=skin,count=35 +data=skin,count=34 } return config \ No newline at end of file diff --git a/lua/app/config/strings/en/act_fourteen_quest.lua b/lua/app/config/strings/en/act_fourteen_quest.lua new file mode 100644 index 00000000..a75c59ed --- /dev/null +++ b/lua/app/config/strings/en/act_fourteen_quest.lua @@ -0,0 +1,141 @@ +local act_fourteen_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + } +} +local config = { +data=act_fourteen_quest,count=45 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/en/act_fourteen_quest.lua.meta b/lua/app/config/strings/en/act_fourteen_quest.lua.meta new file mode 100644 index 00000000..94d243bb --- /dev/null +++ b/lua/app/config/strings/en/act_fourteen_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: b7355f4eae0ec13479f401f83bf74453 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/en/equip.lua b/lua/app/config/strings/en/equip.lua index 75e1050a..fe8a4769 100644 --- a/lua/app/config/strings/en/equip.lua +++ b/lua/app/config/strings/en/equip.lua @@ -48,16 +48,16 @@ local equip = { ["name"]="Mighty Mallet,Warrior's Hammer,Comet Crusher,Annihilator's Hammer,Soulshatter,Falling Star" }, [1400102]={ - ["name"]="Floral Circlet,Pearl Circlet,Flame Gilded Circlet,Serene Jade Circlet,Starry Phoenix Circlet,Supreme Crown" + ["name"]="Rugged Steel Helm,Fine Steel Visor,Obsidian Noble Crown,Gallant Coronet,Dragonhorn Circlet,Eternal Glory Crown" }, [1400103]={ - ["name"]="Soft Leather Robe,Jade-Adorned Robe,Purple Gauze Silk,Amber-hued Robe,Phoenix Feather Robe,Sovereign Celestial Robe" + ["name"]="Thick Woven Vestment,Thin Steel Hauberk,Dark Iron Plate,Champion's Jade Armor,Wyrmhide Golden Plate,Eternal Heavy Plate" }, [1400104]={ - ["name"]="Embroidered Belt,Elegant Waist Band,Pearl-embroidered Belt,Astral Glory Belt,Phoenix Gaze Belt,Ultimate Immortal Belt" + ["name"]="Leather Belt,Ebony Gold Waistband,Knight's Baldric,Wyrm Sinew Belt,Eternal Girth,Bronze Bracelet" }, [1400105]={ - ["name"]="Lavender Iron Bracelet,Ethereal Veil Gauntlets,Golden Brilliance Gauntlets,Stellar Gauntlets,Phoenix Bone Gauntlets,Supreme Sovereign Armguards" + ["name"]="Bronze Bracelet,Leather Wristbands,Ironheart Wristbands,Heroic Gauntlets,Dragonwhisker Wristguards,Eternal Wristbands" }, [1400201]={ ["name"]="Cat's Claw,Spiked Claw,Azure Steel Claw,Shredding Claw,Sky-Cleaving Claw,Fortune's Blessing" diff --git a/lua/app/config/strings/en/global.lua b/lua/app/config/strings/en/global.lua index 444267f4..8a9e68ad 100644 --- a/lua/app/config/strings/en/global.lua +++ b/lua/app/config/strings/en/global.lua @@ -447,24 +447,6 @@ local localization_global = ["ACT_DESC_12"] = "LV", ["ARENA_DESC_35"] = "You might obtain Epic~", ["ARENA_DESC_36"] = "Try", - ["ONE_KEY_GET_DESC"] = "Claim All", - ["ACTIVITY_OVER_EDSC"] = "Event has ended", - ["PART_IN_DESC"] = "Participate", - ["HERO_FUND_DESCC_1"] = "New event [Lunar Benediction] is open", - ["HERO_FUND_DESCC_2"] = "Lunar Benediction", - ["HERO_FUND_DESCC_3"] = "With the Lunar Benediction, obtain rewards by progressing through waves in battles.", - ["HERO_FUND_DESCC_4"] = "New event [Advanced Challenge] is open", - ["ARENA_DESC_37"] = "Unlock Hero:", - ["ARENA_DESC_38"] = "Unlocked Heroes:", - ["ARENA_DESC_39"] = "Promotion rewards are one-time", - ["ARENA_DESC_40"] = "Promotion Rewards", - ["ARENA_DESC_41"] = "Settlement Rewards", - ["ARENA_DESC_42"] = "Unclaimed Rewards", - ["EQUIP_DESC_26"] = "Weapon Upgrade Lv.{0} Pack", - ["EQUIP_DESC_27"] = "Armor Upgrade Lv.{0} Pack", - ["SEIZED_DESC_1"] = "Detected abnormality on your account. Please contact customer service or delete the account and continue playing with a new account.", - ["SEIZED_DESC_2"] = "Customer Service", - ["SEIZED_DESC_3"] = "Delete Account", } return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/en/item.lua b/lua/app/config/strings/en/item.lua index 763847ed..5f6283a6 100644 --- a/lua/app/config/strings/en/item.lua +++ b/lua/app/config/strings/en/item.lua @@ -186,6 +186,12 @@ local item = { [47]={ ["name"]="Random Epic Hero", ["desc"]="Shards obtained in batch will only randomly grant one of the following heroes." + }, + [51]={ + + }, + [52]={ + }, [1001]={ ["name"]="Dim Meteorite", @@ -445,6 +451,6 @@ local item = { } } local config = { -data=item,count=111 +data=item,count=113 } return config \ 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 92668834..977efacb 100644 --- a/lua/app/config/strings/en/skill.lua +++ b/lua/app/config/strings/en/skill.lua @@ -42,7 +42,7 @@ 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 1 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." diff --git a/lua/app/config/strings/en/skill_rogue.lua b/lua/app/config/strings/en/skill_rogue.lua index 81b20872..3d1ab122 100644 --- a/lua/app/config/strings/en/skill_rogue.lua +++ b/lua/app/config/strings/en/skill_rogue.lua @@ -468,7 +468,7 @@ local skill_rogue = { ["desc"]="When Moonchaser links to 4 or more elements, it will be cast 2 times." }, [3400200]={ - ["desc"]="Unlock Alluring Nightmare: Deal one additional hit of massive skill damage and has a 50% chance to inflict Drowsy that lasts 1 turns." + ["desc"]="Unlock Alluring Nightmare: Deal one additional hit of massive skill damage and has a 50% chance to inflict Drowsy that lasts 2 turns." }, [3400201]={ ["desc"]="Alluring Nightmare can clear additional 4 grids in the X direction." @@ -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 80% for +1 turn." + ["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/en/skin.lua b/lua/app/config/strings/en/skin.lua index 660002da..8bb72144 100644 --- a/lua/app/config/strings/en/skin.lua +++ b/lua/app/config/strings/en/skin.lua @@ -11,9 +11,6 @@ local skin = { [14001]={ ["value"]="Initial" }, - [1400101]={ - ["value"]="Relic Armor" - }, [14002]={ ["value"]="Initial" }, @@ -106,6 +103,6 @@ local skin = { } } local config = { -data=skin,count=35 +data=skin,count=34 } return config \ No newline at end of file diff --git a/lua/app/config/strings/es/act_fourteen_quest.lua b/lua/app/config/strings/es/act_fourteen_quest.lua new file mode 100644 index 00000000..a75c59ed --- /dev/null +++ b/lua/app/config/strings/es/act_fourteen_quest.lua @@ -0,0 +1,141 @@ +local act_fourteen_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + } +} +local config = { +data=act_fourteen_quest,count=45 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/es/act_fourteen_quest.lua.meta b/lua/app/config/strings/es/act_fourteen_quest.lua.meta new file mode 100644 index 00000000..6aaa0480 --- /dev/null +++ b/lua/app/config/strings/es/act_fourteen_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 1843e74428d0a6342bcf3b35175a2f48 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/es/equip.lua b/lua/app/config/strings/es/equip.lua index 075edf7c..b25d44d5 100644 --- a/lua/app/config/strings/es/equip.lua +++ b/lua/app/config/strings/es/equip.lua @@ -48,16 +48,16 @@ local equip = { ["name"]="Martillo Potente,Martillo de Guerrero,Martillo de Meteorito,Martillo Atacante,Martillo Letal,Estrella Fugaz" }, [1400102]={ - ["name"]="Corona Floral,Corona con Perlas,Corona de Fuego,Corona de Jade,Corona de Fénix,Corona Suprema" + ["name"]="Visera de Acero Bruto,Visera de Acero Fino,Corona de obsidiana,Corona de héroe,Corona de Cuerno de Dragón,Corona Eterna" }, [1400103]={ - ["name"]="Forro de Cuero Suave,Túnica con Jade,Satén Morado,Túnica de Ámbar,Túnica con Pluma de Fénix,Túnica de Estrella Suprema" + ["name"]="Túnica Gruesa,Armadura de Acero Delgado,Armadura Pesada,Armadura de Jade,Casco Dorado de Escamas de Dragón,Armadura Pesada Eterna" }, [1400104]={ - ["name"]="Cinturón Bordado,Corsé Elegante,Cinturón Bordado con Perlas,Cinturón Imperial de Estrella,Cinturón de Ojos de Fénix,Cuerda Suprema" + ["name"]="Cinturón de Cuero,Faja de Oro Negro,Faja de Jinete,Faja de Tendón de Dragón,Cadena de Cintura Eterna,Pulsera de Cobre" }, [1400105]={ - ["name"]="Pulsera de Hierro Morado,Guanteletes de Velo,Guanteletes de Oro,Guanteletes de Estrellas,Guanteletes de Hueso de Fénix,Armadura de Mano Suprema" + ["name"]="Pulsera de Cobre,Muñequera de Cuero,Muñequera de Hierro,Guanteletes de Héroe,Muñequera de Barba de Dragón,Muñequera Eterna" }, [1400201]={ ["name"]="Golpe de gato,Puño con Pinchos,Puño de Acero Verde,Puño Lacerante,Puño en Cielo ,Poder de Fortuna" diff --git a/lua/app/config/strings/es/global.lua b/lua/app/config/strings/es/global.lua index 3f1b18f4..ae259db2 100644 --- a/lua/app/config/strings/es/global.lua +++ b/lua/app/config/strings/es/global.lua @@ -447,24 +447,6 @@ local localization_global = ["ACT_DESC_12"] = "LV", ["ARENA_DESC_35"] = "Héroe épico posible", ["ARENA_DESC_36"] = "Prueba tu suerte", - ["ONE_KEY_GET_DESC"] = "Colectar todo", - ["ACTIVITY_OVER_EDSC"] = "El evento ha terminado", - ["PART_IN_DESC"] = "Participar", - ["HERO_FUND_DESCC_1"] = "Comienza el nuevo evento: Bendición de la Luna", - ["HERO_FUND_DESCC_2"] = "Bendición de la Luna", - ["HERO_FUND_DESCC_3"] = "Con Bendición de la Luna, obtendrás generosas recompensas pasando las olas en la batalla.", - ["HERO_FUND_DESCC_4"] = "Comienza el nuevo evento: Desafío Avanzado", - ["ARENA_DESC_37"] = "Héroes bloqueados:", - ["ARENA_DESC_38"] = "Héroes desbloqueados:", - ["ARENA_DESC_39"] = "Las recompensas de subida de ranking se conceden una sola vez", - ["ARENA_DESC_40"] = "Recompensas de Subida de Ranking", - ["ARENA_DESC_41"] = "Recompensas de Clasificación", - ["ARENA_DESC_42"] = "Recompensas no colectadas", - ["EQUIP_DESC_26"] = "Paquete de Mejora de Arma al Nv. {0}", - ["EQUIP_DESC_27"] = "Paquete de Mejora de Armadura al Nv. {0}", - ["SEIZED_DESC_1"] = "Se ha detectado una anomalía en tu cuenta. Por favor contacta con Atención al Cliente, o elimina la cuenta actual y crear una nueva para continuar el juego.", - ["SEIZED_DESC_2"] = "Atención al Cliente", - ["SEIZED_DESC_3"] = "Eliminar Cuenta", } return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/es/item.lua b/lua/app/config/strings/es/item.lua index a45d2cf3..580791ae 100644 --- a/lua/app/config/strings/es/item.lua +++ b/lua/app/config/strings/es/item.lua @@ -186,6 +186,12 @@ local item = { [47]={ ["name"]="Héroe Épico aleatorio", ["desc"]="Al obtener por lote, solo aparecerá uno de los siguientes héroes" + }, + [51]={ + + }, + [52]={ + }, [1001]={ ["name"]="Meteorito Opaco", @@ -445,6 +451,6 @@ local item = { } } local config = { -data=item,count=111 +data=item,count=113 } return config \ 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 8a6f77ee..2fa4699d 100644 --- a/lua/app/config/strings/es/skill.lua +++ b/lua/app/config/strings/es/skill.lua @@ -42,7 +42,7 @@ 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 1 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." diff --git a/lua/app/config/strings/es/skill_rogue.lua b/lua/app/config/strings/es/skill_rogue.lua index b9142b13..952a9129 100644 --- a/lua/app/config/strings/es/skill_rogue.lua +++ b/lua/app/config/strings/es/skill_rogue.lua @@ -468,7 +468,7 @@ local skill_rogue = { ["desc"]="Cuando Espada de Fantasía enlaza 4 o más elementos, lanzará 2 ataques." }, [3400200]={ - ["desc"]="Desbloquea Pesadilla Hermosa: causa un masivo daño de habilidad adicional, con un 50% de chance de aplicar Dormido durante 1 rondas." + ["desc"]="Desbloquea Pesadilla Hermosa: causa un masivo daño de habilidad adicional, con un 50% de chance de aplicar Dormido durante 2 rondas." }, [3400201]={ ["desc"]="Pesadilla Hermosa elimina 4 bloques extras en direcciones de X." @@ -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 80% durante +1 rondas." + ["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/es/skin.lua b/lua/app/config/strings/es/skin.lua index 61e04009..6801a092 100644 --- a/lua/app/config/strings/es/skin.lua +++ b/lua/app/config/strings/es/skin.lua @@ -11,9 +11,6 @@ local skin = { [14001]={ ["value"]="Inicial" }, - [1400101]={ - ["value"]="Armadura de Ruinas" - }, [14002]={ ["value"]="Inicial" }, @@ -106,6 +103,6 @@ local skin = { } } local config = { -data=skin,count=35 +data=skin,count=34 } return config \ No newline at end of file diff --git a/lua/app/config/strings/fr/act_fourteen_quest.lua b/lua/app/config/strings/fr/act_fourteen_quest.lua new file mode 100644 index 00000000..a75c59ed --- /dev/null +++ b/lua/app/config/strings/fr/act_fourteen_quest.lua @@ -0,0 +1,141 @@ +local act_fourteen_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + } +} +local config = { +data=act_fourteen_quest,count=45 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/fr/act_fourteen_quest.lua.meta b/lua/app/config/strings/fr/act_fourteen_quest.lua.meta new file mode 100644 index 00000000..435a666d --- /dev/null +++ b/lua/app/config/strings/fr/act_fourteen_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: aba53e722e6162c448bfa183dbe21320 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/fr/item.lua b/lua/app/config/strings/fr/item.lua index 1e181bdd..b7138f5a 100644 --- a/lua/app/config/strings/fr/item.lua +++ b/lua/app/config/strings/fr/item.lua @@ -139,6 +139,12 @@ local item = { }, [47]={ + }, + [51]={ + + }, + [52]={ + }, [1001]={ @@ -334,6 +340,6 @@ local item = { } } local config = { -data=item,count=111 +data=item,count=113 } return config \ No newline at end of file diff --git a/lua/app/config/strings/fr/skin.lua b/lua/app/config/strings/fr/skin.lua index 01f28e15..3fcc5359 100644 --- a/lua/app/config/strings/fr/skin.lua +++ b/lua/app/config/strings/fr/skin.lua @@ -10,9 +10,6 @@ local skin = { }, [14001]={ - }, - [1400101]={ - }, [14002]={ @@ -106,6 +103,6 @@ local skin = { } } local config = { -data=skin,count=35 +data=skin,count=34 } return config \ No newline at end of file diff --git a/lua/app/config/strings/id/act_fourteen_quest.lua b/lua/app/config/strings/id/act_fourteen_quest.lua new file mode 100644 index 00000000..a75c59ed --- /dev/null +++ b/lua/app/config/strings/id/act_fourteen_quest.lua @@ -0,0 +1,141 @@ +local act_fourteen_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + } +} +local config = { +data=act_fourteen_quest,count=45 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/id/act_fourteen_quest.lua.meta b/lua/app/config/strings/id/act_fourteen_quest.lua.meta new file mode 100644 index 00000000..f5729855 --- /dev/null +++ b/lua/app/config/strings/id/act_fourteen_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 3b7da24318d9bae47bcba7ac90d7f292 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/id/equip.lua b/lua/app/config/strings/id/equip.lua index 2da483ea..0fc494be 100644 --- a/lua/app/config/strings/id/equip.lua +++ b/lua/app/config/strings/id/equip.lua @@ -48,16 +48,16 @@ local equip = { ["name"]="Mallet Perkasa,Palu Prajurit,Penghancur Komet,Palu Pemusnah,Penghancur Jiwa,Bintang Jatuh" }, [1400102]={ - ["name"]="Circlet Bunga,Circlet Mutiara,Circlet Api Emas,Circlet Giok,Circlet Phoenix,Mahkota Agung" + ["name"]="Helm Baja Kasar,Pelindung Baja Halus,Mahkota Obsidian,Coronet Perkasa,Circlet Tanduk Naga,Mahkota Kemuliaan Abadi" }, [1400103]={ - ["name"]="Jubah Kulit Lembut,Jubah Giok,Sutra Kasa Ungu,Jubah Amber,Jubah Bulu Phoenix,Jubah Bintang Daulat" + ["name"]="Jubah Tenun Tebal,Armor Cincin Baja Tipis,Plat Besi Gelap,Armor Giok Sang Juara,Plat Emas Wyrmhide,Plat Berat Abadi" }, [1400104]={ - ["name"]="Sabuk Bordir,Tali Pinggang Elegan,Sabuk Mutiara,Sabuk Astral,Sabuk Phoenix,Sabuk Abadi" + ["name"]="Sabuk Kulit,Tali Pinggang Emas Eboni,Ksatria Baldric,Sabuk Otot Wyrm,Lingkar Kekal,Gelang Bronze" }, [1400105]={ - ["name"]="Gelang Besi Lavender,Sarung Tangan Cadar Ethereal,Sarung Tangan Emas Cemerlang,Sarung Tangan Bintang,Sarung Tulang Phoenix,Pelindung Lengan Sovereign Agung" + ["name"]="Gelang Bronze,Gelang Kulit,Gelang Hati Besi,Sarung Tangan Heroik,Pelindung Tangan Kumis Naga,Gelang Abadi" }, [1400201]={ ["name"]="Cakar Kucing,Cakar Duri,Cakar Baja Azure,Cakar Pencabik,Cakar Pembelah Langit,Berkah Keberuntungan" diff --git a/lua/app/config/strings/id/global.lua b/lua/app/config/strings/id/global.lua index 2a87a07f..eac7ef46 100644 --- a/lua/app/config/strings/id/global.lua +++ b/lua/app/config/strings/id/global.lua @@ -447,24 +447,6 @@ local localization_global = ["ACT_DESC_12"] = "LV", ["ARENA_DESC_35"] = "Mungkin dapat Epik", ["ARENA_DESC_36"] = "Coba", - ["ONE_KEY_GET_DESC"] = "Klaim Cepat", - ["ACTIVITY_OVER_EDSC"] = "Event telah berakhir", - ["PART_IN_DESC"] = "Partisipasi", - ["HERO_FUND_DESCC_1"] = "Event baru Berkah Lunar dibuka", - ["HERO_FUND_DESCC_2"] = "Berkah Lunar", - ["HERO_FUND_DESCC_3"] = "Dapatkan hadiah melimpah dengan melewati ombak dalam pertempuran saat memiliki Berkah Lunar.", - ["HERO_FUND_DESCC_4"] = "Event baru Tantangan Advanced dibuka", - ["ARENA_DESC_37"] = "Buka Hero:", - ["ARENA_DESC_38"] = "Hero terbuka:", - ["ARENA_DESC_39"] = "Hadiah promosi hanya satu kali", - ["ARENA_DESC_40"] = "Hadiah Promosi", - ["ARENA_DESC_41"] = "Hadiah Penyelesaian", - ["ARENA_DESC_42"] = "Hadiah yang belum diklaim", - ["EQUIP_DESC_26"] = "Pack Peningkatan Senjata Lv.{0}", - ["EQUIP_DESC_27"] = "Pack upgrade Armor Lv.{0}", - ["SEIZED_DESC_1"] = "Telah terdeteksi kondisi tidak normal pada akunmuu. Silakan hubungi layanan pelanggan atau hapus akun, dan gunakan akun baru untuk melanjutkan permainan.", - ["SEIZED_DESC_2"] = "Hubungi Layanan Pelanggan", - ["SEIZED_DESC_3"] = "Hapus Akun", } return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/id/item.lua b/lua/app/config/strings/id/item.lua index c09cc6e1..24de67ac 100644 --- a/lua/app/config/strings/id/item.lua +++ b/lua/app/config/strings/id/item.lua @@ -186,6 +186,12 @@ local item = { [47]={ ["name"]="Hero Epik acak", ["desc"]="Hanya satu dari Hero berikut yang akan muncul secara acak saat dapat dalam jumlah banyak." + }, + [51]={ + + }, + [52]={ + }, [1001]={ ["name"]="Chondrite", @@ -445,6 +451,6 @@ local item = { } } local config = { -data=item,count=111 +data=item,count=113 } return config \ 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 8a70fb8b..d4b809ea 100644 --- a/lua/app/config/strings/id/skill.lua +++ b/lua/app/config/strings/id/skill.lua @@ -42,7 +42,7 @@ 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 1 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." diff --git a/lua/app/config/strings/id/skill_rogue.lua b/lua/app/config/strings/id/skill_rogue.lua index 2f2fe45a..3db100cd 100644 --- a/lua/app/config/strings/id/skill_rogue.lua +++ b/lua/app/config/strings/id/skill_rogue.lua @@ -468,7 +468,7 @@ local skill_rogue = { ["desc"]="Saat Pemburu Bulan menautkan 4 atau lebih banyak elemen, maka ATK Pemburu Bulan akan dilepaskan sebanyak 2 kali." }, [3400200]={ - ["desc"]="Membuka Nightmare Z: Menyebabkan DMG skill tambahan dalam jumlah besar dengan 50% peluang efek Kantuk selama 1 giliran." + ["desc"]="Membuka Nightmare Z: Menyebabkan DMG skill tambahan dalam jumlah besar dengan 50% peluang efek Kantuk selama 2 giliran." }, [3400201]={ ["desc"]="Nightmare Z dapat menghapus 4 grid tambahan pada arah X." @@ -480,7 +480,7 @@ local skill_rogue = { ["desc"]="Nightmare Z dapat menghapus 4 grid tambahan pada arah X." }, [3400204]={ - ["desc"]="Peluang Kantuk yang ditimbulkan oleh Nightmare Z meningkat 80% selama +1 giliran." + ["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/id/skin.lua b/lua/app/config/strings/id/skin.lua index ed879b1a..e7bb2794 100644 --- a/lua/app/config/strings/id/skin.lua +++ b/lua/app/config/strings/id/skin.lua @@ -11,9 +11,6 @@ local skin = { [14001]={ ["value"]="Awal" }, - [1400101]={ - ["value"]="Armor Relik" - }, [14002]={ ["value"]="Awal" }, @@ -106,6 +103,6 @@ local skin = { } } local config = { -data=skin,count=35 +data=skin,count=34 } return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/act_fourteen_quest.lua b/lua/app/config/strings/ja/act_fourteen_quest.lua new file mode 100644 index 00000000..a75c59ed --- /dev/null +++ b/lua/app/config/strings/ja/act_fourteen_quest.lua @@ -0,0 +1,141 @@ +local act_fourteen_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + } +} +local config = { +data=act_fourteen_quest,count=45 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/act_fourteen_quest.lua.meta b/lua/app/config/strings/ja/act_fourteen_quest.lua.meta new file mode 100644 index 00000000..d4f0e769 --- /dev/null +++ b/lua/app/config/strings/ja/act_fourteen_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 5ccc0e82aeff0d74181b926d20278aa6 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ja/equip.lua b/lua/app/config/strings/ja/equip.lua index fedbdbe2..39ba7060 100644 --- a/lua/app/config/strings/ja/equip.lua +++ b/lua/app/config/strings/ja/equip.lua @@ -48,16 +48,16 @@ local equip = { ["name"]="マイティマレット,戦士のハンマー,彗星クラッシャー,破壊ハンマー,ソウルシャッター,流れ星" }, [1400102]={ - ["name"]="花の冠,真珠の冠飾,炎紋様の金冠,月の玉冠,鳳冠の星冠,至高のかんざし" + ["name"]="鋼の仮面,ファインスチール製仮面,黒曜石の冠,勇気の冠,竜角の冠,永遠の冠" }, [1400103]={ - ["name"]="柔らかいローブ,翡翠飾りのローブ,紫絹のローブ,琥珀のローブ,鳳凰の羽のローブ,究極のローブ" + ["name"]="厚織りの法衣,薄鋼鉄製ハウバーク,玄鉄の鎧,強者の鎧,竜鱗の鎧,永遠の鎧" }, [1400104]={ - ["name"]="シンプルな刺繍テープ,エレガントなウエストバンド,パールの刺繍テープ,スターライトの刺繍テープ,鳳凰の刺繍テープ,究極の刺繍テープ" + ["name"]="革ベルト,黒檀ゴールドのガードル,騎士のベルト,竜腱のガードル,永遠のガードル,銅のブレスレット" }, [1400105]={ - ["name"]="紫鉄のブレスレット,ベールのガントレット,ゴールドのガントレット,星のガントレット,鳳凰のガントレット,究極のガントレット" + ["name"]="銅のブレスレット,革リストバンド,鉄のリストバンド,ヒーローのガントレット,竜鬚のリストバンド,永遠のリストバンド" }, [1400201]={ ["name"]="猫の爪,トゲの爪,鋼の爪,裂傷の爪,空を切り裂く爪,福神の力" diff --git a/lua/app/config/strings/ja/global.lua b/lua/app/config/strings/ja/global.lua index 75b48475..99affb82 100644 --- a/lua/app/config/strings/ja/global.lua +++ b/lua/app/config/strings/ja/global.lua @@ -447,24 +447,6 @@ local localization_global = ["ACT_DESC_12"] = "LV", ["ARENA_DESC_35"] = "エピックを獲得可能~", ["ARENA_DESC_36"] = "運試し", - ["ONE_KEY_GET_DESC"] = "一括受取", - ["ACTIVITY_OVER_EDSC"] = "イベントは終了しました", - ["PART_IN_DESC"] = "参加する", - ["HERO_FUND_DESCC_1"] = "新イベント月の祝福が解放", - ["HERO_FUND_DESCC_2"] = "月の祝福", - ["HERO_FUND_DESCC_3"] = "月の祝福を入手した後、バトル中にクリア回数を累計すると豪華な報酬を獲得できます。", - ["HERO_FUND_DESCC_4"] = "新イベントランクアップ挑戦が解放", - ["ARENA_DESC_37"] = "ヒーロー解放:", - ["ARENA_DESC_38"] = "解放済のヒーロー:", - ["ARENA_DESC_39"] = "ランクアップ報酬は一回のみ受取可能です", - ["ARENA_DESC_40"] = "ランクアップ報酬", - ["ARENA_DESC_41"] = "決算報酬", - ["ARENA_DESC_42"] = "未受取の報酬", - ["EQUIP_DESC_26"] = "武器Lv{0}レベルアップパック", - ["EQUIP_DESC_27"] = "防具Lv{0}レベルアップパック", - ["SEIZED_DESC_1"] = "アカウントに異常が検出されました。サポートセンターに連絡するか、アカウントを削除し、新しいアカウントを作成してゲームを続行してください。", - ["SEIZED_DESC_2"] = "サポートセンターに連絡する", - ["SEIZED_DESC_3"] = "アカウントを削除する", } return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/ja/item.lua b/lua/app/config/strings/ja/item.lua index 2081d0ac..071eff44 100644 --- a/lua/app/config/strings/ja/item.lua +++ b/lua/app/config/strings/ja/item.lua @@ -186,6 +186,12 @@ local item = { [47]={ ["name"]="ランダムエピックヒーロー", ["desc"]="一括獲得の時、以下のいずれかのヒーロー1名をランダムで獲得できる。" + }, + [51]={ + + }, + [52]={ + }, [1001]={ ["name"]="薄暗い隕石", @@ -445,6 +451,6 @@ local item = { } } local config = { -data=item,count=111 +data=item,count=113 } return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/skill.lua b/lua/app/config/strings/ja/skill.lua index e24d9af0..6856a732 100644 --- a/lua/app/config/strings/ja/skill.lua +++ b/lua/app/config/strings/ja/skill.lua @@ -42,7 +42,7 @@ local skill = { ["desc"]="ムーンチェイサー:発動するターンダメージがアップ、特⼤ダメージを与えるスキルを1回発動する。" }, [3400220]={ - ["desc"]="アリュールナイトメア:追加で大ダメージを与えるスキルを1回発動し、50%の確率で敵に1ターン昏睡効果を付与する。" + ["desc"]="アリュールナイトメア:追加で大ダメージを与えるスキルを1回発動し、50%の確率で敵に2ターン昏睡効果を付与する。" }, [4200120]={ ["desc"]="元素連接:ランダムで3つの元素を消し、スキルを1回発動する。" diff --git a/lua/app/config/strings/ja/skill_rogue.lua b/lua/app/config/strings/ja/skill_rogue.lua index 1f62a4ef..ec9efe93 100644 --- a/lua/app/config/strings/ja/skill_rogue.lua +++ b/lua/app/config/strings/ja/skill_rogue.lua @@ -468,7 +468,7 @@ local skill_rogue = { ["desc"]="「ムーンチェイサー」は4つ以上の元素と繋がった時、ムーンチェイサーが2回発動する。" }, [3400200]={ - ["desc"]="アリュールナイトメア解放:追加で大ダメージを与えるスキルを1回発動し、50%の確率で敵に1ターン昏睡効果を付与する。" + ["desc"]="アリュールナイトメア解放:追加で大ダメージを与えるスキルを1回発動し、50%の確率で敵に2ターン昏睡効果を付与する。" }, [3400201]={ ["desc"]="「アリュールナイトメア」は追加でX方向4マスを消す。" @@ -480,7 +480,7 @@ local skill_rogue = { ["desc"]="「アリュールナイトメア」は追加でX方向4マスを消す。" }, [3400204]={ - ["desc"]="「アリュールナイトメア」の昏睡効果の確率は80%に増加し、ターン数が+1。" + ["desc"]="「アリュールナイトメア」の昏睡効果の確率は80%に増加する。" }, [3400205]={ ["desc"]="ヒット:夢魔の通常攻撃が昏睡状態の敵に2ターン拘束効果を付与する。" diff --git a/lua/app/config/strings/ja/skin.lua b/lua/app/config/strings/ja/skin.lua index a9d2ccc1..7eacc537 100644 --- a/lua/app/config/strings/ja/skin.lua +++ b/lua/app/config/strings/ja/skin.lua @@ -11,9 +11,6 @@ local skin = { [14001]={ ["value"]="デフォルト" }, - [1400101]={ - ["value"]="レリックアーマー" - }, [14002]={ ["value"]="デフォルト" }, @@ -106,6 +103,6 @@ local skin = { } } local config = { -data=skin,count=35 +data=skin,count=34 } return config \ No newline at end of file diff --git a/lua/app/config/strings/ko/act_fourteen_quest.lua b/lua/app/config/strings/ko/act_fourteen_quest.lua new file mode 100644 index 00000000..a75c59ed --- /dev/null +++ b/lua/app/config/strings/ko/act_fourteen_quest.lua @@ -0,0 +1,141 @@ +local act_fourteen_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + } +} +local config = { +data=act_fourteen_quest,count=45 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ko/act_fourteen_quest.lua.meta b/lua/app/config/strings/ko/act_fourteen_quest.lua.meta new file mode 100644 index 00000000..3d0357d0 --- /dev/null +++ b/lua/app/config/strings/ko/act_fourteen_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: fa770962fe2830c41bccfc79c37dc30b +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ko/equip.lua b/lua/app/config/strings/ko/equip.lua index 09e4d585..edde4ece 100644 --- a/lua/app/config/strings/ko/equip.lua +++ b/lua/app/config/strings/ko/equip.lua @@ -48,16 +48,16 @@ local equip = { ["name"]="힘센 망치,워리어의 망치,유성 망치,장군의 망치,영혼 파괴 망치,떨어지는 별" }, [1400102]={ - ["name"]="꽃나무 티아라,진주 티아라,불 무늬 티아라,밝은 달 티아라,빛나는 봉황 티아라,최고의 매력 왕관" + ["name"]="거친 강철 마스크,정교한 강철 마스크,어둠의 노블 왕관,용맹의 왕관,용의 뿔로 만든 왕관,화려한 영원의 왕관" }, [1400103]={ - ["name"]="부드러운 가죽 내복,옥 장식 로브,보라색 실크 원단,엠버 컬러 옷,봉황 깃털 로브,존귀한 별 로브" + ["name"]="두꺼운 니트 두루마기,얇은 강철 갑옷,검은 빛을 띤 무거운 중갑,강자의 옥 갑옷,용비늘 황금 투구,영원의 중갑" }, [1400104]={ - ["name"]="심플한 자수 벨트,우아한 허리띠,진주 자수 벨트,별빛 영광의 벨트,봉황의 눈빛 허리띠,존귀한 불멸의 벨트" + ["name"]="가죽 벨트,검은 황금 허리띠,기사의 벨트,용의 힘줄 허리띠,영원의 허리띠 장식,브론즈 팔찌" }, [1400105]={ - ["name"]="보라색 아이언 팔찌,베일 건틀릿,화려한 황금 건틀릿,스텔라 건틀릿,봉황의 뼈 건틀릿,존귀한 영광의 아머" + ["name"]="브론즈 팔찌,가죽 손목 밴드,철의 심장 손목 밴드,영웅 건틀릿,용수염 아대,영원의 아대" }, [1400201]={ ["name"]="고양이 펀치,손톱 세운 고양이 펀치,브론즈 고양이 펀치,거친 고양이 펀치,무시무시한 고양이 펀치,행운의 신이 내린 축복" diff --git a/lua/app/config/strings/ko/global.lua b/lua/app/config/strings/ko/global.lua index 8c6a59c2..be1a1177 100644 --- a/lua/app/config/strings/ko/global.lua +++ b/lua/app/config/strings/ko/global.lua @@ -447,24 +447,6 @@ local localization_global = ["ACT_DESC_12"] = "LV", ["ARENA_DESC_35"] = "행운의 신이 당신에게 미소 짓는다면 에픽 품질을 손에 넣을 수도 있습니다~", ["ARENA_DESC_36"] = "시도해보기", - ["ONE_KEY_GET_DESC"] = "모두 받기", - ["ACTIVITY_OVER_EDSC"] = "이벤트가 종료되었습니다.", - ["PART_IN_DESC"] = "참여", - ["HERO_FUND_DESCC_1"] = "새로운 이벤트 달의 축복이 시작됩니다.", - ["HERO_FUND_DESCC_2"] = "달의 축복", - ["HERO_FUND_DESCC_3"] = "달의 축복을 받게 되면 전투에서 클리어한 웨이브를 누적하여 푸짐한 보상을 받을 수 있습니다.", - ["HERO_FUND_DESCC_4"] = "신규 이벤트 고급 도전 오픈", - ["ARENA_DESC_37"] = "영웅 잠금 해제:", - ["ARENA_DESC_38"] = "잠금 해제된 영웅:", - ["ARENA_DESC_39"] = "승급 보상은 일회성 보상입니다.", - ["ARENA_DESC_40"] = "승급 보상", - ["ARENA_DESC_41"] = "정산 보상", - ["ARENA_DESC_42"] = "미수령 보상", - ["EQUIP_DESC_26"] = "무기 {0}레벨 업그레이드 패키지", - ["EQUIP_DESC_27"] = "방어구 {0}레벨 업그레이드 패키지", - ["SEIZED_DESC_1"] = "계정에 이상이 발견되었습니다. 문제 해결을 위해 고객 서비스에 문의하거나 계정을 삭제하시고 새 계정을 사용하여 게임을 계속 진행하시기 바랍니다.", - ["SEIZED_DESC_2"] = "고객 서비스 문의", - ["SEIZED_DESC_3"] = "계정 삭제", } return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/ko/item.lua b/lua/app/config/strings/ko/item.lua index 1d38b727..828f1568 100644 --- a/lua/app/config/strings/ko/item.lua +++ b/lua/app/config/strings/ko/item.lua @@ -186,6 +186,12 @@ local item = { [47]={ ["name"]="랜덤의 에픽 영웅", ["desc"]="일괄 획득 시 다음 영웅 중 한 명만 무작위로 선택됩니다." + }, + [51]={ + + }, + [52]={ + }, [1001]={ ["name"]="알렌데 운석", @@ -445,6 +451,6 @@ local item = { } } local config = { -data=item,count=111 +data=item,count=113 } return config \ 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 c3043b1c..d9f46e3b 100644 --- a/lua/app/config/strings/ko/skill.lua +++ b/lua/app/config/strings/ko/skill.lua @@ -42,7 +42,7 @@ local skill = { ["desc"]="유성과 달의 숨바꼭질: 사용 후, 이번 공격 대미지가 상승하며 엄청난 양의 스킬 피해를 한 번 입힙니다." }, [3400220]={ - ["desc"]="아름다운 악몽: 추가로 대량의 스킬 피해를 한 번 입히며 50% 확률로 1턴 동안 수면 효과를 부여합니다." + ["desc"]="아름다운 악몽: 추가로 대량의 스킬 피해를 한 번 입히며 50% 확률로 2턴 동안 수면 효과를 부여합니다." }, [4200120]={ ["desc"]="원소 연결: 무작위로 3개의 원소를 소멸하고 스킬 피해를 한 번 입힙니다." diff --git a/lua/app/config/strings/ko/skill_rogue.lua b/lua/app/config/strings/ko/skill_rogue.lua index c8ae6f7a..9f896f7e 100644 --- a/lua/app/config/strings/ko/skill_rogue.lua +++ b/lua/app/config/strings/ko/skill_rogue.lua @@ -468,7 +468,7 @@ local skill_rogue = { ["desc"]="유성과 달의 숨바꼭질이 4개 또는 그 이상의 원소를 연결하면 스킬 공격을 2번 방출합니다." }, [3400200]={ - ["desc"]="아름다운 악몽 잠금 해제: 추가로 대량의 스킬 피해를 한 번 입히며 50% 확률로 1턴 동안 수면효과를 부여합니다." + ["desc"]="아름다운 악몽 잠금 해제: 추가로 대량의 스킬 피해를 한 번 입히며 50% 확률로 2턴 동안 수면효과를 부여합니다." }, [3400201]={ ["desc"]="아름다운 악몽이 X 방향을 따라 추가로 4개의 그리드를 소멸합니다." @@ -480,7 +480,7 @@ local skill_rogue = { ["desc"]="아름다운 악몽이 X 방향을 따라 추가로 4개의 그리드를 소멸할 수 있습니다." }, [3400204]={ - ["desc"]="아름다운 악몽이 수면 효과를 부여하는 확률이 80%로 증가하고 턴 횟수 +1" + ["desc"]="아름다운 악몽이 수면 효과를 부여할 확률이 80%로 증가합니다." }, [3400205]={ ["desc"]="Combo:인큐버스의 일반 공격이 2턴 동안 수면 상태의 적에게 속박 효과를 부여합니다." diff --git a/lua/app/config/strings/ko/skin.lua b/lua/app/config/strings/ko/skin.lua index 0981caa7..3bab41a7 100644 --- a/lua/app/config/strings/ko/skin.lua +++ b/lua/app/config/strings/ko/skin.lua @@ -11,9 +11,6 @@ local skin = { [14001]={ ["value"]="초기" }, - [1400101]={ - ["value"]="유적 갑옷" - }, [14002]={ ["value"]="초기" }, @@ -106,6 +103,6 @@ local skin = { } } local config = { -data=skin,count=35 +data=skin,count=34 } return config \ No newline at end of file diff --git a/lua/app/config/strings/pt/act_fourteen_quest.lua b/lua/app/config/strings/pt/act_fourteen_quest.lua new file mode 100644 index 00000000..a75c59ed --- /dev/null +++ b/lua/app/config/strings/pt/act_fourteen_quest.lua @@ -0,0 +1,141 @@ +local act_fourteen_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + } +} +local config = { +data=act_fourteen_quest,count=45 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/pt/act_fourteen_quest.lua.meta b/lua/app/config/strings/pt/act_fourteen_quest.lua.meta new file mode 100644 index 00000000..741875bc --- /dev/null +++ b/lua/app/config/strings/pt/act_fourteen_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 4ea92f25a1e4d6a4599d234454118c1e +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/pt/equip.lua b/lua/app/config/strings/pt/equip.lua index 6a76531f..a5660a2d 100644 --- a/lua/app/config/strings/pt/equip.lua +++ b/lua/app/config/strings/pt/equip.lua @@ -48,16 +48,16 @@ local equip = { ["name"]="Martelo Poderoso,Martelo do Combatente,Martelo do Meteoro Gigante,Martelo do Exército Quebrado,Martelo Quebra-alma,Meteorito" }, [1400102]={ - ["name"]="Coroa de Flor Comum,Tiara de Pérola,Tiara de Ouro Tece-chamas,Coroa de Jade da Lua Clara,Coroa Estrelada da Fênix,Coroa Encantadora da Supremacia" + ["name"]="Máscara de Aço Grosso,Elmo de Aço Refinado,Coroa de Obsidiana,Coroa da Valentia,Coroa do Chifre do Dragão,Coroa Majestosa da Eternidade" }, [1400103]={ - ["name"]="Vestimenta Interna de Couro Flexível,Túnica Adornada com Jade,Cetim e Gaza Roxa,Vestimenta de Âmbar,Traje Majestoso de Pena de Fênix,Túnica Estrelada da Supremacia" + ["name"]="Túnica Grossa,Cota de Anéis de Aço Fino,Armadura Pesada de Ferro Negro,Armadura de Jade do Valente,Couraça Dourada de Escamas de Dragão,Armadura Pesada da Eternidade" }, [1400104]={ - ["name"]="Faixa Bordada Simples,Cinta Elegante,Faixa Bordada de Pérola,Cinto da Luz Estelar,Cinta do Olhar da Fênix,Cordão Celestial da Supremacia" + ["name"]="Cinto de Couro,Cinto de Ouro Negro,Cinto do Cavaleiro,Cinta de Tendão de Dragão,Corrente de Cintura da Eternidade,Pulseira de Cobre" }, [1400105]={ - ["name"]="Pulseira de Ferro Roxo,Manoplas de Musselina,Manoplas Adornados de Ouro,Manoplas das Estrelas,Manoplas do Osso da Fênix,Manoplas da Supremacia" + ["name"]="Pulseira de Cobre,Braceletes de Couro,Braceletes de Coração de Ferro,Manoplas do Herói,Braceletes do Bigode do Dragão,Pulseiras da Eternidade" }, [1400201]={ ["name"]="Punho de Gato,Punho de Gato Espinhoso,Punho de Gato de Aço Azul,Punho de Gato Rasgador,Punho de Gato Rompe-céus,Força do Deus da Fortuna" diff --git a/lua/app/config/strings/pt/global.lua b/lua/app/config/strings/pt/global.lua index 64419409..3b9123ab 100644 --- a/lua/app/config/strings/pt/global.lua +++ b/lua/app/config/strings/pt/global.lua @@ -447,24 +447,6 @@ local localization_global = ["ACT_DESC_12"] = "LV", ["ARENA_DESC_35"] = "Pode aparecer um Épico!", ["ARENA_DESC_36"] = "Tentar a Sorte", - ["ONE_KEY_GET_DESC"] = "Coletar tudo", - ["ACTIVITY_OVER_EDSC"] = "O evento terminou.", - ["PART_IN_DESC"] = "Participar", - ["HERO_FUND_DESCC_1"] = "Começou o novo evento: Bênção da Lua", - ["HERO_FUND_DESCC_2"] = "Bênção da Lua", - ["HERO_FUND_DESCC_3"] = "Com a Bênção da Lua, receberá recompensas generosas acumulando o número de ondas de batalha.", - ["HERO_FUND_DESCC_4"] = "Começou o novo evento: Desafio de Avanço", - ["ARENA_DESC_37"] = "Heróis a desbloquear:", - ["ARENA_DESC_38"] = "Heróis desbloqueados:", - ["ARENA_DESC_39"] = "As recompensas de aprimoramento só podem ser coletadas uma vez.", - ["ARENA_DESC_40"] = "Recompensas pela subida de ranque", - ["ARENA_DESC_41"] = "Recompensas de classificação", - ["ARENA_DESC_42"] = "Recompensas não coletadas", - ["EQUIP_DESC_26"] = "Pacote de Melhoria de Arma a Nv.{0}", - ["EQUIP_DESC_27"] = "Pacote de Melhoria de Armadura a Nv.{0}", - ["SEIZED_DESC_1"] = "Foi detectada alguma anormalidade com sua conta. Entre em contato com o atendimento ao cliente ou exclua a conta atual e crie uma nova conta para continuar jogando.", - ["SEIZED_DESC_2"] = "Atendimento ao Cliente", - ["SEIZED_DESC_3"] = "Excluir Conta", } return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/pt/item.lua b/lua/app/config/strings/pt/item.lua index f4c32662..b0e835eb 100644 --- a/lua/app/config/strings/pt/item.lua +++ b/lua/app/config/strings/pt/item.lua @@ -186,6 +186,12 @@ local item = { [47]={ ["name"]="Frag. Alea. de Herói Épico", ["desc"]="Ao obter em lote, virá apenas um dos seguintes heróis, aleatoriamente" + }, + [51]={ + + }, + [52]={ + }, [1001]={ ["name"]="Ferro Meteórico Opaco", @@ -445,6 +451,6 @@ local item = { } } local config = { -data=item,count=111 +data=item,count=113 } return config \ 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 4ce91db1..dca29d4a 100644 --- a/lua/app/config/strings/pt/skill.lua +++ b/lua/app/config/strings/pt/skill.lua @@ -42,7 +42,7 @@ 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 da Beleza: causa adicionalmente um golpe de habilidade massivo com 50% de chance de acionar o efeito de Sonolento que dura 1 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." diff --git a/lua/app/config/strings/pt/skill_rogue.lua b/lua/app/config/strings/pt/skill_rogue.lua index 6370f96f..e7a6d536 100644 --- a/lua/app/config/strings/pt/skill_rogue.lua +++ b/lua/app/config/strings/pt/skill_rogue.lua @@ -468,7 +468,7 @@ local skill_rogue = { ["desc"]="Ao conectar 4 ou mais elementos com a Disparada do Meteoro, esta habilidade é lançada 2 vezes." }, [3400200]={ - ["desc"]="Desbloquear Belo Pesadelo: causa dano adicional significativo com habilidades e tem 50% de chance de adicionar o efeito sono por 1 turnos." + ["desc"]="Desbloquear Belo Pesadelo: causa dano adicional significativo com habilidades e tem 50% de chance de adicionar o efeito sono por 2 turnos." }, [3400201]={ ["desc"]="Belo Pesadelo pode eliminar 4 quadrados adicionais na direção X." @@ -480,7 +480,7 @@ local skill_rogue = { ["desc"]="Belo Pesadelo pode eliminar 4 quadrados adicionais na direção X." }, [3400204]={ - ["desc"]="Aumenta a chance de acionamento do efeito sonolento pelo Pesadelo da Beleza para 80%, com +1 turno de duração." + ["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/pt/skin.lua b/lua/app/config/strings/pt/skin.lua index 80003712..23b6b181 100644 --- a/lua/app/config/strings/pt/skin.lua +++ b/lua/app/config/strings/pt/skin.lua @@ -11,9 +11,6 @@ local skin = { [14001]={ ["value"]="Inicial" }, - [1400101]={ - ["value"]="Armadura das Ruínas" - }, [14002]={ ["value"]="Inicial" }, @@ -106,6 +103,6 @@ local skin = { } } local config = { -data=skin,count=35 +data=skin,count=34 } return config \ No newline at end of file diff --git a/lua/app/config/strings/ru/act_fourteen_quest.lua b/lua/app/config/strings/ru/act_fourteen_quest.lua new file mode 100644 index 00000000..a75c59ed --- /dev/null +++ b/lua/app/config/strings/ru/act_fourteen_quest.lua @@ -0,0 +1,141 @@ +local act_fourteen_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + } +} +local config = { +data=act_fourteen_quest,count=45 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ru/act_fourteen_quest.lua.meta b/lua/app/config/strings/ru/act_fourteen_quest.lua.meta new file mode 100644 index 00000000..62a8a4f2 --- /dev/null +++ b/lua/app/config/strings/ru/act_fourteen_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 50e9d04cfe5c87b4ebb88e5007833159 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ru/item.lua b/lua/app/config/strings/ru/item.lua index 1e181bdd..b7138f5a 100644 --- a/lua/app/config/strings/ru/item.lua +++ b/lua/app/config/strings/ru/item.lua @@ -139,6 +139,12 @@ local item = { }, [47]={ + }, + [51]={ + + }, + [52]={ + }, [1001]={ @@ -334,6 +340,6 @@ local item = { } } local config = { -data=item,count=111 +data=item,count=113 } return config \ No newline at end of file diff --git a/lua/app/config/strings/ru/skin.lua b/lua/app/config/strings/ru/skin.lua index 01f28e15..3fcc5359 100644 --- a/lua/app/config/strings/ru/skin.lua +++ b/lua/app/config/strings/ru/skin.lua @@ -10,9 +10,6 @@ local skin = { }, [14001]={ - }, - [1400101]={ - }, [14002]={ @@ -106,6 +103,6 @@ local skin = { } } local config = { -data=skin,count=35 +data=skin,count=34 } return config \ No newline at end of file diff --git a/lua/app/config/strings/th/act_fourteen_quest.lua b/lua/app/config/strings/th/act_fourteen_quest.lua new file mode 100644 index 00000000..a75c59ed --- /dev/null +++ b/lua/app/config/strings/th/act_fourteen_quest.lua @@ -0,0 +1,141 @@ +local act_fourteen_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + } +} +local config = { +data=act_fourteen_quest,count=45 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/th/act_fourteen_quest.lua.meta b/lua/app/config/strings/th/act_fourteen_quest.lua.meta new file mode 100644 index 00000000..e205ec6b --- /dev/null +++ b/lua/app/config/strings/th/act_fourteen_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 17939cec0871fcc4fa86ff28a4795900 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/th/equip.lua b/lua/app/config/strings/th/equip.lua index 6e9947f3..7ac3065e 100644 --- a/lua/app/config/strings/th/equip.lua +++ b/lua/app/config/strings/th/equip.lua @@ -48,16 +48,16 @@ local equip = { ["name"]="ค้อนยักษ์,ค้อนนักรบ,ค้อนดาวตก,ค้อนทำลาย,ค้อนตัดวิญญาณ,อุกกาบาต" }, [1400102]={ - ["name"]="มงกุฎไม้ดอก,มงกุฎมุก,มงกุฎทองลายไฟ,มงกุฎหยกจันทร์,มงกุฎดาวฟีนิกซ์,มงกุฏมหาเสน่ห์สุพรีม" + ["name"]="เกราะหน้าเหล็กหยาบ,เกราะหน้าเหล็กเลิศ,มงกุฎออบซิเดียน,มงกุฎกล้าหาญ,มงกุฎเขามังกร,มงกุฎนิรันดร์" }, [1400103]={ - ["name"]="เสื้อชั้นในหนัง,เสื้อคลุมหยก,ผ้าซาตินสีม่วง,ชุดแสดงสีเหลืองอำพัน,ชุดขนนกฟีนิกซ์,เสื้อคลุมดาวสุพรีม" + ["name"]="เสื้อยาวถักหนา,เกราะวงแหวนเหล็กบาง,เกราะหนักเหล็ก,เกราะหยกผู้แข็งแกร่ง,บุตรขุนนางเกล็ดมังกร,เกราะหนักนิรันดร์" }, [1400104]={ - ["name"]="ริบบิ้นปักเรียบง่าย,คอร์เซ็ทสง่างาม,ริบบิ้นปักมุก,เข็มขัดแสงดาว,เข็มขัดดาฟีนิกซ์,เชือกเซียนสุพรีม" + ["name"]="เข็มขัดหนัง,คอร์เซ็ททอง,แหวนเอวอัศวิน,คอร์เซ็ทเอ็นมังกร,ห่วงโซ่เอวนิรันดร์,สร้อยข้อมือทองแดง" }, [1400105]={ - ["name"]="สร้อยข้อมือเหล็กม่วง,ถุงมือเส้นด้าย,ถุงมือทอง,ถุงมือดวงดาว,ถุงมือกระดูกฟีนิกซ์,เกราะมือสุพรีม" + ["name"]="สร้อยข้อมือทองแดง,สายรัดข้อมือหนัง,สายรัดข้อมือเฉยเมย,ถุงมือฮีโร่,สายรัดข้อมือหนวดมังกร,ล้อข้อมือนิรันดร์" }, [1400201]={ ["name"]="หมัดแมว,หมัดแมวหนามแหลม,หมัดแมวเหล็กเขียว,หมัดแมวฉีกขาด,หมัดแมวทะลวง,พลังเทพโชคลาภ" diff --git a/lua/app/config/strings/th/global.lua b/lua/app/config/strings/th/global.lua index 2f55a840..1e5a4e78 100644 --- a/lua/app/config/strings/th/global.lua +++ b/lua/app/config/strings/th/global.lua @@ -447,24 +447,6 @@ local localization_global = ["ACT_DESC_12"] = "LV", ["ARENA_DESC_35"] = "อาจได้รับอีพิทนะ~", ["ARENA_DESC_36"] = "ลองเสี่ยงโชค", - ["ONE_KEY_GET_DESC"] = "รับทั้งหมด", - ["ACTIVITY_OVER_EDSC"] = "กิจกรรมสิ้นสุดแล้ว", - ["PART_IN_DESC"] = "เข้าร่วม", - ["HERO_FUND_DESCC_1"] = "เปิดกจกรรใหม่ดวงจันทร์แล้ว", - ["HERO_FUND_DESCC_2"] = "พรแห่งดวงจันทร์", - ["HERO_FUND_DESCC_3"] = "หลังจากได้รับพรแห่งดวงจันทร์แล้ว สะสมผ่านจำนวนรอบในการต่อสู้จะได้รับรางวัลมากมาย", - ["HERO_FUND_DESCC_4"] = "เปิดกิจกรรมใหม่ท้าทายขั้นสูแล้ว", - ["ARENA_DESC_37"] = "ปลดล็อคฮีโร่:", - ["ARENA_DESC_38"] = "ฮีโร่ที่ปลดล็อค:", - ["ARENA_DESC_39"] = "รางวัลอัประดับเป็นรางวัลแบบครั้งเดียว", - ["ARENA_DESC_40"] = "รางวัลอัประดับ", - ["ARENA_DESC_41"] = "รางวัลคำนวณ", - ["ARENA_DESC_42"] = "รางวัลที่ยังไม่ได้รับ", - ["EQUIP_DESC_26"] = "แพ็คอัปอาวุธ {0} เลเวล", - ["EQUIP_DESC_27"] = "แพ็คอัปเกราะ {0} เลเวล", - ["SEIZED_DESC_1"] = "ตรวจพบบัญชีของคุณผิดปกติ โปรดติดต่อฝ่ายบริการลูกค้าหรือลบบัญชีและใช้บัญชีใหม่เพื่อเล่นเกมต่อ", - ["SEIZED_DESC_2"] = "ติดต่อฝ่ายบริการลูกค้า", - ["SEIZED_DESC_3"] = "ลบบัญชี", } return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/th/item.lua b/lua/app/config/strings/th/item.lua index aa92241a..4ff35298 100644 --- a/lua/app/config/strings/th/item.lua +++ b/lua/app/config/strings/th/item.lua @@ -186,6 +186,12 @@ local item = { [47]={ ["name"]="ฮีโร่อีพิทแบบสุ่ม", ["desc"]="เมื่อรับแบบแบทช์จะสุ่มรับฮีโร่ต่อไปนี้เพียงหนึ่งตัวเท่านั้น" + }, + [51]={ + + }, + [52]={ + }, [1001]={ ["name"]="อุกกาบาตทื่อ", @@ -445,6 +451,6 @@ local item = { } } local config = { -data=item,count=111 +data=item,count=113 } return config \ 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 3dc41522..e0dbe373 100644 --- a/lua/app/config/strings/th/skill.lua +++ b/lua/app/config/strings/th/skill.lua @@ -42,7 +42,7 @@ local skill = { ["desc"]="ดาวตกไล่ดวงจันทร์: ดาเมจครั้งนี้จะเพิ่มขึ้นหลังจากการใช้ และสร้างดาเมจสกิลมหาศาล 1 ครั้ง" }, [3400220]={ - ["desc"]="ฝันร้ายที่สวยงาม: สร้างดาเมจสกิลมากมายเพิ่มเติม 1 ครั้ง มีโอกาส 50% เพิ่มเอฟเฟกต์หลับ 1รอบ" + ["desc"]="ฝันร้ายที่สวยงาม: สร้างดาเมจสกิลมากมายเพิ่มเติม 1 ครั้ง มีโอกาส 50% เพิ่มเอฟเฟกต์หลับ 2รอบ" }, [4200120]={ ["desc"]="การเชื่อมโยงธาตุ: สุ่มกำจัดธาตุ3อัน และสร้างดาเมจสกิล 1 ครั้ง" diff --git a/lua/app/config/strings/th/skill_rogue.lua b/lua/app/config/strings/th/skill_rogue.lua index 974569fd..6cd74a74 100644 --- a/lua/app/config/strings/th/skill_rogue.lua +++ b/lua/app/config/strings/th/skill_rogue.lua @@ -468,7 +468,7 @@ local skill_rogue = { ["desc"]="เมื่อดาวตกไล่ดวงจันทร์เชื่อมโยงธาตุ4อันหรือขึ้นไป การโจมตีของดาวตกไล่ดวงจันทร์จะปล่อย2ครั้ง" }, [3400200]={ - ["desc"]="ปลดล็อคฝันร้ายที่สวยงาม: สร้างดาเมจสกิลมากมายเพิ่มเติม 1 ครั้ง มีโอกาส 50% เพิ่มเอฟเฟกต์หลับ 1รอบ" + ["desc"]="ปลดล็อคฝันร้ายที่สวยงาม: สร้างดาเมจสกิลมากมายเพิ่มเติม 1 ครั้ง มีโอกาส 50% เพิ่มเอฟเฟกต์หลับ 2รอบ" }, [3400201]={ ["desc"]="ฝันร้ายที่สวยงามสามารถกำจัดเพิ่มเติม4ช่องตามทิศทาง X" @@ -480,7 +480,7 @@ local skill_rogue = { ["desc"]="ฝันร้ายที่สวยงามสามารถกำจัดเพิ่มเติม4ช่องตามทิศทาง X" }, [3400204]={ - ["desc"]="โอกาสเอฟเฟกต์หลับที่เพิ่มโดยฝันร้ายที่สวยงามเพิ่มขึ้นถึง80% จำนวนรอบ+1" + ["desc"]="เอฟเฟกต์หลับที่เพิ่มโดยฝันร้ายที่สวยงามสาม โอกาสเพิ่มขึ้นถึง80%" }, [3400205]={ ["desc"]="คอมโบ: เมื่อฝันร้ายโจมตีทั่วไปศัตรูหลับจะเพิ่มเอฟเฟกต์กักขัง 2รอบ" diff --git a/lua/app/config/strings/th/skin.lua b/lua/app/config/strings/th/skin.lua index bbc7dc0c..80747895 100644 --- a/lua/app/config/strings/th/skin.lua +++ b/lua/app/config/strings/th/skin.lua @@ -11,9 +11,6 @@ local skin = { [14001]={ ["value"]="เริ่มต้น" }, - [1400101]={ - ["value"]="เกราะรบซาก" - }, [14002]={ ["value"]="เริ่มต้น" }, @@ -106,6 +103,6 @@ local skin = { } } local config = { -data=skin,count=35 +data=skin,count=34 } return config \ No newline at end of file diff --git a/lua/app/config/strings/vi/act_fourteen_quest.lua b/lua/app/config/strings/vi/act_fourteen_quest.lua new file mode 100644 index 00000000..a75c59ed --- /dev/null +++ b/lua/app/config/strings/vi/act_fourteen_quest.lua @@ -0,0 +1,141 @@ +local act_fourteen_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + } +} +local config = { +data=act_fourteen_quest,count=45 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/vi/act_fourteen_quest.lua.meta b/lua/app/config/strings/vi/act_fourteen_quest.lua.meta new file mode 100644 index 00000000..d6f9230b --- /dev/null +++ b/lua/app/config/strings/vi/act_fourteen_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 0d68310284b2ca24b84d029a56ab202e +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/vi/equip.lua b/lua/app/config/strings/vi/equip.lua index d191f6e2..0d554e7d 100644 --- a/lua/app/config/strings/vi/equip.lua +++ b/lua/app/config/strings/vi/equip.lua @@ -48,16 +48,16 @@ local equip = { ["name"]="Búa Mạnh,Búa Chiến Sĩ,Búa Sao Băng,Búa Phá Quân,Búa Đoạn Hồn,Thiên Thạch" }, [1400102]={ - ["name"]="Mũ Gỗ Phàm Hoa,Mũ Ngọc Trai,Mũ Vàng Vân Lửa,Mũ Ngọc Trăng Sáng,Mũ Sao Mũ Phượng,Mũ Chí Tôn" + ["name"]="Mặt Nạ Thép Thô,Mũ Thép Tinh Thiết,Mũ Hắc Diệu,Vương Miện Anh Dũng,Mũ Sừng Rồng,Mũ Vĩnh Hằng" }, [1400103]={ - ["name"]="Áo Choàng Da,Áo Choàng Ngọc Bích,Tơ Lụa Sa Tím,Áo Hổ Phách,Trang Phục Phụng Hoàng,Áo Choàng Chí Tôn" + ["name"]="Áo Dệt Kim Dày,Giáp Thép Mỏng,Giáp Huyền Thiết,Giáp Ngọc Cường Giả,Mũ Vàng Vảy Rồng,Giáp Vĩnh Hằng" }, [1400104]={ - ["name"]="Đai Đơn Giản,Đai Thanh Lịch,Đai Ngọc Trai,Đai Ánh Sao,Đai Mắt Phượng,Dây Chí Tôn" + ["name"]="Đai Da,Đai Than Đá,Đai Kỵ Sĩ,Đai Gân Rồng,Đai Vĩnh Hằng,Vòng Tay Đồng" }, [1400105]={ - ["name"]="Vòng Tay Tử Thiết,Bao Tay Nhẹ Nhàng,Bao Tay Hoàng Kim,Bao Tay Chòm Sao,Bao Tay Xương Phượng,Giáp Tay Chí Tôn" + ["name"]="Vòng Tay Đồng,Đai Da Cổ Tay,Đai Thép Cổ Tay,Bao Tay Anh Hùng,Tay Râu Rồng,Vòng Vĩnh Hằng" }, [1400201]={ ["name"]="Miêu Quyền,Miêu Quyền Gai Góc,Miêu Quyền Thép Xanh,Miêu Quyền Vết Rách,Miêu Quyền Phá Không,Sức Mạnh Phúc Thần" diff --git a/lua/app/config/strings/vi/global.lua b/lua/app/config/strings/vi/global.lua index 7f16b8b2..859c03c2 100644 --- a/lua/app/config/strings/vi/global.lua +++ b/lua/app/config/strings/vi/global.lua @@ -447,24 +447,6 @@ local localization_global = ["ACT_DESC_12"] = "LV", ["ARENA_DESC_35"] = "Có thể ra Sử Thi", ["ARENA_DESC_36"] = "Thử Vận May", - ["ONE_KEY_GET_DESC"] = "Nhận Nhanh", - ["ACTIVITY_OVER_EDSC"] = "Sự kiện đã kết thúc", - ["PART_IN_DESC"] = "Tham Gia", - ["HERO_FUND_DESCC_1"] = "Mở sự kiện mới Chúc Phúc Ánh Trăng", - ["HERO_FUND_DESCC_2"] = "Chúc Phúc Ánh Trăng", - ["HERO_FUND_DESCC_3"] = "Sau khi có Chúc Phúc Ánh Trăng, tích lũy số đợt vượt qua khi chiến đấu được nhận quà hậu hĩnh.", - ["HERO_FUND_DESCC_4"] = "Mở sự kiện mới Khiêu Chiến Tăng Bậc", - ["ARENA_DESC_37"] = "Mở anh hùng:", - ["ARENA_DESC_38"] = "Anh hùng đã mở:", - ["ARENA_DESC_39"] = "Thưởng Tăng Bậc là phần thưởng một lần", - ["ARENA_DESC_40"] = "Thưởng Tăng Bậc", - ["ARENA_DESC_41"] = "Thưởng Tổng Kết", - ["ARENA_DESC_42"] = "Chưa nhận quà", - ["EQUIP_DESC_26"] = "Quà Tăng Ngay Vũ Khí Lv{0}", - ["EQUIP_DESC_27"] = "Quà Tăng Ngay Phòng Cụ Lv{0}", - ["SEIZED_DESC_1"] = "Đã phát hiện tài khoản có bất thường, vui lòng liên hệ CSKH hoặc xóa TK và sử dụng TK mới để tiếp tục trò chơi.", - ["SEIZED_DESC_2"] = "Liên hệ CSKH", - ["SEIZED_DESC_3"] = "Xóa TK", } return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/vi/item.lua b/lua/app/config/strings/vi/item.lua index 2bf22e8b..95d5ed9a 100644 --- a/lua/app/config/strings/vi/item.lua +++ b/lua/app/config/strings/vi/item.lua @@ -186,6 +186,12 @@ local item = { [47]={ ["name"]="Anh Hùng Sử Thi N.Nhiên", ["desc"]="Khi nhận số lượng nhiều chỉ ngẫu nhiên ra 1 trong các Anh Hùng dưới đây." + }, + [51]={ + + }, + [52]={ + }, [1001]={ ["name"]="Thiên Thạch Ảm Đạm", @@ -445,6 +451,6 @@ local item = { } } local config = { -data=item,count=111 +data=item,count=113 } return config \ 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 662f36da..3beae01b 100644 --- a/lua/app/config/strings/vi/skill.lua +++ b/lua/app/config/strings/vi/skill.lua @@ -42,7 +42,7 @@ 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 ST kỹ năng, cos 50% kèm Ngủ Say, 1 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." diff --git a/lua/app/config/strings/vi/skill_rogue.lua b/lua/app/config/strings/vi/skill_rogue.lua index 2c3b60d6..87cc582e 100644 --- a/lua/app/config/strings/vi/skill_rogue.lua +++ b/lua/app/config/strings/vi/skill_rogue.lua @@ -468,7 +468,7 @@ local skill_rogue = { ["desc"]="Sao Băng Siêu Tốc liên kết 4 Nguyên Tố trở lên, Sao Băng Siêu Tốc tấn công sẽ thi triển 2 lần." }, [3400200]={ - ["desc"]="Mở khóa Á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, 1 hiệp." + ["desc"]="Mở khóa Á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." }, [3400201]={ ["desc"]="Ác Mộng Tươi Đẹp theo hướng X được xua tan thêm 4 ô." @@ -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 80%, số hiệp +1." + ["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/vi/skin.lua b/lua/app/config/strings/vi/skin.lua index c80877cb..f6f6969d 100644 --- a/lua/app/config/strings/vi/skin.lua +++ b/lua/app/config/strings/vi/skin.lua @@ -11,9 +11,6 @@ local skin = { [14001]={ ["value"]="Ban Đầu" }, - [1400101]={ - ["value"]="Giáp Di Tích" - }, [14002]={ ["value"]="Ban Đầu" }, @@ -106,6 +103,6 @@ local skin = { } } local config = { -data=skin,count=35 +data=skin,count=34 } return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/act_fourteen_quest.lua b/lua/app/config/strings/zh/act_fourteen_quest.lua new file mode 100644 index 00000000..a75c59ed --- /dev/null +++ b/lua/app/config/strings/zh/act_fourteen_quest.lua @@ -0,0 +1,141 @@ +local act_fourteen_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + } +} +local config = { +data=act_fourteen_quest,count=45 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/act_fourteen_quest.lua.meta b/lua/app/config/strings/zh/act_fourteen_quest.lua.meta new file mode 100644 index 00000000..ea5f9ea8 --- /dev/null +++ b/lua/app/config/strings/zh/act_fourteen_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 45312eb9564c09e41bcfbe15e5603b86 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/zh/equip.lua b/lua/app/config/strings/zh/equip.lua index 37ab7f23..b7f08c5c 100644 --- a/lua/app/config/strings/zh/equip.lua +++ b/lua/app/config/strings/zh/equip.lua @@ -48,16 +48,16 @@ local equip = { ["name"]="巨力錘,戰者之錘,流星巨錘,破軍錘,斷魂錘,隕星" }, [1400102]={ - ["name"]="凡花木冠,珍珠冠飾,火紋金冠,皎月玉冠,鳳冠星冠,至尊魅冠" + ["name"]="粗鋼面甲,精鋼面盔,黑曜貴冠,英勇冠冕,龍角之冠,永恆華冠" }, [1400103]={ - ["name"]="軟革裡衣,綴玉長袍,紫紗綢緞,琥珀彩衣,鳳羽華裝,至尊星袍" + ["name"]="厚織長衫,薄鋼環甲,玄鐵重甲,強者玉甲,龍鱗金冑,永恆重鎧" }, [1400104]={ - ["name"]="簡約繡帶,優雅束腰,珍珠繡帶,星光御帶,鳳眸束帶,至尊仙索" + ["name"]="皮革腰帶,烏金束腰,騎士腰環,龍筋束腰,永恆腰鏈,銅製手環" }, [1400105]={ - ["name"]="紫鐵手環,輕紗護手,黃金華護,星辰護手,鳳骨護手,至尊御手甲" + ["name"]="銅製手環,皮革腕帶,鐵心腕帶,英雄護手,龍鬚護腕,永恆腕輪" }, [1400201]={ ["name"]="貓拳,尖刺貓拳,青鋼貓拳,裂傷貓拳,破空貓拳,福神之力" diff --git a/lua/app/config/strings/zh/global.lua b/lua/app/config/strings/zh/global.lua index dae7df04..3d3aa676 100644 --- a/lua/app/config/strings/zh/global.lua +++ b/lua/app/config/strings/zh/global.lua @@ -447,24 +447,6 @@ local localization_global = ["ACT_DESC_12"] = "LV", ["ARENA_DESC_35"] = "可能出史詩哦~", ["ARENA_DESC_36"] = "試試手氣", - ["ONE_KEY_GET_DESC"] = "一鍵領取", - ["ACTIVITY_OVER_EDSC"] = "活動已結束", - ["PART_IN_DESC"] = "參與", - ["HERO_FUND_DESCC_1"] = "新活動月之祝福開啟", - ["HERO_FUND_DESCC_2"] = "月之祝福", - ["HERO_FUND_DESCC_3"] = "擁有月之祝福後,在戰鬥中累積通關波次可獲得豐厚獎勵。", - ["HERO_FUND_DESCC_4"] = "新活動進階挑戰開啟", - ["ARENA_DESC_37"] = "解鎖英雄:", - ["ARENA_DESC_38"] = "已解鎖英雄:", - ["ARENA_DESC_39"] = "升段獎勵為一次性獎勵", - ["ARENA_DESC_40"] = "升段獎勵", - ["ARENA_DESC_41"] = "結算獎勵", - ["ARENA_DESC_42"] = "未領取獎勵", - ["EQUIP_DESC_26"] = "武器直升{0}級禮包", - ["EQUIP_DESC_27"] = "防具直升{0}級禮包", - ["SEIZED_DESC_1"] = "檢測到你的賬號存在異常,請聯繫客服或刪除賬號使用新建賬號繼續遊戲。", - ["SEIZED_DESC_2"] = "聯繫客服", - ["SEIZED_DESC_3"] = "刪除賬號", } return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/zh/item.lua b/lua/app/config/strings/zh/item.lua index c19176d7..772722e8 100644 --- a/lua/app/config/strings/zh/item.lua +++ b/lua/app/config/strings/zh/item.lua @@ -186,6 +186,12 @@ local item = { [47]={ ["name"]="隨機史詩英雄", ["desc"]="批量獲取時只會隨機以下英雄中的一名" + }, + [51]={ + + }, + [52]={ + }, [1001]={ ["name"]="暗淡隕鐵", @@ -445,6 +451,6 @@ local item = { } } local config = { -data=item,count=111 +data=item,count=113 } return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/skill.lua b/lua/app/config/strings/zh/skill.lua index f7c16f3b..31cdbcd2 100644 --- a/lua/app/config/strings/zh/skill.lua +++ b/lua/app/config/strings/zh/skill.lua @@ -42,7 +42,7 @@ local skill = { ["desc"]="流星追月:使用後本次傷害提高,並造成一次巨大技能傷害。" }, [3400220]={ - ["desc"]="美麗夢魘:額外造成一次大量技能傷害,50%機率附加昏睡效果,1回合。" + ["desc"]="美麗夢魘:額外造成一次大量技能傷害,50%機率附加昏睡效果,2回合。" }, [4200120]={ ["desc"]="元素連接:隨機消除3個元素,並造成一次技能傷害。" diff --git a/lua/app/config/strings/zh/skill_rogue.lua b/lua/app/config/strings/zh/skill_rogue.lua index dc6e6bb7..db6ab76d 100644 --- a/lua/app/config/strings/zh/skill_rogue.lua +++ b/lua/app/config/strings/zh/skill_rogue.lua @@ -468,7 +468,7 @@ local skill_rogue = { ["desc"]="流星追月連接4個元素或以上時,流星追月攻擊將釋放2次。" }, [3400200]={ - ["desc"]="解鎖美麗夢魘:額外造成一次大量技能傷害,50%機率附帶昏睡效果,1回合。" + ["desc"]="解鎖美麗夢魘:額外造成一次大量技能傷害,50%機率附帶昏睡效果,2回合。" }, [3400201]={ ["desc"]="美麗夢魘沿X方向可額外消除4格。" @@ -480,7 +480,7 @@ local skill_rogue = { ["desc"]="美麗夢魘沿X方向可額外消除4格。" }, [3400204]={ - ["desc"]="美麗夢魘附帶的昏睡效果,機率提高到80%,回合數+1。" + ["desc"]="美麗夢魘附帶的昏睡效果,機率提高到80%。" }, [3400205]={ ["desc"]="Combo:夢魔普攻昏睡敵人將附帶禁錮效果,2回合。" @@ -579,7 +579,7 @@ local skill_rogue = { ["desc"]="冰霜劍舞附帶的冰霜效果,效果提高。" }, [4400105]={ - ["desc"]="冰霜劍舞有50%機率附帶凍結效果,2回合。" + ["desc"]="冰霜劍舞有50%機率附帶凍傷效果,2回合。" }, [4400106]={ ["desc"]="寒冰妖姬攻擊提高15%。" diff --git a/lua/app/config/strings/zh/skin.lua b/lua/app/config/strings/zh/skin.lua index 3cd9a39f..8509cb6a 100644 --- a/lua/app/config/strings/zh/skin.lua +++ b/lua/app/config/strings/zh/skin.lua @@ -11,9 +11,6 @@ local skin = { [14001]={ ["value"]="初始" }, - [1400101]={ - ["value"]="遺跡戰甲" - }, [14002]={ ["value"]="初始" }, @@ -106,6 +103,6 @@ local skin = { } } local config = { -data=skin,count=35 +data=skin,count=34 } return config \ No newline at end of file diff --git a/lua/app/global/global_const.lua b/lua/app/global/global_const.lua index 0a148c5c..87952154 100644 --- a/lua/app/global/global_const.lua +++ b/lua/app/global/global_const.lua @@ -222,6 +222,7 @@ GConst.ATLAS_PATH = { ACT_SUMMER = "assets/arts/atlas/ui/act_summer.asset", TASK = "assets/arts/atlas/ui/task.asset", ACT_HEROFUND = "assets/arts/atlas/ui/act_herofund.asset", + ACT_BOSS_RUSH = "assets/arts/atlas/ui/act_boss_rush.asset", } GConst.TOUCH_EVENT = { diff --git a/lua/app/global/global_func.lua b/lua/app/global/global_func.lua index 42dbf538..c00b054a 100644 --- a/lua/app/global/global_func.lua +++ b/lua/app/global/global_func.lua @@ -783,6 +783,12 @@ function GFunc.getRandomIndex(weightArr) return idx end +---- 线性随机数算法 +function GFunc.getRandomIndexBySeed(seed, min, max) + seed = (seed * 9301 + 49297)%233280 + return min + seed*(max - min + 1)//233280 +end + function GFunc.getRewardsStr(rewards) if rewards == nil then return @@ -1420,6 +1426,20 @@ function GFunc.centerTxAndTx(txObj1, txObj2, spacing) txObj2:setAnchoredPositionX(w - txW2 / 2) end +function GFunc.centerTxAndImgAndTx(txObj1, spacing1, imgObj, spacing2, txObj2) + local txW = txObj1:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT_MESH_PRO).preferredWidth + txObj1:setSizeDeltaX(txW) + + local txW2 = txObj2:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT_MESH_PRO).preferredWidth + txObj2:setSizeDeltaX(txW2) + + local imgW = imgObj:getSizeDelta().x + local w = (txW + spacing1 + imgW + spacing2 + txW2) / 2 + txObj1:setAnchoredPositionX(txW / 2 - w) + imgObj:setAnchoredPositionX(txW / 2 - (txW + spacing1 + imgW + spacing2 + txW2) / 2 + spacing1 + imgW / 2) + txObj2:setAnchoredPositionX(w - txW2 / 2) +end + function GFunc.expandImgToFitTx(imgObj, txObj, spacing) spacing = spacing or 0 local txW = txObj:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT_MESH_PRO).preferredWidth diff --git a/lua/app/module/activity/act_boss_rush.meta b/lua/app/module/activity/act_boss_rush.meta new file mode 100644 index 00000000..87c1dbb4 --- /dev/null +++ b/lua/app/module/activity/act_boss_rush.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4bc67b0cb6448474b89b7a92613c0fba +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/activity/act_boss_rush/act_boss_rush_manager.lua b/lua/app/module/activity/act_boss_rush/act_boss_rush_manager.lua new file mode 100644 index 00000000..a8c629b7 --- /dev/null +++ b/lua/app/module/activity/act_boss_rush/act_boss_rush_manager.lua @@ -0,0 +1,112 @@ +local ActBossRushManager = class("ActBossRushManager", BaseModule) + +function ActBossRushManager:showMainUI() + UIManager:showUI("app/ui/activity/act_boss_rush/act_boss_rush_ui") +end + +function ActBossRushManager:showFundUI() + +end + +function ActBossRushManager:showRankUI() + +end + +function ActBossRushManager:showShopUI() + +end + +function ActBossRushManager:showPopUI() + UIManager:showUI("app/ui/activity/act_boss_rush/act_boss_rush_pop_ui") + return true +end + +function ActBossRushManager:reqFight() + if not DataManager.ActBossRushData:getFightFree() then + local cost = DataManager.ActBossRushData:getFightCost() + if not GFunc.checkCost(GConst.ItemConst.ITEM_ID_GEM, cost, true) then -- 消耗不足 + return + else + local params ={ + content = I18N:getGlobalText(I18N.GlobalConst.ACT_BOSS_RUSH_DESC_1, cost), + boxType = GConst.MESSAGE_BOX_TYPE.MB_OK_CANCEL, + costId = GConst.ItemConst.ITEM_ID_GEM, + costNum = cost, + okFunc = function() + self:sendMessage(ProtoMsgType.FromMsgEnum., {}, {}, self.rspFight, BIReport.ITEM_GET_TYPE.ACT_BOSS_RUSH_FIGHT_START) + end, + } + GFunc.showMessageBox(params) + return + end + end + + self:sendMessage(ProtoMsgType.FromMsgEnum., {}, {}, self.rspFight, BIReport.ITEM_GET_TYPE.ACT_BOSS_RUSH_FIGHT_START) +end + +function ActBossRushManager:rspFight(result) + if result.error_code == GConst.ERROR_STR.SUCCESS then + ModuleManager.BattleManager:playBattle(GConst.BattleConst.BATTLE_TYPE.BOSS_RUSH) + end +end + +function ActBossRushManager:reqEndBattle() + + local params = { + + } + self:sendMessage(ProtoMsgType.FromMsgEnum., params, {}, self.rspEndBattle, BIReport.ITEM_GET_TYPE.ACT_BOSS_RUSH_FIGHT) +end + +function ActBossRushManager:rspEndBattle(result) + if result.error_code == GConst.ERROR_STR.SUCCESS then + -- ModuleManager.BattleManager:showBattleResultUI(result.settlement, result.rewards, checkCount) + end +end + + +function ActBossRushManager:purcharse(id) + PayManager:purchasePackage(id, PayManager.PURCHARSE_TYPE.ACT_GIFT) +end + +function ActBossRushManager:reqFundAward(level, rewardType) + if not DataManager.ActBossRushData:getIsOpen() then + GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.ACTIVITY_OVER_EDSC)) + return + end + -- 直接一键领取 + local curLevel = DataManager.ActBossRushData:getWaveLevel() + local idWithLv = {} + for id = 1, curLevel do + if DataManager.ActBossRushData:getFreeCanGet(id) then + table.insert(idWithLv, {id = id, grade = 0}) + end + + if DataManager.ActBossRushData:getProCanGet(id) then + table.insert(idWithLv, {id = id, grade = 1}) + end + + if DataManager.ActBossRushData:getUtralCanGet(id) then + table.insert(idWithLv, {id = id, grade = 2}) + end + end + + if not idWithLv[1] then + return + end + + local params = { + id_with_lv = idWithLv + } + + self:sendMessage(ProtoMsgType.FromMsgEnum., params, {}, self.rspFundAward, BIReport.ITEM_GET_TYPE.ACT_BOSS_RUSH_FUND) +end + +function ActBossRushManager:rspFundAward(result) + if result.err_code == GConst.ERROR_STR.SUCCESS then + DataManager.ActBossRushData:gotFundReward(result.id_with_lv) + GFunc.showRewardBox(result.rewards) + end +end + +return ActBossRushManager \ No newline at end of file diff --git a/lua/app/module/activity/act_boss_rush/act_boss_rush_manager.lua.meta b/lua/app/module/activity/act_boss_rush/act_boss_rush_manager.lua.meta new file mode 100644 index 00000000..ae3a5f36 --- /dev/null +++ b/lua/app/module/activity/act_boss_rush/act_boss_rush_manager.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 72435753c4dcd0e419a2685ad64955d6 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/module/battle/battle_const.lua b/lua/app/module/battle/battle_const.lua index 77505f64..40b9c900 100644 --- a/lua/app/module/battle/battle_const.lua +++ b/lua/app/module/battle/battle_const.lua @@ -88,6 +88,7 @@ BattleConst.BATTLE_TYPE = { ARENA = "5", DUNGEON_WEAPON = "6", DUNGEON_ARMOR = "7", + ACT_BOSS_RUSH = "8", } BattleConst.IS_PVP_BATTLE = { @@ -101,6 +102,7 @@ BattleConst.FORMATION_TYPE = { ARENA_DEFEND = "3",-- 竞技场防守 DUNGEON_WEAPON = "4", -- 武器副本 DUNGEON_ARMOR = "5", -- 支线副本 + BOSS_RUSH = "6", -- boss rush } BattleConst.TYPEOF_LUA_COMP = { diff --git a/lua/app/module/battle/controller/battle_controller_boss_rush.lua b/lua/app/module/battle/controller/battle_controller_boss_rush.lua new file mode 100644 index 00000000..5da3a651 --- /dev/null +++ b/lua/app/module/battle/controller/battle_controller_boss_rush.lua @@ -0,0 +1,111 @@ +local BattleController = require "app/module/battle/controller/battle_controller" +local BattleControllerBossRush = class("BattleControllerBossRush", BattleController) +local BattleBuffEntity = require "app/userdata/battle/skill/battle_buff_entity" + +function BattleControllerBossRush:getBoardConfig() + return ConfigManager:getConfig("chapter_board_bossrush") +end + +function BattleControllerBossRush:getChapterConfig() + return ConfigManager:getConfig("activity_boss_rush_chapter") +end + +---- 障碍格子图片 +function BattleControllerBossRush:getBlockIcon() + return "battle_hinder_4" +end + +function BattleControllerBossRush:getChessBoardBgName() + return "chessboard_1" +end + +function BattleControllerBossRush:getScene() + return "bg_1" +end + +function BattleControllerBossRush:getChapterId() + return 1 +end + +function BattleControllerBossRush:getMaxWave() + return ConfigManager:getConfigNum("activity_boss_rush_chapter") * 5 -- 每次5波,一共770 +end + +function BattleControllerBossRush:getInitBoard() + if not self.boradList then + self.boradList = {} + self.fixedRandomGrid = {} + self.mysteryBoxIndexMap = {} + + local boardCfg = self:getBoardConfig() + for id, info in ipairs(self:getChapterConfig()) do + local cfg = boardCfg[info.board_id] + if cfg then + table.insert(self.boradList, {board = GFunc.getTable(cfg.board), gridEdge = GFunc.getTable(cfg.grid_edge)}) + end + end + end + + return self.boradList, self.fixedRandomGrid, self.mysteryBoxIndexMap +end + +function BattleControllerBossRush:controllBattleEnd() + -- self.combatReport = { + -- battleType = GConst.BattleConst.BATTLE_TYPE.ACT_BOSS_RUSH, + -- wave = self.waveIndex, + -- victory = self.victory, + -- } + -- local atkReport = {} + -- local teamEntity = self.battleData:getAtkTeam() + -- local members = teamEntity:getAllMembers() + -- local heroInfo = {} + -- for k, v in pairs(members) do + -- local report = { + -- heroId = v:getId(), + -- dmg = v:getDamageCount(), + -- } + -- table.insert(atkReport, report) + -- heroInfo[v:getId()] = { + -- skill_cast = v:getActiveSkillReleaseCount(), + -- Damage = v:getDamageCount(), + -- } + -- end + -- self.combatReport.atkReport = atkReport + -- if not self.victory then + -- self.combatReport.wave = self.combatReport.wave - 1 + -- end + -- local taskCurProgress = ModuleManager.DailyChallengeManager:getCurTaskProgress(self) + ModuleManager.ActBossRushManager:reqEndBattle(self.chapterId, self.combatReport, self.taskProgress, heroInfo, taskCurProgress) +end + +function BattleControllerBossRush:postWaveOver(atkDead, isQuit) + -- local deathType = BIReport.FIGHT_DEATH_TYPE.SURVIVE + -- local waveEndType = BIReport.FIGHT_WAVE_END_TYPE.WIN + -- if atkDead then + -- if self.isBossWave then + -- deathType = BIReport.FIGHT_DEATH_TYPE.BOSS_FAIL + -- else + -- deathType = BIReport.FIGHT_DEATH_TYPE.NORMAL_FAIL + -- end + -- waveEndType = BIReport.FIGHT_WAVE_END_TYPE.FAIL + -- end + + -- if isQuit then + -- waveEndType = BIReport.FIGHT_WAVE_END_TYPE.QUIT + -- end + + -- local duration = self.waveDurationTime + -- local totalTime = self.totalDurationTime + -- local startTimes = DataManager.DailyChallengeData:getTotalFightCount() + -- local isFirstWin = false -- TODO 策划说不需要 因为系数在变 + + -- local isFianlStep = self.waveIndex >= self.maxWaveIndex + + -- BIReport:postFightEnd(GConst.BattleConst.BATTLE_TYPE.ACT_BOSS_RUSH, self.battleData, self.chapterId, self.waveIndex, duration, totalTime, self.eliminateCount, self.eliminateTotalCount, waveEndType, deathType, startTimes, isFirstWin, isFianlStep, self.maxLinkCount) +end + +function BattleControllerBossRush:postFightStart() + -- BIReport:postFightBegin(GConst.BattleConst.BATTLE_TYPE.ACT_BOSS_RUSH, self.waveIndex, self.chapterId, nil, 1) +end + +return BattleControllerBossRush \ No newline at end of file diff --git a/lua/app/module/battle/controller/battle_controller_boss_rush.lua.meta b/lua/app/module/battle/controller/battle_controller_boss_rush.lua.meta new file mode 100644 index 00000000..1bba7dde --- /dev/null +++ b/lua/app/module/battle/controller/battle_controller_boss_rush.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: ead83638337227e4dba003425edda9df +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/activity/act_boss_rush.meta b/lua/app/ui/activity/act_boss_rush.meta new file mode 100644 index 00000000..a993b0bd --- /dev/null +++ b/lua/app/ui/activity/act_boss_rush.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cb002506d3ebe7f4b81bfb1f32ccb50b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/activity/act_boss_rush/act_boss_rush_fund_ui.lua b/lua/app/ui/activity/act_boss_rush/act_boss_rush_fund_ui.lua new file mode 100644 index 00000000..ada4e272 --- /dev/null +++ b/lua/app/ui/activity/act_boss_rush/act_boss_rush_fund_ui.lua @@ -0,0 +1,166 @@ +local ActBossRushFundUI = class("ActBossRushFundUI", BaseUI) + +local FUND_CELL = "app/ui/activity/act_boss_rush/cell/fund_cell" +local BTN_ICON = {"common_btn_green_3", "act_herofund_board_2"} + +function ActBossRushFundUI:isFullScreen() + return false +end + +function ActBossRushFundUI:ctor() + self.rewardList = {} + for _, id in pairs(DataManager.ActBossRushData:getBountyList()) do + table.insert(self.rewardList, id) + end + table.sort(self.rewardList, function(a, b) + return a < b + end) +end + +function ActBossRushFundUI:getPrefabPath() + return "assets/prefabs/ui/activity/act_boss_rush/act_boss_rush_fund_ui.prefab" +end + +function ActBossRushFundUI:onLoadRootComplete() + self:_display() + self:_addListeners() + self:_bind() + + self:refreshTime() + if self.actCountdownSid then + self:unscheduleGlobal(self.actCountdownSid) + end + self.actCountdownSid = self:scheduleGlobal(function() + self:refreshTime() + end, 1) +end + +function ActBossRushFundUI:_display() + local uiMap = self.root:genAllChildren() + uiMap["act_boss_rush_fund_ui.bg.bg.title"]:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_BOSS_RUSH_DESC_15)) + uiMap["act_boss_rush_fund_ui.bg.ui_spine_obj"]:playAnim("idle", true, false) + uiMap["act_boss_rush_fund_ui.bg.level.tx_level"]:setText(DataManager.ActBossRushData:getWaveCount()) + self.downDesc = uiMap["act_boss_rush_fund_ui.bg.bg.desc"] + self.downDesc:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_BOSS_RUSH_DESC_16)) + + self:refreshBtns() + self:_refreshScrollrect() +end + +function ActBossRushFundUI:_addListeners() + local uiMap = self.root:genAllChildren() + uiMap["act_boss_rush_fund_ui.bg.close_btn"]:addClickListener(function() + self:closeUI() + end) +end + +function ActBossRushFundUI:_bind() + self:bind(DataManager.ActBossRushData, "isDirty", function() + self:_display() + end) + + self:bind(DataManager.ShopData, "isDirty", function() + self:_display() + end) +end + +function ActBossRushFundUI:refreshBtns() + local uiMap = self.root:genAllChildren() + uiMap["act_boss_rush_fund_ui.bg.title.free.tx_free"]:setText(I18N:getGlobalText(I18N.GlobalConst.STR_FREE)) + + local probtn = uiMap["act_boss_rush_fund_ui.bg.title.buy1"] + local proBtntx = uiMap["act_boss_rush_fund_ui.bg.title.buy1.tx_buyed"] + local proBuy = uiMap["act_boss_rush_fund_ui.bg.title.buy1.tx_buy"] + proBtntx:setText(I18N:getGlobalText(I18N.GlobalConst.ALREADY_ACTIVE)) + proBuy:setText(DataManager.ActBossRushData:getProPrice()) + + if DataManager.ActBossRushData:getProBought() then + probtn:setSprite(GConst.ATLAS_PATH.ACT_BOSS_RUSH, BTN_ICON[2]) + probtn:setTouchEnable(false) + proBtntx:setVisible(true) + proBuy:setVisible(false) + else + probtn:setSprite(GConst.ATLAS_PATH.COMMON, BTN_ICON[1]) + probtn:setTouchEnable(true) + probtn:addClickListener(function() + ModuleManager.ActBossRushManager:purcharse(DataManager.ActBossRushData:getProActId()) + end) + proBtntx:setVisible(false) + proBuy:setVisible(true) + end + + local utralbtn = uiMap["act_boss_rush_fund_ui.bg.title.buy2"] + local utralBtntx = uiMap["act_boss_rush_fund_ui.bg.title.buy2.tx_buyed"] + local utralBuy = uiMap["act_boss_rush_fund_ui.bg.title.buy2.tx_buy"] + utralBtntx:setText(I18N:getGlobalText(I18N.GlobalConst.ALREADY_ACTIVE)) + utralBuy:setText(DataManager.ActBossRushData:gettUtralPrice()) + + if DataManager.ActBossRushData:getUtralBought() then + utralbtn:setSprite(GConst.ATLAS_PATH.ACT_BOSS_RUSH, BTN_ICON[2]) + utralbtn:setTouchEnable(false) + utralBtntx:setVisible(true) + utralBuy:setVisible(false) + else + utralbtn:setSprite(GConst.ATLAS_PATH.COMMON, BTN_ICON[1]) + utralbtn:setTouchEnable(true) + utralbtn:addClickListener(function() + ModuleManager.ActBossRushManager:purcharse(DataManager.ActBossRushData:getUtralActId()) + end) + utralBtntx:setVisible(false) + utralBuy:setVisible(true) + end +end + +function ActBossRushFundUI:_refreshScrollrect() + local uiMap = self.root:genAllChildren() + local mask = uiMap["act_boss_rush_fund_ui.bg.scrollrect.viewport.content.mask_img"] + local level = DataManager.ActBossRushData:getWaveLevel() + local totalCount = #self.rewardList + local maskCount = math.max(0, totalCount - level) + mask:setAnchoredPositionY(-10 - level * 120) + mask:setSizeDeltaY(maskCount * 120 + 20) + local progSlider = uiMap["act_boss_rush_fund_ui.bg.scrollrect.viewport.content.prog.img_prog"]:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_SLIDER) + local y = (totalCount - 1) * 120 + if (level - 1) >= 0 then + progSlider.value = (level - 1) / (totalCount - 1) + else + progSlider.value = 0 + end + mask:setVisible(level < totalCount) + + if self.scrollRectComp then + self.scrollRectComp:updateAllCell() + return + end + + local prog = uiMap["act_boss_rush_fund_ui.bg.scrollrect.viewport.content.prog"] + prog:setSizeDeltaY(y) + self.scrollRectComp = uiMap["act_boss_rush_fund_ui.bg.scrollrect"]:addLuaComponent(GConst.TYPEOF_LUA_CLASS.SCROLL_RECT_BASE) + self.scrollRectComp:addInitCallback(function() + return FUND_CELL + end) + self.scrollRectComp:addRefreshCallback(function(index, cell) + cell:refresh(self.rewardList[index]) + mask:getTransform():SetAsLastSibling() + end) + self.scrollRectComp:clearCells() + self.scrollRectComp:setTotalCount(0) + if level < 1 then + level = 1 + end + self.scrollRectComp:refillCells(totalCount, nil, level) +end + +function ActBossRushFundUI:refreshTime() + local uiMap = self.root:genAllChildren() + local remainTime = DataManager.ActBossRushData:getRemainTime() + local str + if remainTime <= 0 then + str = I18N:getGlobalText(I18N.GlobalConst.ACTIVITY_OVER_EDSC) + else + str = Time:formatNumTimeStr(remainTime) + end + uiMap["act_boss_rush_fund_ui.bg.countdown.tx_countdown"]:setText(str) +end + +return ActBossRushFundUI \ No newline at end of file diff --git a/lua/app/ui/activity/act_boss_rush/act_boss_rush_fund_ui.lua.meta b/lua/app/ui/activity/act_boss_rush/act_boss_rush_fund_ui.lua.meta new file mode 100644 index 00000000..afec8598 --- /dev/null +++ b/lua/app/ui/activity/act_boss_rush/act_boss_rush_fund_ui.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 45ba6058207d9da498e2e6f026751fa9 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/activity/act_boss_rush/act_boss_rush_pop_ui.lua b/lua/app/ui/activity/act_boss_rush/act_boss_rush_pop_ui.lua new file mode 100644 index 00000000..6aecff85 --- /dev/null +++ b/lua/app/ui/activity/act_boss_rush/act_boss_rush_pop_ui.lua @@ -0,0 +1,59 @@ +local ActBossRushPopUI = class("ActBossRushPopUI", BaseUI) + +function ActBossRushPopUI:isFullScreen() + return false +end + +function ActBossRushPopUI:getPrefabPath() + return "assets/prefabs/ui/activity/act_boss_rush/act_boss_rush_pop_ui.prefab" +end + +function ActBossRushPopUI:onLoadRootComplete() + self:_display() + self:_addListeners() + + self:refreshTime() + if self.actCountdownSid then + self:unscheduleGlobal(self.actCountdownSid) + end + self.actCountdownSid = self:scheduleGlobal(function() + self:refreshTime() + end, 1) +end + +function ActBossRushPopUI:_display() + local uiMap = self.root:genAllChildren() + uiMap["act_boss_rush_pop_ui.ui_spine_obj.title"]:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_BOSS_RUSH_DESC_2)) + uiMap["act_boss_rush_pop_ui.ui_spine_obj.desc"]:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_BOSS_RUSH_DESC_13)) + uiMap["act_boss_rush_pop_ui.btn_goto.tx"]:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_BOSS_RUSH_DESC_14)) +end + +function ActBossRushPopUI:_addListeners() + local uiMap = self.root:genAllChildren() + uiMap["act_boss_rush_pop_ui.mask"]:addClickListener(function() + self:closeUI() + end) + + uiMap["act_boss_rush_pop_ui.btn_goto"]:addClickListener(function() + if not DataManager.ActBossRushData:getIsOpen() then + GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.ACTIVITY_OVER_EDSC)) + return + end + ModuleManager.ActBossRushManager:showMainUI() + self:closeUI() + end) +end + +function ActBossRushPopUI:refreshTime() + local uiMap = self.root:genAllChildren() + local remainTime = DataManager.ActBossRushData:getRemainTime() + local str + if remainTime <= 0 then + str = I18N:getGlobalText(I18N.GlobalConst.ACTIVITY_OVER_EDSC) + else + str = Time:formatNumTimeStr(remainTime) + end + uiMap["act_boss_rush_pop_ui.ui_spine_obj.countdown.tx_countdown"]:setText(str) +end + +return ActBossRushPopUI \ No newline at end of file diff --git a/lua/app/ui/activity/act_boss_rush/act_boss_rush_pop_ui.lua.meta b/lua/app/ui/activity/act_boss_rush/act_boss_rush_pop_ui.lua.meta new file mode 100644 index 00000000..8bbb9fcf --- /dev/null +++ b/lua/app/ui/activity/act_boss_rush/act_boss_rush_pop_ui.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: c80ebce3c84c2684c88d7ad6c254c656 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/activity/act_boss_rush/act_boss_rush_ui.lua b/lua/app/ui/activity/act_boss_rush/act_boss_rush_ui.lua new file mode 100644 index 00000000..89b0e70d --- /dev/null +++ b/lua/app/ui/activity/act_boss_rush/act_boss_rush_ui.lua @@ -0,0 +1,143 @@ +local ActBossRushUI = class("ActBossRushUI", BaseUI) + +local RANK_CELL = "app/ui/activity/act_boss_rush/cell/rank_cell" + +function ActBossRushUI:getPrefabPath() + return "assets/prefabs/ui/activity/act_boss_rush/act_boss_rush_ui.prefab" +end + +function ActBossRushUI:ctor() + +end + +function ActBossRushUI:onLoadRootComplete() + self:_display() + self:_addListeners() + self:_bind() + + self:refreshTime() + if self.actCountdownSid then + self:unscheduleGlobal(self.actCountdownSid) + end + self.actCountdownSid = self:scheduleGlobal(function() + self:refreshTime() + end, 1) +end + +function ActBossRushUI:_display() + local uiMap = self.root:genAllChildren() + uiMap["act_boss_rush_ui.bg.title_tx"]:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_BOSS_RUSH_DESC_2)) + uiMap["act_boss_rush_ui.bg.tx_today_rank"]:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_BOSS_RUSH_DESC_3)) + uiMap["act_boss_rush_ui.down.formation_btn.text"]:setText(I18N:getGlobalText(I18N.GlobalConst.DUNGEON_WEAPON_DESC_4)) + uiMap["act_boss_rush_ui.bg.btn_rank.tx_desc"]:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_BOSS_RUSH_DESC_10)) + uiMap["act_boss_rush_ui.bg.btn_bounty.tx_desc"]:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_BOSS_RUSH_DESC_11)) + uiMap["act_boss_rush_ui.bg.btn_shop.tx_desc"]:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_BOSS_RUSH_DESC_12)) + + local todayMaxWaveDesc = uiMap["act_boss_rush_ui.bg.tx_today_max_wave_desc"] + local todayMaxWave = uiMap["act_boss_rush_ui.bg.tx_today_max_wave"] + local todayMaxWaveImg = uiMap["act_boss_rush_ui.bg.img_today_max_wave"] + todayMaxWaveDesc:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_BOSS_RUSH_DESC_4)) + todayMaxWave:setText(DataManager.ActBossRushData:getTodayMaxWave()) + GFunc.centerTxAndImgAndTx(todayMaxWaveDesc, 5, todayMaxWaveImg, 5, todayMaxWave) + + uiMap["act_boss_rush_ui.bg.tx_today_fight_count"]:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_BOSS_RUSH_DESC_5, DataManager.ActBossRushData:getTodayFightCount())) + + local cost = uiMap["act_boss_rush_ui.bg.fight_btn.cost"] + local costIcon = uiMap["act_boss_rush_ui.bg.cost.icon"] + local costDesc = uiMap["act_boss_rush_ui.bg.cost.tx_cost_desc"] + local costNum = uiMap["act_boss_rush_ui.bg.cost.tx_cost"] + + local todayFreeFightCount = uiMap["act_boss_rush_ui.bg.tx_count"] + local count = DataManager.ActBossRushData:getFreeFightCount() + if count > 0 then + todayFreeFightCount:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_BOSS_RUSH_DESC_6, count)) + cost:setVisible(false) + else + todayFreeFightCount:setText(GConst.EMPTY_STRING) + cost:setVisible(true) + costDesc:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_BOSS_RUSH_DESC_7)) + costNum:setText(DataManager.ActBossRushData:getFightCost()) + GFunc.centerTxAndImgAndTx(costDesc, 5, costIcon, 5, costNum) + end + + self:refreshRankList() + self:refreshFormation() +end + +function ActBossRushUI:_addListeners() + local uiMap = self.root:genAllChildren() + uiMap["act_boss_rush_ui.bg.fight_btn"]:addClickListener(function() + ModuleManager.ActBossRushManager:reqFight() + end) + + uiMap["act_boss_rush_ui.down.formation_btn"]:addClickListener(function() + ModuleManager.CommonManager:showFormationUI(GConst.BattleConst.FORMATION_TYPE.BOSS_RUSH) + end) + + uiMap["act_boss_rush_ui.down.close_btn"]:addClickListener(function() + self:closeUI() + end) + + uiMap["act_boss_rush_ui.bg.btn_rank"]:addClickListener(function() + ModuleManager.ActBossRushManager:showRankUI() + end) + + uiMap["act_boss_rush_ui.bg.btn_bounty"]:addClickListener(function() + ModuleManager.ActBossRushManager:showFundUI() + end) + + uiMap["act_boss_rush_ui.bg.btn_shop"]:addClickListener(function() + ModuleManager.ActBossRushManager:showShopUI() + end) +end + +function ActBossRushUI:_bind() + self.bind(DataManager.ActBossRushData, "isDirty", function() + self:_display() + end) + + self:bind(DataManager.FormationData, "dirty", function() + self:refreshFormation() + end) + + self:bind(DataManager.HeroData, "isDirty", function() + self:refreshFormation() + end) +end + +function ActBossRushUI:refreshRankList() + if not self.rankCells then + self.rankCells = {} + local uiMap = self.root:genAllChildren() + for i = 1, 3 do + self.rankCells[i] = CellManager:addCellComp(uiMap["act_boss_rush_ui.bg.act_rank_cell_" .. i], RANK_CELL) + end + end + + local list = DataManager.ActBossRushData:getTodayRankList() + for index, cell in ipairs(self.rankCells) do + cell:refresh(index, list[index]) + end +end + +function ActBossRushUI:refreshTime() + local uiMap = self.root:genAllChildren() + local remainTime = DataManager.ActBossRushData:getRemainTime() + local str + if remainTime <= 0 then + str = I18N:getGlobalText(I18N.GlobalConst.ACTIVITY_OVER_EDSC) + else + str = Time:formatNumTimeStr(remainTime) + end + uiMap["act_boss_rush_ui.bg.time_bg.time"]:setText(str) +end + +function ActBossRushUI:refreshFormation() + if not self.formationComp then + local uiMap = self.root:genAllChildren() + self.formationComp = uiMap["act_boss_rush_ui.bg.hero_formation_comp"]:addLuaComponent(GConst.TYPEOF_LUA_CLASS.HERO_FORMATION_COMP) + end + self.formationComp:refreshByFormation(DataManager.FormationData:getBossRushFormation()) +end + +return ActBossRushUI \ No newline at end of file diff --git a/lua/app/ui/activity/act_boss_rush/act_boss_rush_ui.lua.meta b/lua/app/ui/activity/act_boss_rush/act_boss_rush_ui.lua.meta new file mode 100644 index 00000000..dda9d8af --- /dev/null +++ b/lua/app/ui/activity/act_boss_rush/act_boss_rush_ui.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 6309932b9c9dcee4a958a6d21ce8a252 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/activity/act_boss_rush/cell.meta b/lua/app/ui/activity/act_boss_rush/cell.meta new file mode 100644 index 00000000..2566ca89 --- /dev/null +++ b/lua/app/ui/activity/act_boss_rush/cell.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e3ad55d83f2f7554b9c8c21a442f894f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/activity/act_boss_rush/cell/fund_cell.lua b/lua/app/ui/activity/act_boss_rush/cell/fund_cell.lua new file mode 100644 index 00000000..1d315e06 --- /dev/null +++ b/lua/app/ui/activity/act_boss_rush/cell/fund_cell.lua @@ -0,0 +1,76 @@ +local FundCell = class("FundCell", BaseCell) + +function FundCell:init() + local uiMap = self:getUIMap() + self.txLevel = uiMap["fund_cell.level.tx_level"] + self.rewardCell1 = uiMap["fund_cell.reward_cell_1"]:addLuaComponent(GConst.TYPEOF_LUA_CLASS.REWARD_CELL) + self.rewardCell2 = uiMap["fund_cell.reward_cell_2"]:addLuaComponent(GConst.TYPEOF_LUA_CLASS.REWARD_CELL) + self.rewardCell3 = uiMap["fund_cell.reward_cell_3"]:addLuaComponent(GConst.TYPEOF_LUA_CLASS.REWARD_CELL) +end + +function FundCell:refresh(level) + self.txLevel:setText(DataManager.ActBossRushData:getLevelWave(level)) + + local isGet + + isGet = DataManager.ActBossRushData:getFreeGot(level) + local reward = DataManager.ActBossRushData:getReward(level, DataManager.ActBossRushData.REWARD_TYPE.FREE) + if reward then + self.rewardCell1:refreshByConfig(reward, isGet, isGet) + end + self.rewardCell1:showLock(false) + if DataManager.ActBossRushData:getFreeCanGet(level) then + self.rewardCell1:showFrameAnimation() + self.rewardCell1.baseObject:addRedPoint(50, 50, 0.6) + self.rewardCell1:addClickListener(function() + self:onClickReward(level, DataManager.ActBossRushData.REWARD_TYPE.FREE) + end) + else + self.rewardCell1:hideFrameAnimation() + self.rewardCell1.baseObject:removeRedPoint() + self.rewardCell1:addClickListener(nil) + end + + isGet = DataManager.ActBossRushData:getProGot(level) + local reward = DataManager.ActBossRushData:getReward(level, DataManager.ActBossRushData.REWARD_TYPE.PRO) + if reward then + self.rewardCell2:refreshByConfig(reward, isGet, isGet) + end + self.rewardCell2:showLock(not DataManager.ActBossRushData:getProBought()) + if DataManager.ActBossRushData:getProCanGet(level) then + self.rewardCell2:showFrameAnimation() + self.rewardCell2.baseObject:addRedPoint(50, 50, 0.6) + self.rewardCell2:addClickListener(function() + self:onClickReward(level, DataManager.ActBossRushData.REWARD_TYPE.PRO) + end) + else + self.rewardCell2:hideFrameAnimation() + self.rewardCell2.baseObject:removeRedPoint() + self.rewardCell2:addClickListener(nil) + end + + isGet = DataManager.ActBossRushData:getUtralGot(level) + local reward = DataManager.ActBossRushData:getReward(level, DataManager.ActBossRushData.REWARD_TYPE.UTRAL) + if reward then + self.rewardCell3:refreshByConfig(reward, isGet, isGet) + end + self.rewardCell3:showLock(not DataManager.ActBossRushData:getUtralBought()) + if DataManager.ActBossRushData:getUtralCanGet(level) then + self.rewardCell3:showFrameAnimation() + self.rewardCell3.baseObject:addRedPoint(50, 50, 0.6) + self.rewardCell3:addClickListener(function() + self:onClickReward(level, DataManager.ActBossRushData.REWARD_TYPE.UTRAL) + end) + else + self.rewardCell3:hideFrameAnimation() + self.rewardCell3.baseObject:removeRedPoint() + self.rewardCell3:addClickListener(nil) + end +end + +-- 领取奖励 +function FundCell:onClickReward(level, rewardType) + ModuleManager.ActBossRushManager:reqFundAward(level, rewardType) +end + +return FundCell \ No newline at end of file diff --git a/lua/app/ui/activity/act_boss_rush/cell/fund_cell.lua.meta b/lua/app/ui/activity/act_boss_rush/cell/fund_cell.lua.meta new file mode 100644 index 00000000..59b2d0cc --- /dev/null +++ b/lua/app/ui/activity/act_boss_rush/cell/fund_cell.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: b36db9010b508c0478375b99251e7b35 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/activity/act_boss_rush/cell/rank_cell.lua b/lua/app/ui/activity/act_boss_rush/cell/rank_cell.lua new file mode 100644 index 00000000..17ce040f --- /dev/null +++ b/lua/app/ui/activity/act_boss_rush/cell/rank_cell.lua @@ -0,0 +1,45 @@ +local RankCell = class("RankCell", BaseCell) + +local RANK_ICON = { + "", + "", + "" +} + +function RankCell:refresh(index, info) + local uiMap = self:getUIMap() + if not self.playerHeadCell then + self.playerHeadCell = CellManager:addCellComp(uiMap["act_rank_cell.player_head_cell"], GConst.TYPEOF_LUA_CLASS.PLAYER_HEAD_CELL) + end + uiMap["act_rank_cell.tx_rank"]:setText(index) + local imgRank = uiMap["act_rank_cell.img_rank"] + if RANK_ICON[index] then + imgRank:setVisible(true) + -- imgRank:setSprite(GConst.ATLAS_PATH.ACT_BOSS_RUSH, RANK_ICON[index]) + else + imgRank:setVisible(false) + end + + local txName = uiMap["act_rank_cell.tx_name"] + local txWave = uiMap["act_rank_cell.tx_wave"] + local txRound = uiMap["act_rank_cell.tx_round"] + + if info then + txName:setText(info.name) + txWave:setText(info.wave) + txRound:setText(info.round) + self.playerHeadCell:getBaseObject():addClickListener(function() + Logger.logHighlight("显示阵容") + end) + self.playerHeadCell:refresh(info.avatar_id, info.avatar_frame, false) + else + txName:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_BOSS_RUSH_DESC_8)) + txWave:setText("--") + txRound:setText("--") + self.playerHeadCell:getBaseObject():addClickListener(nil) + self.playerHeadCell:refresh(3001, 1000, false) -- 默认 + end + +end + +return RankCell \ No newline at end of file diff --git a/lua/app/ui/activity/act_boss_rush/cell/rank_cell.lua.meta b/lua/app/ui/activity/act_boss_rush/cell/rank_cell.lua.meta new file mode 100644 index 00000000..2162c314 --- /dev/null +++ b/lua/app/ui/activity/act_boss_rush/cell/rank_cell.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 032e61c832631f04b9b9eceb08853b1d +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/hero/hero_comp.lua b/lua/app/ui/hero/hero_comp.lua index 4dba8039..ed3b4f52 100644 --- a/lua/app/ui/hero/hero_comp.lua +++ b/lua/app/ui/hero/hero_comp.lua @@ -94,6 +94,8 @@ function HeroComp:refresh(battleType) self:refreshDungeonWeaponFormation() elseif self.battleType == GConst.BattleConst.FORMATION_TYPE.DUNGEON_ARMOR then self:refreshDungeonArmorFormation() + elseif self.battleType == GConst.BattleConst.FORMATION_TYPE.BOSS_RUSH then + self:refreshBossRushFormation() end end @@ -166,6 +168,19 @@ function HeroComp:refreshDungeonArmorFormation() self:refreshScrollRect() end +function HeroComp:refreshBossRushFormation() + self.txTitle:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_BOSS_RUSH_DESC_9)) + self.rimgTopBG:setTexture("assets/arts/textures/background/hero/hero_bg_1.png") + self.curFormation = DataManager.FormationData:getBossRushFormation() + + self.onClickUseFunc = function(id, type) + DataManager.FormationData:upHeroToFormation(self.battleType, type, id) + self:refreshBossRushFormation() + end + + self:refreshScrollRect() +end + function HeroComp:refreshScrollRect() self.heroList = DataManager.HeroData:getAllHeroesSort(self.battleType) -- 每次都重新算一次 diff --git a/lua/app/ui/main_city/cell/side_bar_boss_rush_cell.lua b/lua/app/ui/main_city/cell/side_bar_boss_rush_cell.lua new file mode 100644 index 00000000..a8946831 --- /dev/null +++ b/lua/app/ui/main_city/cell/side_bar_boss_rush_cell.lua @@ -0,0 +1,50 @@ +local SideBarBaseCellComp = require "app/ui/main_city/cell/side_bar_base_cell" +local SideBarBossRushCell = class("SideBarBossRushCell", SideBarBaseCellComp) + +function SideBarBossRushCell:getModuleKey() + return ModuleManager.MODULE_KEY.SEVEN_DAY +end + +function SideBarBossRushCell:getHasPurchase() + return true +end + +function SideBarBossRushCell:getIsOpen() + return DataManager.ActBossRushData:getIsOpen() +end + +function SideBarBossRushCell:getSpineName() + return "ui_main_herofund" +end + +function SideBarBossRushCell:onClick() + ModuleManager.ActBossRushManager:showMainUI() +end + +function SideBarBossRushCell:getIsShowRedPoint() + return DataManager.ActBossRushData:getRp() +end + +function SideBarBossRushCell:onRefresh() + self.timeBg:setVisible(true) + self:_refreshTime() +end + +function SideBarBossRushCell:updateTime() + if self:getIsOpen() then + self:_refreshTime() + else + self:closeBtn() + end +end + +function SideBarBossRushCell:_refreshTime() + local remainTime = DataManager.HeroFundData:getRemainTime() + if remainTime >= 0 then + self.timeTx:setText(GFunc.getTimeStr(remainTime)) + else + self.timeTx:setText("00:00:00") + end +end + +return SideBarBossRushCell \ No newline at end of file diff --git a/lua/app/ui/main_city/cell/side_bar_boss_rush_cell.lua.meta b/lua/app/ui/main_city/cell/side_bar_boss_rush_cell.lua.meta new file mode 100644 index 00000000..de16c931 --- /dev/null +++ b/lua/app/ui/main_city/cell/side_bar_boss_rush_cell.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 7f46400ca989c054594fb980979f5e8b +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/main_city/cell/side_bar_hero_fund_cell.lua b/lua/app/ui/main_city/cell/side_bar_hero_fund_cell.lua index f7c08a1f..d43ef0d8 100644 --- a/lua/app/ui/main_city/cell/side_bar_hero_fund_cell.lua +++ b/lua/app/ui/main_city/cell/side_bar_hero_fund_cell.lua @@ -6,7 +6,7 @@ function SideBarHeroFundCell:getModuleKey() end function SideBarHeroFundCell:getHasPurchase() - return false + return true end function SideBarHeroFundCell:getIsOpen() diff --git a/lua/app/ui/main_city/main_city_ui.lua b/lua/app/ui/main_city/main_city_ui.lua index 4235f8d5..f273535b 100644 --- a/lua/app/ui/main_city/main_city_ui.lua +++ b/lua/app/ui/main_city/main_city_ui.lua @@ -1029,6 +1029,13 @@ function MainCityUI:checkMainPop() showType = BIReport.PAY_UI_SHOW_TYPE.LOGIN_POP end ModuleManager.ActivityManager:showGoldPigUI(showType) + return + end + + if DataManager.ActBossRushData:getIsOpen() then -- 弹窗 + if ModuleManager.ActBossRushManager:showPopUI() then + return + end end end diff --git a/lua/app/userdata/activity/act_boss_rush.meta b/lua/app/userdata/activity/act_boss_rush.meta new file mode 100644 index 00000000..2ebd44ea --- /dev/null +++ b/lua/app/userdata/activity/act_boss_rush.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8f03a26eebd5c8c4da63b03db9b6be58 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/userdata/activity/act_boss_rush/act_boss_rush_data.lua b/lua/app/userdata/activity/act_boss_rush/act_boss_rush_data.lua new file mode 100644 index 00000000..8e531fbd --- /dev/null +++ b/lua/app/userdata/activity/act_boss_rush/act_boss_rush_data.lua @@ -0,0 +1,393 @@ +local ActBossRushData = class("ActBossRushData", BaseData) + +local ACT_ID = 206 +local PRO_ACT_ID = 130502 +local UTRAL_ACT_ID = 130602 + +ActBossRushData.REWARD_TYPE = { + FREE = 1, + PRO = 2, + UTRAL = 3 +} + +function ActBossRushData:clear() + self.data.isDirty = false + self.endTime = 0 + -- 战斗相关 + self.stageRandomSeed = 0 + self.stageList = {} + self.todayMaxWave = 0 + self.todayFightCount = 0 + self.fightCount = 0 + -- 兑换 + self.shop = {} + -- 战令 + self.waveCount = 0 -- 波次 + self.waveLevel = 0 -- 波次等级 可领的最高等级 + self.freeLevel = 0 -- 免费领取过的等级 + self.proLevel = 0 -- 付费1领取过的等级 + self.utralLevel = 0 -- 付费2领取过的等级 + self.free_awarded = {} -- 领取过的免费id + self.pay_low_awarded = {} -- 领取过的付费1id + self.pay_high_awarded = {} -- 领取过的付费2id + self.proBounght = false -- 付费1已购买 + self.utralBounght = false -- 付费2已购买 + self.waveLevelList = {} -- 缓存波次等级 + self.waveLevelListCount = 0 -- 缓存最大等级 + -- 排行榜 + self.lastRankList = {} + self.rankList = {} + self.selfRank = {} + self.todayRerwardGot = false +end + +function ActBossRushData:ctor() + self:clear() +end + +function ActBossRushData:init(data) + if not data then + return + end + + -- 战斗 + self.stageRandomSeed = data.self.stageRandomSeed or Time:getBeginningOfServerToday() + self.todayFightCount = data.todayFightCount or 0 + self.fightCount = data.fightCount or 0 + self.stageList = {} + for id, info in ipairs(ConfigManager:getConfig("activity_boss_rush_chapter")) do + table.insert(self.stageList, id) + end + self.stageList = table.shuffleBySeed(self.stageList, self.stageRandomSeed) + + -- 兑换 + self.shop = data.shop + + -- 战令 + self.waveLevelListCount = 0 + local list = self:getBountyList() + for _, id in ipairs(list) do + local info = self:getBountyCfg()[id] + if info then + self.waveLevelList[id] = info.exp + self.waveLevelListCount = self.waveLevelListCount + 1 + end + end + + for id = 1, self.waveLevelListCount do + local wave = self.waveLevelList[id] + if wave and wave <= self.waveCount then + self.waveLevel = id + else + break + end + end + + self:initTaskListener() +end + +function ActBossRushData:setDirty() + self.data.isDirty = not self.data.isDirty +end + +function ActBossRushData:getIsOpen() + -- 开启条件 + return self.endTime > Time:getServerTime() +end + +function ActBossRushData:getRp() + +end + +function ActBossRushData:getRemainTime() + local time = self.endTime - Time:getServerTime() + if time < 0 then + time = 0 + end + return time +end + +---- 战斗 +function ActBossRushData:getTodayMaxWave() + return self.todayMaxWave or 0 +end + +function ActBossRushData:getTodayFightCount() + return self.todayFightCount +end + +function ActBossRushData:getFreeFightLimit() + return 1 +end + +function ActBossRushData:getFreeFightCount() + local count = self:getFreeFightLimit() - self:getTodayFightCount() + if count < 0 then + count = 0 + end + return count +end + +function ActBossRushData:getFightFree() + return self.todayFightCount <= 0 +end + +function ActBossRushData:getFightCost() + local count = self.todayFightCount - self:getFreeFightLimit() + if count <= 0 then + return 0 + end + return count * 20 -- 每次增加20 +end + + +---- 排行榜 +function ActBossRushData:getTodayRankList() + if self:getRemainTime() < 86400 then -- 最后一天 + return self.lastRankList + end + return self.rankList +end + +---- 战令 +function ActBossRushData:getBountyCfg() + return ConfigManager:getConfig("activity_bounty_level") +end + +function ActBossRushData:getBountyList() + if not self.bountyList then + self.bountyList = GFunc.getTable(DataManager:getActivityBountyLevelByActId(ACT_ID) or {}) + end + return self.bountyList +end + +function ActBossRushData:getWaveCount() + return self.waveCount or 0 +end + +function ActBossRushData:getWaveLevel() + return self.waveLevel or 0 +end + +function ActBossRushData:getLevelWave(level) + return self.waveLevelList[level] or 0 +end + +function ActBossRushData:addWaveCount(count) + self.waveCount = self.waveCount + count + + local nextLevel = self.waveLevel + 1 + if self.waveLevelList[nextLevel] and self.waveCount >= self.waveLevelList[nextLevel] then -- 升级了 + for id = nextLevel, self.waveLevelListCount do + local wave = self.waveLevelList[id] + if wave and wave <= self.waveCount then + self.waveLevel = id + else + break + end + end + end + + self:setDirty() +end + +function ActBossRushData:getFreeGot(level) + return self.free_awarded[level] +end + +function ActBossRushData:setFreeGot(level) + if not self.free_awarded[level] then + self.freeLevel = self.freeLevel + 1 + end + self.free_awarded[level] = true +end + +function ActBossRushData:getProActId() + return PRO_ACT_ID +end + +function ActBossRushData:getProPrice() + local cfg = ConfigManager:getConfig("act_gift")[PRO_ACT_ID] + if not cfg then + return GConst.EMPTY_STRING + end + return GFunc.getFormatPrice(cfg.recharge_id) +end + +function ActBossRushData:getProGot(level) + return self.pay_low_awarded[level] +end + +function ActBossRushData:setProGot(level) + if not self.pay_low_awarded[level] then + self.proLevel = self.proLevel + 1 + end + self.pay_low_awarded[level] = true +end + +function ActBossRushData:getProBought() + if not self.proBounght then + if DataManager.ShopData:getGiftBoughtNum(PayManager.PURCHARSE_TYPE.ACT_GIFT, PRO_ACT_ID) > 0 then + self.proBounght = true + end + end + + return self.proBounght +end + +function ActBossRushData:setProBought() + self.proBounght = true + self:setDirty() +end + +function ActBossRushData:getUtralActId() + return UTRAL_ACT_ID +end + +function ActBossRushData:gettUtralPrice() + local cfg = ConfigManager:getConfig("act_gift")[UTRAL_ACT_ID] + if not cfg then + return GConst.EMPTY_STRING + end + return GFunc.getFormatPrice(cfg.recharge_id) +end + +function ActBossRushData:getUtralGot(level) + return self.pay_high_awarded[level] +end + +function ActBossRushData:setUtralGot(level) + if not self.pay_high_awarded[level] then + self.utralLevel = self.utralLevel + 1 + end + self.pay_high_awarded[level] = true +end + +function ActBossRushData:getUtralBought() + if not self.utralBounght then + if DataManager.ShopData:getGiftBoughtNum(PayManager.PURCHARSE_TYPE.ACT_GIFT, UTRAL_ACT_ID) > 0 then + self.utralBounght = true + end + end + return self.utralBounght +end + +function ActBossRushData:setUtralBought() + self.utralBounght = true + self:setDirty() +end + +function ActBossRushData:gotFundReward(idWithLv) + if not idWithLv then + return + end + + for _, info in ipairs(idWithLv) do + if info.grade == 0 then + self:setFreeGot(info.id) + elseif info.grade == 1 then + self:setProGot(info.id) + elseif info.grade == 2 then + self:setUtralGot(info.id) + end + end + + self:setDirty() +end + +function ActBossRushData:getFreeCanGet(level) + if self:getFreeGot(level) then + return false + end + + if self.waveLevel < level then + return false + end + + return true +end + +function ActBossRushData:getProCanGet(level) + if self:getProGot(level) then + return false + end + + if not self.proBounght then + return false + end + + if self.waveLevel < level then + return false + end + + return true +end + +function ActBossRushData:getUtralCanGet(level) + if self:getUtralGot(level) then + return false + end + + if not self.utralBounght then + return false + end + + if self.waveLevel < level then + return false + end + + return true +end + +function ActBossRushData:getHaveReward() + if self.freeLevel < self.waveLevel then + return true + end + + if self.proBounght then + if self.proLevel < self.waveLevel then + return true + end + end + + if self.utralBounght then + if self.utralLevel < self.waveLevel then + return true + end + end + + return false +end + +function ActBossRushData:getReward(level, rewardType) + local cfg = self:getConfig()[level] + if not cfg then + return + end + + if rewardType == ActBossRushData.REWARD_TYPE.FREE then + return cfg.reward + elseif rewardType == ActBossRushData.REWARD_TYPE.PRO then + return cfg.reward_pro + elseif rewardType == ActBossRushData.REWARD_TYPE.UTRAL then + return cfg.reward_pro_max + end +end + +function ActBossRushData:initTaskListener() + local nowTime = Time:getServerTime() + -- 活动结束就不用监听了 + if self.endTime > 0 and self.endTime < nowTime then + ModuleManager.TaskManager:unRegisterAllModuleTask("ActBossRushData") + return false + end + + ModuleManager.TaskManager:registerTask("ActBossRushData", GConst.TaskConst.TASK_TYPE.X_BATTLE_PASS_WAVE, function(count) + if not self:getIsOpen() then + return + end + self:addWaveCount(count) + end) +end + +return ActBossRushData \ No newline at end of file diff --git a/lua/app/userdata/activity/act_boss_rush/act_boss_rush_data.lua.meta b/lua/app/userdata/activity/act_boss_rush/act_boss_rush_data.lua.meta new file mode 100644 index 00000000..fe7e587f --- /dev/null +++ b/lua/app/userdata/activity/act_boss_rush/act_boss_rush_data.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: a9dee8d82b60a8b4c88bed4c0c52260b +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/userdata/formation/formation_data.lua b/lua/app/userdata/formation/formation_data.lua index 1e216399..077297ef 100644 --- a/lua/app/userdata/formation/formation_data.lua +++ b/lua/app/userdata/formation/formation_data.lua @@ -104,6 +104,15 @@ function FormationData:getDungeonArmorFormation() return formation end +function FormationData:getBossRushFormation() + local formation = self:getFormation(GConst.BattleConst.FORMATION_TYPE.BOSS_RUSH) + if table.nums(formation) <= 0 then + self:setFormation(GConst.BattleConst.FORMATION_TYPE.BOSS_RUSH, self:getFormation(GConst.BattleConst.FORMATION_TYPE.STAGE)) -- 如果没有,则用默认关卡 + formation = self:getFormation(GConst.BattleConst.FORMATION_TYPE.BOSS_RUSH) + end + return formation +end + function FormationData:getFormation(formationType) local formation = self.formations[formationType] if formation == nil then